blob: b376ebe5fad9dfb13c9c166051eb63710d86cc1e [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"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110028#include "xfs_inode.h"
Dave Chinner57062782013-10-15 09:17:51 +110029#include "xfs_da_format.h"
Dave Chinnerc24b5df2013-08-12 20:49:45 +100030#include "xfs_da_btree.h"
Dave Chinnerc24b5df2013-08-12 20:49:45 +100031#include "xfs_dir2.h"
Nathan Scotta844f452005-11-02 14:38:42 +110032#include "xfs_attr_sf.h"
Dave Chinnerc24b5df2013-08-12 20:49:45 +100033#include "xfs_attr.h"
Dave Chinner239880e2013-10-23 10:50:10 +110034#include "xfs_trans_space.h"
35#include "xfs_trans.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_buf_item.h"
Nathan Scotta844f452005-11-02 14:38:42 +110037#include "xfs_inode_item.h"
Nathan Scotta844f452005-11-02 14:38:42 +110038#include "xfs_ialloc.h"
39#include "xfs_bmap.h"
Dave Chinner68988112013-08-12 20:49:42 +100040#include "xfs_bmap_util.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include "xfs_quota.h"
David Chinner2a82b8b2007-07-11 11:09:12 +100043#include "xfs_filestream.h"
Christoph Hellwig93848a92013-04-03 16:11:17 +110044#include "xfs_cksum.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000045#include "xfs_trace.h"
Dave Chinner33479e02012-10-08 21:56:11 +110046#include "xfs_icache.h"
Dave Chinnerc24b5df2013-08-12 20:49:45 +100047#include "xfs_symlink.h"
Dave Chinner239880e2013-10-23 10:50:10 +110048#include "xfs_trans_priv.h"
49#include "xfs_log.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110050#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052kmem_zone_t *xfs_inode_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54/*
Christoph Hellwig8f04c472011-07-08 14:34:34 +020055 * Used in xfs_itruncate_extents(). This is the maximum number of extents
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 * freed from a file in a single transaction.
57 */
58#define XFS_ITRUNC_MAX_EXTENTS 2
59
60STATIC int xfs_iflush_int(xfs_inode_t *, xfs_buf_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Zhi Yong Wuab297432013-12-18 08:22:41 +080062STATIC int xfs_iunlink_remove(xfs_trans_t *, xfs_inode_t *);
63
Dave Chinner2a0ec1d2012-04-23 15:59:02 +100064/*
65 * helper function to extract extent size hint from inode
66 */
67xfs_extlen_t
68xfs_get_extsz_hint(
69 struct xfs_inode *ip)
70{
71 if ((ip->i_d.di_flags & XFS_DIFLAG_EXTSIZE) && ip->i_d.di_extsize)
72 return ip->i_d.di_extsize;
73 if (XFS_IS_REALTIME_INODE(ip))
74 return ip->i_mount->m_sb.sb_rextsize;
75 return 0;
76}
77
Dave Chinnerfa96aca2012-10-08 21:56:10 +110078/*
Christoph Hellwigefa70be2013-12-18 02:14:39 -080079 * These two are wrapper routines around the xfs_ilock() routine used to
80 * centralize some grungy code. They are used in places that wish to lock the
81 * inode solely for reading the extents. The reason these places can't just
82 * call xfs_ilock(ip, XFS_ILOCK_SHARED) is that the inode lock also guards to
83 * bringing in of the extents from disk for a file in b-tree format. If the
84 * inode is in b-tree format, then we need to lock the inode exclusively until
85 * the extents are read in. Locking it exclusively all the time would limit
86 * our parallelism unnecessarily, though. What we do instead is check to see
87 * if the extents have been read in yet, and only lock the inode exclusively
88 * if they have not.
Dave Chinnerfa96aca2012-10-08 21:56:10 +110089 *
Christoph Hellwigefa70be2013-12-18 02:14:39 -080090 * The functions return a value which should be given to the corresponding
Christoph Hellwig01f4f322013-12-06 12:30:08 -080091 * xfs_iunlock() call.
Dave Chinnerfa96aca2012-10-08 21:56:10 +110092 */
93uint
Christoph Hellwig309ecac2013-12-06 12:30:09 -080094xfs_ilock_data_map_shared(
95 struct xfs_inode *ip)
Dave Chinnerfa96aca2012-10-08 21:56:10 +110096{
Christoph Hellwig309ecac2013-12-06 12:30:09 -080097 uint lock_mode = XFS_ILOCK_SHARED;
Dave Chinnerfa96aca2012-10-08 21:56:10 +110098
Christoph Hellwig309ecac2013-12-06 12:30:09 -080099 if (ip->i_d.di_format == XFS_DINODE_FMT_BTREE &&
100 (ip->i_df.if_flags & XFS_IFEXTENTS) == 0)
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100101 lock_mode = XFS_ILOCK_EXCL;
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100102 xfs_ilock(ip, lock_mode);
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100103 return lock_mode;
104}
105
Christoph Hellwigefa70be2013-12-18 02:14:39 -0800106uint
107xfs_ilock_attr_map_shared(
108 struct xfs_inode *ip)
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100109{
Christoph Hellwigefa70be2013-12-18 02:14:39 -0800110 uint lock_mode = XFS_ILOCK_SHARED;
111
112 if (ip->i_d.di_aformat == XFS_DINODE_FMT_BTREE &&
113 (ip->i_afp->if_flags & XFS_IFEXTENTS) == 0)
114 lock_mode = XFS_ILOCK_EXCL;
115 xfs_ilock(ip, lock_mode);
116 return lock_mode;
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100117}
118
119/*
120 * The xfs inode contains 2 locks: a multi-reader lock called the
121 * i_iolock and a multi-reader lock called the i_lock. This routine
122 * allows either or both of the locks to be obtained.
123 *
124 * The 2 locks should always be ordered so that the IO lock is
125 * obtained first in order to prevent deadlock.
126 *
127 * ip -- the inode being locked
128 * lock_flags -- this parameter indicates the inode's locks
129 * to be locked. It can be:
130 * XFS_IOLOCK_SHARED,
131 * XFS_IOLOCK_EXCL,
132 * XFS_ILOCK_SHARED,
133 * XFS_ILOCK_EXCL,
134 * XFS_IOLOCK_SHARED | XFS_ILOCK_SHARED,
135 * XFS_IOLOCK_SHARED | XFS_ILOCK_EXCL,
136 * XFS_IOLOCK_EXCL | XFS_ILOCK_SHARED,
137 * XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL
138 */
139void
140xfs_ilock(
141 xfs_inode_t *ip,
142 uint lock_flags)
143{
144 trace_xfs_ilock(ip, lock_flags, _RET_IP_);
145
146 /*
147 * You can't set both SHARED and EXCL for the same lock,
148 * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
149 * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
150 */
151 ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) !=
152 (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL));
153 ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) !=
154 (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
155 ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_DEP_MASK)) == 0);
156
157 if (lock_flags & XFS_IOLOCK_EXCL)
158 mrupdate_nested(&ip->i_iolock, XFS_IOLOCK_DEP(lock_flags));
159 else if (lock_flags & XFS_IOLOCK_SHARED)
160 mraccess_nested(&ip->i_iolock, XFS_IOLOCK_DEP(lock_flags));
161
162 if (lock_flags & XFS_ILOCK_EXCL)
163 mrupdate_nested(&ip->i_lock, XFS_ILOCK_DEP(lock_flags));
164 else if (lock_flags & XFS_ILOCK_SHARED)
165 mraccess_nested(&ip->i_lock, XFS_ILOCK_DEP(lock_flags));
166}
167
168/*
169 * This is just like xfs_ilock(), except that the caller
170 * is guaranteed not to sleep. It returns 1 if it gets
171 * the requested locks and 0 otherwise. If the IO lock is
172 * obtained but the inode lock cannot be, then the IO lock
173 * is dropped before returning.
174 *
175 * ip -- the inode being locked
176 * lock_flags -- this parameter indicates the inode's locks to be
177 * to be locked. See the comment for xfs_ilock() for a list
178 * of valid values.
179 */
180int
181xfs_ilock_nowait(
182 xfs_inode_t *ip,
183 uint lock_flags)
184{
185 trace_xfs_ilock_nowait(ip, lock_flags, _RET_IP_);
186
187 /*
188 * You can't set both SHARED and EXCL for the same lock,
189 * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
190 * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
191 */
192 ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) !=
193 (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL));
194 ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) !=
195 (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
196 ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_DEP_MASK)) == 0);
197
198 if (lock_flags & XFS_IOLOCK_EXCL) {
199 if (!mrtryupdate(&ip->i_iolock))
200 goto out;
201 } else if (lock_flags & XFS_IOLOCK_SHARED) {
202 if (!mrtryaccess(&ip->i_iolock))
203 goto out;
204 }
205 if (lock_flags & XFS_ILOCK_EXCL) {
206 if (!mrtryupdate(&ip->i_lock))
207 goto out_undo_iolock;
208 } else if (lock_flags & XFS_ILOCK_SHARED) {
209 if (!mrtryaccess(&ip->i_lock))
210 goto out_undo_iolock;
211 }
212 return 1;
213
214 out_undo_iolock:
215 if (lock_flags & XFS_IOLOCK_EXCL)
216 mrunlock_excl(&ip->i_iolock);
217 else if (lock_flags & XFS_IOLOCK_SHARED)
218 mrunlock_shared(&ip->i_iolock);
219 out:
220 return 0;
221}
222
223/*
224 * xfs_iunlock() is used to drop the inode locks acquired with
225 * xfs_ilock() and xfs_ilock_nowait(). The caller must pass
226 * in the flags given to xfs_ilock() or xfs_ilock_nowait() so
227 * that we know which locks to drop.
228 *
229 * ip -- the inode being unlocked
230 * lock_flags -- this parameter indicates the inode's locks to be
231 * to be unlocked. See the comment for xfs_ilock() for a list
232 * of valid values for this parameter.
233 *
234 */
235void
236xfs_iunlock(
237 xfs_inode_t *ip,
238 uint lock_flags)
239{
240 /*
241 * You can't set both SHARED and EXCL for the same lock,
242 * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
243 * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
244 */
245 ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) !=
246 (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL));
247 ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) !=
248 (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
249 ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_DEP_MASK)) == 0);
250 ASSERT(lock_flags != 0);
251
252 if (lock_flags & XFS_IOLOCK_EXCL)
253 mrunlock_excl(&ip->i_iolock);
254 else if (lock_flags & XFS_IOLOCK_SHARED)
255 mrunlock_shared(&ip->i_iolock);
256
257 if (lock_flags & XFS_ILOCK_EXCL)
258 mrunlock_excl(&ip->i_lock);
259 else if (lock_flags & XFS_ILOCK_SHARED)
260 mrunlock_shared(&ip->i_lock);
261
262 trace_xfs_iunlock(ip, lock_flags, _RET_IP_);
263}
264
265/*
266 * give up write locks. the i/o lock cannot be held nested
267 * if it is being demoted.
268 */
269void
270xfs_ilock_demote(
271 xfs_inode_t *ip,
272 uint lock_flags)
273{
274 ASSERT(lock_flags & (XFS_IOLOCK_EXCL|XFS_ILOCK_EXCL));
275 ASSERT((lock_flags & ~(XFS_IOLOCK_EXCL|XFS_ILOCK_EXCL)) == 0);
276
277 if (lock_flags & XFS_ILOCK_EXCL)
278 mrdemote(&ip->i_lock);
279 if (lock_flags & XFS_IOLOCK_EXCL)
280 mrdemote(&ip->i_iolock);
281
282 trace_xfs_ilock_demote(ip, lock_flags, _RET_IP_);
283}
284
Dave Chinner742ae1e2013-04-30 21:39:34 +1000285#if defined(DEBUG) || defined(XFS_WARN)
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100286int
287xfs_isilocked(
288 xfs_inode_t *ip,
289 uint lock_flags)
290{
291 if (lock_flags & (XFS_ILOCK_EXCL|XFS_ILOCK_SHARED)) {
292 if (!(lock_flags & XFS_ILOCK_SHARED))
293 return !!ip->i_lock.mr_writer;
294 return rwsem_is_locked(&ip->i_lock.mr_lock);
295 }
296
297 if (lock_flags & (XFS_IOLOCK_EXCL|XFS_IOLOCK_SHARED)) {
298 if (!(lock_flags & XFS_IOLOCK_SHARED))
299 return !!ip->i_iolock.mr_writer;
300 return rwsem_is_locked(&ip->i_iolock.mr_lock);
301 }
302
303 ASSERT(0);
304 return 0;
305}
306#endif
307
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000308#ifdef DEBUG
309int xfs_locked_n;
310int xfs_small_retries;
311int xfs_middle_retries;
312int xfs_lots_retries;
313int xfs_lock_delays;
314#endif
315
316/*
317 * Bump the subclass so xfs_lock_inodes() acquires each lock with
318 * a different value
319 */
320static inline int
321xfs_lock_inumorder(int lock_mode, int subclass)
322{
323 if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL))
324 lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_IOLOCK_SHIFT;
325 if (lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL))
326 lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_ILOCK_SHIFT;
327
328 return lock_mode;
329}
330
331/*
Dave Chinner95afcf52015-03-25 14:03:32 +1100332 * The following routine will lock n inodes in exclusive mode. We assume the
333 * caller calls us with the inodes in i_ino order.
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000334 *
Dave Chinner95afcf52015-03-25 14:03:32 +1100335 * We need to detect deadlock where an inode that we lock is in the AIL and we
336 * start waiting for another inode that is locked by a thread in a long running
337 * transaction (such as truncate). This can result in deadlock since the long
338 * running trans might need to wait for the inode we just locked in order to
339 * push the tail and free space in the log.
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000340 */
341void
342xfs_lock_inodes(
343 xfs_inode_t **ips,
344 int inodes,
345 uint lock_mode)
346{
347 int attempts = 0, i, j, try_lock;
348 xfs_log_item_t *lp;
349
Dave Chinner95afcf52015-03-25 14:03:32 +1100350 /* currently supports between 2 and 5 inodes */
351 ASSERT(ips && inodes >= 2 && inodes <= 5);
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000352
353 try_lock = 0;
354 i = 0;
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000355again:
356 for (; i < inodes; i++) {
357 ASSERT(ips[i]);
358
Dave Chinner95afcf52015-03-25 14:03:32 +1100359 if (i && (ips[i] == ips[i - 1])) /* Already locked */
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000360 continue;
361
362 /*
Dave Chinner95afcf52015-03-25 14:03:32 +1100363 * If try_lock is not set yet, make sure all locked inodes are
364 * not in the AIL. If any are, set try_lock to be used later.
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000365 */
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000366 if (!try_lock) {
367 for (j = (i - 1); j >= 0 && !try_lock; j--) {
368 lp = (xfs_log_item_t *)ips[j]->i_itemp;
Dave Chinner95afcf52015-03-25 14:03:32 +1100369 if (lp && (lp->li_flags & XFS_LI_IN_AIL))
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000370 try_lock++;
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000371 }
372 }
373
374 /*
375 * If any of the previous locks we have locked is in the AIL,
376 * we must TRY to get the second and subsequent locks. If
377 * we can't get any, we must release all we have
378 * and try again.
379 */
Dave Chinner95afcf52015-03-25 14:03:32 +1100380 if (!try_lock) {
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000381 xfs_ilock(ips[i], xfs_lock_inumorder(lock_mode, i));
Dave Chinner95afcf52015-03-25 14:03:32 +1100382 continue;
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000383 }
Dave Chinner95afcf52015-03-25 14:03:32 +1100384
385 /* try_lock means we have an inode locked that is in the AIL. */
386 ASSERT(i != 0);
387 if (xfs_ilock_nowait(ips[i], xfs_lock_inumorder(lock_mode, i)))
388 continue;
389
390 /*
391 * Unlock all previous guys and try again. xfs_iunlock will try
392 * to push the tail if the inode is in the AIL.
393 */
394 attempts++;
395 for (j = i - 1; j >= 0; j--) {
396 /*
397 * Check to see if we've already unlocked this one. Not
398 * the first one going back, and the inode ptr is the
399 * same.
400 */
401 if (j != (i - 1) && ips[j] == ips[j + 1])
402 continue;
403
404 xfs_iunlock(ips[j], lock_mode);
405 }
406
407 if ((attempts % 5) == 0) {
408 delay(1); /* Don't just spin the CPU */
409#ifdef DEBUG
410 xfs_lock_delays++;
411#endif
412 }
413 i = 0;
414 try_lock = 0;
415 goto again;
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000416 }
417
418#ifdef DEBUG
419 if (attempts) {
420 if (attempts < 5) xfs_small_retries++;
421 else if (attempts < 100) xfs_middle_retries++;
422 else xfs_lots_retries++;
423 } else {
424 xfs_locked_n++;
425 }
426#endif
427}
428
429/*
430 * xfs_lock_two_inodes() can only be used to lock one type of lock
431 * at a time - the iolock or the ilock, but not both at once. If
432 * we lock both at once, lockdep will report false positives saying
433 * we have violated locking orders.
434 */
435void
436xfs_lock_two_inodes(
437 xfs_inode_t *ip0,
438 xfs_inode_t *ip1,
439 uint lock_mode)
440{
441 xfs_inode_t *temp;
442 int attempts = 0;
443 xfs_log_item_t *lp;
444
445 if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL))
446 ASSERT((lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL)) == 0);
447 ASSERT(ip0->i_ino != ip1->i_ino);
448
449 if (ip0->i_ino > ip1->i_ino) {
450 temp = ip0;
451 ip0 = ip1;
452 ip1 = temp;
453 }
454
455 again:
456 xfs_ilock(ip0, xfs_lock_inumorder(lock_mode, 0));
457
458 /*
459 * If the first lock we have locked is in the AIL, we must TRY to get
460 * the second lock. If we can't get it, we must release the first one
461 * and try again.
462 */
463 lp = (xfs_log_item_t *)ip0->i_itemp;
464 if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
465 if (!xfs_ilock_nowait(ip1, xfs_lock_inumorder(lock_mode, 1))) {
466 xfs_iunlock(ip0, lock_mode);
467 if ((++attempts % 5) == 0)
468 delay(1); /* Don't just spin the CPU */
469 goto again;
470 }
471 } else {
472 xfs_ilock(ip1, xfs_lock_inumorder(lock_mode, 1));
473 }
474}
475
476
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100477void
478__xfs_iflock(
479 struct xfs_inode *ip)
480{
481 wait_queue_head_t *wq = bit_waitqueue(&ip->i_flags, __XFS_IFLOCK_BIT);
482 DEFINE_WAIT_BIT(wait, &ip->i_flags, __XFS_IFLOCK_BIT);
483
484 do {
485 prepare_to_wait_exclusive(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
486 if (xfs_isiflocked(ip))
487 io_schedule();
488 } while (!xfs_iflock_nowait(ip));
489
490 finish_wait(wq, &wait.wait);
491}
492
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493STATIC uint
494_xfs_dic2xflags(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 __uint16_t di_flags)
496{
497 uint flags = 0;
498
499 if (di_flags & XFS_DIFLAG_ANY) {
500 if (di_flags & XFS_DIFLAG_REALTIME)
501 flags |= XFS_XFLAG_REALTIME;
502 if (di_flags & XFS_DIFLAG_PREALLOC)
503 flags |= XFS_XFLAG_PREALLOC;
504 if (di_flags & XFS_DIFLAG_IMMUTABLE)
505 flags |= XFS_XFLAG_IMMUTABLE;
506 if (di_flags & XFS_DIFLAG_APPEND)
507 flags |= XFS_XFLAG_APPEND;
508 if (di_flags & XFS_DIFLAG_SYNC)
509 flags |= XFS_XFLAG_SYNC;
510 if (di_flags & XFS_DIFLAG_NOATIME)
511 flags |= XFS_XFLAG_NOATIME;
512 if (di_flags & XFS_DIFLAG_NODUMP)
513 flags |= XFS_XFLAG_NODUMP;
514 if (di_flags & XFS_DIFLAG_RTINHERIT)
515 flags |= XFS_XFLAG_RTINHERIT;
516 if (di_flags & XFS_DIFLAG_PROJINHERIT)
517 flags |= XFS_XFLAG_PROJINHERIT;
518 if (di_flags & XFS_DIFLAG_NOSYMLINKS)
519 flags |= XFS_XFLAG_NOSYMLINKS;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100520 if (di_flags & XFS_DIFLAG_EXTSIZE)
521 flags |= XFS_XFLAG_EXTSIZE;
522 if (di_flags & XFS_DIFLAG_EXTSZINHERIT)
523 flags |= XFS_XFLAG_EXTSZINHERIT;
Barry Naujokd3446ea2006-06-09 14:54:19 +1000524 if (di_flags & XFS_DIFLAG_NODEFRAG)
525 flags |= XFS_XFLAG_NODEFRAG;
David Chinner2a82b8b2007-07-11 11:09:12 +1000526 if (di_flags & XFS_DIFLAG_FILESTREAM)
527 flags |= XFS_XFLAG_FILESTREAM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 }
529
530 return flags;
531}
532
533uint
534xfs_ip2xflags(
535 xfs_inode_t *ip)
536{
Christoph Hellwig347d1c02007-08-28 13:57:51 +1000537 xfs_icdinode_t *dic = &ip->i_d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Nathan Scotta916e2b2006-06-09 17:12:17 +1000539 return _xfs_dic2xflags(dic->di_flags) |
Christoph Hellwig45ba5982007-12-07 14:07:20 +1100540 (XFS_IFORK_Q(ip) ? XFS_XFLAG_HASATTR : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541}
542
543uint
544xfs_dic2xflags(
Christoph Hellwig45ba5982007-12-07 14:07:20 +1100545 xfs_dinode_t *dip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
Christoph Hellwig81591fe2008-11-28 14:23:39 +1100547 return _xfs_dic2xflags(be16_to_cpu(dip->di_flags)) |
Christoph Hellwig45ba5982007-12-07 14:07:20 +1100548 (XFS_DFORK_Q(dip) ? XFS_XFLAG_HASATTR : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549}
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551/*
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000552 * Lookups up an inode from "name". If ci_name is not NULL, then a CI match
553 * is allowed, otherwise it has to be an exact match. If a CI match is found,
554 * ci_name->name will point to a the actual name (caller must free) or
555 * will be set to NULL if an exact match is found.
556 */
557int
558xfs_lookup(
559 xfs_inode_t *dp,
560 struct xfs_name *name,
561 xfs_inode_t **ipp,
562 struct xfs_name *ci_name)
563{
564 xfs_ino_t inum;
565 int error;
566 uint lock_mode;
567
568 trace_xfs_lookup(dp, name);
569
570 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
Dave Chinner24513372014-06-25 14:58:08 +1000571 return -EIO;
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000572
Christoph Hellwig309ecac2013-12-06 12:30:09 -0800573 lock_mode = xfs_ilock_data_map_shared(dp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000574 error = xfs_dir_lookup(NULL, dp, name, &inum, ci_name);
Christoph Hellwig01f4f322013-12-06 12:30:08 -0800575 xfs_iunlock(dp, lock_mode);
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000576
577 if (error)
578 goto out;
579
580 error = xfs_iget(dp->i_mount, NULL, inum, 0, 0, ipp);
581 if (error)
582 goto out_free_name;
583
584 return 0;
585
586out_free_name:
587 if (ci_name)
588 kmem_free(ci_name->name);
589out:
590 *ipp = NULL;
591 return error;
592}
593
594/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 * Allocate an inode on disk and return a copy of its in-core version.
596 * The in-core inode is locked exclusively. Set mode, nlink, and rdev
597 * appropriately within the inode. The uid and gid for the inode are
598 * set according to the contents of the given cred structure.
599 *
600 * Use xfs_dialloc() to allocate the on-disk inode. If xfs_dialloc()
Carlos Maiolinocd856db2012-10-20 11:08:19 -0300601 * has a free inode available, call xfs_iget() to obtain the in-core
602 * version of the allocated inode. Finally, fill in the inode and
603 * log its initial contents. In this case, ialloc_context would be
604 * set to NULL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 *
Carlos Maiolinocd856db2012-10-20 11:08:19 -0300606 * If xfs_dialloc() does not have an available inode, it will replenish
607 * its supply by doing an allocation. Since we can only do one
608 * allocation within a transaction without deadlocks, we must commit
609 * the current transaction before returning the inode itself.
610 * In this case, therefore, we will set ialloc_context and return.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 * The caller should then commit the current transaction, start a new
612 * transaction, and call xfs_ialloc() again to actually get the inode.
613 *
614 * To ensure that some other process does not grab the inode that
615 * was allocated during the first call to xfs_ialloc(), this routine
616 * also returns the [locked] bp pointing to the head of the freelist
617 * as ialloc_context. The caller should hold this buffer across
618 * the commit and pass it back into this routine on the second call.
David Chinnerb11f94d2007-07-11 11:09:33 +1000619 *
620 * If we are allocating quota inodes, we do not have a parent inode
621 * to attach to or associate with (i.e. pip == NULL) because they
622 * are not linked into the directory structure - they are attached
623 * directly to the superblock - and so have no parent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 */
625int
626xfs_ialloc(
627 xfs_trans_t *tp,
628 xfs_inode_t *pip,
Al Viro576b1d62011-07-26 02:50:15 -0400629 umode_t mode,
Nathan Scott31b084a2005-05-05 13:25:00 -0700630 xfs_nlink_t nlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 xfs_dev_t rdev,
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000632 prid_t prid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 int okalloc,
634 xfs_buf_t **ialloc_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 xfs_inode_t **ipp)
636{
Christoph Hellwig93848a92013-04-03 16:11:17 +1100637 struct xfs_mount *mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 xfs_ino_t ino;
639 xfs_inode_t *ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 uint flags;
641 int error;
Dave Chinnere076b0f2014-10-02 09:18:13 +1000642 struct timespec tv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644 /*
645 * Call the space management code to pick
646 * the on-disk inode to be allocated.
647 */
David Chinnerb11f94d2007-07-11 11:09:33 +1000648 error = xfs_dialloc(tp, pip ? pip->i_ino : 0, mode, okalloc,
Christoph Hellwig08358902012-07-04 10:54:47 -0400649 ialloc_context, &ino);
David Chinnerbf904242008-10-30 17:36:14 +1100650 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 return error;
Christoph Hellwig08358902012-07-04 10:54:47 -0400652 if (*ialloc_context || ino == NULLFSINO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 *ipp = NULL;
654 return 0;
655 }
656 ASSERT(*ialloc_context == NULL);
657
658 /*
659 * Get the in-core inode with the lock held exclusively.
660 * This is because we're setting fields here we need
661 * to prevent others from looking at until we're done.
662 */
Christoph Hellwig93848a92013-04-03 16:11:17 +1100663 error = xfs_iget(mp, tp, ino, XFS_IGET_CREATE,
Christoph Hellwigec3ba852011-02-13 13:26:42 +0000664 XFS_ILOCK_EXCL, &ip);
David Chinnerbf904242008-10-30 17:36:14 +1100665 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 ASSERT(ip != NULL);
668
Dave Chinner263997a2014-05-20 07:46:40 +1000669 /*
670 * We always convert v1 inodes to v2 now - we only support filesystems
671 * with >= v2 inode capability, so there is no reason for ever leaving
672 * an inode in v1 format.
673 */
674 if (ip->i_d.di_version == 1)
675 ip->i_d.di_version = 2;
676
Al Viro576b1d62011-07-26 02:50:15 -0400677 ip->i_d.di_mode = mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 ip->i_d.di_onlink = 0;
679 ip->i_d.di_nlink = nlink;
680 ASSERT(ip->i_d.di_nlink == nlink);
Dwight Engen7aab1b22013-08-15 14:08:01 -0400681 ip->i_d.di_uid = xfs_kuid_to_uid(current_fsuid());
682 ip->i_d.di_gid = xfs_kgid_to_gid(current_fsgid());
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000683 xfs_set_projid(ip, prid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 memset(&(ip->i_d.di_pad[0]), 0, sizeof(ip->i_d.di_pad));
685
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000686 if (pip && XFS_INHERIT_GID(pip)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 ip->i_d.di_gid = pip->i_d.di_gid;
Al Viroabbede12011-07-26 02:31:30 -0400688 if ((pip->i_d.di_mode & S_ISGID) && S_ISDIR(mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 ip->i_d.di_mode |= S_ISGID;
690 }
691 }
692
693 /*
694 * If the group ID of the new file does not match the effective group
695 * ID or one of the supplementary group IDs, the S_ISGID bit is cleared
696 * (and only if the irix_sgid_inherit compatibility variable is set).
697 */
698 if ((irix_sgid_inherit) &&
699 (ip->i_d.di_mode & S_ISGID) &&
Dwight Engen7aab1b22013-08-15 14:08:01 -0400700 (!in_group_p(xfs_gid_to_kgid(ip->i_d.di_gid)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 ip->i_d.di_mode &= ~S_ISGID;
702 }
703
704 ip->i_d.di_size = 0;
705 ip->i_d.di_nextents = 0;
706 ASSERT(ip->i_d.di_nblocks == 0);
Christoph Hellwigdff35fd2008-08-13 16:44:15 +1000707
Dave Chinnere076b0f2014-10-02 09:18:13 +1000708 tv = current_fs_time(mp->m_super);
Christoph Hellwigdff35fd2008-08-13 16:44:15 +1000709 ip->i_d.di_mtime.t_sec = (__int32_t)tv.tv_sec;
710 ip->i_d.di_mtime.t_nsec = (__int32_t)tv.tv_nsec;
711 ip->i_d.di_atime = ip->i_d.di_mtime;
712 ip->i_d.di_ctime = ip->i_d.di_mtime;
713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 /*
715 * di_gen will have been taken care of in xfs_iread.
716 */
717 ip->i_d.di_extsize = 0;
718 ip->i_d.di_dmevmask = 0;
719 ip->i_d.di_dmstate = 0;
720 ip->i_d.di_flags = 0;
Christoph Hellwig93848a92013-04-03 16:11:17 +1100721
722 if (ip->i_d.di_version == 3) {
723 ASSERT(ip->i_d.di_ino == ino);
724 ASSERT(uuid_equal(&ip->i_d.di_uuid, &mp->m_sb.sb_uuid));
725 ip->i_d.di_crc = 0;
726 ip->i_d.di_changecount = 1;
727 ip->i_d.di_lsn = 0;
728 ip->i_d.di_flags2 = 0;
729 memset(&(ip->i_d.di_pad2[0]), 0, sizeof(ip->i_d.di_pad2));
730 ip->i_d.di_crtime = ip->i_d.di_mtime;
731 }
732
733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 flags = XFS_ILOG_CORE;
735 switch (mode & S_IFMT) {
736 case S_IFIFO:
737 case S_IFCHR:
738 case S_IFBLK:
739 case S_IFSOCK:
740 ip->i_d.di_format = XFS_DINODE_FMT_DEV;
741 ip->i_df.if_u2.if_rdev = rdev;
742 ip->i_df.if_flags = 0;
743 flags |= XFS_ILOG_DEV;
744 break;
745 case S_IFREG:
746 case S_IFDIR:
David Chinnerb11f94d2007-07-11 11:09:33 +1000747 if (pip && (pip->i_d.di_flags & XFS_DIFLAG_ANY)) {
Nathan Scott365ca832005-06-21 15:39:12 +1000748 uint di_flags = 0;
749
Al Viroabbede12011-07-26 02:31:30 -0400750 if (S_ISDIR(mode)) {
Nathan Scott365ca832005-06-21 15:39:12 +1000751 if (pip->i_d.di_flags & XFS_DIFLAG_RTINHERIT)
752 di_flags |= XFS_DIFLAG_RTINHERIT;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100753 if (pip->i_d.di_flags & XFS_DIFLAG_EXTSZINHERIT) {
754 di_flags |= XFS_DIFLAG_EXTSZINHERIT;
755 ip->i_d.di_extsize = pip->i_d.di_extsize;
756 }
Dave Chinner9336e3a2014-10-02 09:18:40 +1000757 if (pip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
758 di_flags |= XFS_DIFLAG_PROJINHERIT;
Al Viroabbede12011-07-26 02:31:30 -0400759 } else if (S_ISREG(mode)) {
Christoph Hellwig613d7042007-10-11 17:44:08 +1000760 if (pip->i_d.di_flags & XFS_DIFLAG_RTINHERIT)
Nathan Scott365ca832005-06-21 15:39:12 +1000761 di_flags |= XFS_DIFLAG_REALTIME;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100762 if (pip->i_d.di_flags & XFS_DIFLAG_EXTSZINHERIT) {
763 di_flags |= XFS_DIFLAG_EXTSIZE;
764 ip->i_d.di_extsize = pip->i_d.di_extsize;
765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 }
767 if ((pip->i_d.di_flags & XFS_DIFLAG_NOATIME) &&
768 xfs_inherit_noatime)
Nathan Scott365ca832005-06-21 15:39:12 +1000769 di_flags |= XFS_DIFLAG_NOATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 if ((pip->i_d.di_flags & XFS_DIFLAG_NODUMP) &&
771 xfs_inherit_nodump)
Nathan Scott365ca832005-06-21 15:39:12 +1000772 di_flags |= XFS_DIFLAG_NODUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 if ((pip->i_d.di_flags & XFS_DIFLAG_SYNC) &&
774 xfs_inherit_sync)
Nathan Scott365ca832005-06-21 15:39:12 +1000775 di_flags |= XFS_DIFLAG_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 if ((pip->i_d.di_flags & XFS_DIFLAG_NOSYMLINKS) &&
777 xfs_inherit_nosymlinks)
Nathan Scott365ca832005-06-21 15:39:12 +1000778 di_flags |= XFS_DIFLAG_NOSYMLINKS;
Barry Naujokd3446ea2006-06-09 14:54:19 +1000779 if ((pip->i_d.di_flags & XFS_DIFLAG_NODEFRAG) &&
780 xfs_inherit_nodefrag)
781 di_flags |= XFS_DIFLAG_NODEFRAG;
David Chinner2a82b8b2007-07-11 11:09:12 +1000782 if (pip->i_d.di_flags & XFS_DIFLAG_FILESTREAM)
783 di_flags |= XFS_DIFLAG_FILESTREAM;
Nathan Scott365ca832005-06-21 15:39:12 +1000784 ip->i_d.di_flags |= di_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 }
786 /* FALLTHROUGH */
787 case S_IFLNK:
788 ip->i_d.di_format = XFS_DINODE_FMT_EXTENTS;
789 ip->i_df.if_flags = XFS_IFEXTENTS;
790 ip->i_df.if_bytes = ip->i_df.if_real_bytes = 0;
791 ip->i_df.if_u1.if_extents = NULL;
792 break;
793 default:
794 ASSERT(0);
795 }
796 /*
797 * Attribute fork settings for new inode.
798 */
799 ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
800 ip->i_d.di_anextents = 0;
801
802 /*
803 * Log the new values stuffed into the inode.
804 */
Christoph Hellwigddc34152011-09-19 15:00:54 +0000805 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 xfs_trans_log_inode(tp, ip, flags);
807
Dave Chinner58c90472015-02-23 22:38:08 +1100808 /* now that we have an i_mode we can setup the inode structure */
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000809 xfs_setup_inode(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
811 *ipp = ip;
812 return 0;
813}
814
Dave Chinnere546cb72013-08-12 20:49:47 +1000815/*
816 * Allocates a new inode from disk and return a pointer to the
817 * incore copy. This routine will internally commit the current
818 * transaction and allocate a new one if the Space Manager needed
819 * to do an allocation to replenish the inode free-list.
820 *
821 * This routine is designed to be called from xfs_create and
822 * xfs_create_dir.
823 *
824 */
825int
826xfs_dir_ialloc(
827 xfs_trans_t **tpp, /* input: current transaction;
828 output: may be a new transaction. */
829 xfs_inode_t *dp, /* directory within whose allocate
830 the inode. */
831 umode_t mode,
832 xfs_nlink_t nlink,
833 xfs_dev_t rdev,
834 prid_t prid, /* project id */
835 int okalloc, /* ok to allocate new space */
836 xfs_inode_t **ipp, /* pointer to inode; it will be
837 locked. */
838 int *committed)
839
840{
841 xfs_trans_t *tp;
842 xfs_trans_t *ntp;
843 xfs_inode_t *ip;
844 xfs_buf_t *ialloc_context = NULL;
845 int code;
Dave Chinnere546cb72013-08-12 20:49:47 +1000846 void *dqinfo;
847 uint tflags;
848
849 tp = *tpp;
850 ASSERT(tp->t_flags & XFS_TRANS_PERM_LOG_RES);
851
852 /*
853 * xfs_ialloc will return a pointer to an incore inode if
854 * the Space Manager has an available inode on the free
855 * list. Otherwise, it will do an allocation and replenish
856 * the freelist. Since we can only do one allocation per
857 * transaction without deadlocks, we will need to commit the
858 * current transaction and start a new one. We will then
859 * need to call xfs_ialloc again to get the inode.
860 *
861 * If xfs_ialloc did an allocation to replenish the freelist,
862 * it returns the bp containing the head of the freelist as
863 * ialloc_context. We will hold a lock on it across the
864 * transaction commit so that no other process can steal
865 * the inode(s) that we've just allocated.
866 */
867 code = xfs_ialloc(tp, dp, mode, nlink, rdev, prid, okalloc,
868 &ialloc_context, &ip);
869
870 /*
871 * Return an error if we were unable to allocate a new inode.
872 * This should only happen if we run out of space on disk or
873 * encounter a disk error.
874 */
875 if (code) {
876 *ipp = NULL;
877 return code;
878 }
879 if (!ialloc_context && !ip) {
880 *ipp = NULL;
Dave Chinner24513372014-06-25 14:58:08 +1000881 return -ENOSPC;
Dave Chinnere546cb72013-08-12 20:49:47 +1000882 }
883
884 /*
885 * If the AGI buffer is non-NULL, then we were unable to get an
886 * inode in one operation. We need to commit the current
887 * transaction and call xfs_ialloc() again. It is guaranteed
888 * to succeed the second time.
889 */
890 if (ialloc_context) {
Jie Liu3d3c8b52013-08-12 20:49:59 +1000891 struct xfs_trans_res tres;
892
Dave Chinnere546cb72013-08-12 20:49:47 +1000893 /*
894 * Normally, xfs_trans_commit releases all the locks.
895 * We call bhold to hang on to the ialloc_context across
896 * the commit. Holding this buffer prevents any other
897 * processes from doing any allocations in this
898 * allocation group.
899 */
900 xfs_trans_bhold(tp, ialloc_context);
901 /*
902 * Save the log reservation so we can use
903 * them in the next transaction.
904 */
Jie Liu3d3c8b52013-08-12 20:49:59 +1000905 tres.tr_logres = xfs_trans_get_log_res(tp);
906 tres.tr_logcount = xfs_trans_get_log_count(tp);
Dave Chinnere546cb72013-08-12 20:49:47 +1000907
908 /*
909 * We want the quota changes to be associated with the next
910 * transaction, NOT this one. So, detach the dqinfo from this
911 * and attach it to the next transaction.
912 */
913 dqinfo = NULL;
914 tflags = 0;
915 if (tp->t_dqinfo) {
916 dqinfo = (void *)tp->t_dqinfo;
917 tp->t_dqinfo = NULL;
918 tflags = tp->t_flags & XFS_TRANS_DQ_DIRTY;
919 tp->t_flags &= ~(XFS_TRANS_DQ_DIRTY);
920 }
921
922 ntp = xfs_trans_dup(tp);
923 code = xfs_trans_commit(tp, 0);
924 tp = ntp;
925 if (committed != NULL) {
926 *committed = 1;
927 }
928 /*
929 * If we get an error during the commit processing,
930 * release the buffer that is still held and return
931 * to the caller.
932 */
933 if (code) {
934 xfs_buf_relse(ialloc_context);
935 if (dqinfo) {
936 tp->t_dqinfo = dqinfo;
937 xfs_trans_free_dqinfo(tp);
938 }
939 *tpp = ntp;
940 *ipp = NULL;
941 return code;
942 }
943
944 /*
945 * transaction commit worked ok so we can drop the extra ticket
946 * reference that we gained in xfs_trans_dup()
947 */
948 xfs_log_ticket_put(tp->t_ticket);
Jie Liu3d3c8b52013-08-12 20:49:59 +1000949 tres.tr_logflags = XFS_TRANS_PERM_LOG_RES;
950 code = xfs_trans_reserve(tp, &tres, 0, 0);
951
Dave Chinnere546cb72013-08-12 20:49:47 +1000952 /*
953 * Re-attach the quota info that we detached from prev trx.
954 */
955 if (dqinfo) {
956 tp->t_dqinfo = dqinfo;
957 tp->t_flags |= tflags;
958 }
959
960 if (code) {
961 xfs_buf_relse(ialloc_context);
962 *tpp = ntp;
963 *ipp = NULL;
964 return code;
965 }
966 xfs_trans_bjoin(tp, ialloc_context);
967
968 /*
969 * Call ialloc again. Since we've locked out all
970 * other allocations in this allocation group,
971 * this call should always succeed.
972 */
973 code = xfs_ialloc(tp, dp, mode, nlink, rdev, prid,
974 okalloc, &ialloc_context, &ip);
975
976 /*
977 * If we get an error at this point, return to the caller
978 * so that the current transaction can be aborted.
979 */
980 if (code) {
981 *tpp = tp;
982 *ipp = NULL;
983 return code;
984 }
985 ASSERT(!ialloc_context && ip);
986
987 } else {
988 if (committed != NULL)
989 *committed = 0;
990 }
991
992 *ipp = ip;
993 *tpp = tp;
994
995 return 0;
996}
997
998/*
999 * Decrement the link count on an inode & log the change.
1000 * If this causes the link count to go to zero, initiate the
1001 * logging activity required to truncate a file.
1002 */
1003int /* error */
1004xfs_droplink(
1005 xfs_trans_t *tp,
1006 xfs_inode_t *ip)
1007{
1008 int error;
1009
1010 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG);
1011
1012 ASSERT (ip->i_d.di_nlink > 0);
1013 ip->i_d.di_nlink--;
1014 drop_nlink(VFS_I(ip));
1015 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1016
1017 error = 0;
1018 if (ip->i_d.di_nlink == 0) {
1019 /*
1020 * We're dropping the last link to this file.
1021 * Move the on-disk inode to the AGI unlinked list.
1022 * From xfs_inactive() we will pull the inode from
1023 * the list and free it.
1024 */
1025 error = xfs_iunlink(tp, ip);
1026 }
1027 return error;
1028}
1029
1030/*
Dave Chinnere546cb72013-08-12 20:49:47 +10001031 * Increment the link count on an inode & log the change.
1032 */
1033int
1034xfs_bumplink(
1035 xfs_trans_t *tp,
1036 xfs_inode_t *ip)
1037{
1038 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG);
1039
Dave Chinner263997a2014-05-20 07:46:40 +10001040 ASSERT(ip->i_d.di_version > 1);
Zhi Yong Wuab297432013-12-18 08:22:41 +08001041 ASSERT(ip->i_d.di_nlink > 0 || (VFS_I(ip)->i_state & I_LINKABLE));
Dave Chinnere546cb72013-08-12 20:49:47 +10001042 ip->i_d.di_nlink++;
1043 inc_nlink(VFS_I(ip));
Dave Chinnere546cb72013-08-12 20:49:47 +10001044 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1045 return 0;
1046}
1047
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001048int
1049xfs_create(
1050 xfs_inode_t *dp,
1051 struct xfs_name *name,
1052 umode_t mode,
1053 xfs_dev_t rdev,
1054 xfs_inode_t **ipp)
1055{
1056 int is_dir = S_ISDIR(mode);
1057 struct xfs_mount *mp = dp->i_mount;
1058 struct xfs_inode *ip = NULL;
1059 struct xfs_trans *tp = NULL;
1060 int error;
1061 xfs_bmap_free_t free_list;
1062 xfs_fsblock_t first_block;
1063 bool unlock_dp_on_error = false;
1064 uint cancel_flags;
1065 int committed;
1066 prid_t prid;
1067 struct xfs_dquot *udqp = NULL;
1068 struct xfs_dquot *gdqp = NULL;
1069 struct xfs_dquot *pdqp = NULL;
Brian Foster062647a2014-11-28 14:00:16 +11001070 struct xfs_trans_res *tres;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001071 uint resblks;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001072
1073 trace_xfs_create(dp, name);
1074
1075 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner24513372014-06-25 14:58:08 +10001076 return -EIO;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001077
Zhi Yong Wu163467d2013-12-18 08:22:39 +08001078 prid = xfs_get_initial_prid(dp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001079
1080 /*
1081 * Make sure that we have allocated dquot(s) on disk.
1082 */
Dwight Engen7aab1b22013-08-15 14:08:01 -04001083 error = xfs_qm_vop_dqalloc(dp, xfs_kuid_to_uid(current_fsuid()),
1084 xfs_kgid_to_gid(current_fsgid()), prid,
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001085 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT,
1086 &udqp, &gdqp, &pdqp);
1087 if (error)
1088 return error;
1089
1090 if (is_dir) {
1091 rdev = 0;
1092 resblks = XFS_MKDIR_SPACE_RES(mp, name->len);
Brian Foster062647a2014-11-28 14:00:16 +11001093 tres = &M_RES(mp)->tr_mkdir;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001094 tp = xfs_trans_alloc(mp, XFS_TRANS_MKDIR);
1095 } else {
1096 resblks = XFS_CREATE_SPACE_RES(mp, name->len);
Brian Foster062647a2014-11-28 14:00:16 +11001097 tres = &M_RES(mp)->tr_create;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001098 tp = xfs_trans_alloc(mp, XFS_TRANS_CREATE);
1099 }
1100
1101 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
1102
1103 /*
1104 * Initially assume that the file does not exist and
1105 * reserve the resources for that case. If that is not
1106 * the case we'll drop the one we have and get a more
1107 * appropriate transaction later.
1108 */
Brian Foster062647a2014-11-28 14:00:16 +11001109 error = xfs_trans_reserve(tp, tres, resblks, 0);
Dave Chinner24513372014-06-25 14:58:08 +10001110 if (error == -ENOSPC) {
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001111 /* flush outstanding delalloc blocks and retry */
1112 xfs_flush_inodes(mp);
Brian Foster062647a2014-11-28 14:00:16 +11001113 error = xfs_trans_reserve(tp, tres, resblks, 0);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001114 }
Dave Chinner24513372014-06-25 14:58:08 +10001115 if (error == -ENOSPC) {
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001116 /* No space at all so try a "no-allocation" reservation */
1117 resblks = 0;
Brian Foster062647a2014-11-28 14:00:16 +11001118 error = xfs_trans_reserve(tp, tres, 0, 0);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001119 }
1120 if (error) {
1121 cancel_flags = 0;
1122 goto out_trans_cancel;
1123 }
1124
1125 xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
1126 unlock_dp_on_error = true;
1127
1128 xfs_bmap_init(&free_list, &first_block);
1129
1130 /*
1131 * Reserve disk quota and the inode.
1132 */
1133 error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp,
1134 pdqp, resblks, 1, 0);
1135 if (error)
1136 goto out_trans_cancel;
1137
Eric Sandeen94f3cad2014-09-09 11:57:52 +10001138 if (!resblks) {
1139 error = xfs_dir_canenter(tp, dp, name);
1140 if (error)
1141 goto out_trans_cancel;
1142 }
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001143
1144 /*
1145 * A newly created regular or special file just has one directory
1146 * entry pointing to them, but a directory also the "." entry
1147 * pointing to itself.
1148 */
1149 error = xfs_dir_ialloc(&tp, dp, mode, is_dir ? 2 : 1, rdev,
1150 prid, resblks > 0, &ip, &committed);
1151 if (error) {
Dave Chinner24513372014-06-25 14:58:08 +10001152 if (error == -ENOSPC)
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001153 goto out_trans_cancel;
1154 goto out_trans_abort;
1155 }
1156
1157 /*
1158 * Now we join the directory inode to the transaction. We do not do it
1159 * earlier because xfs_dir_ialloc might commit the previous transaction
1160 * (and release all the locks). An error from here on will result in
1161 * the transaction cancel unlocking dp so don't do it explicitly in the
1162 * error path.
1163 */
1164 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
1165 unlock_dp_on_error = false;
1166
1167 error = xfs_dir_createname(tp, dp, name, ip->i_ino,
1168 &first_block, &free_list, resblks ?
1169 resblks - XFS_IALLOC_SPACE_RES(mp) : 0);
1170 if (error) {
Dave Chinner24513372014-06-25 14:58:08 +10001171 ASSERT(error != -ENOSPC);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001172 goto out_trans_abort;
1173 }
1174 xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
1175 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
1176
1177 if (is_dir) {
1178 error = xfs_dir_init(tp, ip, dp);
1179 if (error)
1180 goto out_bmap_cancel;
1181
1182 error = xfs_bumplink(tp, dp);
1183 if (error)
1184 goto out_bmap_cancel;
1185 }
1186
1187 /*
1188 * If this is a synchronous mount, make sure that the
1189 * create transaction goes to disk before returning to
1190 * the user.
1191 */
1192 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
1193 xfs_trans_set_sync(tp);
1194
1195 /*
1196 * Attach the dquot(s) to the inodes and modify them incore.
1197 * These ids of the inode couldn't have changed since the new
1198 * inode has been locked ever since it was created.
1199 */
1200 xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp, pdqp);
1201
1202 error = xfs_bmap_finish(&tp, &free_list, &committed);
1203 if (error)
1204 goto out_bmap_cancel;
1205
1206 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1207 if (error)
1208 goto out_release_inode;
1209
1210 xfs_qm_dqrele(udqp);
1211 xfs_qm_dqrele(gdqp);
1212 xfs_qm_dqrele(pdqp);
1213
1214 *ipp = ip;
1215 return 0;
1216
1217 out_bmap_cancel:
1218 xfs_bmap_cancel(&free_list);
1219 out_trans_abort:
1220 cancel_flags |= XFS_TRANS_ABORT;
1221 out_trans_cancel:
1222 xfs_trans_cancel(tp, cancel_flags);
1223 out_release_inode:
1224 /*
Dave Chinner58c90472015-02-23 22:38:08 +11001225 * Wait until after the current transaction is aborted to finish the
1226 * setup of the inode and release the inode. This prevents recursive
1227 * transactions and deadlocks from xfs_inactive.
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001228 */
Dave Chinner58c90472015-02-23 22:38:08 +11001229 if (ip) {
1230 xfs_finish_inode_setup(ip);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001231 IRELE(ip);
Dave Chinner58c90472015-02-23 22:38:08 +11001232 }
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001233
1234 xfs_qm_dqrele(udqp);
1235 xfs_qm_dqrele(gdqp);
1236 xfs_qm_dqrele(pdqp);
1237
1238 if (unlock_dp_on_error)
1239 xfs_iunlock(dp, XFS_ILOCK_EXCL);
1240 return error;
1241}
1242
1243int
Zhi Yong Wu99b64362013-12-18 08:22:40 +08001244xfs_create_tmpfile(
1245 struct xfs_inode *dp,
1246 struct dentry *dentry,
Brian Foster330033d2014-04-17 08:15:30 +10001247 umode_t mode,
1248 struct xfs_inode **ipp)
Zhi Yong Wu99b64362013-12-18 08:22:40 +08001249{
1250 struct xfs_mount *mp = dp->i_mount;
1251 struct xfs_inode *ip = NULL;
1252 struct xfs_trans *tp = NULL;
1253 int error;
1254 uint cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
1255 prid_t prid;
1256 struct xfs_dquot *udqp = NULL;
1257 struct xfs_dquot *gdqp = NULL;
1258 struct xfs_dquot *pdqp = NULL;
1259 struct xfs_trans_res *tres;
1260 uint resblks;
1261
1262 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner24513372014-06-25 14:58:08 +10001263 return -EIO;
Zhi Yong Wu99b64362013-12-18 08:22:40 +08001264
1265 prid = xfs_get_initial_prid(dp);
1266
1267 /*
1268 * Make sure that we have allocated dquot(s) on disk.
1269 */
1270 error = xfs_qm_vop_dqalloc(dp, xfs_kuid_to_uid(current_fsuid()),
1271 xfs_kgid_to_gid(current_fsgid()), prid,
1272 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT,
1273 &udqp, &gdqp, &pdqp);
1274 if (error)
1275 return error;
1276
1277 resblks = XFS_IALLOC_SPACE_RES(mp);
1278 tp = xfs_trans_alloc(mp, XFS_TRANS_CREATE_TMPFILE);
1279
1280 tres = &M_RES(mp)->tr_create_tmpfile;
1281 error = xfs_trans_reserve(tp, tres, resblks, 0);
Dave Chinner24513372014-06-25 14:58:08 +10001282 if (error == -ENOSPC) {
Zhi Yong Wu99b64362013-12-18 08:22:40 +08001283 /* No space at all so try a "no-allocation" reservation */
1284 resblks = 0;
1285 error = xfs_trans_reserve(tp, tres, 0, 0);
1286 }
1287 if (error) {
1288 cancel_flags = 0;
1289 goto out_trans_cancel;
1290 }
1291
1292 error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp,
1293 pdqp, resblks, 1, 0);
1294 if (error)
1295 goto out_trans_cancel;
1296
1297 error = xfs_dir_ialloc(&tp, dp, mode, 1, 0,
1298 prid, resblks > 0, &ip, NULL);
1299 if (error) {
Dave Chinner24513372014-06-25 14:58:08 +10001300 if (error == -ENOSPC)
Zhi Yong Wu99b64362013-12-18 08:22:40 +08001301 goto out_trans_cancel;
1302 goto out_trans_abort;
1303 }
1304
1305 if (mp->m_flags & XFS_MOUNT_WSYNC)
1306 xfs_trans_set_sync(tp);
1307
1308 /*
1309 * Attach the dquot(s) to the inodes and modify them incore.
1310 * These ids of the inode couldn't have changed since the new
1311 * inode has been locked ever since it was created.
1312 */
1313 xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp, pdqp);
1314
1315 ip->i_d.di_nlink--;
Zhi Yong Wu99b64362013-12-18 08:22:40 +08001316 error = xfs_iunlink(tp, ip);
1317 if (error)
1318 goto out_trans_abort;
1319
1320 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1321 if (error)
1322 goto out_release_inode;
1323
1324 xfs_qm_dqrele(udqp);
1325 xfs_qm_dqrele(gdqp);
1326 xfs_qm_dqrele(pdqp);
1327
Brian Foster330033d2014-04-17 08:15:30 +10001328 *ipp = ip;
Zhi Yong Wu99b64362013-12-18 08:22:40 +08001329 return 0;
1330
1331 out_trans_abort:
1332 cancel_flags |= XFS_TRANS_ABORT;
1333 out_trans_cancel:
1334 xfs_trans_cancel(tp, cancel_flags);
1335 out_release_inode:
1336 /*
Dave Chinner58c90472015-02-23 22:38:08 +11001337 * Wait until after the current transaction is aborted to finish the
1338 * setup of the inode and release the inode. This prevents recursive
1339 * transactions and deadlocks from xfs_inactive.
Zhi Yong Wu99b64362013-12-18 08:22:40 +08001340 */
Dave Chinner58c90472015-02-23 22:38:08 +11001341 if (ip) {
1342 xfs_finish_inode_setup(ip);
Zhi Yong Wu99b64362013-12-18 08:22:40 +08001343 IRELE(ip);
Dave Chinner58c90472015-02-23 22:38:08 +11001344 }
Zhi Yong Wu99b64362013-12-18 08:22:40 +08001345
1346 xfs_qm_dqrele(udqp);
1347 xfs_qm_dqrele(gdqp);
1348 xfs_qm_dqrele(pdqp);
1349
1350 return error;
1351}
1352
1353int
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001354xfs_link(
1355 xfs_inode_t *tdp,
1356 xfs_inode_t *sip,
1357 struct xfs_name *target_name)
1358{
1359 xfs_mount_t *mp = tdp->i_mount;
1360 xfs_trans_t *tp;
1361 int error;
1362 xfs_bmap_free_t free_list;
1363 xfs_fsblock_t first_block;
1364 int cancel_flags;
1365 int committed;
1366 int resblks;
1367
1368 trace_xfs_link(tdp, target_name);
1369
1370 ASSERT(!S_ISDIR(sip->i_d.di_mode));
1371
1372 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner24513372014-06-25 14:58:08 +10001373 return -EIO;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001374
1375 error = xfs_qm_dqattach(sip, 0);
1376 if (error)
1377 goto std_return;
1378
1379 error = xfs_qm_dqattach(tdp, 0);
1380 if (error)
1381 goto std_return;
1382
1383 tp = xfs_trans_alloc(mp, XFS_TRANS_LINK);
1384 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
1385 resblks = XFS_LINK_SPACE_RES(mp, target_name->len);
Jie Liu3d3c8b52013-08-12 20:49:59 +10001386 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_link, resblks, 0);
Dave Chinner24513372014-06-25 14:58:08 +10001387 if (error == -ENOSPC) {
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001388 resblks = 0;
Jie Liu3d3c8b52013-08-12 20:49:59 +10001389 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_link, 0, 0);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001390 }
1391 if (error) {
1392 cancel_flags = 0;
1393 goto error_return;
1394 }
1395
1396 xfs_lock_two_inodes(sip, tdp, XFS_ILOCK_EXCL);
1397
1398 xfs_trans_ijoin(tp, sip, XFS_ILOCK_EXCL);
1399 xfs_trans_ijoin(tp, tdp, XFS_ILOCK_EXCL);
1400
1401 /*
1402 * If we are using project inheritance, we only allow hard link
1403 * creation in our tree when the project IDs are the same; else
1404 * the tree quota mechanism could be circumvented.
1405 */
1406 if (unlikely((tdp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
1407 (xfs_get_projid(tdp) != xfs_get_projid(sip)))) {
Dave Chinner24513372014-06-25 14:58:08 +10001408 error = -EXDEV;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001409 goto error_return;
1410 }
1411
Eric Sandeen94f3cad2014-09-09 11:57:52 +10001412 if (!resblks) {
1413 error = xfs_dir_canenter(tp, tdp, target_name);
1414 if (error)
1415 goto error_return;
1416 }
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001417
1418 xfs_bmap_init(&free_list, &first_block);
1419
Zhi Yong Wuab297432013-12-18 08:22:41 +08001420 if (sip->i_d.di_nlink == 0) {
1421 error = xfs_iunlink_remove(tp, sip);
1422 if (error)
1423 goto abort_return;
1424 }
1425
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001426 error = xfs_dir_createname(tp, tdp, target_name, sip->i_ino,
1427 &first_block, &free_list, resblks);
1428 if (error)
1429 goto abort_return;
1430 xfs_trans_ichgtime(tp, tdp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
1431 xfs_trans_log_inode(tp, tdp, XFS_ILOG_CORE);
1432
1433 error = xfs_bumplink(tp, sip);
1434 if (error)
1435 goto abort_return;
1436
1437 /*
1438 * If this is a synchronous mount, make sure that the
1439 * link transaction goes to disk before returning to
1440 * the user.
1441 */
1442 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
1443 xfs_trans_set_sync(tp);
1444 }
1445
1446 error = xfs_bmap_finish (&tp, &free_list, &committed);
1447 if (error) {
1448 xfs_bmap_cancel(&free_list);
1449 goto abort_return;
1450 }
1451
1452 return xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1453
1454 abort_return:
1455 cancel_flags |= XFS_TRANS_ABORT;
1456 error_return:
1457 xfs_trans_cancel(tp, cancel_flags);
1458 std_return:
1459 return error;
1460}
1461
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462/*
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001463 * Free up the underlying blocks past new_size. The new size must be smaller
1464 * than the current size. This routine can be used both for the attribute and
1465 * data fork, and does not modify the inode size, which is left to the caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 *
David Chinnerf6485052008-04-17 16:50:04 +10001467 * The transaction passed to this routine must have made a permanent log
1468 * reservation of at least XFS_ITRUNCATE_LOG_RES. This routine may commit the
1469 * given transaction and start new ones, so make sure everything involved in
1470 * the transaction is tidy before calling here. Some transaction will be
1471 * returned to the caller to be committed. The incoming transaction must
1472 * already include the inode, and both inode locks must be held exclusively.
1473 * The inode must also be "held" within the transaction. On return the inode
1474 * will be "held" within the returned transaction. This routine does NOT
1475 * require any disk space to be reserved for it within the transaction.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 *
David Chinnerf6485052008-04-17 16:50:04 +10001477 * If we get an error, we must return with the inode locked and linked into the
1478 * current transaction. This keeps things simple for the higher level code,
1479 * because it always knows that the inode is locked and held in the transaction
1480 * that returns to it whether errors occur or not. We don't mark the inode
1481 * dirty on error so that transactions can be easily aborted if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 */
1483int
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001484xfs_itruncate_extents(
1485 struct xfs_trans **tpp,
1486 struct xfs_inode *ip,
1487 int whichfork,
1488 xfs_fsize_t new_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489{
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001490 struct xfs_mount *mp = ip->i_mount;
1491 struct xfs_trans *tp = *tpp;
1492 struct xfs_trans *ntp;
1493 xfs_bmap_free_t free_list;
1494 xfs_fsblock_t first_block;
1495 xfs_fileoff_t first_unmap_block;
1496 xfs_fileoff_t last_block;
1497 xfs_filblks_t unmap_len;
1498 int committed;
1499 int error = 0;
1500 int done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
Christoph Hellwig0b561852012-07-04 11:13:31 -04001502 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
1503 ASSERT(!atomic_read(&VFS_I(ip)->i_count) ||
1504 xfs_isilocked(ip, XFS_IOLOCK_EXCL));
Christoph Hellwigce7ae1512011-12-18 20:00:11 +00001505 ASSERT(new_size <= XFS_ISIZE(ip));
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001506 ASSERT(tp->t_flags & XFS_TRANS_PERM_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 ASSERT(ip->i_itemp != NULL);
Christoph Hellwig898621d2010-06-24 11:36:58 +10001508 ASSERT(ip->i_itemp->ili_lock_flags == 0);
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001509 ASSERT(!XFS_NOT_DQATTACHED(mp, ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510
Christoph Hellwig673e8e52011-12-18 20:00:04 +00001511 trace_xfs_itruncate_extents_start(ip, new_size);
1512
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 /*
1514 * Since it is possible for space to become allocated beyond
1515 * the end of the file (in a crash where the space is allocated
1516 * but the inode size is not yet updated), simply remove any
1517 * blocks which show up between the new EOF and the maximum
1518 * possible file size. If the first block to be removed is
1519 * beyond the maximum file size (ie it is the same as last_block),
1520 * then there is nothing to do.
1521 */
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001522 first_unmap_block = XFS_B_TO_FSB(mp, (xfs_ufsize_t)new_size);
Dave Chinner32972382012-06-08 15:44:54 +10001523 last_block = XFS_B_TO_FSB(mp, mp->m_super->s_maxbytes);
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001524 if (first_unmap_block == last_block)
1525 return 0;
1526
1527 ASSERT(first_unmap_block < last_block);
1528 unmap_len = last_block - first_unmap_block + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 while (!done) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06001530 xfs_bmap_init(&free_list, &first_block);
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001531 error = xfs_bunmapi(tp, ip,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001532 first_unmap_block, unmap_len,
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001533 xfs_bmapi_aflag(whichfork),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 XFS_ITRUNC_MAX_EXTENTS,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001535 &first_block, &free_list,
Christoph Hellwigb4e91812010-06-23 18:11:15 +10001536 &done);
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001537 if (error)
1538 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
1540 /*
1541 * Duplicate the transaction that has the permanent
1542 * reservation and commit the old transaction.
1543 */
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001544 error = xfs_bmap_finish(&tp, &free_list, &committed);
Christoph Hellwig898621d2010-06-24 11:36:58 +10001545 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +00001546 xfs_trans_ijoin(tp, ip, 0);
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001547 if (error)
1548 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
1550 if (committed) {
1551 /*
David Chinnerf6485052008-04-17 16:50:04 +10001552 * Mark the inode dirty so it will be logged and
David Chinnere5720ee2008-04-10 12:21:18 +10001553 * moved forward in the log as part of every commit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 */
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001555 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 }
David Chinnerf6485052008-04-17 16:50:04 +10001557
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001558 ntp = xfs_trans_dup(tp);
1559 error = xfs_trans_commit(tp, 0);
1560 tp = ntp;
David Chinnere5720ee2008-04-10 12:21:18 +10001561
Christoph Hellwigddc34152011-09-19 15:00:54 +00001562 xfs_trans_ijoin(tp, ip, 0);
David Chinnerf6485052008-04-17 16:50:04 +10001563
Dave Chinnercc09c0d2008-11-17 17:37:10 +11001564 if (error)
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001565 goto out;
1566
Dave Chinnercc09c0d2008-11-17 17:37:10 +11001567 /*
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001568 * Transaction commit worked ok so we can drop the extra ticket
Dave Chinnercc09c0d2008-11-17 17:37:10 +11001569 * reference that we gained in xfs_trans_dup()
1570 */
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001571 xfs_log_ticket_put(tp->t_ticket);
Jie Liu3d3c8b52013-08-12 20:49:59 +10001572 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_itruncate, 0, 0);
David Chinnerf6485052008-04-17 16:50:04 +10001573 if (error)
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001574 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 }
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001576
Christoph Hellwig673e8e52011-12-18 20:00:04 +00001577 /*
1578 * Always re-log the inode so that our permanent transaction can keep
1579 * on rolling it forward in the log.
1580 */
1581 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1582
1583 trace_xfs_itruncate_extents_end(ip, new_size);
1584
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001585out:
1586 *tpp = tp;
1587 return error;
1588out_bmap_cancel:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 /*
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001590 * If the bunmapi call encounters an error, return to the caller where
1591 * the transaction can be properly aborted. We just need to make sure
1592 * we're not holding any resources that we were not when we came in.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 */
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001594 xfs_bmap_cancel(&free_list);
1595 goto out;
1596}
1597
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001598int
1599xfs_release(
1600 xfs_inode_t *ip)
1601{
1602 xfs_mount_t *mp = ip->i_mount;
1603 int error;
1604
1605 if (!S_ISREG(ip->i_d.di_mode) || (ip->i_d.di_mode == 0))
1606 return 0;
1607
1608 /* If this is a read-only mount, don't do this (would generate I/O) */
1609 if (mp->m_flags & XFS_MOUNT_RDONLY)
1610 return 0;
1611
1612 if (!XFS_FORCED_SHUTDOWN(mp)) {
1613 int truncated;
1614
1615 /*
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001616 * If we previously truncated this file and removed old data
1617 * in the process, we want to initiate "early" writeout on
1618 * the last close. This is an attempt to combat the notorious
1619 * NULL files problem which is particularly noticeable from a
1620 * truncate down, buffered (re-)write (delalloc), followed by
1621 * a crash. What we are effectively doing here is
1622 * significantly reducing the time window where we'd otherwise
1623 * be exposed to that problem.
1624 */
1625 truncated = xfs_iflags_test_and_clear(ip, XFS_ITRUNCATED);
1626 if (truncated) {
1627 xfs_iflags_clear(ip, XFS_IDIRTY_RELEASE);
Dave Chinnereac152b2014-08-04 13:22:49 +10001628 if (ip->i_delayed_blks > 0) {
Dave Chinner24513372014-06-25 14:58:08 +10001629 error = filemap_flush(VFS_I(ip)->i_mapping);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001630 if (error)
1631 return error;
1632 }
1633 }
1634 }
1635
1636 if (ip->i_d.di_nlink == 0)
1637 return 0;
1638
1639 if (xfs_can_free_eofblocks(ip, false)) {
1640
1641 /*
1642 * If we can't get the iolock just skip truncating the blocks
1643 * past EOF because we could deadlock with the mmap_sem
1644 * otherwise. We'll get another chance to drop them once the
1645 * last reference to the inode is dropped, so we'll never leak
1646 * blocks permanently.
1647 *
1648 * Further, check if the inode is being opened, written and
1649 * closed frequently and we have delayed allocation blocks
1650 * outstanding (e.g. streaming writes from the NFS server),
1651 * truncating the blocks past EOF will cause fragmentation to
1652 * occur.
1653 *
1654 * In this case don't do the truncation, either, but we have to
1655 * be careful how we detect this case. Blocks beyond EOF show
1656 * up as i_delayed_blks even when the inode is clean, so we
1657 * need to truncate them away first before checking for a dirty
1658 * release. Hence on the first dirty close we will still remove
1659 * the speculative allocation, but after that we will leave it
1660 * in place.
1661 */
1662 if (xfs_iflags_test(ip, XFS_IDIRTY_RELEASE))
1663 return 0;
1664
1665 error = xfs_free_eofblocks(mp, ip, true);
Dave Chinner24513372014-06-25 14:58:08 +10001666 if (error && error != -EAGAIN)
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001667 return error;
1668
1669 /* delalloc blocks after truncation means it really is dirty */
1670 if (ip->i_delayed_blks)
1671 xfs_iflags_set(ip, XFS_IDIRTY_RELEASE);
1672 }
1673 return 0;
1674}
1675
1676/*
Brian Fosterf7be2d72013-09-20 11:06:10 -04001677 * xfs_inactive_truncate
1678 *
1679 * Called to perform a truncate when an inode becomes unlinked.
1680 */
1681STATIC int
1682xfs_inactive_truncate(
1683 struct xfs_inode *ip)
1684{
1685 struct xfs_mount *mp = ip->i_mount;
1686 struct xfs_trans *tp;
1687 int error;
1688
1689 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
1690 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_itruncate, 0, 0);
1691 if (error) {
1692 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1693 xfs_trans_cancel(tp, 0);
1694 return error;
1695 }
1696
1697 xfs_ilock(ip, XFS_ILOCK_EXCL);
1698 xfs_trans_ijoin(tp, ip, 0);
1699
1700 /*
1701 * Log the inode size first to prevent stale data exposure in the event
1702 * of a system crash before the truncate completes. See the related
1703 * comment in xfs_setattr_size() for details.
1704 */
1705 ip->i_d.di_size = 0;
1706 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1707
1708 error = xfs_itruncate_extents(&tp, ip, XFS_DATA_FORK, 0);
1709 if (error)
1710 goto error_trans_cancel;
1711
1712 ASSERT(ip->i_d.di_nextents == 0);
1713
1714 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1715 if (error)
1716 goto error_unlock;
1717
1718 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1719 return 0;
1720
1721error_trans_cancel:
1722 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
1723error_unlock:
1724 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1725 return error;
1726}
1727
1728/*
Brian Foster88877d22013-09-20 11:06:11 -04001729 * xfs_inactive_ifree()
1730 *
1731 * Perform the inode free when an inode is unlinked.
1732 */
1733STATIC int
1734xfs_inactive_ifree(
1735 struct xfs_inode *ip)
1736{
1737 xfs_bmap_free_t free_list;
1738 xfs_fsblock_t first_block;
1739 int committed;
1740 struct xfs_mount *mp = ip->i_mount;
1741 struct xfs_trans *tp;
1742 int error;
1743
1744 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
Brian Foster9d43b182014-04-24 16:00:52 +10001745
1746 /*
1747 * The ifree transaction might need to allocate blocks for record
1748 * insertion to the finobt. We don't want to fail here at ENOSPC, so
1749 * allow ifree to dip into the reserved block pool if necessary.
1750 *
1751 * Freeing large sets of inodes generally means freeing inode chunks,
1752 * directory and file data blocks, so this should be relatively safe.
1753 * Only under severe circumstances should it be possible to free enough
1754 * inodes to exhaust the reserve block pool via finobt expansion while
1755 * at the same time not creating free space in the filesystem.
1756 *
1757 * Send a warning if the reservation does happen to fail, as the inode
1758 * now remains allocated and sits on the unlinked list until the fs is
1759 * repaired.
1760 */
1761 tp->t_flags |= XFS_TRANS_RESERVE;
1762 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_ifree,
1763 XFS_IFREE_SPACE_RES(mp), 0);
Brian Foster88877d22013-09-20 11:06:11 -04001764 if (error) {
Dave Chinner24513372014-06-25 14:58:08 +10001765 if (error == -ENOSPC) {
Brian Foster9d43b182014-04-24 16:00:52 +10001766 xfs_warn_ratelimited(mp,
1767 "Failed to remove inode(s) from unlinked list. "
1768 "Please free space, unmount and run xfs_repair.");
1769 } else {
1770 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1771 }
Brian Foster88877d22013-09-20 11:06:11 -04001772 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES);
1773 return error;
1774 }
1775
1776 xfs_ilock(ip, XFS_ILOCK_EXCL);
1777 xfs_trans_ijoin(tp, ip, 0);
1778
1779 xfs_bmap_init(&free_list, &first_block);
1780 error = xfs_ifree(tp, ip, &free_list);
1781 if (error) {
1782 /*
1783 * If we fail to free the inode, shut down. The cancel
1784 * might do that, we need to make sure. Otherwise the
1785 * inode might be lost for a long time or forever.
1786 */
1787 if (!XFS_FORCED_SHUTDOWN(mp)) {
1788 xfs_notice(mp, "%s: xfs_ifree returned error %d",
1789 __func__, error);
1790 xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
1791 }
1792 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
1793 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1794 return error;
1795 }
1796
1797 /*
1798 * Credit the quota account(s). The inode is gone.
1799 */
1800 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_ICOUNT, -1);
1801
1802 /*
1803 * Just ignore errors at this point. There is nothing we can
1804 * do except to try to keep going. Make sure it's not a silent
1805 * error.
1806 */
1807 error = xfs_bmap_finish(&tp, &free_list, &committed);
1808 if (error)
1809 xfs_notice(mp, "%s: xfs_bmap_finish returned error %d",
1810 __func__, error);
1811 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1812 if (error)
1813 xfs_notice(mp, "%s: xfs_trans_commit returned error %d",
1814 __func__, error);
1815
1816 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1817 return 0;
1818}
1819
1820/*
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001821 * xfs_inactive
1822 *
1823 * This is called when the vnode reference count for the vnode
1824 * goes to zero. If the file has been unlinked, then it must
1825 * now be truncated. Also, we clear all of the read-ahead state
1826 * kept for the inode here since the file is now closed.
1827 */
Brian Foster74564fb2013-09-20 11:06:12 -04001828void
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001829xfs_inactive(
1830 xfs_inode_t *ip)
1831{
Jie Liu3d3c8b52013-08-12 20:49:59 +10001832 struct xfs_mount *mp;
Jie Liu3d3c8b52013-08-12 20:49:59 +10001833 int error;
1834 int truncate = 0;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001835
1836 /*
1837 * If the inode is already free, then there can be nothing
1838 * to clean up here.
1839 */
Ben Myersd9487092013-09-10 18:11:22 -05001840 if (ip->i_d.di_mode == 0) {
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001841 ASSERT(ip->i_df.if_real_bytes == 0);
1842 ASSERT(ip->i_df.if_broot_bytes == 0);
Brian Foster74564fb2013-09-20 11:06:12 -04001843 return;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001844 }
1845
1846 mp = ip->i_mount;
1847
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001848 /* If this is a read-only mount, don't do this (would generate I/O) */
1849 if (mp->m_flags & XFS_MOUNT_RDONLY)
Brian Foster74564fb2013-09-20 11:06:12 -04001850 return;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001851
1852 if (ip->i_d.di_nlink != 0) {
1853 /*
1854 * force is true because we are evicting an inode from the
1855 * cache. Post-eof blocks must be freed, lest we end up with
1856 * broken free space accounting.
1857 */
Brian Foster74564fb2013-09-20 11:06:12 -04001858 if (xfs_can_free_eofblocks(ip, true))
1859 xfs_free_eofblocks(mp, ip, false);
1860
1861 return;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001862 }
1863
1864 if (S_ISREG(ip->i_d.di_mode) &&
1865 (ip->i_d.di_size != 0 || XFS_ISIZE(ip) != 0 ||
1866 ip->i_d.di_nextents > 0 || ip->i_delayed_blks > 0))
1867 truncate = 1;
1868
1869 error = xfs_qm_dqattach(ip, 0);
1870 if (error)
Brian Foster74564fb2013-09-20 11:06:12 -04001871 return;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001872
Brian Fosterf7be2d72013-09-20 11:06:10 -04001873 if (S_ISLNK(ip->i_d.di_mode))
Brian Foster36b21dd2013-09-20 11:06:09 -04001874 error = xfs_inactive_symlink(ip);
Brian Fosterf7be2d72013-09-20 11:06:10 -04001875 else if (truncate)
1876 error = xfs_inactive_truncate(ip);
1877 if (error)
Brian Foster74564fb2013-09-20 11:06:12 -04001878 return;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001879
1880 /*
1881 * If there are attributes associated with the file then blow them away
1882 * now. The code calls a routine that recursively deconstructs the
1883 * attribute fork. We need to just commit the current transaction
1884 * because we can't use it for xfs_attr_inactive().
1885 */
1886 if (ip->i_d.di_anextents > 0) {
1887 ASSERT(ip->i_d.di_forkoff != 0);
1888
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001889 error = xfs_attr_inactive(ip);
1890 if (error)
Brian Foster74564fb2013-09-20 11:06:12 -04001891 return;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001892 }
1893
1894 if (ip->i_afp)
1895 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
1896
1897 ASSERT(ip->i_d.di_anextents == 0);
1898
1899 /*
1900 * Free the inode.
1901 */
Brian Foster88877d22013-09-20 11:06:11 -04001902 error = xfs_inactive_ifree(ip);
1903 if (error)
Brian Foster74564fb2013-09-20 11:06:12 -04001904 return;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001905
1906 /*
1907 * Release the dquots held by inode, if any.
1908 */
1909 xfs_qm_dqdetach(ip);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001910}
1911
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912/*
1913 * This is called when the inode's link count goes to 0.
1914 * We place the on-disk inode on a list in the AGI. It
1915 * will be pulled from this list when the inode is freed.
1916 */
1917int
1918xfs_iunlink(
1919 xfs_trans_t *tp,
1920 xfs_inode_t *ip)
1921{
1922 xfs_mount_t *mp;
1923 xfs_agi_t *agi;
1924 xfs_dinode_t *dip;
1925 xfs_buf_t *agibp;
1926 xfs_buf_t *ibp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 xfs_agino_t agino;
1928 short bucket_index;
1929 int offset;
1930 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
1932 ASSERT(ip->i_d.di_nlink == 0);
1933 ASSERT(ip->i_d.di_mode != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
1935 mp = tp->t_mountp;
1936
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 /*
1938 * Get the agi buffer first. It ensures lock ordering
1939 * on the list.
1940 */
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11001941 error = xfs_read_agi(mp, tp, XFS_INO_TO_AGNO(mp, ip->i_ino), &agibp);
Vlad Apostolov859d7182007-10-11 17:44:18 +10001942 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 agi = XFS_BUF_TO_AGI(agibp);
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11001945
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 /*
1947 * Get the index into the agi hash table for the
1948 * list this inode will go on.
1949 */
1950 agino = XFS_INO_TO_AGINO(mp, ip->i_ino);
1951 ASSERT(agino != 0);
1952 bucket_index = agino % XFS_AGI_UNLINKED_BUCKETS;
1953 ASSERT(agi->agi_unlinked[bucket_index]);
Christoph Hellwig16259e72005-11-02 15:11:25 +11001954 ASSERT(be32_to_cpu(agi->agi_unlinked[bucket_index]) != agino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001956 if (agi->agi_unlinked[bucket_index] != cpu_to_be32(NULLAGINO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 /*
1958 * There is already another inode in the bucket we need
1959 * to add ourselves to. Add us at the front of the list.
1960 * Here we put the head pointer into our next pointer,
1961 * and then we fall through to point the head at us.
1962 */
Christoph Hellwig475ee412012-07-03 12:21:22 -04001963 error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &dip, &ibp,
1964 0, 0);
Vlad Apostolovc319b582007-11-23 16:27:51 +11001965 if (error)
1966 return error;
1967
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001968 ASSERT(dip->di_next_unlinked == cpu_to_be32(NULLAGINO));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 dip->di_next_unlinked = agi->agi_unlinked[bucket_index];
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +11001970 offset = ip->i_imap.im_boffset +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 offsetof(xfs_dinode_t, di_next_unlinked);
Dave Chinner0a32c262013-06-05 12:09:08 +10001972
1973 /* need to recalc the inode CRC if appropriate */
1974 xfs_dinode_calc_crc(mp, dip);
1975
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 xfs_trans_inode_buf(tp, ibp);
1977 xfs_trans_log_buf(tp, ibp, offset,
1978 (offset + sizeof(xfs_agino_t) - 1));
1979 xfs_inobp_check(mp, ibp);
1980 }
1981
1982 /*
1983 * Point the bucket head pointer at the inode being inserted.
1984 */
1985 ASSERT(agino != 0);
Christoph Hellwig16259e72005-11-02 15:11:25 +11001986 agi->agi_unlinked[bucket_index] = cpu_to_be32(agino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 offset = offsetof(xfs_agi_t, agi_unlinked) +
1988 (sizeof(xfs_agino_t) * bucket_index);
Dave Chinnerf19b8722015-01-22 09:29:40 +11001989 xfs_trans_buf_set_type(tp, agibp, XFS_BLFT_AGI_BUF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 xfs_trans_log_buf(tp, agibp, offset,
1991 (offset + sizeof(xfs_agino_t) - 1));
1992 return 0;
1993}
1994
1995/*
1996 * Pull the on-disk inode from the AGI unlinked list.
1997 */
1998STATIC int
1999xfs_iunlink_remove(
2000 xfs_trans_t *tp,
2001 xfs_inode_t *ip)
2002{
2003 xfs_ino_t next_ino;
2004 xfs_mount_t *mp;
2005 xfs_agi_t *agi;
2006 xfs_dinode_t *dip;
2007 xfs_buf_t *agibp;
2008 xfs_buf_t *ibp;
2009 xfs_agnumber_t agno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 xfs_agino_t agino;
2011 xfs_agino_t next_agino;
2012 xfs_buf_t *last_ibp;
Nathan Scott6fdf8cc2006-06-28 10:13:52 +10002013 xfs_dinode_t *last_dip = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 short bucket_index;
Nathan Scott6fdf8cc2006-06-28 10:13:52 +10002015 int offset, last_offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 agno = XFS_INO_TO_AGNO(mp, ip->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
2021 /*
2022 * Get the agi buffer first. It ensures lock ordering
2023 * on the list.
2024 */
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11002025 error = xfs_read_agi(mp, tp, agno, &agibp);
2026 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 return error;
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11002028
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 agi = XFS_BUF_TO_AGI(agibp);
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11002030
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 /*
2032 * Get the index into the agi hash table for the
2033 * list this inode will go on.
2034 */
2035 agino = XFS_INO_TO_AGINO(mp, ip->i_ino);
2036 ASSERT(agino != 0);
2037 bucket_index = agino % XFS_AGI_UNLINKED_BUCKETS;
Christoph Hellwig69ef9212011-07-08 14:36:05 +02002038 ASSERT(agi->agi_unlinked[bucket_index] != cpu_to_be32(NULLAGINO));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 ASSERT(agi->agi_unlinked[bucket_index]);
2040
Christoph Hellwig16259e72005-11-02 15:11:25 +11002041 if (be32_to_cpu(agi->agi_unlinked[bucket_index]) == agino) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 /*
Christoph Hellwig475ee412012-07-03 12:21:22 -04002043 * We're at the head of the list. Get the inode's on-disk
2044 * buffer to see if there is anyone after us on the list.
2045 * Only modify our next pointer if it is not already NULLAGINO.
2046 * This saves us the overhead of dealing with the buffer when
2047 * there is no need to change it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 */
Christoph Hellwig475ee412012-07-03 12:21:22 -04002049 error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &dip, &ibp,
2050 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 if (error) {
Christoph Hellwig475ee412012-07-03 12:21:22 -04002052 xfs_warn(mp, "%s: xfs_imap_to_bp returned error %d.",
Dave Chinner0b932cc2011-03-07 10:08:35 +11002053 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 return error;
2055 }
Christoph Hellwig347d1c02007-08-28 13:57:51 +10002056 next_agino = be32_to_cpu(dip->di_next_unlinked);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 ASSERT(next_agino != 0);
2058 if (next_agino != NULLAGINO) {
Christoph Hellwig347d1c02007-08-28 13:57:51 +10002059 dip->di_next_unlinked = cpu_to_be32(NULLAGINO);
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +11002060 offset = ip->i_imap.im_boffset +
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 offsetof(xfs_dinode_t, di_next_unlinked);
Dave Chinner0a32c262013-06-05 12:09:08 +10002062
2063 /* need to recalc the inode CRC if appropriate */
2064 xfs_dinode_calc_crc(mp, dip);
2065
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 xfs_trans_inode_buf(tp, ibp);
2067 xfs_trans_log_buf(tp, ibp, offset,
2068 (offset + sizeof(xfs_agino_t) - 1));
2069 xfs_inobp_check(mp, ibp);
2070 } else {
2071 xfs_trans_brelse(tp, ibp);
2072 }
2073 /*
2074 * Point the bucket head pointer at the next inode.
2075 */
2076 ASSERT(next_agino != 0);
2077 ASSERT(next_agino != agino);
Christoph Hellwig16259e72005-11-02 15:11:25 +11002078 agi->agi_unlinked[bucket_index] = cpu_to_be32(next_agino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 offset = offsetof(xfs_agi_t, agi_unlinked) +
2080 (sizeof(xfs_agino_t) * bucket_index);
Dave Chinnerf19b8722015-01-22 09:29:40 +11002081 xfs_trans_buf_set_type(tp, agibp, XFS_BLFT_AGI_BUF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 xfs_trans_log_buf(tp, agibp, offset,
2083 (offset + sizeof(xfs_agino_t) - 1));
2084 } else {
2085 /*
2086 * We need to search the list for the inode being freed.
2087 */
Christoph Hellwig16259e72005-11-02 15:11:25 +11002088 next_agino = be32_to_cpu(agi->agi_unlinked[bucket_index]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 last_ibp = NULL;
2090 while (next_agino != agino) {
Christoph Hellwig129dbc92012-07-03 12:21:51 -04002091 struct xfs_imap imap;
2092
2093 if (last_ibp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 xfs_trans_brelse(tp, last_ibp);
Christoph Hellwig129dbc92012-07-03 12:21:51 -04002095
2096 imap.im_blkno = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 next_ino = XFS_AGINO_TO_INO(mp, agno, next_agino);
Christoph Hellwig129dbc92012-07-03 12:21:51 -04002098
2099 error = xfs_imap(mp, tp, next_ino, &imap, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11002101 xfs_warn(mp,
Christoph Hellwig129dbc92012-07-03 12:21:51 -04002102 "%s: xfs_imap returned error %d.",
2103 __func__, error);
2104 return error;
2105 }
2106
2107 error = xfs_imap_to_bp(mp, tp, &imap, &last_dip,
2108 &last_ibp, 0, 0);
2109 if (error) {
2110 xfs_warn(mp,
2111 "%s: xfs_imap_to_bp returned error %d.",
Dave Chinner0b932cc2011-03-07 10:08:35 +11002112 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 return error;
2114 }
Christoph Hellwig129dbc92012-07-03 12:21:51 -04002115
2116 last_offset = imap.im_boffset;
Christoph Hellwig347d1c02007-08-28 13:57:51 +10002117 next_agino = be32_to_cpu(last_dip->di_next_unlinked);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 ASSERT(next_agino != NULLAGINO);
2119 ASSERT(next_agino != 0);
2120 }
Christoph Hellwig475ee412012-07-03 12:21:22 -04002121
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 /*
Christoph Hellwig475ee412012-07-03 12:21:22 -04002123 * Now last_ibp points to the buffer previous to us on the
2124 * unlinked list. Pull us from the list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 */
Christoph Hellwig475ee412012-07-03 12:21:22 -04002126 error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &dip, &ibp,
2127 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 if (error) {
Christoph Hellwig475ee412012-07-03 12:21:22 -04002129 xfs_warn(mp, "%s: xfs_imap_to_bp(2) returned error %d.",
Dave Chinner0b932cc2011-03-07 10:08:35 +11002130 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 return error;
2132 }
Christoph Hellwig347d1c02007-08-28 13:57:51 +10002133 next_agino = be32_to_cpu(dip->di_next_unlinked);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 ASSERT(next_agino != 0);
2135 ASSERT(next_agino != agino);
2136 if (next_agino != NULLAGINO) {
Christoph Hellwig347d1c02007-08-28 13:57:51 +10002137 dip->di_next_unlinked = cpu_to_be32(NULLAGINO);
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +11002138 offset = ip->i_imap.im_boffset +
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 offsetof(xfs_dinode_t, di_next_unlinked);
Dave Chinner0a32c262013-06-05 12:09:08 +10002140
2141 /* need to recalc the inode CRC if appropriate */
2142 xfs_dinode_calc_crc(mp, dip);
2143
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 xfs_trans_inode_buf(tp, ibp);
2145 xfs_trans_log_buf(tp, ibp, offset,
2146 (offset + sizeof(xfs_agino_t) - 1));
2147 xfs_inobp_check(mp, ibp);
2148 } else {
2149 xfs_trans_brelse(tp, ibp);
2150 }
2151 /*
2152 * Point the previous inode on the list to the next inode.
2153 */
Christoph Hellwig347d1c02007-08-28 13:57:51 +10002154 last_dip->di_next_unlinked = cpu_to_be32(next_agino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 ASSERT(next_agino != 0);
2156 offset = last_offset + offsetof(xfs_dinode_t, di_next_unlinked);
Dave Chinner0a32c262013-06-05 12:09:08 +10002157
2158 /* need to recalc the inode CRC if appropriate */
2159 xfs_dinode_calc_crc(mp, last_dip);
2160
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 xfs_trans_inode_buf(tp, last_ibp);
2162 xfs_trans_log_buf(tp, last_ibp, offset,
2163 (offset + sizeof(xfs_agino_t) - 1));
2164 xfs_inobp_check(mp, last_ibp);
2165 }
2166 return 0;
2167}
2168
Dave Chinner5b3eed72010-08-24 11:42:41 +10002169/*
Zhi Yong Wu0b8182d2013-08-12 03:14:59 +00002170 * A big issue when freeing the inode cluster is that we _cannot_ skip any
Dave Chinner5b3eed72010-08-24 11:42:41 +10002171 * inodes that are in memory - they all must be marked stale and attached to
2172 * the cluster buffer.
2173 */
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00002174STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175xfs_ifree_cluster(
2176 xfs_inode_t *free_ip,
2177 xfs_trans_t *tp,
2178 xfs_ino_t inum)
2179{
2180 xfs_mount_t *mp = free_ip->i_mount;
2181 int blks_per_cluster;
Jie Liu982e9392013-12-13 15:51:49 +11002182 int inodes_per_cluster;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 int nbufs;
Dave Chinner5b257b42010-06-03 16:22:29 +10002184 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 xfs_daddr_t blkno;
2186 xfs_buf_t *bp;
Dave Chinner5b257b42010-06-03 16:22:29 +10002187 xfs_inode_t *ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 xfs_inode_log_item_t *iip;
2189 xfs_log_item_t *lip;
Dave Chinner5017e972010-01-11 11:47:40 +00002190 struct xfs_perag *pag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191
Dave Chinner5017e972010-01-11 11:47:40 +00002192 pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, inum));
Jie Liu982e9392013-12-13 15:51:49 +11002193 blks_per_cluster = xfs_icluster_size_fsb(mp);
2194 inodes_per_cluster = blks_per_cluster << mp->m_sb.sb_inopblog;
2195 nbufs = mp->m_ialloc_blks / blks_per_cluster;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196
Jie Liu982e9392013-12-13 15:51:49 +11002197 for (j = 0; j < nbufs; j++, inum += inodes_per_cluster) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 blkno = XFS_AGB_TO_DADDR(mp, XFS_INO_TO_AGNO(mp, inum),
2199 XFS_INO_TO_AGBNO(mp, inum));
2200
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 /*
Dave Chinner5b257b42010-06-03 16:22:29 +10002202 * We obtain and lock the backing buffer first in the process
2203 * here, as we have to ensure that any dirty inode that we
2204 * can't get the flush lock on is attached to the buffer.
2205 * If we scan the in-memory inodes first, then buffer IO can
2206 * complete before we get a lock on it, and hence we may fail
2207 * to mark all the active inodes on the buffer stale.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 */
Dave Chinner5b257b42010-06-03 16:22:29 +10002209 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, blkno,
Dave Chinnerb6aff292012-11-02 11:38:42 +11002210 mp->m_bsize * blks_per_cluster,
2211 XBF_UNMAPPED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00002213 if (!bp)
Dave Chinner24513372014-06-25 14:58:08 +10002214 return -ENOMEM;
Dave Chinnerb0f539d2012-11-14 17:53:49 +11002215
2216 /*
2217 * This buffer may not have been correctly initialised as we
2218 * didn't read it from disk. That's not important because we are
2219 * only using to mark the buffer as stale in the log, and to
2220 * attach stale cached inodes on it. That means it will never be
2221 * dispatched for IO. If it is, we want to know about it, and we
2222 * want it to fail. We can acheive this by adding a write
2223 * verifier to the buffer.
2224 */
Dave Chinner1813dd62012-11-14 17:54:40 +11002225 bp->b_ops = &xfs_inode_buf_ops;
Dave Chinnerb0f539d2012-11-14 17:53:49 +11002226
Dave Chinner5b257b42010-06-03 16:22:29 +10002227 /*
2228 * Walk the inodes already attached to the buffer and mark them
2229 * stale. These will all have the flush locks held, so an
Dave Chinner5b3eed72010-08-24 11:42:41 +10002230 * in-memory inode walk can't lock them. By marking them all
2231 * stale first, we will not attempt to lock them in the loop
2232 * below as the XFS_ISTALE flag will be set.
Dave Chinner5b257b42010-06-03 16:22:29 +10002233 */
Christoph Hellwigadadbee2011-07-13 13:43:49 +02002234 lip = bp->b_fspriv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 while (lip) {
2236 if (lip->li_type == XFS_LI_INODE) {
2237 iip = (xfs_inode_log_item_t *)lip;
2238 ASSERT(iip->ili_logged == 1);
Christoph Hellwigca30b2a2010-06-23 18:11:15 +10002239 lip->li_cb = xfs_istale_done;
David Chinner7b2e2a32008-10-30 17:39:12 +11002240 xfs_trans_ail_copy_lsn(mp->m_ail,
2241 &iip->ili_flush_lsn,
2242 &iip->ili_item.li_lsn);
David Chinnere5ffd2b2006-11-21 18:55:33 +11002243 xfs_iflags_set(iip->ili_inode, XFS_ISTALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 }
2245 lip = lip->li_bio_list;
2246 }
2247
Dave Chinner5b3eed72010-08-24 11:42:41 +10002248
Dave Chinner5b257b42010-06-03 16:22:29 +10002249 /*
2250 * For each inode in memory attempt to add it to the inode
2251 * buffer and set it up for being staled on buffer IO
2252 * completion. This is safe as we've locked out tail pushing
2253 * and flushing by locking the buffer.
2254 *
2255 * We have already marked every inode that was part of a
2256 * transaction stale above, which means there is no point in
2257 * even trying to lock them.
2258 */
Jie Liu982e9392013-12-13 15:51:49 +11002259 for (i = 0; i < inodes_per_cluster; i++) {
Dave Chinner5b3eed72010-08-24 11:42:41 +10002260retry:
Dave Chinner1a3e8f32010-12-17 17:29:43 +11002261 rcu_read_lock();
Dave Chinner5b257b42010-06-03 16:22:29 +10002262 ip = radix_tree_lookup(&pag->pag_ici_root,
2263 XFS_INO_TO_AGINO(mp, (inum + i)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264
Dave Chinner1a3e8f32010-12-17 17:29:43 +11002265 /* Inode not in memory, nothing to do */
2266 if (!ip) {
2267 rcu_read_unlock();
Dave Chinner5b257b42010-06-03 16:22:29 +10002268 continue;
2269 }
2270
Dave Chinner5b3eed72010-08-24 11:42:41 +10002271 /*
Dave Chinner1a3e8f32010-12-17 17:29:43 +11002272 * because this is an RCU protected lookup, we could
2273 * find a recently freed or even reallocated inode
2274 * during the lookup. We need to check under the
2275 * i_flags_lock for a valid inode here. Skip it if it
2276 * is not valid, the wrong inode or stale.
2277 */
2278 spin_lock(&ip->i_flags_lock);
2279 if (ip->i_ino != inum + i ||
2280 __xfs_iflags_test(ip, XFS_ISTALE)) {
2281 spin_unlock(&ip->i_flags_lock);
2282 rcu_read_unlock();
2283 continue;
2284 }
2285 spin_unlock(&ip->i_flags_lock);
2286
2287 /*
Dave Chinner5b3eed72010-08-24 11:42:41 +10002288 * Don't try to lock/unlock the current inode, but we
2289 * _cannot_ skip the other inodes that we did not find
2290 * in the list attached to the buffer and are not
2291 * already marked stale. If we can't lock it, back off
2292 * and retry.
2293 */
Dave Chinner5b257b42010-06-03 16:22:29 +10002294 if (ip != free_ip &&
2295 !xfs_ilock_nowait(ip, XFS_ILOCK_EXCL)) {
Dave Chinner1a3e8f32010-12-17 17:29:43 +11002296 rcu_read_unlock();
Dave Chinner5b3eed72010-08-24 11:42:41 +10002297 delay(1);
2298 goto retry;
Dave Chinner5b257b42010-06-03 16:22:29 +10002299 }
Dave Chinner1a3e8f32010-12-17 17:29:43 +11002300 rcu_read_unlock();
Dave Chinner5b257b42010-06-03 16:22:29 +10002301
Dave Chinner5b3eed72010-08-24 11:42:41 +10002302 xfs_iflock(ip);
Dave Chinner5b257b42010-06-03 16:22:29 +10002303 xfs_iflags_set(ip, XFS_ISTALE);
Dave Chinner5b257b42010-06-03 16:22:29 +10002304
Dave Chinner5b3eed72010-08-24 11:42:41 +10002305 /*
2306 * we don't need to attach clean inodes or those only
2307 * with unlogged changes (which we throw away, anyway).
2308 */
Dave Chinner5b257b42010-06-03 16:22:29 +10002309 iip = ip->i_itemp;
Dave Chinner5b3eed72010-08-24 11:42:41 +10002310 if (!iip || xfs_inode_clean(ip)) {
Dave Chinner5b257b42010-06-03 16:22:29 +10002311 ASSERT(ip != free_ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 xfs_ifunlock(ip);
2313 xfs_iunlock(ip, XFS_ILOCK_EXCL);
2314 continue;
2315 }
2316
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +00002317 iip->ili_last_fields = iip->ili_fields;
2318 iip->ili_fields = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 iip->ili_logged = 1;
David Chinner7b2e2a32008-10-30 17:39:12 +11002320 xfs_trans_ail_copy_lsn(mp->m_ail, &iip->ili_flush_lsn,
2321 &iip->ili_item.li_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322
Christoph Hellwigca30b2a2010-06-23 18:11:15 +10002323 xfs_buf_attach_iodone(bp, xfs_istale_done,
2324 &iip->ili_item);
Dave Chinner5b257b42010-06-03 16:22:29 +10002325
2326 if (ip != free_ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 }
2329
Dave Chinner5b3eed72010-08-24 11:42:41 +10002330 xfs_trans_stale_inode_buf(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 xfs_trans_binval(tp, bp);
2332 }
2333
Dave Chinner5017e972010-01-11 11:47:40 +00002334 xfs_perag_put(pag);
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00002335 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336}
2337
2338/*
2339 * This is called to return an inode to the inode free list.
2340 * The inode should already be truncated to 0 length and have
2341 * no pages associated with it. This routine also assumes that
2342 * the inode is already a part of the transaction.
2343 *
2344 * The on-disk copy of the inode will have been added to the list
2345 * of unlinked inodes in the AGI. We need to remove the inode from
2346 * that list atomically with respect to freeing it here.
2347 */
2348int
2349xfs_ifree(
2350 xfs_trans_t *tp,
2351 xfs_inode_t *ip,
2352 xfs_bmap_free_t *flist)
2353{
2354 int error;
2355 int delete;
2356 xfs_ino_t first_ino;
2357
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10002358 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 ASSERT(ip->i_d.di_nlink == 0);
2360 ASSERT(ip->i_d.di_nextents == 0);
2361 ASSERT(ip->i_d.di_anextents == 0);
Christoph Hellwigce7ae1512011-12-18 20:00:11 +00002362 ASSERT(ip->i_d.di_size == 0 || !S_ISREG(ip->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 ASSERT(ip->i_d.di_nblocks == 0);
2364
2365 /*
2366 * Pull the on-disk inode from the AGI unlinked list.
2367 */
2368 error = xfs_iunlink_remove(tp, ip);
Dave Chinner1baaed82013-06-27 16:04:50 +10002369 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371
2372 error = xfs_difree(tp, ip->i_ino, flist, &delete, &first_ino);
Dave Chinner1baaed82013-06-27 16:04:50 +10002373 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 return error;
Dave Chinner1baaed82013-06-27 16:04:50 +10002375
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 ip->i_d.di_mode = 0; /* mark incore inode as free */
2377 ip->i_d.di_flags = 0;
2378 ip->i_d.di_dmevmask = 0;
2379 ip->i_d.di_forkoff = 0; /* mark the attr fork not in use */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 ip->i_d.di_format = XFS_DINODE_FMT_EXTENTS;
2381 ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
2382 /*
2383 * Bump the generation count so no one will be confused
2384 * by reincarnations of this inode.
2385 */
2386 ip->i_d.di_gen++;
2387 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
2388
Dave Chinner1baaed82013-06-27 16:04:50 +10002389 if (delete)
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00002390 error = xfs_ifree_cluster(ip, tp, first_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00002392 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393}
2394
2395/*
Christoph Hellwig60ec67832010-02-17 19:43:56 +00002396 * This is called to unpin an inode. The caller must have the inode locked
2397 * in at least shared mode so that the buffer cannot be subsequently pinned
2398 * once someone is waiting for it to be unpinned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 */
Christoph Hellwig60ec67832010-02-17 19:43:56 +00002400static void
Christoph Hellwigf392e632011-12-18 20:00:10 +00002401xfs_iunpin(
Christoph Hellwig60ec67832010-02-17 19:43:56 +00002402 struct xfs_inode *ip)
David Chinnera3f74ff2008-03-06 13:43:42 +11002403{
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10002404 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
David Chinnera3f74ff2008-03-06 13:43:42 +11002405
Dave Chinner4aaf15d2010-03-08 11:24:07 +11002406 trace_xfs_inode_unpin_nowait(ip, _RET_IP_);
2407
David Chinnera3f74ff2008-03-06 13:43:42 +11002408 /* Give the log a push to start the unpinning I/O */
Christoph Hellwig60ec67832010-02-17 19:43:56 +00002409 xfs_log_force_lsn(ip->i_mount, ip->i_itemp->ili_last_lsn, 0);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00002410
David Chinnera3f74ff2008-03-06 13:43:42 +11002411}
2412
Christoph Hellwigf392e632011-12-18 20:00:10 +00002413static void
2414__xfs_iunpin_wait(
2415 struct xfs_inode *ip)
2416{
2417 wait_queue_head_t *wq = bit_waitqueue(&ip->i_flags, __XFS_IPINNED_BIT);
2418 DEFINE_WAIT_BIT(wait, &ip->i_flags, __XFS_IPINNED_BIT);
2419
2420 xfs_iunpin(ip);
2421
2422 do {
2423 prepare_to_wait(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
2424 if (xfs_ipincount(ip))
2425 io_schedule();
2426 } while (xfs_ipincount(ip));
2427 finish_wait(wq, &wait.wait);
2428}
2429
Dave Chinner777df5a2010-02-06 12:37:26 +11002430void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431xfs_iunpin_wait(
Christoph Hellwig60ec67832010-02-17 19:43:56 +00002432 struct xfs_inode *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433{
Christoph Hellwigf392e632011-12-18 20:00:10 +00002434 if (xfs_ipincount(ip))
2435 __xfs_iunpin_wait(ip);
David Chinnera3f74ff2008-03-06 13:43:42 +11002436}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437
Dave Chinner27320362013-10-29 22:11:44 +11002438/*
2439 * Removing an inode from the namespace involves removing the directory entry
2440 * and dropping the link count on the inode. Removing the directory entry can
2441 * result in locking an AGF (directory blocks were freed) and removing a link
2442 * count can result in placing the inode on an unlinked list which results in
2443 * locking an AGI.
2444 *
2445 * The big problem here is that we have an ordering constraint on AGF and AGI
2446 * locking - inode allocation locks the AGI, then can allocate a new extent for
2447 * new inodes, locking the AGF after the AGI. Similarly, freeing the inode
2448 * removes the inode from the unlinked list, requiring that we lock the AGI
2449 * first, and then freeing the inode can result in an inode chunk being freed
2450 * and hence freeing disk space requiring that we lock an AGF.
2451 *
2452 * Hence the ordering that is imposed by other parts of the code is AGI before
2453 * AGF. This means we cannot remove the directory entry before we drop the inode
2454 * reference count and put it on the unlinked list as this results in a lock
2455 * order of AGF then AGI, and this can deadlock against inode allocation and
2456 * freeing. Therefore we must drop the link counts before we remove the
2457 * directory entry.
2458 *
2459 * This is still safe from a transactional point of view - it is not until we
2460 * get to xfs_bmap_finish() that we have the possibility of multiple
2461 * transactions in this operation. Hence as long as we remove the directory
2462 * entry and drop the link count in the first transaction of the remove
2463 * operation, there are no transactional constraints on the ordering here.
2464 */
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002465int
2466xfs_remove(
2467 xfs_inode_t *dp,
2468 struct xfs_name *name,
2469 xfs_inode_t *ip)
2470{
2471 xfs_mount_t *mp = dp->i_mount;
2472 xfs_trans_t *tp = NULL;
2473 int is_dir = S_ISDIR(ip->i_d.di_mode);
2474 int error = 0;
2475 xfs_bmap_free_t free_list;
2476 xfs_fsblock_t first_block;
2477 int cancel_flags;
2478 int committed;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002479 uint resblks;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002480
2481 trace_xfs_remove(dp, name);
2482
2483 if (XFS_FORCED_SHUTDOWN(mp))
Dave Chinner24513372014-06-25 14:58:08 +10002484 return -EIO;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002485
2486 error = xfs_qm_dqattach(dp, 0);
2487 if (error)
2488 goto std_return;
2489
2490 error = xfs_qm_dqattach(ip, 0);
2491 if (error)
2492 goto std_return;
2493
Dave Chinner32296f82014-12-04 09:43:17 +11002494 if (is_dir)
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002495 tp = xfs_trans_alloc(mp, XFS_TRANS_RMDIR);
Dave Chinner32296f82014-12-04 09:43:17 +11002496 else
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002497 tp = xfs_trans_alloc(mp, XFS_TRANS_REMOVE);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002498 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
2499
2500 /*
2501 * We try to get the real space reservation first,
2502 * allowing for directory btree deletion(s) implying
2503 * possible bmap insert(s). If we can't get the space
2504 * reservation then we use 0 instead, and avoid the bmap
2505 * btree insert(s) in the directory code by, if the bmap
2506 * insert tries to happen, instead trimming the LAST
2507 * block from the directory.
2508 */
2509 resblks = XFS_REMOVE_SPACE_RES(mp);
Jie Liu3d3c8b52013-08-12 20:49:59 +10002510 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_remove, resblks, 0);
Dave Chinner24513372014-06-25 14:58:08 +10002511 if (error == -ENOSPC) {
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002512 resblks = 0;
Jie Liu3d3c8b52013-08-12 20:49:59 +10002513 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_remove, 0, 0);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002514 }
2515 if (error) {
Dave Chinner24513372014-06-25 14:58:08 +10002516 ASSERT(error != -ENOSPC);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002517 cancel_flags = 0;
2518 goto out_trans_cancel;
2519 }
2520
2521 xfs_lock_two_inodes(dp, ip, XFS_ILOCK_EXCL);
2522
2523 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
2524 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
2525
2526 /*
2527 * If we're removing a directory perform some additional validation.
2528 */
Dave Chinner27320362013-10-29 22:11:44 +11002529 cancel_flags |= XFS_TRANS_ABORT;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002530 if (is_dir) {
2531 ASSERT(ip->i_d.di_nlink >= 2);
2532 if (ip->i_d.di_nlink != 2) {
Dave Chinner24513372014-06-25 14:58:08 +10002533 error = -ENOTEMPTY;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002534 goto out_trans_cancel;
2535 }
2536 if (!xfs_dir_isempty(ip)) {
Dave Chinner24513372014-06-25 14:58:08 +10002537 error = -ENOTEMPTY;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002538 goto out_trans_cancel;
2539 }
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002540
Dave Chinner27320362013-10-29 22:11:44 +11002541 /* Drop the link from ip's "..". */
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002542 error = xfs_droplink(tp, dp);
2543 if (error)
Dave Chinner27320362013-10-29 22:11:44 +11002544 goto out_trans_cancel;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002545
Dave Chinner27320362013-10-29 22:11:44 +11002546 /* Drop the "." link from ip to self. */
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002547 error = xfs_droplink(tp, ip);
2548 if (error)
Dave Chinner27320362013-10-29 22:11:44 +11002549 goto out_trans_cancel;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002550 } else {
2551 /*
2552 * When removing a non-directory we need to log the parent
2553 * inode here. For a directory this is done implicitly
2554 * by the xfs_droplink call for the ".." entry.
2555 */
2556 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
2557 }
Dave Chinner27320362013-10-29 22:11:44 +11002558 xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002559
Dave Chinner27320362013-10-29 22:11:44 +11002560 /* Drop the link from dp to ip. */
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002561 error = xfs_droplink(tp, ip);
2562 if (error)
Dave Chinner27320362013-10-29 22:11:44 +11002563 goto out_trans_cancel;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002564
Dave Chinner27320362013-10-29 22:11:44 +11002565 xfs_bmap_init(&free_list, &first_block);
2566 error = xfs_dir_removename(tp, dp, name, ip->i_ino,
2567 &first_block, &free_list, resblks);
2568 if (error) {
Dave Chinner24513372014-06-25 14:58:08 +10002569 ASSERT(error != -ENOENT);
Dave Chinner27320362013-10-29 22:11:44 +11002570 goto out_bmap_cancel;
2571 }
2572
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002573 /*
2574 * If this is a synchronous mount, make sure that the
2575 * remove transaction goes to disk before returning to
2576 * the user.
2577 */
2578 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
2579 xfs_trans_set_sync(tp);
2580
2581 error = xfs_bmap_finish(&tp, &free_list, &committed);
2582 if (error)
2583 goto out_bmap_cancel;
2584
2585 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
2586 if (error)
2587 goto std_return;
2588
Christoph Hellwig2cd2ef62014-04-23 07:11:51 +10002589 if (is_dir && xfs_inode_is_filestream(ip))
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002590 xfs_filestream_deassociate(ip);
2591
2592 return 0;
2593
2594 out_bmap_cancel:
2595 xfs_bmap_cancel(&free_list);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002596 out_trans_cancel:
2597 xfs_trans_cancel(tp, cancel_flags);
2598 std_return:
2599 return error;
2600}
2601
Dave Chinnerf6bba202013-08-12 20:49:46 +10002602/*
2603 * Enter all inodes for a rename transaction into a sorted array.
2604 */
Dave Chinner95afcf52015-03-25 14:03:32 +11002605#define __XFS_SORT_INODES 5
Dave Chinnerf6bba202013-08-12 20:49:46 +10002606STATIC void
2607xfs_sort_for_rename(
Dave Chinner95afcf52015-03-25 14:03:32 +11002608 struct xfs_inode *dp1, /* in: old (source) directory inode */
2609 struct xfs_inode *dp2, /* in: new (target) directory inode */
2610 struct xfs_inode *ip1, /* in: inode of old entry */
2611 struct xfs_inode *ip2, /* in: inode of new entry */
2612 struct xfs_inode *wip, /* in: whiteout inode */
2613 struct xfs_inode **i_tab,/* out: sorted array of inodes */
2614 int *num_inodes) /* in/out: inodes in array */
Dave Chinnerf6bba202013-08-12 20:49:46 +10002615{
Dave Chinnerf6bba202013-08-12 20:49:46 +10002616 int i, j;
2617
Dave Chinner95afcf52015-03-25 14:03:32 +11002618 ASSERT(*num_inodes == __XFS_SORT_INODES);
2619 memset(i_tab, 0, *num_inodes * sizeof(struct xfs_inode *));
2620
Dave Chinnerf6bba202013-08-12 20:49:46 +10002621 /*
2622 * i_tab contains a list of pointers to inodes. We initialize
2623 * the table here & we'll sort it. We will then use it to
2624 * order the acquisition of the inode locks.
2625 *
2626 * Note that the table may contain duplicates. e.g., dp1 == dp2.
2627 */
Dave Chinner95afcf52015-03-25 14:03:32 +11002628 i = 0;
2629 i_tab[i++] = dp1;
2630 i_tab[i++] = dp2;
2631 i_tab[i++] = ip1;
2632 if (ip2)
2633 i_tab[i++] = ip2;
2634 if (wip)
2635 i_tab[i++] = wip;
2636 *num_inodes = i;
Dave Chinnerf6bba202013-08-12 20:49:46 +10002637
2638 /*
2639 * Sort the elements via bubble sort. (Remember, there are at
Dave Chinner95afcf52015-03-25 14:03:32 +11002640 * most 5 elements to sort, so this is adequate.)
Dave Chinnerf6bba202013-08-12 20:49:46 +10002641 */
2642 for (i = 0; i < *num_inodes; i++) {
2643 for (j = 1; j < *num_inodes; j++) {
2644 if (i_tab[j]->i_ino < i_tab[j-1]->i_ino) {
Dave Chinner95afcf52015-03-25 14:03:32 +11002645 struct xfs_inode *temp = i_tab[j];
Dave Chinnerf6bba202013-08-12 20:49:46 +10002646 i_tab[j] = i_tab[j-1];
2647 i_tab[j-1] = temp;
2648 }
2649 }
2650 }
2651}
2652
Dave Chinner310606b2015-03-25 14:06:07 +11002653static int
2654xfs_finish_rename(
2655 struct xfs_trans *tp,
2656 struct xfs_bmap_free *free_list)
2657{
2658 int committed = 0;
2659 int error;
2660
2661 /*
2662 * If this is a synchronous mount, make sure that the rename transaction
2663 * goes to disk before returning to the user.
2664 */
2665 if (tp->t_mountp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
2666 xfs_trans_set_sync(tp);
2667
2668 error = xfs_bmap_finish(&tp, free_list, &committed);
2669 if (error) {
2670 xfs_bmap_cancel(free_list);
2671 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
2672 return error;
2673 }
2674
2675 return xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
2676}
2677
Dave Chinnerf6bba202013-08-12 20:49:46 +10002678/*
Carlos Maiolinod31a1822014-12-24 08:51:42 +11002679 * xfs_cross_rename()
2680 *
2681 * responsible for handling RENAME_EXCHANGE flag in renameat2() sytemcall
2682 */
2683STATIC int
2684xfs_cross_rename(
2685 struct xfs_trans *tp,
2686 struct xfs_inode *dp1,
2687 struct xfs_name *name1,
2688 struct xfs_inode *ip1,
2689 struct xfs_inode *dp2,
2690 struct xfs_name *name2,
2691 struct xfs_inode *ip2,
2692 struct xfs_bmap_free *free_list,
2693 xfs_fsblock_t *first_block,
2694 int spaceres)
2695{
2696 int error = 0;
2697 int ip1_flags = 0;
2698 int ip2_flags = 0;
2699 int dp2_flags = 0;
2700
2701 /* Swap inode number for dirent in first parent */
2702 error = xfs_dir_replace(tp, dp1, name1,
2703 ip2->i_ino,
2704 first_block, free_list, spaceres);
2705 if (error)
Dave Chinnereeacd322015-03-25 14:08:07 +11002706 goto out_trans_abort;
Carlos Maiolinod31a1822014-12-24 08:51:42 +11002707
2708 /* Swap inode number for dirent in second parent */
2709 error = xfs_dir_replace(tp, dp2, name2,
2710 ip1->i_ino,
2711 first_block, free_list, spaceres);
2712 if (error)
Dave Chinnereeacd322015-03-25 14:08:07 +11002713 goto out_trans_abort;
Carlos Maiolinod31a1822014-12-24 08:51:42 +11002714
2715 /*
2716 * If we're renaming one or more directories across different parents,
2717 * update the respective ".." entries (and link counts) to match the new
2718 * parents.
2719 */
2720 if (dp1 != dp2) {
2721 dp2_flags = XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG;
2722
2723 if (S_ISDIR(ip2->i_d.di_mode)) {
2724 error = xfs_dir_replace(tp, ip2, &xfs_name_dotdot,
2725 dp1->i_ino, first_block,
2726 free_list, spaceres);
2727 if (error)
Dave Chinnereeacd322015-03-25 14:08:07 +11002728 goto out_trans_abort;
Carlos Maiolinod31a1822014-12-24 08:51:42 +11002729
2730 /* transfer ip2 ".." reference to dp1 */
2731 if (!S_ISDIR(ip1->i_d.di_mode)) {
2732 error = xfs_droplink(tp, dp2);
2733 if (error)
Dave Chinnereeacd322015-03-25 14:08:07 +11002734 goto out_trans_abort;
Carlos Maiolinod31a1822014-12-24 08:51:42 +11002735 error = xfs_bumplink(tp, dp1);
2736 if (error)
Dave Chinnereeacd322015-03-25 14:08:07 +11002737 goto out_trans_abort;
Carlos Maiolinod31a1822014-12-24 08:51:42 +11002738 }
2739
2740 /*
2741 * Although ip1 isn't changed here, userspace needs
2742 * to be warned about the change, so that applications
2743 * relying on it (like backup ones), will properly
2744 * notify the change
2745 */
2746 ip1_flags |= XFS_ICHGTIME_CHG;
2747 ip2_flags |= XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG;
2748 }
2749
2750 if (S_ISDIR(ip1->i_d.di_mode)) {
2751 error = xfs_dir_replace(tp, ip1, &xfs_name_dotdot,
2752 dp2->i_ino, first_block,
2753 free_list, spaceres);
2754 if (error)
Dave Chinnereeacd322015-03-25 14:08:07 +11002755 goto out_trans_abort;
Carlos Maiolinod31a1822014-12-24 08:51:42 +11002756
2757 /* transfer ip1 ".." reference to dp2 */
2758 if (!S_ISDIR(ip2->i_d.di_mode)) {
2759 error = xfs_droplink(tp, dp1);
2760 if (error)
Dave Chinnereeacd322015-03-25 14:08:07 +11002761 goto out_trans_abort;
Carlos Maiolinod31a1822014-12-24 08:51:42 +11002762 error = xfs_bumplink(tp, dp2);
2763 if (error)
Dave Chinnereeacd322015-03-25 14:08:07 +11002764 goto out_trans_abort;
Carlos Maiolinod31a1822014-12-24 08:51:42 +11002765 }
2766
2767 /*
2768 * Although ip2 isn't changed here, userspace needs
2769 * to be warned about the change, so that applications
2770 * relying on it (like backup ones), will properly
2771 * notify the change
2772 */
2773 ip1_flags |= XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG;
2774 ip2_flags |= XFS_ICHGTIME_CHG;
2775 }
2776 }
2777
2778 if (ip1_flags) {
2779 xfs_trans_ichgtime(tp, ip1, ip1_flags);
2780 xfs_trans_log_inode(tp, ip1, XFS_ILOG_CORE);
2781 }
2782 if (ip2_flags) {
2783 xfs_trans_ichgtime(tp, ip2, ip2_flags);
2784 xfs_trans_log_inode(tp, ip2, XFS_ILOG_CORE);
2785 }
2786 if (dp2_flags) {
2787 xfs_trans_ichgtime(tp, dp2, dp2_flags);
2788 xfs_trans_log_inode(tp, dp2, XFS_ILOG_CORE);
2789 }
2790 xfs_trans_ichgtime(tp, dp1, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2791 xfs_trans_log_inode(tp, dp1, XFS_ILOG_CORE);
Dave Chinnereeacd322015-03-25 14:08:07 +11002792 return xfs_finish_rename(tp, free_list);
2793
2794out_trans_abort:
2795 xfs_bmap_cancel(free_list);
2796 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
Carlos Maiolinod31a1822014-12-24 08:51:42 +11002797 return error;
2798}
2799
2800/*
Dave Chinnerf6bba202013-08-12 20:49:46 +10002801 * xfs_rename
2802 */
2803int
2804xfs_rename(
2805 xfs_inode_t *src_dp,
2806 struct xfs_name *src_name,
2807 xfs_inode_t *src_ip,
2808 xfs_inode_t *target_dp,
2809 struct xfs_name *target_name,
Carlos Maiolinod31a1822014-12-24 08:51:42 +11002810 xfs_inode_t *target_ip,
2811 unsigned int flags)
Dave Chinnerf6bba202013-08-12 20:49:46 +10002812{
2813 xfs_trans_t *tp = NULL;
2814 xfs_mount_t *mp = src_dp->i_mount;
2815 int new_parent; /* moving to a new dir */
2816 int src_is_directory; /* src_name is a directory */
2817 int error;
2818 xfs_bmap_free_t free_list;
2819 xfs_fsblock_t first_block;
Dave Chinner445883e2015-03-25 14:05:43 +11002820 int cancel_flags = 0;
Dave Chinner95afcf52015-03-25 14:03:32 +11002821 xfs_inode_t *inodes[__XFS_SORT_INODES];
2822 int num_inodes = __XFS_SORT_INODES;
Dave Chinnerf6bba202013-08-12 20:49:46 +10002823 int spaceres;
Dave Chinnerf6bba202013-08-12 20:49:46 +10002824
2825 trace_xfs_rename(src_dp, target_dp, src_name, target_name);
2826
Dave Chinnereeacd322015-03-25 14:08:07 +11002827 if ((flags & RENAME_EXCHANGE) && !target_ip)
2828 return -EINVAL;
2829
Dave Chinnerf6bba202013-08-12 20:49:46 +10002830 new_parent = (src_dp != target_dp);
2831 src_is_directory = S_ISDIR(src_ip->i_d.di_mode);
2832
Dave Chinner95afcf52015-03-25 14:03:32 +11002833 xfs_sort_for_rename(src_dp, target_dp, src_ip, target_ip, NULL,
Dave Chinnerf6bba202013-08-12 20:49:46 +10002834 inodes, &num_inodes);
2835
Dave Chinnerf6bba202013-08-12 20:49:46 +10002836 tp = xfs_trans_alloc(mp, XFS_TRANS_RENAME);
Dave Chinnerf6bba202013-08-12 20:49:46 +10002837 spaceres = XFS_RENAME_SPACE_RES(mp, target_name->len);
Jie Liu3d3c8b52013-08-12 20:49:59 +10002838 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_rename, spaceres, 0);
Dave Chinner24513372014-06-25 14:58:08 +10002839 if (error == -ENOSPC) {
Dave Chinnerf6bba202013-08-12 20:49:46 +10002840 spaceres = 0;
Jie Liu3d3c8b52013-08-12 20:49:59 +10002841 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_rename, 0, 0);
Dave Chinnerf6bba202013-08-12 20:49:46 +10002842 }
Dave Chinner445883e2015-03-25 14:05:43 +11002843 if (error)
2844 goto out_trans_cancel;
2845 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
Dave Chinnerf6bba202013-08-12 20:49:46 +10002846
2847 /*
2848 * Attach the dquots to the inodes
2849 */
2850 error = xfs_qm_vop_rename_dqattach(inodes);
Dave Chinner445883e2015-03-25 14:05:43 +11002851 if (error)
2852 goto out_trans_cancel;
Dave Chinnerf6bba202013-08-12 20:49:46 +10002853
2854 /*
2855 * Lock all the participating inodes. Depending upon whether
2856 * the target_name exists in the target directory, and
2857 * whether the target directory is the same as the source
2858 * directory, we can lock from 2 to 4 inodes.
2859 */
2860 xfs_lock_inodes(inodes, num_inodes, XFS_ILOCK_EXCL);
2861
2862 /*
2863 * Join all the inodes to the transaction. From this point on,
2864 * we can rely on either trans_commit or trans_cancel to unlock
2865 * them.
2866 */
2867 xfs_trans_ijoin(tp, src_dp, XFS_ILOCK_EXCL);
2868 if (new_parent)
2869 xfs_trans_ijoin(tp, target_dp, XFS_ILOCK_EXCL);
2870 xfs_trans_ijoin(tp, src_ip, XFS_ILOCK_EXCL);
2871 if (target_ip)
2872 xfs_trans_ijoin(tp, target_ip, XFS_ILOCK_EXCL);
2873
2874 /*
2875 * If we are using project inheritance, we only allow renames
2876 * into our tree when the project IDs are the same; else the
2877 * tree quota mechanism would be circumvented.
2878 */
2879 if (unlikely((target_dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
2880 (xfs_get_projid(target_dp) != xfs_get_projid(src_ip)))) {
Dave Chinner24513372014-06-25 14:58:08 +10002881 error = -EXDEV;
Dave Chinner445883e2015-03-25 14:05:43 +11002882 goto out_trans_cancel;
Dave Chinnerf6bba202013-08-12 20:49:46 +10002883 }
2884
Dave Chinner445883e2015-03-25 14:05:43 +11002885 xfs_bmap_init(&free_list, &first_block);
2886
Dave Chinnereeacd322015-03-25 14:08:07 +11002887 /* RENAME_EXCHANGE is unique from here on. */
2888 if (flags & RENAME_EXCHANGE)
2889 return xfs_cross_rename(tp, src_dp, src_name, src_ip,
2890 target_dp, target_name, target_ip,
2891 &free_list, &first_block, spaceres);
Carlos Maiolinod31a1822014-12-24 08:51:42 +11002892
2893 /*
Dave Chinnerf6bba202013-08-12 20:49:46 +10002894 * Set up the target.
2895 */
2896 if (target_ip == NULL) {
2897 /*
2898 * If there's no space reservation, check the entry will
2899 * fit before actually inserting it.
2900 */
Eric Sandeen94f3cad2014-09-09 11:57:52 +10002901 if (!spaceres) {
2902 error = xfs_dir_canenter(tp, target_dp, target_name);
2903 if (error)
Dave Chinner445883e2015-03-25 14:05:43 +11002904 goto out_trans_cancel;
Eric Sandeen94f3cad2014-09-09 11:57:52 +10002905 }
Dave Chinnerf6bba202013-08-12 20:49:46 +10002906 /*
2907 * If target does not exist and the rename crosses
2908 * directories, adjust the target directory link count
2909 * to account for the ".." reference from the new entry.
2910 */
2911 error = xfs_dir_createname(tp, target_dp, target_name,
2912 src_ip->i_ino, &first_block,
2913 &free_list, spaceres);
Dave Chinner24513372014-06-25 14:58:08 +10002914 if (error == -ENOSPC)
Dave Chinner445883e2015-03-25 14:05:43 +11002915 goto out_bmap_cancel;
Dave Chinnerf6bba202013-08-12 20:49:46 +10002916 if (error)
Dave Chinner445883e2015-03-25 14:05:43 +11002917 goto out_trans_abort;
Dave Chinnerf6bba202013-08-12 20:49:46 +10002918
2919 xfs_trans_ichgtime(tp, target_dp,
2920 XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2921
2922 if (new_parent && src_is_directory) {
2923 error = xfs_bumplink(tp, target_dp);
2924 if (error)
Dave Chinner445883e2015-03-25 14:05:43 +11002925 goto out_trans_abort;
Dave Chinnerf6bba202013-08-12 20:49:46 +10002926 }
2927 } else { /* target_ip != NULL */
2928 /*
2929 * If target exists and it's a directory, check that both
2930 * target and source are directories and that target can be
2931 * destroyed, or that neither is a directory.
2932 */
2933 if (S_ISDIR(target_ip->i_d.di_mode)) {
2934 /*
2935 * Make sure target dir is empty.
2936 */
2937 if (!(xfs_dir_isempty(target_ip)) ||
2938 (target_ip->i_d.di_nlink > 2)) {
Dave Chinner24513372014-06-25 14:58:08 +10002939 error = -EEXIST;
Dave Chinner445883e2015-03-25 14:05:43 +11002940 goto out_trans_cancel;
Dave Chinnerf6bba202013-08-12 20:49:46 +10002941 }
2942 }
2943
2944 /*
2945 * Link the source inode under the target name.
2946 * If the source inode is a directory and we are moving
2947 * it across directories, its ".." entry will be
2948 * inconsistent until we replace that down below.
2949 *
2950 * In case there is already an entry with the same
2951 * name at the destination directory, remove it first.
2952 */
2953 error = xfs_dir_replace(tp, target_dp, target_name,
2954 src_ip->i_ino,
2955 &first_block, &free_list, spaceres);
2956 if (error)
Dave Chinner445883e2015-03-25 14:05:43 +11002957 goto out_trans_abort;
Dave Chinnerf6bba202013-08-12 20:49:46 +10002958
2959 xfs_trans_ichgtime(tp, target_dp,
2960 XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2961
2962 /*
2963 * Decrement the link count on the target since the target
2964 * dir no longer points to it.
2965 */
2966 error = xfs_droplink(tp, target_ip);
2967 if (error)
Dave Chinner445883e2015-03-25 14:05:43 +11002968 goto out_trans_abort;
Dave Chinnerf6bba202013-08-12 20:49:46 +10002969
2970 if (src_is_directory) {
2971 /*
2972 * Drop the link from the old "." entry.
2973 */
2974 error = xfs_droplink(tp, target_ip);
2975 if (error)
Dave Chinner445883e2015-03-25 14:05:43 +11002976 goto out_trans_abort;
Dave Chinnerf6bba202013-08-12 20:49:46 +10002977 }
2978 } /* target_ip != NULL */
2979
2980 /*
2981 * Remove the source.
2982 */
2983 if (new_parent && src_is_directory) {
2984 /*
2985 * Rewrite the ".." entry to point to the new
2986 * directory.
2987 */
2988 error = xfs_dir_replace(tp, src_ip, &xfs_name_dotdot,
2989 target_dp->i_ino,
2990 &first_block, &free_list, spaceres);
Dave Chinner24513372014-06-25 14:58:08 +10002991 ASSERT(error != -EEXIST);
Dave Chinnerf6bba202013-08-12 20:49:46 +10002992 if (error)
Dave Chinner445883e2015-03-25 14:05:43 +11002993 goto out_trans_abort;
Dave Chinnerf6bba202013-08-12 20:49:46 +10002994 }
2995
2996 /*
2997 * We always want to hit the ctime on the source inode.
2998 *
2999 * This isn't strictly required by the standards since the source
3000 * inode isn't really being changed, but old unix file systems did
3001 * it and some incremental backup programs won't work without it.
3002 */
3003 xfs_trans_ichgtime(tp, src_ip, XFS_ICHGTIME_CHG);
3004 xfs_trans_log_inode(tp, src_ip, XFS_ILOG_CORE);
3005
3006 /*
3007 * Adjust the link count on src_dp. This is necessary when
3008 * renaming a directory, either within one parent when
3009 * the target existed, or across two parent directories.
3010 */
3011 if (src_is_directory && (new_parent || target_ip != NULL)) {
3012
3013 /*
3014 * Decrement link count on src_directory since the
3015 * entry that's moved no longer points to it.
3016 */
3017 error = xfs_droplink(tp, src_dp);
3018 if (error)
Dave Chinner445883e2015-03-25 14:05:43 +11003019 goto out_trans_abort;
Dave Chinnerf6bba202013-08-12 20:49:46 +10003020 }
3021
3022 error = xfs_dir_removename(tp, src_dp, src_name, src_ip->i_ino,
3023 &first_block, &free_list, spaceres);
3024 if (error)
Dave Chinner445883e2015-03-25 14:05:43 +11003025 goto out_trans_abort;
Dave Chinnerf6bba202013-08-12 20:49:46 +10003026
3027 xfs_trans_ichgtime(tp, src_dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
3028 xfs_trans_log_inode(tp, src_dp, XFS_ILOG_CORE);
3029 if (new_parent)
3030 xfs_trans_log_inode(tp, target_dp, XFS_ILOG_CORE);
3031
Dave Chinner310606b2015-03-25 14:06:07 +11003032 return xfs_finish_rename(tp, &free_list);
Dave Chinnerf6bba202013-08-12 20:49:46 +10003033
Dave Chinner445883e2015-03-25 14:05:43 +11003034out_trans_abort:
Dave Chinnerf6bba202013-08-12 20:49:46 +10003035 cancel_flags |= XFS_TRANS_ABORT;
Dave Chinner445883e2015-03-25 14:05:43 +11003036out_bmap_cancel:
Dave Chinnerf6bba202013-08-12 20:49:46 +10003037 xfs_bmap_cancel(&free_list);
Dave Chinner445883e2015-03-25 14:05:43 +11003038out_trans_cancel:
Dave Chinnerf6bba202013-08-12 20:49:46 +10003039 xfs_trans_cancel(tp, cancel_flags);
Dave Chinnerf6bba202013-08-12 20:49:46 +10003040 return error;
3041}
3042
David Chinnerbad55842008-03-06 13:43:49 +11003043STATIC int
3044xfs_iflush_cluster(
3045 xfs_inode_t *ip,
3046 xfs_buf_t *bp)
3047{
3048 xfs_mount_t *mp = ip->i_mount;
Dave Chinner5017e972010-01-11 11:47:40 +00003049 struct xfs_perag *pag;
David Chinnerbad55842008-03-06 13:43:49 +11003050 unsigned long first_index, mask;
David Chinnerc8f5f122008-05-20 11:30:15 +10003051 unsigned long inodes_per_cluster;
David Chinnerbad55842008-03-06 13:43:49 +11003052 int ilist_size;
3053 xfs_inode_t **ilist;
3054 xfs_inode_t *iq;
David Chinnerbad55842008-03-06 13:43:49 +11003055 int nr_found;
3056 int clcount = 0;
3057 int bufwasdelwri;
3058 int i;
3059
Dave Chinner5017e972010-01-11 11:47:40 +00003060 pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ip->i_ino));
David Chinnerbad55842008-03-06 13:43:49 +11003061
Jie Liu0f49efd2013-12-13 15:51:48 +11003062 inodes_per_cluster = mp->m_inode_cluster_size >> mp->m_sb.sb_inodelog;
David Chinnerc8f5f122008-05-20 11:30:15 +10003063 ilist_size = inodes_per_cluster * sizeof(xfs_inode_t *);
David Chinner49383b02008-05-19 16:29:34 +10003064 ilist = kmem_alloc(ilist_size, KM_MAYFAIL|KM_NOFS);
David Chinnerbad55842008-03-06 13:43:49 +11003065 if (!ilist)
Dave Chinner44b56e02010-01-11 11:47:43 +00003066 goto out_put;
David Chinnerbad55842008-03-06 13:43:49 +11003067
Jie Liu0f49efd2013-12-13 15:51:48 +11003068 mask = ~(((mp->m_inode_cluster_size >> mp->m_sb.sb_inodelog)) - 1);
David Chinnerbad55842008-03-06 13:43:49 +11003069 first_index = XFS_INO_TO_AGINO(mp, ip->i_ino) & mask;
Dave Chinner1a3e8f32010-12-17 17:29:43 +11003070 rcu_read_lock();
David Chinnerbad55842008-03-06 13:43:49 +11003071 /* really need a gang lookup range call here */
3072 nr_found = radix_tree_gang_lookup(&pag->pag_ici_root, (void**)ilist,
David Chinnerc8f5f122008-05-20 11:30:15 +10003073 first_index, inodes_per_cluster);
David Chinnerbad55842008-03-06 13:43:49 +11003074 if (nr_found == 0)
3075 goto out_free;
3076
3077 for (i = 0; i < nr_found; i++) {
3078 iq = ilist[i];
3079 if (iq == ip)
3080 continue;
Dave Chinner1a3e8f32010-12-17 17:29:43 +11003081
3082 /*
3083 * because this is an RCU protected lookup, we could find a
3084 * recently freed or even reallocated inode during the lookup.
3085 * We need to check under the i_flags_lock for a valid inode
3086 * here. Skip it if it is not valid or the wrong inode.
3087 */
3088 spin_lock(&ip->i_flags_lock);
3089 if (!ip->i_ino ||
3090 (XFS_INO_TO_AGINO(mp, iq->i_ino) & mask) != first_index) {
3091 spin_unlock(&ip->i_flags_lock);
3092 continue;
3093 }
3094 spin_unlock(&ip->i_flags_lock);
3095
David Chinnerbad55842008-03-06 13:43:49 +11003096 /*
3097 * Do an un-protected check to see if the inode is dirty and
3098 * is a candidate for flushing. These checks will be repeated
3099 * later after the appropriate locks are acquired.
3100 */
David Chinner33540402008-03-06 13:43:59 +11003101 if (xfs_inode_clean(iq) && xfs_ipincount(iq) == 0)
David Chinnerbad55842008-03-06 13:43:49 +11003102 continue;
David Chinnerbad55842008-03-06 13:43:49 +11003103
3104 /*
3105 * Try to get locks. If any are unavailable or it is pinned,
3106 * then this inode cannot be flushed and is skipped.
3107 */
3108
3109 if (!xfs_ilock_nowait(iq, XFS_ILOCK_SHARED))
3110 continue;
3111 if (!xfs_iflock_nowait(iq)) {
3112 xfs_iunlock(iq, XFS_ILOCK_SHARED);
3113 continue;
3114 }
3115 if (xfs_ipincount(iq)) {
3116 xfs_ifunlock(iq);
3117 xfs_iunlock(iq, XFS_ILOCK_SHARED);
3118 continue;
3119 }
3120
3121 /*
3122 * arriving here means that this inode can be flushed. First
3123 * re-check that it's dirty before flushing.
3124 */
David Chinner33540402008-03-06 13:43:59 +11003125 if (!xfs_inode_clean(iq)) {
3126 int error;
David Chinnerbad55842008-03-06 13:43:49 +11003127 error = xfs_iflush_int(iq, bp);
3128 if (error) {
3129 xfs_iunlock(iq, XFS_ILOCK_SHARED);
3130 goto cluster_corrupt_out;
3131 }
3132 clcount++;
3133 } else {
3134 xfs_ifunlock(iq);
3135 }
3136 xfs_iunlock(iq, XFS_ILOCK_SHARED);
3137 }
3138
3139 if (clcount) {
3140 XFS_STATS_INC(xs_icluster_flushcnt);
3141 XFS_STATS_ADD(xs_icluster_flushinode, clcount);
3142 }
3143
3144out_free:
Dave Chinner1a3e8f32010-12-17 17:29:43 +11003145 rcu_read_unlock();
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10003146 kmem_free(ilist);
Dave Chinner44b56e02010-01-11 11:47:43 +00003147out_put:
3148 xfs_perag_put(pag);
David Chinnerbad55842008-03-06 13:43:49 +11003149 return 0;
3150
3151
3152cluster_corrupt_out:
3153 /*
3154 * Corruption detected in the clustering loop. Invalidate the
3155 * inode buffer and shut down the filesystem.
3156 */
Dave Chinner1a3e8f32010-12-17 17:29:43 +11003157 rcu_read_unlock();
David Chinnerbad55842008-03-06 13:43:49 +11003158 /*
Christoph Hellwig43ff2122012-04-23 15:58:39 +10003159 * Clean up the buffer. If it was delwri, just release it --
David Chinnerbad55842008-03-06 13:43:49 +11003160 * brelse can handle it with no problems. If not, shut down the
3161 * filesystem before releasing the buffer.
3162 */
Christoph Hellwig43ff2122012-04-23 15:58:39 +10003163 bufwasdelwri = (bp->b_flags & _XBF_DELWRI_Q);
David Chinnerbad55842008-03-06 13:43:49 +11003164 if (bufwasdelwri)
3165 xfs_buf_relse(bp);
3166
3167 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
3168
3169 if (!bufwasdelwri) {
3170 /*
3171 * Just like incore_relse: if we have b_iodone functions,
3172 * mark the buffer as an error and call them. Otherwise
3173 * mark it as stale and brelse.
3174 */
Christoph Hellwigcb669ca2011-07-13 13:43:49 +02003175 if (bp->b_iodone) {
David Chinnerbad55842008-03-06 13:43:49 +11003176 XFS_BUF_UNDONE(bp);
Christoph Hellwigc867cb62011-10-10 16:52:46 +00003177 xfs_buf_stale(bp);
Dave Chinner24513372014-06-25 14:58:08 +10003178 xfs_buf_ioerror(bp, -EIO);
Dave Chinnere8aaba92014-10-02 09:04:22 +10003179 xfs_buf_ioend(bp);
David Chinnerbad55842008-03-06 13:43:49 +11003180 } else {
Christoph Hellwigc867cb62011-10-10 16:52:46 +00003181 xfs_buf_stale(bp);
David Chinnerbad55842008-03-06 13:43:49 +11003182 xfs_buf_relse(bp);
3183 }
3184 }
3185
3186 /*
3187 * Unlocks the flush lock
3188 */
Dave Chinner04913fd2012-04-23 15:58:41 +10003189 xfs_iflush_abort(iq, false);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10003190 kmem_free(ilist);
Dave Chinner44b56e02010-01-11 11:47:43 +00003191 xfs_perag_put(pag);
Dave Chinner24513372014-06-25 14:58:08 +10003192 return -EFSCORRUPTED;
David Chinnerbad55842008-03-06 13:43:49 +11003193}
3194
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195/*
Christoph Hellwig4c468192012-04-23 15:58:36 +10003196 * Flush dirty inode metadata into the backing buffer.
3197 *
3198 * The caller must have the inode lock and the inode flush lock held. The
3199 * inode lock will still be held upon return to the caller, and the inode
3200 * flush lock will be released after the inode has reached the disk.
3201 *
3202 * The caller must write out the buffer returned in *bpp and release it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203 */
3204int
3205xfs_iflush(
Christoph Hellwig4c468192012-04-23 15:58:36 +10003206 struct xfs_inode *ip,
3207 struct xfs_buf **bpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208{
Christoph Hellwig4c468192012-04-23 15:58:36 +10003209 struct xfs_mount *mp = ip->i_mount;
3210 struct xfs_buf *bp;
3211 struct xfs_dinode *dip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213
3214 XFS_STATS_INC(xs_iflush_count);
3215
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10003216 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
Christoph Hellwig474fce02011-12-18 20:00:09 +00003217 ASSERT(xfs_isiflocked(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218 ASSERT(ip->i_d.di_format != XFS_DINODE_FMT_BTREE ||
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00003219 ip->i_d.di_nextents > XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220
Christoph Hellwig4c468192012-04-23 15:58:36 +10003221 *bpp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223 xfs_iunpin_wait(ip);
3224
3225 /*
Dave Chinner4b6a4682010-01-11 11:45:21 +00003226 * For stale inodes we cannot rely on the backing buffer remaining
3227 * stale in cache for the remaining life of the stale inode and so
Christoph Hellwig475ee412012-07-03 12:21:22 -04003228 * xfs_imap_to_bp() below may give us a buffer that no longer contains
Dave Chinner4b6a4682010-01-11 11:45:21 +00003229 * inodes below. We have to check this after ensuring the inode is
3230 * unpinned so that it is safe to reclaim the stale inode after the
3231 * flush call.
3232 */
3233 if (xfs_iflags_test(ip, XFS_ISTALE)) {
3234 xfs_ifunlock(ip);
3235 return 0;
3236 }
3237
3238 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 * This may have been unpinned because the filesystem is shutting
3240 * down forcibly. If that's the case we must not write this inode
Christoph Hellwig32ce90a2012-04-23 15:58:32 +10003241 * to disk, because the log record didn't make it to disk.
3242 *
3243 * We also have to remove the log item from the AIL in this case,
3244 * as we wait for an empty AIL as part of the unmount process.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 */
3246 if (XFS_FORCED_SHUTDOWN(mp)) {
Dave Chinner24513372014-06-25 14:58:08 +10003247 error = -EIO;
Christoph Hellwig32ce90a2012-04-23 15:58:32 +10003248 goto abort_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 }
3250
3251 /*
David Chinnera3f74ff2008-03-06 13:43:42 +11003252 * Get the buffer containing the on-disk inode.
3253 */
Christoph Hellwig475ee412012-07-03 12:21:22 -04003254 error = xfs_imap_to_bp(mp, NULL, &ip->i_imap, &dip, &bp, XBF_TRYLOCK,
3255 0);
David Chinnera3f74ff2008-03-06 13:43:42 +11003256 if (error || !bp) {
3257 xfs_ifunlock(ip);
3258 return error;
3259 }
3260
3261 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262 * First flush out the inode that xfs_iflush was called with.
3263 */
3264 error = xfs_iflush_int(ip, bp);
David Chinnerbad55842008-03-06 13:43:49 +11003265 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266 goto corrupt_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267
3268 /*
David Chinnera3f74ff2008-03-06 13:43:42 +11003269 * If the buffer is pinned then push on the log now so we won't
3270 * get stuck waiting in the write for too long.
3271 */
Chandra Seetharaman811e64c2011-07-22 23:40:27 +00003272 if (xfs_buf_ispinned(bp))
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003273 xfs_log_force(mp, 0);
David Chinnera3f74ff2008-03-06 13:43:42 +11003274
3275 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276 * inode clustering:
3277 * see if other inodes can be gathered into this write
3278 */
David Chinnerbad55842008-03-06 13:43:49 +11003279 error = xfs_iflush_cluster(ip, bp);
3280 if (error)
3281 goto cluster_corrupt_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282
Christoph Hellwig4c468192012-04-23 15:58:36 +10003283 *bpp = bp;
3284 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285
3286corrupt_out:
3287 xfs_buf_relse(bp);
Nathan Scott7d04a332006-06-09 14:58:38 +10003288 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289cluster_corrupt_out:
Dave Chinner24513372014-06-25 14:58:08 +10003290 error = -EFSCORRUPTED;
Christoph Hellwig32ce90a2012-04-23 15:58:32 +10003291abort_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292 /*
3293 * Unlocks the flush lock
3294 */
Dave Chinner04913fd2012-04-23 15:58:41 +10003295 xfs_iflush_abort(ip, false);
Christoph Hellwig32ce90a2012-04-23 15:58:32 +10003296 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297}
3298
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299STATIC int
3300xfs_iflush_int(
Christoph Hellwig93848a92013-04-03 16:11:17 +11003301 struct xfs_inode *ip,
3302 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303{
Christoph Hellwig93848a92013-04-03 16:11:17 +11003304 struct xfs_inode_log_item *iip = ip->i_itemp;
3305 struct xfs_dinode *dip;
3306 struct xfs_mount *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10003308 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
Christoph Hellwig474fce02011-12-18 20:00:09 +00003309 ASSERT(xfs_isiflocked(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310 ASSERT(ip->i_d.di_format != XFS_DINODE_FMT_BTREE ||
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00003311 ip->i_d.di_nextents > XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK));
Christoph Hellwig93848a92013-04-03 16:11:17 +11003312 ASSERT(iip != NULL && iip->ili_fields != 0);
Dave Chinner263997a2014-05-20 07:46:40 +10003313 ASSERT(ip->i_d.di_version > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315 /* set *dip = inode's place in the buffer */
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +11003316 dip = (xfs_dinode_t *)xfs_buf_offset(bp, ip->i_imap.im_boffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317
Christoph Hellwig69ef9212011-07-08 14:36:05 +02003318 if (XFS_TEST_ERROR(dip->di_magic != cpu_to_be16(XFS_DINODE_MAGIC),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319 mp, XFS_ERRTAG_IFLUSH_1, XFS_RANDOM_IFLUSH_1)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11003320 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
3321 "%s: Bad inode %Lu magic number 0x%x, ptr 0x%p",
3322 __func__, ip->i_ino, be16_to_cpu(dip->di_magic), dip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323 goto corrupt_out;
3324 }
3325 if (XFS_TEST_ERROR(ip->i_d.di_magic != XFS_DINODE_MAGIC,
3326 mp, XFS_ERRTAG_IFLUSH_2, XFS_RANDOM_IFLUSH_2)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11003327 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
3328 "%s: Bad inode %Lu, ptr 0x%p, magic number 0x%x",
3329 __func__, ip->i_ino, ip, ip->i_d.di_magic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330 goto corrupt_out;
3331 }
Al Viroabbede12011-07-26 02:31:30 -04003332 if (S_ISREG(ip->i_d.di_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333 if (XFS_TEST_ERROR(
3334 (ip->i_d.di_format != XFS_DINODE_FMT_EXTENTS) &&
3335 (ip->i_d.di_format != XFS_DINODE_FMT_BTREE),
3336 mp, XFS_ERRTAG_IFLUSH_3, XFS_RANDOM_IFLUSH_3)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11003337 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
3338 "%s: Bad regular inode %Lu, ptr 0x%p",
3339 __func__, ip->i_ino, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340 goto corrupt_out;
3341 }
Al Viroabbede12011-07-26 02:31:30 -04003342 } else if (S_ISDIR(ip->i_d.di_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343 if (XFS_TEST_ERROR(
3344 (ip->i_d.di_format != XFS_DINODE_FMT_EXTENTS) &&
3345 (ip->i_d.di_format != XFS_DINODE_FMT_BTREE) &&
3346 (ip->i_d.di_format != XFS_DINODE_FMT_LOCAL),
3347 mp, XFS_ERRTAG_IFLUSH_4, XFS_RANDOM_IFLUSH_4)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11003348 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
3349 "%s: Bad directory inode %Lu, ptr 0x%p",
3350 __func__, ip->i_ino, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 goto corrupt_out;
3352 }
3353 }
3354 if (XFS_TEST_ERROR(ip->i_d.di_nextents + ip->i_d.di_anextents >
3355 ip->i_d.di_nblocks, mp, XFS_ERRTAG_IFLUSH_5,
3356 XFS_RANDOM_IFLUSH_5)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11003357 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
3358 "%s: detected corrupt incore inode %Lu, "
3359 "total extents = %d, nblocks = %Ld, ptr 0x%p",
3360 __func__, ip->i_ino,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361 ip->i_d.di_nextents + ip->i_d.di_anextents,
Dave Chinner6a19d932011-03-07 10:02:35 +11003362 ip->i_d.di_nblocks, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363 goto corrupt_out;
3364 }
3365 if (XFS_TEST_ERROR(ip->i_d.di_forkoff > mp->m_sb.sb_inodesize,
3366 mp, XFS_ERRTAG_IFLUSH_6, XFS_RANDOM_IFLUSH_6)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11003367 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
3368 "%s: bad inode %Lu, forkoff 0x%x, ptr 0x%p",
3369 __func__, ip->i_ino, ip->i_d.di_forkoff, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370 goto corrupt_out;
3371 }
Dave Chinnere60896d2013-07-24 15:47:30 +10003372
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373 /*
Dave Chinner263997a2014-05-20 07:46:40 +10003374 * Inode item log recovery for v2 inodes are dependent on the
Dave Chinnere60896d2013-07-24 15:47:30 +10003375 * di_flushiter count for correct sequencing. We bump the flush
3376 * iteration count so we can detect flushes which postdate a log record
3377 * during recovery. This is redundant as we now log every change and
3378 * hence this can't happen but we need to still do it to ensure
3379 * backwards compatibility with old kernels that predate logging all
3380 * inode changes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381 */
Dave Chinnere60896d2013-07-24 15:47:30 +10003382 if (ip->i_d.di_version < 3)
3383 ip->i_d.di_flushiter++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384
3385 /*
3386 * Copy the dirty parts of the inode into the on-disk
3387 * inode. We always copy out the core of the inode,
3388 * because if the inode is dirty at all the core must
3389 * be.
3390 */
Christoph Hellwig81591fe2008-11-28 14:23:39 +11003391 xfs_dinode_to_disk(dip, &ip->i_d);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392
3393 /* Wrap, we never let the log put out DI_MAX_FLUSH */
3394 if (ip->i_d.di_flushiter == DI_MAX_FLUSH)
3395 ip->i_d.di_flushiter = 0;
3396
Eric Sandeenfd9fdba2014-04-14 19:04:46 +10003397 xfs_iflush_fork(ip, dip, iip, XFS_DATA_FORK);
David Chinnere4ac9672008-04-10 12:23:58 +10003398 if (XFS_IFORK_Q(ip))
Eric Sandeenfd9fdba2014-04-14 19:04:46 +10003399 xfs_iflush_fork(ip, dip, iip, XFS_ATTR_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400 xfs_inobp_check(mp, bp);
3401
3402 /*
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +00003403 * We've recorded everything logged in the inode, so we'd like to clear
3404 * the ili_fields bits so we don't log and flush things unnecessarily.
3405 * However, we can't stop logging all this information until the data
3406 * we've copied into the disk buffer is written to disk. If we did we
3407 * might overwrite the copy of the inode in the log with all the data
3408 * after re-logging only part of it, and in the face of a crash we
3409 * wouldn't have all the data we need to recover.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410 *
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +00003411 * What we do is move the bits to the ili_last_fields field. When
3412 * logging the inode, these bits are moved back to the ili_fields field.
3413 * In the xfs_iflush_done() routine we clear ili_last_fields, since we
3414 * know that the information those bits represent is permanently on
3415 * disk. As long as the flush completes before the inode is logged
3416 * again, then both ili_fields and ili_last_fields will be cleared.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417 *
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +00003418 * We can play with the ili_fields bits here, because the inode lock
3419 * must be held exclusively in order to set bits there and the flush
3420 * lock protects the ili_last_fields bits. Set ili_logged so the flush
3421 * done routine can tell whether or not to look in the AIL. Also, store
3422 * the current LSN of the inode so that we can tell whether the item has
3423 * moved in the AIL from xfs_iflush_done(). In order to read the lsn we
3424 * need the AIL lock, because it is a 64 bit value that cannot be read
3425 * atomically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 */
Christoph Hellwig93848a92013-04-03 16:11:17 +11003427 iip->ili_last_fields = iip->ili_fields;
3428 iip->ili_fields = 0;
3429 iip->ili_logged = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430
Christoph Hellwig93848a92013-04-03 16:11:17 +11003431 xfs_trans_ail_copy_lsn(mp->m_ail, &iip->ili_flush_lsn,
3432 &iip->ili_item.li_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433
Christoph Hellwig93848a92013-04-03 16:11:17 +11003434 /*
3435 * Attach the function xfs_iflush_done to the inode's
3436 * buffer. This will remove the inode from the AIL
3437 * and unlock the inode's flush lock when the inode is
3438 * completely written to disk.
3439 */
3440 xfs_buf_attach_iodone(bp, xfs_iflush_done, &iip->ili_item);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441
Christoph Hellwig93848a92013-04-03 16:11:17 +11003442 /* update the lsn in the on disk inode if required */
3443 if (ip->i_d.di_version == 3)
3444 dip->di_lsn = cpu_to_be64(iip->ili_item.li_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445
Christoph Hellwig93848a92013-04-03 16:11:17 +11003446 /* generate the checksum. */
3447 xfs_dinode_calc_crc(mp, dip);
3448
3449 ASSERT(bp->b_fspriv != NULL);
3450 ASSERT(bp->b_iodone != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 return 0;
3452
3453corrupt_out:
Dave Chinner24513372014-06-25 14:58:08 +10003454 return -EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455}