blob: 73a7a1d84243cb2dc588975b52709105788c3774 [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 Chinner6ca1c902013-08-12 20:49:26 +100022#include "xfs_format.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110024#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_trans.h"
Dave Chinnerc24b5df2013-08-12 20:49:45 +100026#include "xfs_trans_space.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_trans_priv.h"
28#include "xfs_sb.h"
29#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_mount.h"
Dave Chinnerc24b5df2013-08-12 20:49:45 +100031#include "xfs_da_btree.h"
32#include "xfs_dir2_format.h"
33#include "xfs_dir2.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110035#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_ialloc_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110037#include "xfs_attr_sf.h"
Dave Chinnerc24b5df2013-08-12 20:49:45 +100038#include "xfs_attr.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include "xfs_dinode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include "xfs_inode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "xfs_buf_item.h"
Nathan Scotta844f452005-11-02 14:38:42 +110042#include "xfs_inode_item.h"
43#include "xfs_btree.h"
44#include "xfs_alloc.h"
45#include "xfs_ialloc.h"
46#include "xfs_bmap.h"
Dave Chinner68988112013-08-12 20:49:42 +100047#include "xfs_bmap_util.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#include "xfs_utils.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include "xfs_quota.h"
David Chinner2a82b8b2007-07-11 11:09:12 +100051#include "xfs_filestream.h"
Christoph Hellwig93848a92013-04-03 16:11:17 +110052#include "xfs_cksum.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000053#include "xfs_trace.h"
Dave Chinner33479e02012-10-08 21:56:11 +110054#include "xfs_icache.h"
Dave Chinnerc24b5df2013-08-12 20:49:45 +100055#include "xfs_symlink.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Linus Torvalds1da177e2005-04-16 15:20:36 -070057kmem_zone_t *xfs_inode_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59/*
Christoph Hellwig8f04c472011-07-08 14:34:34 +020060 * Used in xfs_itruncate_extents(). This is the maximum number of extents
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 * freed from a file in a single transaction.
62 */
63#define XFS_ITRUNC_MAX_EXTENTS 2
64
65STATIC int xfs_iflush_int(xfs_inode_t *, xfs_buf_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Dave Chinner2a0ec1d2012-04-23 15:59:02 +100067/*
68 * helper function to extract extent size hint from inode
69 */
70xfs_extlen_t
71xfs_get_extsz_hint(
72 struct xfs_inode *ip)
73{
74 if ((ip->i_d.di_flags & XFS_DIFLAG_EXTSIZE) && ip->i_d.di_extsize)
75 return ip->i_d.di_extsize;
76 if (XFS_IS_REALTIME_INODE(ip))
77 return ip->i_mount->m_sb.sb_rextsize;
78 return 0;
79}
80
Dave Chinnerfa96aca2012-10-08 21:56:10 +110081/*
82 * This is a wrapper routine around the xfs_ilock() routine used to centralize
83 * some grungy code. It is used in places that wish to lock the inode solely
84 * for reading the extents. The reason these places can't just call
85 * xfs_ilock(SHARED) is that the inode lock also guards to bringing in of the
86 * extents from disk for a file in b-tree format. If the inode is in b-tree
87 * format, then we need to lock the inode exclusively until the extents are read
88 * in. Locking it exclusively all the time would limit our parallelism
89 * unnecessarily, though. What we do instead is check to see if the extents
90 * have been read in yet, and only lock the inode exclusively if they have not.
91 *
92 * The function returns a value which should be given to the corresponding
93 * xfs_iunlock_map_shared(). This value is the mode in which the lock was
94 * actually taken.
95 */
96uint
97xfs_ilock_map_shared(
98 xfs_inode_t *ip)
99{
100 uint lock_mode;
101
102 if ((ip->i_d.di_format == XFS_DINODE_FMT_BTREE) &&
103 ((ip->i_df.if_flags & XFS_IFEXTENTS) == 0)) {
104 lock_mode = XFS_ILOCK_EXCL;
105 } else {
106 lock_mode = XFS_ILOCK_SHARED;
107 }
108
109 xfs_ilock(ip, lock_mode);
110
111 return lock_mode;
112}
113
114/*
115 * This is simply the unlock routine to go with xfs_ilock_map_shared().
116 * All it does is call xfs_iunlock() with the given lock_mode.
117 */
118void
119xfs_iunlock_map_shared(
120 xfs_inode_t *ip,
121 unsigned int lock_mode)
122{
123 xfs_iunlock(ip, lock_mode);
124}
125
126/*
127 * The xfs inode contains 2 locks: a multi-reader lock called the
128 * i_iolock and a multi-reader lock called the i_lock. This routine
129 * allows either or both of the locks to be obtained.
130 *
131 * The 2 locks should always be ordered so that the IO lock is
132 * obtained first in order to prevent deadlock.
133 *
134 * ip -- the inode being locked
135 * lock_flags -- this parameter indicates the inode's locks
136 * to be locked. It can be:
137 * XFS_IOLOCK_SHARED,
138 * XFS_IOLOCK_EXCL,
139 * XFS_ILOCK_SHARED,
140 * XFS_ILOCK_EXCL,
141 * XFS_IOLOCK_SHARED | XFS_ILOCK_SHARED,
142 * XFS_IOLOCK_SHARED | XFS_ILOCK_EXCL,
143 * XFS_IOLOCK_EXCL | XFS_ILOCK_SHARED,
144 * XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL
145 */
146void
147xfs_ilock(
148 xfs_inode_t *ip,
149 uint lock_flags)
150{
151 trace_xfs_ilock(ip, lock_flags, _RET_IP_);
152
153 /*
154 * You can't set both SHARED and EXCL for the same lock,
155 * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
156 * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
157 */
158 ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) !=
159 (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL));
160 ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) !=
161 (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
162 ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_DEP_MASK)) == 0);
163
164 if (lock_flags & XFS_IOLOCK_EXCL)
165 mrupdate_nested(&ip->i_iolock, XFS_IOLOCK_DEP(lock_flags));
166 else if (lock_flags & XFS_IOLOCK_SHARED)
167 mraccess_nested(&ip->i_iolock, XFS_IOLOCK_DEP(lock_flags));
168
169 if (lock_flags & XFS_ILOCK_EXCL)
170 mrupdate_nested(&ip->i_lock, XFS_ILOCK_DEP(lock_flags));
171 else if (lock_flags & XFS_ILOCK_SHARED)
172 mraccess_nested(&ip->i_lock, XFS_ILOCK_DEP(lock_flags));
173}
174
175/*
176 * This is just like xfs_ilock(), except that the caller
177 * is guaranteed not to sleep. It returns 1 if it gets
178 * the requested locks and 0 otherwise. If the IO lock is
179 * obtained but the inode lock cannot be, then the IO lock
180 * is dropped before returning.
181 *
182 * ip -- the inode being locked
183 * lock_flags -- this parameter indicates the inode's locks to be
184 * to be locked. See the comment for xfs_ilock() for a list
185 * of valid values.
186 */
187int
188xfs_ilock_nowait(
189 xfs_inode_t *ip,
190 uint lock_flags)
191{
192 trace_xfs_ilock_nowait(ip, lock_flags, _RET_IP_);
193
194 /*
195 * You can't set both SHARED and EXCL for the same lock,
196 * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
197 * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
198 */
199 ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) !=
200 (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL));
201 ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) !=
202 (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
203 ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_DEP_MASK)) == 0);
204
205 if (lock_flags & XFS_IOLOCK_EXCL) {
206 if (!mrtryupdate(&ip->i_iolock))
207 goto out;
208 } else if (lock_flags & XFS_IOLOCK_SHARED) {
209 if (!mrtryaccess(&ip->i_iolock))
210 goto out;
211 }
212 if (lock_flags & XFS_ILOCK_EXCL) {
213 if (!mrtryupdate(&ip->i_lock))
214 goto out_undo_iolock;
215 } else if (lock_flags & XFS_ILOCK_SHARED) {
216 if (!mrtryaccess(&ip->i_lock))
217 goto out_undo_iolock;
218 }
219 return 1;
220
221 out_undo_iolock:
222 if (lock_flags & XFS_IOLOCK_EXCL)
223 mrunlock_excl(&ip->i_iolock);
224 else if (lock_flags & XFS_IOLOCK_SHARED)
225 mrunlock_shared(&ip->i_iolock);
226 out:
227 return 0;
228}
229
230/*
231 * xfs_iunlock() is used to drop the inode locks acquired with
232 * xfs_ilock() and xfs_ilock_nowait(). The caller must pass
233 * in the flags given to xfs_ilock() or xfs_ilock_nowait() so
234 * that we know which locks to drop.
235 *
236 * ip -- the inode being unlocked
237 * lock_flags -- this parameter indicates the inode's locks to be
238 * to be unlocked. See the comment for xfs_ilock() for a list
239 * of valid values for this parameter.
240 *
241 */
242void
243xfs_iunlock(
244 xfs_inode_t *ip,
245 uint lock_flags)
246{
247 /*
248 * You can't set both SHARED and EXCL for the same lock,
249 * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
250 * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
251 */
252 ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) !=
253 (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL));
254 ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) !=
255 (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
256 ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_DEP_MASK)) == 0);
257 ASSERT(lock_flags != 0);
258
259 if (lock_flags & XFS_IOLOCK_EXCL)
260 mrunlock_excl(&ip->i_iolock);
261 else if (lock_flags & XFS_IOLOCK_SHARED)
262 mrunlock_shared(&ip->i_iolock);
263
264 if (lock_flags & XFS_ILOCK_EXCL)
265 mrunlock_excl(&ip->i_lock);
266 else if (lock_flags & XFS_ILOCK_SHARED)
267 mrunlock_shared(&ip->i_lock);
268
269 trace_xfs_iunlock(ip, lock_flags, _RET_IP_);
270}
271
272/*
273 * give up write locks. the i/o lock cannot be held nested
274 * if it is being demoted.
275 */
276void
277xfs_ilock_demote(
278 xfs_inode_t *ip,
279 uint lock_flags)
280{
281 ASSERT(lock_flags & (XFS_IOLOCK_EXCL|XFS_ILOCK_EXCL));
282 ASSERT((lock_flags & ~(XFS_IOLOCK_EXCL|XFS_ILOCK_EXCL)) == 0);
283
284 if (lock_flags & XFS_ILOCK_EXCL)
285 mrdemote(&ip->i_lock);
286 if (lock_flags & XFS_IOLOCK_EXCL)
287 mrdemote(&ip->i_iolock);
288
289 trace_xfs_ilock_demote(ip, lock_flags, _RET_IP_);
290}
291
Dave Chinner742ae1e2013-04-30 21:39:34 +1000292#if defined(DEBUG) || defined(XFS_WARN)
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100293int
294xfs_isilocked(
295 xfs_inode_t *ip,
296 uint lock_flags)
297{
298 if (lock_flags & (XFS_ILOCK_EXCL|XFS_ILOCK_SHARED)) {
299 if (!(lock_flags & XFS_ILOCK_SHARED))
300 return !!ip->i_lock.mr_writer;
301 return rwsem_is_locked(&ip->i_lock.mr_lock);
302 }
303
304 if (lock_flags & (XFS_IOLOCK_EXCL|XFS_IOLOCK_SHARED)) {
305 if (!(lock_flags & XFS_IOLOCK_SHARED))
306 return !!ip->i_iolock.mr_writer;
307 return rwsem_is_locked(&ip->i_iolock.mr_lock);
308 }
309
310 ASSERT(0);
311 return 0;
312}
313#endif
314
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000315#ifdef DEBUG
316int xfs_locked_n;
317int xfs_small_retries;
318int xfs_middle_retries;
319int xfs_lots_retries;
320int xfs_lock_delays;
321#endif
322
323/*
324 * Bump the subclass so xfs_lock_inodes() acquires each lock with
325 * a different value
326 */
327static inline int
328xfs_lock_inumorder(int lock_mode, int subclass)
329{
330 if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL))
331 lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_IOLOCK_SHIFT;
332 if (lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL))
333 lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_ILOCK_SHIFT;
334
335 return lock_mode;
336}
337
338/*
339 * The following routine will lock n inodes in exclusive mode.
340 * We assume the caller calls us with the inodes in i_ino order.
341 *
342 * We need to detect deadlock where an inode that we lock
343 * is in the AIL and we start waiting for another inode that is locked
344 * by a thread in a long running transaction (such as truncate). This can
345 * result in deadlock since the long running trans might need to wait
346 * for the inode we just locked in order to push the tail and free space
347 * in the log.
348 */
349void
350xfs_lock_inodes(
351 xfs_inode_t **ips,
352 int inodes,
353 uint lock_mode)
354{
355 int attempts = 0, i, j, try_lock;
356 xfs_log_item_t *lp;
357
358 ASSERT(ips && (inodes >= 2)); /* we need at least two */
359
360 try_lock = 0;
361 i = 0;
362
363again:
364 for (; i < inodes; i++) {
365 ASSERT(ips[i]);
366
367 if (i && (ips[i] == ips[i-1])) /* Already locked */
368 continue;
369
370 /*
371 * If try_lock is not set yet, make sure all locked inodes
372 * are not in the AIL.
373 * If any are, set try_lock to be used later.
374 */
375
376 if (!try_lock) {
377 for (j = (i - 1); j >= 0 && !try_lock; j--) {
378 lp = (xfs_log_item_t *)ips[j]->i_itemp;
379 if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
380 try_lock++;
381 }
382 }
383 }
384
385 /*
386 * If any of the previous locks we have locked is in the AIL,
387 * we must TRY to get the second and subsequent locks. If
388 * we can't get any, we must release all we have
389 * and try again.
390 */
391
392 if (try_lock) {
393 /* try_lock must be 0 if i is 0. */
394 /*
395 * try_lock means we have an inode locked
396 * that is in the AIL.
397 */
398 ASSERT(i != 0);
399 if (!xfs_ilock_nowait(ips[i], xfs_lock_inumorder(lock_mode, i))) {
400 attempts++;
401
402 /*
403 * Unlock all previous guys and try again.
404 * xfs_iunlock will try to push the tail
405 * if the inode is in the AIL.
406 */
407
408 for(j = i - 1; j >= 0; j--) {
409
410 /*
411 * Check to see if we've already
412 * unlocked this one.
413 * Not the first one going back,
414 * and the inode ptr is the same.
415 */
416 if ((j != (i - 1)) && ips[j] ==
417 ips[j+1])
418 continue;
419
420 xfs_iunlock(ips[j], lock_mode);
421 }
422
423 if ((attempts % 5) == 0) {
424 delay(1); /* Don't just spin the CPU */
425#ifdef DEBUG
426 xfs_lock_delays++;
427#endif
428 }
429 i = 0;
430 try_lock = 0;
431 goto again;
432 }
433 } else {
434 xfs_ilock(ips[i], xfs_lock_inumorder(lock_mode, i));
435 }
436 }
437
438#ifdef DEBUG
439 if (attempts) {
440 if (attempts < 5) xfs_small_retries++;
441 else if (attempts < 100) xfs_middle_retries++;
442 else xfs_lots_retries++;
443 } else {
444 xfs_locked_n++;
445 }
446#endif
447}
448
449/*
450 * xfs_lock_two_inodes() can only be used to lock one type of lock
451 * at a time - the iolock or the ilock, but not both at once. If
452 * we lock both at once, lockdep will report false positives saying
453 * we have violated locking orders.
454 */
455void
456xfs_lock_two_inodes(
457 xfs_inode_t *ip0,
458 xfs_inode_t *ip1,
459 uint lock_mode)
460{
461 xfs_inode_t *temp;
462 int attempts = 0;
463 xfs_log_item_t *lp;
464
465 if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL))
466 ASSERT((lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL)) == 0);
467 ASSERT(ip0->i_ino != ip1->i_ino);
468
469 if (ip0->i_ino > ip1->i_ino) {
470 temp = ip0;
471 ip0 = ip1;
472 ip1 = temp;
473 }
474
475 again:
476 xfs_ilock(ip0, xfs_lock_inumorder(lock_mode, 0));
477
478 /*
479 * If the first lock we have locked is in the AIL, we must TRY to get
480 * the second lock. If we can't get it, we must release the first one
481 * and try again.
482 */
483 lp = (xfs_log_item_t *)ip0->i_itemp;
484 if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
485 if (!xfs_ilock_nowait(ip1, xfs_lock_inumorder(lock_mode, 1))) {
486 xfs_iunlock(ip0, lock_mode);
487 if ((++attempts % 5) == 0)
488 delay(1); /* Don't just spin the CPU */
489 goto again;
490 }
491 } else {
492 xfs_ilock(ip1, xfs_lock_inumorder(lock_mode, 1));
493 }
494}
495
496
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100497void
498__xfs_iflock(
499 struct xfs_inode *ip)
500{
501 wait_queue_head_t *wq = bit_waitqueue(&ip->i_flags, __XFS_IFLOCK_BIT);
502 DEFINE_WAIT_BIT(wait, &ip->i_flags, __XFS_IFLOCK_BIT);
503
504 do {
505 prepare_to_wait_exclusive(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
506 if (xfs_isiflocked(ip))
507 io_schedule();
508 } while (!xfs_iflock_nowait(ip));
509
510 finish_wait(wq, &wait.wait);
511}
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513STATIC uint
514_xfs_dic2xflags(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 __uint16_t di_flags)
516{
517 uint flags = 0;
518
519 if (di_flags & XFS_DIFLAG_ANY) {
520 if (di_flags & XFS_DIFLAG_REALTIME)
521 flags |= XFS_XFLAG_REALTIME;
522 if (di_flags & XFS_DIFLAG_PREALLOC)
523 flags |= XFS_XFLAG_PREALLOC;
524 if (di_flags & XFS_DIFLAG_IMMUTABLE)
525 flags |= XFS_XFLAG_IMMUTABLE;
526 if (di_flags & XFS_DIFLAG_APPEND)
527 flags |= XFS_XFLAG_APPEND;
528 if (di_flags & XFS_DIFLAG_SYNC)
529 flags |= XFS_XFLAG_SYNC;
530 if (di_flags & XFS_DIFLAG_NOATIME)
531 flags |= XFS_XFLAG_NOATIME;
532 if (di_flags & XFS_DIFLAG_NODUMP)
533 flags |= XFS_XFLAG_NODUMP;
534 if (di_flags & XFS_DIFLAG_RTINHERIT)
535 flags |= XFS_XFLAG_RTINHERIT;
536 if (di_flags & XFS_DIFLAG_PROJINHERIT)
537 flags |= XFS_XFLAG_PROJINHERIT;
538 if (di_flags & XFS_DIFLAG_NOSYMLINKS)
539 flags |= XFS_XFLAG_NOSYMLINKS;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100540 if (di_flags & XFS_DIFLAG_EXTSIZE)
541 flags |= XFS_XFLAG_EXTSIZE;
542 if (di_flags & XFS_DIFLAG_EXTSZINHERIT)
543 flags |= XFS_XFLAG_EXTSZINHERIT;
Barry Naujokd3446ea2006-06-09 14:54:19 +1000544 if (di_flags & XFS_DIFLAG_NODEFRAG)
545 flags |= XFS_XFLAG_NODEFRAG;
David Chinner2a82b8b2007-07-11 11:09:12 +1000546 if (di_flags & XFS_DIFLAG_FILESTREAM)
547 flags |= XFS_XFLAG_FILESTREAM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
549
550 return flags;
551}
552
553uint
554xfs_ip2xflags(
555 xfs_inode_t *ip)
556{
Christoph Hellwig347d1c02007-08-28 13:57:51 +1000557 xfs_icdinode_t *dic = &ip->i_d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
Nathan Scotta916e2b2006-06-09 17:12:17 +1000559 return _xfs_dic2xflags(dic->di_flags) |
Christoph Hellwig45ba5982007-12-07 14:07:20 +1100560 (XFS_IFORK_Q(ip) ? XFS_XFLAG_HASATTR : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561}
562
563uint
564xfs_dic2xflags(
Christoph Hellwig45ba5982007-12-07 14:07:20 +1100565 xfs_dinode_t *dip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
Christoph Hellwig81591fe2008-11-28 14:23:39 +1100567 return _xfs_dic2xflags(be16_to_cpu(dip->di_flags)) |
Christoph Hellwig45ba5982007-12-07 14:07:20 +1100568 (XFS_DFORK_Q(dip) ? XFS_XFLAG_HASATTR : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569}
570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571/*
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000572 * Lookups up an inode from "name". If ci_name is not NULL, then a CI match
573 * is allowed, otherwise it has to be an exact match. If a CI match is found,
574 * ci_name->name will point to a the actual name (caller must free) or
575 * will be set to NULL if an exact match is found.
576 */
577int
578xfs_lookup(
579 xfs_inode_t *dp,
580 struct xfs_name *name,
581 xfs_inode_t **ipp,
582 struct xfs_name *ci_name)
583{
584 xfs_ino_t inum;
585 int error;
586 uint lock_mode;
587
588 trace_xfs_lookup(dp, name);
589
590 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
591 return XFS_ERROR(EIO);
592
593 lock_mode = xfs_ilock_map_shared(dp);
594 error = xfs_dir_lookup(NULL, dp, name, &inum, ci_name);
595 xfs_iunlock_map_shared(dp, lock_mode);
596
597 if (error)
598 goto out;
599
600 error = xfs_iget(dp->i_mount, NULL, inum, 0, 0, ipp);
601 if (error)
602 goto out_free_name;
603
604 return 0;
605
606out_free_name:
607 if (ci_name)
608 kmem_free(ci_name->name);
609out:
610 *ipp = NULL;
611 return error;
612}
613
614/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 * Allocate an inode on disk and return a copy of its in-core version.
616 * The in-core inode is locked exclusively. Set mode, nlink, and rdev
617 * appropriately within the inode. The uid and gid for the inode are
618 * set according to the contents of the given cred structure.
619 *
620 * Use xfs_dialloc() to allocate the on-disk inode. If xfs_dialloc()
Carlos Maiolinocd856db2012-10-20 11:08:19 -0300621 * has a free inode available, call xfs_iget() to obtain the in-core
622 * version of the allocated inode. Finally, fill in the inode and
623 * log its initial contents. In this case, ialloc_context would be
624 * set to NULL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 *
Carlos Maiolinocd856db2012-10-20 11:08:19 -0300626 * If xfs_dialloc() does not have an available inode, it will replenish
627 * its supply by doing an allocation. Since we can only do one
628 * allocation within a transaction without deadlocks, we must commit
629 * the current transaction before returning the inode itself.
630 * In this case, therefore, we will set ialloc_context and return.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 * The caller should then commit the current transaction, start a new
632 * transaction, and call xfs_ialloc() again to actually get the inode.
633 *
634 * To ensure that some other process does not grab the inode that
635 * was allocated during the first call to xfs_ialloc(), this routine
636 * also returns the [locked] bp pointing to the head of the freelist
637 * as ialloc_context. The caller should hold this buffer across
638 * the commit and pass it back into this routine on the second call.
David Chinnerb11f94d2007-07-11 11:09:33 +1000639 *
640 * If we are allocating quota inodes, we do not have a parent inode
641 * to attach to or associate with (i.e. pip == NULL) because they
642 * are not linked into the directory structure - they are attached
643 * directly to the superblock - and so have no parent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 */
645int
646xfs_ialloc(
647 xfs_trans_t *tp,
648 xfs_inode_t *pip,
Al Viro576b1d62011-07-26 02:50:15 -0400649 umode_t mode,
Nathan Scott31b084a2005-05-05 13:25:00 -0700650 xfs_nlink_t nlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 xfs_dev_t rdev,
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000652 prid_t prid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 int okalloc,
654 xfs_buf_t **ialloc_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 xfs_inode_t **ipp)
656{
Christoph Hellwig93848a92013-04-03 16:11:17 +1100657 struct xfs_mount *mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 xfs_ino_t ino;
659 xfs_inode_t *ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 uint flags;
661 int error;
Christoph Hellwigdff35fd2008-08-13 16:44:15 +1000662 timespec_t tv;
David Chinnerbf904242008-10-30 17:36:14 +1100663 int filestreams = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
665 /*
666 * Call the space management code to pick
667 * the on-disk inode to be allocated.
668 */
David Chinnerb11f94d2007-07-11 11:09:33 +1000669 error = xfs_dialloc(tp, pip ? pip->i_ino : 0, mode, okalloc,
Christoph Hellwig08358902012-07-04 10:54:47 -0400670 ialloc_context, &ino);
David Chinnerbf904242008-10-30 17:36:14 +1100671 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 return error;
Christoph Hellwig08358902012-07-04 10:54:47 -0400673 if (*ialloc_context || ino == NULLFSINO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 *ipp = NULL;
675 return 0;
676 }
677 ASSERT(*ialloc_context == NULL);
678
679 /*
680 * Get the in-core inode with the lock held exclusively.
681 * This is because we're setting fields here we need
682 * to prevent others from looking at until we're done.
683 */
Christoph Hellwig93848a92013-04-03 16:11:17 +1100684 error = xfs_iget(mp, tp, ino, XFS_IGET_CREATE,
Christoph Hellwigec3ba852011-02-13 13:26:42 +0000685 XFS_ILOCK_EXCL, &ip);
David Chinnerbf904242008-10-30 17:36:14 +1100686 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 ASSERT(ip != NULL);
689
Al Viro576b1d62011-07-26 02:50:15 -0400690 ip->i_d.di_mode = mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 ip->i_d.di_onlink = 0;
692 ip->i_d.di_nlink = nlink;
693 ASSERT(ip->i_d.di_nlink == nlink);
David Howells9e2b2dc2008-08-13 16:20:04 +0100694 ip->i_d.di_uid = current_fsuid();
695 ip->i_d.di_gid = current_fsgid();
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000696 xfs_set_projid(ip, prid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 memset(&(ip->i_d.di_pad[0]), 0, sizeof(ip->i_d.di_pad));
698
699 /*
700 * If the superblock version is up to where we support new format
701 * inodes and this is currently an old format inode, then change
702 * the inode version number now. This way we only do the conversion
703 * here rather than here and in the flush/logging code.
704 */
Christoph Hellwig93848a92013-04-03 16:11:17 +1100705 if (xfs_sb_version_hasnlink(&mp->m_sb) &&
Christoph Hellwig51ce16d2008-11-28 14:23:39 +1100706 ip->i_d.di_version == 1) {
707 ip->i_d.di_version = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 /*
709 * We've already zeroed the old link count, the projid field,
710 * and the pad field.
711 */
712 }
713
714 /*
715 * Project ids won't be stored on disk if we are using a version 1 inode.
716 */
Christoph Hellwig51ce16d2008-11-28 14:23:39 +1100717 if ((prid != 0) && (ip->i_d.di_version == 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 xfs_bump_ino_vers2(tp, ip);
719
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000720 if (pip && XFS_INHERIT_GID(pip)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 ip->i_d.di_gid = pip->i_d.di_gid;
Al Viroabbede12011-07-26 02:31:30 -0400722 if ((pip->i_d.di_mode & S_ISGID) && S_ISDIR(mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 ip->i_d.di_mode |= S_ISGID;
724 }
725 }
726
727 /*
728 * If the group ID of the new file does not match the effective group
729 * ID or one of the supplementary group IDs, the S_ISGID bit is cleared
730 * (and only if the irix_sgid_inherit compatibility variable is set).
731 */
732 if ((irix_sgid_inherit) &&
733 (ip->i_d.di_mode & S_ISGID) &&
734 (!in_group_p((gid_t)ip->i_d.di_gid))) {
735 ip->i_d.di_mode &= ~S_ISGID;
736 }
737
738 ip->i_d.di_size = 0;
739 ip->i_d.di_nextents = 0;
740 ASSERT(ip->i_d.di_nblocks == 0);
Christoph Hellwigdff35fd2008-08-13 16:44:15 +1000741
742 nanotime(&tv);
743 ip->i_d.di_mtime.t_sec = (__int32_t)tv.tv_sec;
744 ip->i_d.di_mtime.t_nsec = (__int32_t)tv.tv_nsec;
745 ip->i_d.di_atime = ip->i_d.di_mtime;
746 ip->i_d.di_ctime = ip->i_d.di_mtime;
747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 /*
749 * di_gen will have been taken care of in xfs_iread.
750 */
751 ip->i_d.di_extsize = 0;
752 ip->i_d.di_dmevmask = 0;
753 ip->i_d.di_dmstate = 0;
754 ip->i_d.di_flags = 0;
Christoph Hellwig93848a92013-04-03 16:11:17 +1100755
756 if (ip->i_d.di_version == 3) {
757 ASSERT(ip->i_d.di_ino == ino);
758 ASSERT(uuid_equal(&ip->i_d.di_uuid, &mp->m_sb.sb_uuid));
759 ip->i_d.di_crc = 0;
760 ip->i_d.di_changecount = 1;
761 ip->i_d.di_lsn = 0;
762 ip->i_d.di_flags2 = 0;
763 memset(&(ip->i_d.di_pad2[0]), 0, sizeof(ip->i_d.di_pad2));
764 ip->i_d.di_crtime = ip->i_d.di_mtime;
765 }
766
767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 flags = XFS_ILOG_CORE;
769 switch (mode & S_IFMT) {
770 case S_IFIFO:
771 case S_IFCHR:
772 case S_IFBLK:
773 case S_IFSOCK:
774 ip->i_d.di_format = XFS_DINODE_FMT_DEV;
775 ip->i_df.if_u2.if_rdev = rdev;
776 ip->i_df.if_flags = 0;
777 flags |= XFS_ILOG_DEV;
778 break;
779 case S_IFREG:
David Chinnerbf904242008-10-30 17:36:14 +1100780 /*
781 * we can't set up filestreams until after the VFS inode
782 * is set up properly.
783 */
784 if (pip && xfs_inode_is_filestream(pip))
785 filestreams = 1;
David Chinner2a82b8b2007-07-11 11:09:12 +1000786 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 case S_IFDIR:
David Chinnerb11f94d2007-07-11 11:09:33 +1000788 if (pip && (pip->i_d.di_flags & XFS_DIFLAG_ANY)) {
Nathan Scott365ca832005-06-21 15:39:12 +1000789 uint di_flags = 0;
790
Al Viroabbede12011-07-26 02:31:30 -0400791 if (S_ISDIR(mode)) {
Nathan Scott365ca832005-06-21 15:39:12 +1000792 if (pip->i_d.di_flags & XFS_DIFLAG_RTINHERIT)
793 di_flags |= XFS_DIFLAG_RTINHERIT;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100794 if (pip->i_d.di_flags & XFS_DIFLAG_EXTSZINHERIT) {
795 di_flags |= XFS_DIFLAG_EXTSZINHERIT;
796 ip->i_d.di_extsize = pip->i_d.di_extsize;
797 }
Al Viroabbede12011-07-26 02:31:30 -0400798 } else if (S_ISREG(mode)) {
Christoph Hellwig613d7042007-10-11 17:44:08 +1000799 if (pip->i_d.di_flags & XFS_DIFLAG_RTINHERIT)
Nathan Scott365ca832005-06-21 15:39:12 +1000800 di_flags |= XFS_DIFLAG_REALTIME;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100801 if (pip->i_d.di_flags & XFS_DIFLAG_EXTSZINHERIT) {
802 di_flags |= XFS_DIFLAG_EXTSIZE;
803 ip->i_d.di_extsize = pip->i_d.di_extsize;
804 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 }
806 if ((pip->i_d.di_flags & XFS_DIFLAG_NOATIME) &&
807 xfs_inherit_noatime)
Nathan Scott365ca832005-06-21 15:39:12 +1000808 di_flags |= XFS_DIFLAG_NOATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 if ((pip->i_d.di_flags & XFS_DIFLAG_NODUMP) &&
810 xfs_inherit_nodump)
Nathan Scott365ca832005-06-21 15:39:12 +1000811 di_flags |= XFS_DIFLAG_NODUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 if ((pip->i_d.di_flags & XFS_DIFLAG_SYNC) &&
813 xfs_inherit_sync)
Nathan Scott365ca832005-06-21 15:39:12 +1000814 di_flags |= XFS_DIFLAG_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 if ((pip->i_d.di_flags & XFS_DIFLAG_NOSYMLINKS) &&
816 xfs_inherit_nosymlinks)
Nathan Scott365ca832005-06-21 15:39:12 +1000817 di_flags |= XFS_DIFLAG_NOSYMLINKS;
818 if (pip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
819 di_flags |= XFS_DIFLAG_PROJINHERIT;
Barry Naujokd3446ea2006-06-09 14:54:19 +1000820 if ((pip->i_d.di_flags & XFS_DIFLAG_NODEFRAG) &&
821 xfs_inherit_nodefrag)
822 di_flags |= XFS_DIFLAG_NODEFRAG;
David Chinner2a82b8b2007-07-11 11:09:12 +1000823 if (pip->i_d.di_flags & XFS_DIFLAG_FILESTREAM)
824 di_flags |= XFS_DIFLAG_FILESTREAM;
Nathan Scott365ca832005-06-21 15:39:12 +1000825 ip->i_d.di_flags |= di_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 }
827 /* FALLTHROUGH */
828 case S_IFLNK:
829 ip->i_d.di_format = XFS_DINODE_FMT_EXTENTS;
830 ip->i_df.if_flags = XFS_IFEXTENTS;
831 ip->i_df.if_bytes = ip->i_df.if_real_bytes = 0;
832 ip->i_df.if_u1.if_extents = NULL;
833 break;
834 default:
835 ASSERT(0);
836 }
837 /*
838 * Attribute fork settings for new inode.
839 */
840 ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
841 ip->i_d.di_anextents = 0;
842
843 /*
844 * Log the new values stuffed into the inode.
845 */
Christoph Hellwigddc34152011-09-19 15:00:54 +0000846 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 xfs_trans_log_inode(tp, ip, flags);
848
Nathan Scottb83bd132006-06-09 16:48:30 +1000849 /* now that we have an i_mode we can setup inode ops and unlock */
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000850 xfs_setup_inode(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
David Chinnerbf904242008-10-30 17:36:14 +1100852 /* now we have set up the vfs inode we can associate the filestream */
853 if (filestreams) {
854 error = xfs_filestream_associate(pip, ip);
855 if (error < 0)
856 return -error;
857 if (!error)
858 xfs_iflags_set(ip, XFS_IFILESTREAM);
859 }
860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 *ipp = ip;
862 return 0;
863}
864
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000865int
866xfs_create(
867 xfs_inode_t *dp,
868 struct xfs_name *name,
869 umode_t mode,
870 xfs_dev_t rdev,
871 xfs_inode_t **ipp)
872{
873 int is_dir = S_ISDIR(mode);
874 struct xfs_mount *mp = dp->i_mount;
875 struct xfs_inode *ip = NULL;
876 struct xfs_trans *tp = NULL;
877 int error;
878 xfs_bmap_free_t free_list;
879 xfs_fsblock_t first_block;
880 bool unlock_dp_on_error = false;
881 uint cancel_flags;
882 int committed;
883 prid_t prid;
884 struct xfs_dquot *udqp = NULL;
885 struct xfs_dquot *gdqp = NULL;
886 struct xfs_dquot *pdqp = NULL;
887 uint resblks;
888 uint log_res;
889 uint log_count;
890
891 trace_xfs_create(dp, name);
892
893 if (XFS_FORCED_SHUTDOWN(mp))
894 return XFS_ERROR(EIO);
895
896 if (dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
897 prid = xfs_get_projid(dp);
898 else
899 prid = XFS_PROJID_DEFAULT;
900
901 /*
902 * Make sure that we have allocated dquot(s) on disk.
903 */
904 error = xfs_qm_vop_dqalloc(dp, current_fsuid(), current_fsgid(), prid,
905 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT,
906 &udqp, &gdqp, &pdqp);
907 if (error)
908 return error;
909
910 if (is_dir) {
911 rdev = 0;
912 resblks = XFS_MKDIR_SPACE_RES(mp, name->len);
913 log_res = XFS_MKDIR_LOG_RES(mp);
914 log_count = XFS_MKDIR_LOG_COUNT;
915 tp = xfs_trans_alloc(mp, XFS_TRANS_MKDIR);
916 } else {
917 resblks = XFS_CREATE_SPACE_RES(mp, name->len);
918 log_res = XFS_CREATE_LOG_RES(mp);
919 log_count = XFS_CREATE_LOG_COUNT;
920 tp = xfs_trans_alloc(mp, XFS_TRANS_CREATE);
921 }
922
923 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
924
925 /*
926 * Initially assume that the file does not exist and
927 * reserve the resources for that case. If that is not
928 * the case we'll drop the one we have and get a more
929 * appropriate transaction later.
930 */
931 error = xfs_trans_reserve(tp, resblks, log_res, 0,
932 XFS_TRANS_PERM_LOG_RES, log_count);
933 if (error == ENOSPC) {
934 /* flush outstanding delalloc blocks and retry */
935 xfs_flush_inodes(mp);
936 error = xfs_trans_reserve(tp, resblks, log_res, 0,
937 XFS_TRANS_PERM_LOG_RES, log_count);
938 }
939 if (error == ENOSPC) {
940 /* No space at all so try a "no-allocation" reservation */
941 resblks = 0;
942 error = xfs_trans_reserve(tp, 0, log_res, 0,
943 XFS_TRANS_PERM_LOG_RES, log_count);
944 }
945 if (error) {
946 cancel_flags = 0;
947 goto out_trans_cancel;
948 }
949
950 xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
951 unlock_dp_on_error = true;
952
953 xfs_bmap_init(&free_list, &first_block);
954
955 /*
956 * Reserve disk quota and the inode.
957 */
958 error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp,
959 pdqp, resblks, 1, 0);
960 if (error)
961 goto out_trans_cancel;
962
963 error = xfs_dir_canenter(tp, dp, name, resblks);
964 if (error)
965 goto out_trans_cancel;
966
967 /*
968 * A newly created regular or special file just has one directory
969 * entry pointing to them, but a directory also the "." entry
970 * pointing to itself.
971 */
972 error = xfs_dir_ialloc(&tp, dp, mode, is_dir ? 2 : 1, rdev,
973 prid, resblks > 0, &ip, &committed);
974 if (error) {
975 if (error == ENOSPC)
976 goto out_trans_cancel;
977 goto out_trans_abort;
978 }
979
980 /*
981 * Now we join the directory inode to the transaction. We do not do it
982 * earlier because xfs_dir_ialloc might commit the previous transaction
983 * (and release all the locks). An error from here on will result in
984 * the transaction cancel unlocking dp so don't do it explicitly in the
985 * error path.
986 */
987 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
988 unlock_dp_on_error = false;
989
990 error = xfs_dir_createname(tp, dp, name, ip->i_ino,
991 &first_block, &free_list, resblks ?
992 resblks - XFS_IALLOC_SPACE_RES(mp) : 0);
993 if (error) {
994 ASSERT(error != ENOSPC);
995 goto out_trans_abort;
996 }
997 xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
998 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
999
1000 if (is_dir) {
1001 error = xfs_dir_init(tp, ip, dp);
1002 if (error)
1003 goto out_bmap_cancel;
1004
1005 error = xfs_bumplink(tp, dp);
1006 if (error)
1007 goto out_bmap_cancel;
1008 }
1009
1010 /*
1011 * If this is a synchronous mount, make sure that the
1012 * create transaction goes to disk before returning to
1013 * the user.
1014 */
1015 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
1016 xfs_trans_set_sync(tp);
1017
1018 /*
1019 * Attach the dquot(s) to the inodes and modify them incore.
1020 * These ids of the inode couldn't have changed since the new
1021 * inode has been locked ever since it was created.
1022 */
1023 xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp, pdqp);
1024
1025 error = xfs_bmap_finish(&tp, &free_list, &committed);
1026 if (error)
1027 goto out_bmap_cancel;
1028
1029 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1030 if (error)
1031 goto out_release_inode;
1032
1033 xfs_qm_dqrele(udqp);
1034 xfs_qm_dqrele(gdqp);
1035 xfs_qm_dqrele(pdqp);
1036
1037 *ipp = ip;
1038 return 0;
1039
1040 out_bmap_cancel:
1041 xfs_bmap_cancel(&free_list);
1042 out_trans_abort:
1043 cancel_flags |= XFS_TRANS_ABORT;
1044 out_trans_cancel:
1045 xfs_trans_cancel(tp, cancel_flags);
1046 out_release_inode:
1047 /*
1048 * Wait until after the current transaction is aborted to
1049 * release the inode. This prevents recursive transactions
1050 * and deadlocks from xfs_inactive.
1051 */
1052 if (ip)
1053 IRELE(ip);
1054
1055 xfs_qm_dqrele(udqp);
1056 xfs_qm_dqrele(gdqp);
1057 xfs_qm_dqrele(pdqp);
1058
1059 if (unlock_dp_on_error)
1060 xfs_iunlock(dp, XFS_ILOCK_EXCL);
1061 return error;
1062}
1063
1064int
1065xfs_link(
1066 xfs_inode_t *tdp,
1067 xfs_inode_t *sip,
1068 struct xfs_name *target_name)
1069{
1070 xfs_mount_t *mp = tdp->i_mount;
1071 xfs_trans_t *tp;
1072 int error;
1073 xfs_bmap_free_t free_list;
1074 xfs_fsblock_t first_block;
1075 int cancel_flags;
1076 int committed;
1077 int resblks;
1078
1079 trace_xfs_link(tdp, target_name);
1080
1081 ASSERT(!S_ISDIR(sip->i_d.di_mode));
1082
1083 if (XFS_FORCED_SHUTDOWN(mp))
1084 return XFS_ERROR(EIO);
1085
1086 error = xfs_qm_dqattach(sip, 0);
1087 if (error)
1088 goto std_return;
1089
1090 error = xfs_qm_dqattach(tdp, 0);
1091 if (error)
1092 goto std_return;
1093
1094 tp = xfs_trans_alloc(mp, XFS_TRANS_LINK);
1095 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
1096 resblks = XFS_LINK_SPACE_RES(mp, target_name->len);
1097 error = xfs_trans_reserve(tp, resblks, XFS_LINK_LOG_RES(mp), 0,
1098 XFS_TRANS_PERM_LOG_RES, XFS_LINK_LOG_COUNT);
1099 if (error == ENOSPC) {
1100 resblks = 0;
1101 error = xfs_trans_reserve(tp, 0, XFS_LINK_LOG_RES(mp), 0,
1102 XFS_TRANS_PERM_LOG_RES, XFS_LINK_LOG_COUNT);
1103 }
1104 if (error) {
1105 cancel_flags = 0;
1106 goto error_return;
1107 }
1108
1109 xfs_lock_two_inodes(sip, tdp, XFS_ILOCK_EXCL);
1110
1111 xfs_trans_ijoin(tp, sip, XFS_ILOCK_EXCL);
1112 xfs_trans_ijoin(tp, tdp, XFS_ILOCK_EXCL);
1113
1114 /*
1115 * If we are using project inheritance, we only allow hard link
1116 * creation in our tree when the project IDs are the same; else
1117 * the tree quota mechanism could be circumvented.
1118 */
1119 if (unlikely((tdp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
1120 (xfs_get_projid(tdp) != xfs_get_projid(sip)))) {
1121 error = XFS_ERROR(EXDEV);
1122 goto error_return;
1123 }
1124
1125 error = xfs_dir_canenter(tp, tdp, target_name, resblks);
1126 if (error)
1127 goto error_return;
1128
1129 xfs_bmap_init(&free_list, &first_block);
1130
1131 error = xfs_dir_createname(tp, tdp, target_name, sip->i_ino,
1132 &first_block, &free_list, resblks);
1133 if (error)
1134 goto abort_return;
1135 xfs_trans_ichgtime(tp, tdp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
1136 xfs_trans_log_inode(tp, tdp, XFS_ILOG_CORE);
1137
1138 error = xfs_bumplink(tp, sip);
1139 if (error)
1140 goto abort_return;
1141
1142 /*
1143 * If this is a synchronous mount, make sure that the
1144 * link transaction goes to disk before returning to
1145 * the user.
1146 */
1147 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
1148 xfs_trans_set_sync(tp);
1149 }
1150
1151 error = xfs_bmap_finish (&tp, &free_list, &committed);
1152 if (error) {
1153 xfs_bmap_cancel(&free_list);
1154 goto abort_return;
1155 }
1156
1157 return xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1158
1159 abort_return:
1160 cancel_flags |= XFS_TRANS_ABORT;
1161 error_return:
1162 xfs_trans_cancel(tp, cancel_flags);
1163 std_return:
1164 return error;
1165}
1166
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167/*
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001168 * Free up the underlying blocks past new_size. The new size must be smaller
1169 * than the current size. This routine can be used both for the attribute and
1170 * data fork, and does not modify the inode size, which is left to the caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 *
David Chinnerf6485052008-04-17 16:50:04 +10001172 * The transaction passed to this routine must have made a permanent log
1173 * reservation of at least XFS_ITRUNCATE_LOG_RES. This routine may commit the
1174 * given transaction and start new ones, so make sure everything involved in
1175 * the transaction is tidy before calling here. Some transaction will be
1176 * returned to the caller to be committed. The incoming transaction must
1177 * already include the inode, and both inode locks must be held exclusively.
1178 * The inode must also be "held" within the transaction. On return the inode
1179 * will be "held" within the returned transaction. This routine does NOT
1180 * require any disk space to be reserved for it within the transaction.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 *
David Chinnerf6485052008-04-17 16:50:04 +10001182 * If we get an error, we must return with the inode locked and linked into the
1183 * current transaction. This keeps things simple for the higher level code,
1184 * because it always knows that the inode is locked and held in the transaction
1185 * that returns to it whether errors occur or not. We don't mark the inode
1186 * dirty on error so that transactions can be easily aborted if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 */
1188int
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001189xfs_itruncate_extents(
1190 struct xfs_trans **tpp,
1191 struct xfs_inode *ip,
1192 int whichfork,
1193 xfs_fsize_t new_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194{
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001195 struct xfs_mount *mp = ip->i_mount;
1196 struct xfs_trans *tp = *tpp;
1197 struct xfs_trans *ntp;
1198 xfs_bmap_free_t free_list;
1199 xfs_fsblock_t first_block;
1200 xfs_fileoff_t first_unmap_block;
1201 xfs_fileoff_t last_block;
1202 xfs_filblks_t unmap_len;
1203 int committed;
1204 int error = 0;
1205 int done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Christoph Hellwig0b561852012-07-04 11:13:31 -04001207 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
1208 ASSERT(!atomic_read(&VFS_I(ip)->i_count) ||
1209 xfs_isilocked(ip, XFS_IOLOCK_EXCL));
Christoph Hellwigce7ae1512011-12-18 20:00:11 +00001210 ASSERT(new_size <= XFS_ISIZE(ip));
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001211 ASSERT(tp->t_flags & XFS_TRANS_PERM_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 ASSERT(ip->i_itemp != NULL);
Christoph Hellwig898621d2010-06-24 11:36:58 +10001213 ASSERT(ip->i_itemp->ili_lock_flags == 0);
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001214 ASSERT(!XFS_NOT_DQATTACHED(mp, ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
Christoph Hellwig673e8e52011-12-18 20:00:04 +00001216 trace_xfs_itruncate_extents_start(ip, new_size);
1217
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 /*
1219 * Since it is possible for space to become allocated beyond
1220 * the end of the file (in a crash where the space is allocated
1221 * but the inode size is not yet updated), simply remove any
1222 * blocks which show up between the new EOF and the maximum
1223 * possible file size. If the first block to be removed is
1224 * beyond the maximum file size (ie it is the same as last_block),
1225 * then there is nothing to do.
1226 */
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001227 first_unmap_block = XFS_B_TO_FSB(mp, (xfs_ufsize_t)new_size);
Dave Chinner32972382012-06-08 15:44:54 +10001228 last_block = XFS_B_TO_FSB(mp, mp->m_super->s_maxbytes);
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001229 if (first_unmap_block == last_block)
1230 return 0;
1231
1232 ASSERT(first_unmap_block < last_block);
1233 unmap_len = last_block - first_unmap_block + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 while (!done) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06001235 xfs_bmap_init(&free_list, &first_block);
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001236 error = xfs_bunmapi(tp, ip,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001237 first_unmap_block, unmap_len,
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001238 xfs_bmapi_aflag(whichfork),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 XFS_ITRUNC_MAX_EXTENTS,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001240 &first_block, &free_list,
Christoph Hellwigb4e91812010-06-23 18:11:15 +10001241 &done);
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001242 if (error)
1243 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
1245 /*
1246 * Duplicate the transaction that has the permanent
1247 * reservation and commit the old transaction.
1248 */
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001249 error = xfs_bmap_finish(&tp, &free_list, &committed);
Christoph Hellwig898621d2010-06-24 11:36:58 +10001250 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +00001251 xfs_trans_ijoin(tp, ip, 0);
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001252 if (error)
1253 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
1255 if (committed) {
1256 /*
David Chinnerf6485052008-04-17 16:50:04 +10001257 * Mark the inode dirty so it will be logged and
David Chinnere5720ee2008-04-10 12:21:18 +10001258 * moved forward in the log as part of every commit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 */
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001260 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 }
David Chinnerf6485052008-04-17 16:50:04 +10001262
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001263 ntp = xfs_trans_dup(tp);
1264 error = xfs_trans_commit(tp, 0);
1265 tp = ntp;
David Chinnere5720ee2008-04-10 12:21:18 +10001266
Christoph Hellwigddc34152011-09-19 15:00:54 +00001267 xfs_trans_ijoin(tp, ip, 0);
David Chinnerf6485052008-04-17 16:50:04 +10001268
Dave Chinnercc09c0d2008-11-17 17:37:10 +11001269 if (error)
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001270 goto out;
1271
Dave Chinnercc09c0d2008-11-17 17:37:10 +11001272 /*
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001273 * Transaction commit worked ok so we can drop the extra ticket
Dave Chinnercc09c0d2008-11-17 17:37:10 +11001274 * reference that we gained in xfs_trans_dup()
1275 */
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001276 xfs_log_ticket_put(tp->t_ticket);
1277 error = xfs_trans_reserve(tp, 0,
David Chinnerf6485052008-04-17 16:50:04 +10001278 XFS_ITRUNCATE_LOG_RES(mp), 0,
1279 XFS_TRANS_PERM_LOG_RES,
1280 XFS_ITRUNCATE_LOG_COUNT);
1281 if (error)
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001282 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 }
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001284
Christoph Hellwig673e8e52011-12-18 20:00:04 +00001285 /*
1286 * Always re-log the inode so that our permanent transaction can keep
1287 * on rolling it forward in the log.
1288 */
1289 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1290
1291 trace_xfs_itruncate_extents_end(ip, new_size);
1292
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001293out:
1294 *tpp = tp;
1295 return error;
1296out_bmap_cancel:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 /*
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001298 * If the bunmapi call encounters an error, return to the caller where
1299 * the transaction can be properly aborted. We just need to make sure
1300 * we're not holding any resources that we were not when we came in.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 */
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001302 xfs_bmap_cancel(&free_list);
1303 goto out;
1304}
1305
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001306int
1307xfs_release(
1308 xfs_inode_t *ip)
1309{
1310 xfs_mount_t *mp = ip->i_mount;
1311 int error;
1312
1313 if (!S_ISREG(ip->i_d.di_mode) || (ip->i_d.di_mode == 0))
1314 return 0;
1315
1316 /* If this is a read-only mount, don't do this (would generate I/O) */
1317 if (mp->m_flags & XFS_MOUNT_RDONLY)
1318 return 0;
1319
1320 if (!XFS_FORCED_SHUTDOWN(mp)) {
1321 int truncated;
1322
1323 /*
1324 * If we are using filestreams, and we have an unlinked
1325 * file that we are processing the last close on, then nothing
1326 * will be able to reopen and write to this file. Purge this
1327 * inode from the filestreams cache so that it doesn't delay
1328 * teardown of the inode.
1329 */
1330 if ((ip->i_d.di_nlink == 0) && xfs_inode_is_filestream(ip))
1331 xfs_filestream_deassociate(ip);
1332
1333 /*
1334 * If we previously truncated this file and removed old data
1335 * in the process, we want to initiate "early" writeout on
1336 * the last close. This is an attempt to combat the notorious
1337 * NULL files problem which is particularly noticeable from a
1338 * truncate down, buffered (re-)write (delalloc), followed by
1339 * a crash. What we are effectively doing here is
1340 * significantly reducing the time window where we'd otherwise
1341 * be exposed to that problem.
1342 */
1343 truncated = xfs_iflags_test_and_clear(ip, XFS_ITRUNCATED);
1344 if (truncated) {
1345 xfs_iflags_clear(ip, XFS_IDIRTY_RELEASE);
1346 if (VN_DIRTY(VFS_I(ip)) && ip->i_delayed_blks > 0) {
1347 error = -filemap_flush(VFS_I(ip)->i_mapping);
1348 if (error)
1349 return error;
1350 }
1351 }
1352 }
1353
1354 if (ip->i_d.di_nlink == 0)
1355 return 0;
1356
1357 if (xfs_can_free_eofblocks(ip, false)) {
1358
1359 /*
1360 * If we can't get the iolock just skip truncating the blocks
1361 * past EOF because we could deadlock with the mmap_sem
1362 * otherwise. We'll get another chance to drop them once the
1363 * last reference to the inode is dropped, so we'll never leak
1364 * blocks permanently.
1365 *
1366 * Further, check if the inode is being opened, written and
1367 * closed frequently and we have delayed allocation blocks
1368 * outstanding (e.g. streaming writes from the NFS server),
1369 * truncating the blocks past EOF will cause fragmentation to
1370 * occur.
1371 *
1372 * In this case don't do the truncation, either, but we have to
1373 * be careful how we detect this case. Blocks beyond EOF show
1374 * up as i_delayed_blks even when the inode is clean, so we
1375 * need to truncate them away first before checking for a dirty
1376 * release. Hence on the first dirty close we will still remove
1377 * the speculative allocation, but after that we will leave it
1378 * in place.
1379 */
1380 if (xfs_iflags_test(ip, XFS_IDIRTY_RELEASE))
1381 return 0;
1382
1383 error = xfs_free_eofblocks(mp, ip, true);
1384 if (error && error != EAGAIN)
1385 return error;
1386
1387 /* delalloc blocks after truncation means it really is dirty */
1388 if (ip->i_delayed_blks)
1389 xfs_iflags_set(ip, XFS_IDIRTY_RELEASE);
1390 }
1391 return 0;
1392}
1393
1394/*
1395 * xfs_inactive
1396 *
1397 * This is called when the vnode reference count for the vnode
1398 * goes to zero. If the file has been unlinked, then it must
1399 * now be truncated. Also, we clear all of the read-ahead state
1400 * kept for the inode here since the file is now closed.
1401 */
1402int
1403xfs_inactive(
1404 xfs_inode_t *ip)
1405{
1406 xfs_bmap_free_t free_list;
1407 xfs_fsblock_t first_block;
1408 int committed;
1409 xfs_trans_t *tp;
1410 xfs_mount_t *mp;
1411 int error;
1412 int truncate = 0;
1413
1414 /*
1415 * If the inode is already free, then there can be nothing
1416 * to clean up here.
1417 */
1418 if (ip->i_d.di_mode == 0 || is_bad_inode(VFS_I(ip))) {
1419 ASSERT(ip->i_df.if_real_bytes == 0);
1420 ASSERT(ip->i_df.if_broot_bytes == 0);
1421 return VN_INACTIVE_CACHE;
1422 }
1423
1424 mp = ip->i_mount;
1425
1426 error = 0;
1427
1428 /* If this is a read-only mount, don't do this (would generate I/O) */
1429 if (mp->m_flags & XFS_MOUNT_RDONLY)
1430 goto out;
1431
1432 if (ip->i_d.di_nlink != 0) {
1433 /*
1434 * force is true because we are evicting an inode from the
1435 * cache. Post-eof blocks must be freed, lest we end up with
1436 * broken free space accounting.
1437 */
1438 if (xfs_can_free_eofblocks(ip, true)) {
1439 error = xfs_free_eofblocks(mp, ip, false);
1440 if (error)
1441 return VN_INACTIVE_CACHE;
1442 }
1443 goto out;
1444 }
1445
1446 if (S_ISREG(ip->i_d.di_mode) &&
1447 (ip->i_d.di_size != 0 || XFS_ISIZE(ip) != 0 ||
1448 ip->i_d.di_nextents > 0 || ip->i_delayed_blks > 0))
1449 truncate = 1;
1450
1451 error = xfs_qm_dqattach(ip, 0);
1452 if (error)
1453 return VN_INACTIVE_CACHE;
1454
1455 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
1456 error = xfs_trans_reserve(tp, 0,
1457 (truncate || S_ISLNK(ip->i_d.di_mode)) ?
1458 XFS_ITRUNCATE_LOG_RES(mp) :
1459 XFS_IFREE_LOG_RES(mp),
1460 0,
1461 XFS_TRANS_PERM_LOG_RES,
1462 XFS_ITRUNCATE_LOG_COUNT);
1463 if (error) {
1464 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1465 xfs_trans_cancel(tp, 0);
1466 return VN_INACTIVE_CACHE;
1467 }
1468
1469 xfs_ilock(ip, XFS_ILOCK_EXCL);
1470 xfs_trans_ijoin(tp, ip, 0);
1471
1472 if (S_ISLNK(ip->i_d.di_mode)) {
1473 error = xfs_inactive_symlink(ip, &tp);
1474 if (error)
1475 goto out_cancel;
1476 } else if (truncate) {
1477 ip->i_d.di_size = 0;
1478 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1479
1480 error = xfs_itruncate_extents(&tp, ip, XFS_DATA_FORK, 0);
1481 if (error)
1482 goto out_cancel;
1483
1484 ASSERT(ip->i_d.di_nextents == 0);
1485 }
1486
1487 /*
1488 * If there are attributes associated with the file then blow them away
1489 * now. The code calls a routine that recursively deconstructs the
1490 * attribute fork. We need to just commit the current transaction
1491 * because we can't use it for xfs_attr_inactive().
1492 */
1493 if (ip->i_d.di_anextents > 0) {
1494 ASSERT(ip->i_d.di_forkoff != 0);
1495
1496 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1497 if (error)
1498 goto out_unlock;
1499
1500 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1501
1502 error = xfs_attr_inactive(ip);
1503 if (error)
1504 goto out;
1505
1506 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
1507 error = xfs_trans_reserve(tp, 0,
1508 XFS_IFREE_LOG_RES(mp),
1509 0, XFS_TRANS_PERM_LOG_RES,
1510 XFS_INACTIVE_LOG_COUNT);
1511 if (error) {
1512 xfs_trans_cancel(tp, 0);
1513 goto out;
1514 }
1515
1516 xfs_ilock(ip, XFS_ILOCK_EXCL);
1517 xfs_trans_ijoin(tp, ip, 0);
1518 }
1519
1520 if (ip->i_afp)
1521 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
1522
1523 ASSERT(ip->i_d.di_anextents == 0);
1524
1525 /*
1526 * Free the inode.
1527 */
1528 xfs_bmap_init(&free_list, &first_block);
1529 error = xfs_ifree(tp, ip, &free_list);
1530 if (error) {
1531 /*
1532 * If we fail to free the inode, shut down. The cancel
1533 * might do that, we need to make sure. Otherwise the
1534 * inode might be lost for a long time or forever.
1535 */
1536 if (!XFS_FORCED_SHUTDOWN(mp)) {
1537 xfs_notice(mp, "%s: xfs_ifree returned error %d",
1538 __func__, error);
1539 xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
1540 }
1541 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
1542 } else {
1543 /*
1544 * Credit the quota account(s). The inode is gone.
1545 */
1546 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_ICOUNT, -1);
1547
1548 /*
1549 * Just ignore errors at this point. There is nothing we can
1550 * do except to try to keep going. Make sure it's not a silent
1551 * error.
1552 */
1553 error = xfs_bmap_finish(&tp, &free_list, &committed);
1554 if (error)
1555 xfs_notice(mp, "%s: xfs_bmap_finish returned error %d",
1556 __func__, error);
1557 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1558 if (error)
1559 xfs_notice(mp, "%s: xfs_trans_commit returned error %d",
1560 __func__, error);
1561 }
1562
1563 /*
1564 * Release the dquots held by inode, if any.
1565 */
1566 xfs_qm_dqdetach(ip);
1567out_unlock:
1568 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1569out:
1570 return VN_INACTIVE_CACHE;
1571out_cancel:
1572 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
1573 goto out_unlock;
1574}
1575
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576/*
1577 * This is called when the inode's link count goes to 0.
1578 * We place the on-disk inode on a list in the AGI. It
1579 * will be pulled from this list when the inode is freed.
1580 */
1581int
1582xfs_iunlink(
1583 xfs_trans_t *tp,
1584 xfs_inode_t *ip)
1585{
1586 xfs_mount_t *mp;
1587 xfs_agi_t *agi;
1588 xfs_dinode_t *dip;
1589 xfs_buf_t *agibp;
1590 xfs_buf_t *ibp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 xfs_agino_t agino;
1592 short bucket_index;
1593 int offset;
1594 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
1596 ASSERT(ip->i_d.di_nlink == 0);
1597 ASSERT(ip->i_d.di_mode != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
1599 mp = tp->t_mountp;
1600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 /*
1602 * Get the agi buffer first. It ensures lock ordering
1603 * on the list.
1604 */
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11001605 error = xfs_read_agi(mp, tp, XFS_INO_TO_AGNO(mp, ip->i_ino), &agibp);
Vlad Apostolov859d7182007-10-11 17:44:18 +10001606 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 agi = XFS_BUF_TO_AGI(agibp);
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11001609
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 /*
1611 * Get the index into the agi hash table for the
1612 * list this inode will go on.
1613 */
1614 agino = XFS_INO_TO_AGINO(mp, ip->i_ino);
1615 ASSERT(agino != 0);
1616 bucket_index = agino % XFS_AGI_UNLINKED_BUCKETS;
1617 ASSERT(agi->agi_unlinked[bucket_index]);
Christoph Hellwig16259e72005-11-02 15:11:25 +11001618 ASSERT(be32_to_cpu(agi->agi_unlinked[bucket_index]) != agino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001620 if (agi->agi_unlinked[bucket_index] != cpu_to_be32(NULLAGINO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 /*
1622 * There is already another inode in the bucket we need
1623 * to add ourselves to. Add us at the front of the list.
1624 * Here we put the head pointer into our next pointer,
1625 * and then we fall through to point the head at us.
1626 */
Christoph Hellwig475ee412012-07-03 12:21:22 -04001627 error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &dip, &ibp,
1628 0, 0);
Vlad Apostolovc319b582007-11-23 16:27:51 +11001629 if (error)
1630 return error;
1631
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001632 ASSERT(dip->di_next_unlinked == cpu_to_be32(NULLAGINO));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 dip->di_next_unlinked = agi->agi_unlinked[bucket_index];
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +11001634 offset = ip->i_imap.im_boffset +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 offsetof(xfs_dinode_t, di_next_unlinked);
Dave Chinner0a32c262013-06-05 12:09:08 +10001636
1637 /* need to recalc the inode CRC if appropriate */
1638 xfs_dinode_calc_crc(mp, dip);
1639
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 xfs_trans_inode_buf(tp, ibp);
1641 xfs_trans_log_buf(tp, ibp, offset,
1642 (offset + sizeof(xfs_agino_t) - 1));
1643 xfs_inobp_check(mp, ibp);
1644 }
1645
1646 /*
1647 * Point the bucket head pointer at the inode being inserted.
1648 */
1649 ASSERT(agino != 0);
Christoph Hellwig16259e72005-11-02 15:11:25 +11001650 agi->agi_unlinked[bucket_index] = cpu_to_be32(agino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 offset = offsetof(xfs_agi_t, agi_unlinked) +
1652 (sizeof(xfs_agino_t) * bucket_index);
1653 xfs_trans_log_buf(tp, agibp, offset,
1654 (offset + sizeof(xfs_agino_t) - 1));
1655 return 0;
1656}
1657
1658/*
1659 * Pull the on-disk inode from the AGI unlinked list.
1660 */
1661STATIC int
1662xfs_iunlink_remove(
1663 xfs_trans_t *tp,
1664 xfs_inode_t *ip)
1665{
1666 xfs_ino_t next_ino;
1667 xfs_mount_t *mp;
1668 xfs_agi_t *agi;
1669 xfs_dinode_t *dip;
1670 xfs_buf_t *agibp;
1671 xfs_buf_t *ibp;
1672 xfs_agnumber_t agno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 xfs_agino_t agino;
1674 xfs_agino_t next_agino;
1675 xfs_buf_t *last_ibp;
Nathan Scott6fdf8cc2006-06-28 10:13:52 +10001676 xfs_dinode_t *last_dip = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 short bucket_index;
Nathan Scott6fdf8cc2006-06-28 10:13:52 +10001678 int offset, last_offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 agno = XFS_INO_TO_AGNO(mp, ip->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
1684 /*
1685 * Get the agi buffer first. It ensures lock ordering
1686 * on the list.
1687 */
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11001688 error = xfs_read_agi(mp, tp, agno, &agibp);
1689 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 return error;
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11001691
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 agi = XFS_BUF_TO_AGI(agibp);
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11001693
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 /*
1695 * Get the index into the agi hash table for the
1696 * list this inode will go on.
1697 */
1698 agino = XFS_INO_TO_AGINO(mp, ip->i_ino);
1699 ASSERT(agino != 0);
1700 bucket_index = agino % XFS_AGI_UNLINKED_BUCKETS;
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001701 ASSERT(agi->agi_unlinked[bucket_index] != cpu_to_be32(NULLAGINO));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 ASSERT(agi->agi_unlinked[bucket_index]);
1703
Christoph Hellwig16259e72005-11-02 15:11:25 +11001704 if (be32_to_cpu(agi->agi_unlinked[bucket_index]) == agino) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 /*
Christoph Hellwig475ee412012-07-03 12:21:22 -04001706 * We're at the head of the list. Get the inode's on-disk
1707 * buffer to see if there is anyone after us on the list.
1708 * Only modify our next pointer if it is not already NULLAGINO.
1709 * This saves us the overhead of dealing with the buffer when
1710 * there is no need to change it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 */
Christoph Hellwig475ee412012-07-03 12:21:22 -04001712 error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &dip, &ibp,
1713 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 if (error) {
Christoph Hellwig475ee412012-07-03 12:21:22 -04001715 xfs_warn(mp, "%s: xfs_imap_to_bp returned error %d.",
Dave Chinner0b932cc2011-03-07 10:08:35 +11001716 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 return error;
1718 }
Christoph Hellwig347d1c02007-08-28 13:57:51 +10001719 next_agino = be32_to_cpu(dip->di_next_unlinked);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 ASSERT(next_agino != 0);
1721 if (next_agino != NULLAGINO) {
Christoph Hellwig347d1c02007-08-28 13:57:51 +10001722 dip->di_next_unlinked = cpu_to_be32(NULLAGINO);
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +11001723 offset = ip->i_imap.im_boffset +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 offsetof(xfs_dinode_t, di_next_unlinked);
Dave Chinner0a32c262013-06-05 12:09:08 +10001725
1726 /* need to recalc the inode CRC if appropriate */
1727 xfs_dinode_calc_crc(mp, dip);
1728
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 xfs_trans_inode_buf(tp, ibp);
1730 xfs_trans_log_buf(tp, ibp, offset,
1731 (offset + sizeof(xfs_agino_t) - 1));
1732 xfs_inobp_check(mp, ibp);
1733 } else {
1734 xfs_trans_brelse(tp, ibp);
1735 }
1736 /*
1737 * Point the bucket head pointer at the next inode.
1738 */
1739 ASSERT(next_agino != 0);
1740 ASSERT(next_agino != agino);
Christoph Hellwig16259e72005-11-02 15:11:25 +11001741 agi->agi_unlinked[bucket_index] = cpu_to_be32(next_agino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 offset = offsetof(xfs_agi_t, agi_unlinked) +
1743 (sizeof(xfs_agino_t) * bucket_index);
1744 xfs_trans_log_buf(tp, agibp, offset,
1745 (offset + sizeof(xfs_agino_t) - 1));
1746 } else {
1747 /*
1748 * We need to search the list for the inode being freed.
1749 */
Christoph Hellwig16259e72005-11-02 15:11:25 +11001750 next_agino = be32_to_cpu(agi->agi_unlinked[bucket_index]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 last_ibp = NULL;
1752 while (next_agino != agino) {
Christoph Hellwig129dbc92012-07-03 12:21:51 -04001753 struct xfs_imap imap;
1754
1755 if (last_ibp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 xfs_trans_brelse(tp, last_ibp);
Christoph Hellwig129dbc92012-07-03 12:21:51 -04001757
1758 imap.im_blkno = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 next_ino = XFS_AGINO_TO_INO(mp, agno, next_agino);
Christoph Hellwig129dbc92012-07-03 12:21:51 -04001760
1761 error = xfs_imap(mp, tp, next_ino, &imap, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001763 xfs_warn(mp,
Christoph Hellwig129dbc92012-07-03 12:21:51 -04001764 "%s: xfs_imap returned error %d.",
1765 __func__, error);
1766 return error;
1767 }
1768
1769 error = xfs_imap_to_bp(mp, tp, &imap, &last_dip,
1770 &last_ibp, 0, 0);
1771 if (error) {
1772 xfs_warn(mp,
1773 "%s: xfs_imap_to_bp returned error %d.",
Dave Chinner0b932cc2011-03-07 10:08:35 +11001774 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 return error;
1776 }
Christoph Hellwig129dbc92012-07-03 12:21:51 -04001777
1778 last_offset = imap.im_boffset;
Christoph Hellwig347d1c02007-08-28 13:57:51 +10001779 next_agino = be32_to_cpu(last_dip->di_next_unlinked);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 ASSERT(next_agino != NULLAGINO);
1781 ASSERT(next_agino != 0);
1782 }
Christoph Hellwig475ee412012-07-03 12:21:22 -04001783
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 /*
Christoph Hellwig475ee412012-07-03 12:21:22 -04001785 * Now last_ibp points to the buffer previous to us on the
1786 * unlinked list. Pull us from the list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 */
Christoph Hellwig475ee412012-07-03 12:21:22 -04001788 error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &dip, &ibp,
1789 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 if (error) {
Christoph Hellwig475ee412012-07-03 12:21:22 -04001791 xfs_warn(mp, "%s: xfs_imap_to_bp(2) returned error %d.",
Dave Chinner0b932cc2011-03-07 10:08:35 +11001792 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 return error;
1794 }
Christoph Hellwig347d1c02007-08-28 13:57:51 +10001795 next_agino = be32_to_cpu(dip->di_next_unlinked);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 ASSERT(next_agino != 0);
1797 ASSERT(next_agino != agino);
1798 if (next_agino != NULLAGINO) {
Christoph Hellwig347d1c02007-08-28 13:57:51 +10001799 dip->di_next_unlinked = cpu_to_be32(NULLAGINO);
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +11001800 offset = ip->i_imap.im_boffset +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 offsetof(xfs_dinode_t, di_next_unlinked);
Dave Chinner0a32c262013-06-05 12:09:08 +10001802
1803 /* need to recalc the inode CRC if appropriate */
1804 xfs_dinode_calc_crc(mp, dip);
1805
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 xfs_trans_inode_buf(tp, ibp);
1807 xfs_trans_log_buf(tp, ibp, offset,
1808 (offset + sizeof(xfs_agino_t) - 1));
1809 xfs_inobp_check(mp, ibp);
1810 } else {
1811 xfs_trans_brelse(tp, ibp);
1812 }
1813 /*
1814 * Point the previous inode on the list to the next inode.
1815 */
Christoph Hellwig347d1c02007-08-28 13:57:51 +10001816 last_dip->di_next_unlinked = cpu_to_be32(next_agino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 ASSERT(next_agino != 0);
1818 offset = last_offset + offsetof(xfs_dinode_t, di_next_unlinked);
Dave Chinner0a32c262013-06-05 12:09:08 +10001819
1820 /* need to recalc the inode CRC if appropriate */
1821 xfs_dinode_calc_crc(mp, last_dip);
1822
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 xfs_trans_inode_buf(tp, last_ibp);
1824 xfs_trans_log_buf(tp, last_ibp, offset,
1825 (offset + sizeof(xfs_agino_t) - 1));
1826 xfs_inobp_check(mp, last_ibp);
1827 }
1828 return 0;
1829}
1830
Dave Chinner5b3eed72010-08-24 11:42:41 +10001831/*
1832 * A big issue when freeing the inode cluster is is that we _cannot_ skip any
1833 * inodes that are in memory - they all must be marked stale and attached to
1834 * the cluster buffer.
1835 */
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00001836STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837xfs_ifree_cluster(
1838 xfs_inode_t *free_ip,
1839 xfs_trans_t *tp,
1840 xfs_ino_t inum)
1841{
1842 xfs_mount_t *mp = free_ip->i_mount;
1843 int blks_per_cluster;
1844 int nbufs;
1845 int ninodes;
Dave Chinner5b257b42010-06-03 16:22:29 +10001846 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 xfs_daddr_t blkno;
1848 xfs_buf_t *bp;
Dave Chinner5b257b42010-06-03 16:22:29 +10001849 xfs_inode_t *ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 xfs_inode_log_item_t *iip;
1851 xfs_log_item_t *lip;
Dave Chinner5017e972010-01-11 11:47:40 +00001852 struct xfs_perag *pag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Dave Chinner5017e972010-01-11 11:47:40 +00001854 pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, inum));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 if (mp->m_sb.sb_blocksize >= XFS_INODE_CLUSTER_SIZE(mp)) {
1856 blks_per_cluster = 1;
1857 ninodes = mp->m_sb.sb_inopblock;
1858 nbufs = XFS_IALLOC_BLOCKS(mp);
1859 } else {
1860 blks_per_cluster = XFS_INODE_CLUSTER_SIZE(mp) /
1861 mp->m_sb.sb_blocksize;
1862 ninodes = blks_per_cluster * mp->m_sb.sb_inopblock;
1863 nbufs = XFS_IALLOC_BLOCKS(mp) / blks_per_cluster;
1864 }
1865
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 for (j = 0; j < nbufs; j++, inum += ninodes) {
1867 blkno = XFS_AGB_TO_DADDR(mp, XFS_INO_TO_AGNO(mp, inum),
1868 XFS_INO_TO_AGBNO(mp, inum));
1869
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 /*
Dave Chinner5b257b42010-06-03 16:22:29 +10001871 * We obtain and lock the backing buffer first in the process
1872 * here, as we have to ensure that any dirty inode that we
1873 * can't get the flush lock on is attached to the buffer.
1874 * If we scan the in-memory inodes first, then buffer IO can
1875 * complete before we get a lock on it, and hence we may fail
1876 * to mark all the active inodes on the buffer stale.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 */
Dave Chinner5b257b42010-06-03 16:22:29 +10001878 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, blkno,
Dave Chinnerb6aff292012-11-02 11:38:42 +11001879 mp->m_bsize * blks_per_cluster,
1880 XBF_UNMAPPED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00001882 if (!bp)
1883 return ENOMEM;
Dave Chinnerb0f539d2012-11-14 17:53:49 +11001884
1885 /*
1886 * This buffer may not have been correctly initialised as we
1887 * didn't read it from disk. That's not important because we are
1888 * only using to mark the buffer as stale in the log, and to
1889 * attach stale cached inodes on it. That means it will never be
1890 * dispatched for IO. If it is, we want to know about it, and we
1891 * want it to fail. We can acheive this by adding a write
1892 * verifier to the buffer.
1893 */
Dave Chinner1813dd62012-11-14 17:54:40 +11001894 bp->b_ops = &xfs_inode_buf_ops;
Dave Chinnerb0f539d2012-11-14 17:53:49 +11001895
Dave Chinner5b257b42010-06-03 16:22:29 +10001896 /*
1897 * Walk the inodes already attached to the buffer and mark them
1898 * stale. These will all have the flush locks held, so an
Dave Chinner5b3eed72010-08-24 11:42:41 +10001899 * in-memory inode walk can't lock them. By marking them all
1900 * stale first, we will not attempt to lock them in the loop
1901 * below as the XFS_ISTALE flag will be set.
Dave Chinner5b257b42010-06-03 16:22:29 +10001902 */
Christoph Hellwigadadbee2011-07-13 13:43:49 +02001903 lip = bp->b_fspriv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 while (lip) {
1905 if (lip->li_type == XFS_LI_INODE) {
1906 iip = (xfs_inode_log_item_t *)lip;
1907 ASSERT(iip->ili_logged == 1);
Christoph Hellwigca30b2a2010-06-23 18:11:15 +10001908 lip->li_cb = xfs_istale_done;
David Chinner7b2e2a32008-10-30 17:39:12 +11001909 xfs_trans_ail_copy_lsn(mp->m_ail,
1910 &iip->ili_flush_lsn,
1911 &iip->ili_item.li_lsn);
David Chinnere5ffd2b2006-11-21 18:55:33 +11001912 xfs_iflags_set(iip->ili_inode, XFS_ISTALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 }
1914 lip = lip->li_bio_list;
1915 }
1916
Dave Chinner5b3eed72010-08-24 11:42:41 +10001917
Dave Chinner5b257b42010-06-03 16:22:29 +10001918 /*
1919 * For each inode in memory attempt to add it to the inode
1920 * buffer and set it up for being staled on buffer IO
1921 * completion. This is safe as we've locked out tail pushing
1922 * and flushing by locking the buffer.
1923 *
1924 * We have already marked every inode that was part of a
1925 * transaction stale above, which means there is no point in
1926 * even trying to lock them.
1927 */
1928 for (i = 0; i < ninodes; i++) {
Dave Chinner5b3eed72010-08-24 11:42:41 +10001929retry:
Dave Chinner1a3e8f32010-12-17 17:29:43 +11001930 rcu_read_lock();
Dave Chinner5b257b42010-06-03 16:22:29 +10001931 ip = radix_tree_lookup(&pag->pag_ici_root,
1932 XFS_INO_TO_AGINO(mp, (inum + i)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
Dave Chinner1a3e8f32010-12-17 17:29:43 +11001934 /* Inode not in memory, nothing to do */
1935 if (!ip) {
1936 rcu_read_unlock();
Dave Chinner5b257b42010-06-03 16:22:29 +10001937 continue;
1938 }
1939
Dave Chinner5b3eed72010-08-24 11:42:41 +10001940 /*
Dave Chinner1a3e8f32010-12-17 17:29:43 +11001941 * because this is an RCU protected lookup, we could
1942 * find a recently freed or even reallocated inode
1943 * during the lookup. We need to check under the
1944 * i_flags_lock for a valid inode here. Skip it if it
1945 * is not valid, the wrong inode or stale.
1946 */
1947 spin_lock(&ip->i_flags_lock);
1948 if (ip->i_ino != inum + i ||
1949 __xfs_iflags_test(ip, XFS_ISTALE)) {
1950 spin_unlock(&ip->i_flags_lock);
1951 rcu_read_unlock();
1952 continue;
1953 }
1954 spin_unlock(&ip->i_flags_lock);
1955
1956 /*
Dave Chinner5b3eed72010-08-24 11:42:41 +10001957 * Don't try to lock/unlock the current inode, but we
1958 * _cannot_ skip the other inodes that we did not find
1959 * in the list attached to the buffer and are not
1960 * already marked stale. If we can't lock it, back off
1961 * and retry.
1962 */
Dave Chinner5b257b42010-06-03 16:22:29 +10001963 if (ip != free_ip &&
1964 !xfs_ilock_nowait(ip, XFS_ILOCK_EXCL)) {
Dave Chinner1a3e8f32010-12-17 17:29:43 +11001965 rcu_read_unlock();
Dave Chinner5b3eed72010-08-24 11:42:41 +10001966 delay(1);
1967 goto retry;
Dave Chinner5b257b42010-06-03 16:22:29 +10001968 }
Dave Chinner1a3e8f32010-12-17 17:29:43 +11001969 rcu_read_unlock();
Dave Chinner5b257b42010-06-03 16:22:29 +10001970
Dave Chinner5b3eed72010-08-24 11:42:41 +10001971 xfs_iflock(ip);
Dave Chinner5b257b42010-06-03 16:22:29 +10001972 xfs_iflags_set(ip, XFS_ISTALE);
Dave Chinner5b257b42010-06-03 16:22:29 +10001973
Dave Chinner5b3eed72010-08-24 11:42:41 +10001974 /*
1975 * we don't need to attach clean inodes or those only
1976 * with unlogged changes (which we throw away, anyway).
1977 */
Dave Chinner5b257b42010-06-03 16:22:29 +10001978 iip = ip->i_itemp;
Dave Chinner5b3eed72010-08-24 11:42:41 +10001979 if (!iip || xfs_inode_clean(ip)) {
Dave Chinner5b257b42010-06-03 16:22:29 +10001980 ASSERT(ip != free_ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 xfs_ifunlock(ip);
1982 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1983 continue;
1984 }
1985
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +00001986 iip->ili_last_fields = iip->ili_fields;
1987 iip->ili_fields = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 iip->ili_logged = 1;
David Chinner7b2e2a32008-10-30 17:39:12 +11001989 xfs_trans_ail_copy_lsn(mp->m_ail, &iip->ili_flush_lsn,
1990 &iip->ili_item.li_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
Christoph Hellwigca30b2a2010-06-23 18:11:15 +10001992 xfs_buf_attach_iodone(bp, xfs_istale_done,
1993 &iip->ili_item);
Dave Chinner5b257b42010-06-03 16:22:29 +10001994
1995 if (ip != free_ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 }
1998
Dave Chinner5b3eed72010-08-24 11:42:41 +10001999 xfs_trans_stale_inode_buf(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 xfs_trans_binval(tp, bp);
2001 }
2002
Dave Chinner5017e972010-01-11 11:47:40 +00002003 xfs_perag_put(pag);
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00002004 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005}
2006
2007/*
2008 * This is called to return an inode to the inode free list.
2009 * The inode should already be truncated to 0 length and have
2010 * no pages associated with it. This routine also assumes that
2011 * the inode is already a part of the transaction.
2012 *
2013 * The on-disk copy of the inode will have been added to the list
2014 * of unlinked inodes in the AGI. We need to remove the inode from
2015 * that list atomically with respect to freeing it here.
2016 */
2017int
2018xfs_ifree(
2019 xfs_trans_t *tp,
2020 xfs_inode_t *ip,
2021 xfs_bmap_free_t *flist)
2022{
2023 int error;
2024 int delete;
2025 xfs_ino_t first_ino;
2026
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10002027 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 ASSERT(ip->i_d.di_nlink == 0);
2029 ASSERT(ip->i_d.di_nextents == 0);
2030 ASSERT(ip->i_d.di_anextents == 0);
Christoph Hellwigce7ae1512011-12-18 20:00:11 +00002031 ASSERT(ip->i_d.di_size == 0 || !S_ISREG(ip->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 ASSERT(ip->i_d.di_nblocks == 0);
2033
2034 /*
2035 * Pull the on-disk inode from the AGI unlinked list.
2036 */
2037 error = xfs_iunlink_remove(tp, ip);
Dave Chinner1baaed82013-06-27 16:04:50 +10002038 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
2041 error = xfs_difree(tp, ip->i_ino, flist, &delete, &first_ino);
Dave Chinner1baaed82013-06-27 16:04:50 +10002042 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 return error;
Dave Chinner1baaed82013-06-27 16:04:50 +10002044
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 ip->i_d.di_mode = 0; /* mark incore inode as free */
2046 ip->i_d.di_flags = 0;
2047 ip->i_d.di_dmevmask = 0;
2048 ip->i_d.di_forkoff = 0; /* mark the attr fork not in use */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 ip->i_d.di_format = XFS_DINODE_FMT_EXTENTS;
2050 ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
2051 /*
2052 * Bump the generation count so no one will be confused
2053 * by reincarnations of this inode.
2054 */
2055 ip->i_d.di_gen++;
2056 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
2057
Dave Chinner1baaed82013-06-27 16:04:50 +10002058 if (delete)
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00002059 error = xfs_ifree_cluster(ip, tp, first_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00002061 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062}
2063
2064/*
Christoph Hellwig60ec67832010-02-17 19:43:56 +00002065 * This is called to unpin an inode. The caller must have the inode locked
2066 * in at least shared mode so that the buffer cannot be subsequently pinned
2067 * once someone is waiting for it to be unpinned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 */
Christoph Hellwig60ec67832010-02-17 19:43:56 +00002069static void
Christoph Hellwigf392e632011-12-18 20:00:10 +00002070xfs_iunpin(
Christoph Hellwig60ec67832010-02-17 19:43:56 +00002071 struct xfs_inode *ip)
David Chinnera3f74ff2008-03-06 13:43:42 +11002072{
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10002073 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
David Chinnera3f74ff2008-03-06 13:43:42 +11002074
Dave Chinner4aaf15d2010-03-08 11:24:07 +11002075 trace_xfs_inode_unpin_nowait(ip, _RET_IP_);
2076
David Chinnera3f74ff2008-03-06 13:43:42 +11002077 /* Give the log a push to start the unpinning I/O */
Christoph Hellwig60ec67832010-02-17 19:43:56 +00002078 xfs_log_force_lsn(ip->i_mount, ip->i_itemp->ili_last_lsn, 0);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00002079
David Chinnera3f74ff2008-03-06 13:43:42 +11002080}
2081
Christoph Hellwigf392e632011-12-18 20:00:10 +00002082static void
2083__xfs_iunpin_wait(
2084 struct xfs_inode *ip)
2085{
2086 wait_queue_head_t *wq = bit_waitqueue(&ip->i_flags, __XFS_IPINNED_BIT);
2087 DEFINE_WAIT_BIT(wait, &ip->i_flags, __XFS_IPINNED_BIT);
2088
2089 xfs_iunpin(ip);
2090
2091 do {
2092 prepare_to_wait(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
2093 if (xfs_ipincount(ip))
2094 io_schedule();
2095 } while (xfs_ipincount(ip));
2096 finish_wait(wq, &wait.wait);
2097}
2098
Dave Chinner777df5a2010-02-06 12:37:26 +11002099void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100xfs_iunpin_wait(
Christoph Hellwig60ec67832010-02-17 19:43:56 +00002101 struct xfs_inode *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102{
Christoph Hellwigf392e632011-12-18 20:00:10 +00002103 if (xfs_ipincount(ip))
2104 __xfs_iunpin_wait(ip);
David Chinnera3f74ff2008-03-06 13:43:42 +11002105}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002107int
2108xfs_remove(
2109 xfs_inode_t *dp,
2110 struct xfs_name *name,
2111 xfs_inode_t *ip)
2112{
2113 xfs_mount_t *mp = dp->i_mount;
2114 xfs_trans_t *tp = NULL;
2115 int is_dir = S_ISDIR(ip->i_d.di_mode);
2116 int error = 0;
2117 xfs_bmap_free_t free_list;
2118 xfs_fsblock_t first_block;
2119 int cancel_flags;
2120 int committed;
2121 int link_zero;
2122 uint resblks;
2123 uint log_count;
2124
2125 trace_xfs_remove(dp, name);
2126
2127 if (XFS_FORCED_SHUTDOWN(mp))
2128 return XFS_ERROR(EIO);
2129
2130 error = xfs_qm_dqattach(dp, 0);
2131 if (error)
2132 goto std_return;
2133
2134 error = xfs_qm_dqattach(ip, 0);
2135 if (error)
2136 goto std_return;
2137
2138 if (is_dir) {
2139 tp = xfs_trans_alloc(mp, XFS_TRANS_RMDIR);
2140 log_count = XFS_DEFAULT_LOG_COUNT;
2141 } else {
2142 tp = xfs_trans_alloc(mp, XFS_TRANS_REMOVE);
2143 log_count = XFS_REMOVE_LOG_COUNT;
2144 }
2145 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
2146
2147 /*
2148 * We try to get the real space reservation first,
2149 * allowing for directory btree deletion(s) implying
2150 * possible bmap insert(s). If we can't get the space
2151 * reservation then we use 0 instead, and avoid the bmap
2152 * btree insert(s) in the directory code by, if the bmap
2153 * insert tries to happen, instead trimming the LAST
2154 * block from the directory.
2155 */
2156 resblks = XFS_REMOVE_SPACE_RES(mp);
2157 error = xfs_trans_reserve(tp, resblks, XFS_REMOVE_LOG_RES(mp), 0,
2158 XFS_TRANS_PERM_LOG_RES, log_count);
2159 if (error == ENOSPC) {
2160 resblks = 0;
2161 error = xfs_trans_reserve(tp, 0, XFS_REMOVE_LOG_RES(mp), 0,
2162 XFS_TRANS_PERM_LOG_RES, log_count);
2163 }
2164 if (error) {
2165 ASSERT(error != ENOSPC);
2166 cancel_flags = 0;
2167 goto out_trans_cancel;
2168 }
2169
2170 xfs_lock_two_inodes(dp, ip, XFS_ILOCK_EXCL);
2171
2172 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
2173 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
2174
2175 /*
2176 * If we're removing a directory perform some additional validation.
2177 */
2178 if (is_dir) {
2179 ASSERT(ip->i_d.di_nlink >= 2);
2180 if (ip->i_d.di_nlink != 2) {
2181 error = XFS_ERROR(ENOTEMPTY);
2182 goto out_trans_cancel;
2183 }
2184 if (!xfs_dir_isempty(ip)) {
2185 error = XFS_ERROR(ENOTEMPTY);
2186 goto out_trans_cancel;
2187 }
2188 }
2189
2190 xfs_bmap_init(&free_list, &first_block);
2191 error = xfs_dir_removename(tp, dp, name, ip->i_ino,
2192 &first_block, &free_list, resblks);
2193 if (error) {
2194 ASSERT(error != ENOENT);
2195 goto out_bmap_cancel;
2196 }
2197 xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2198
2199 if (is_dir) {
2200 /*
2201 * Drop the link from ip's "..".
2202 */
2203 error = xfs_droplink(tp, dp);
2204 if (error)
2205 goto out_bmap_cancel;
2206
2207 /*
2208 * Drop the "." link from ip to self.
2209 */
2210 error = xfs_droplink(tp, ip);
2211 if (error)
2212 goto out_bmap_cancel;
2213 } else {
2214 /*
2215 * When removing a non-directory we need to log the parent
2216 * inode here. For a directory this is done implicitly
2217 * by the xfs_droplink call for the ".." entry.
2218 */
2219 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
2220 }
2221
2222 /*
2223 * Drop the link from dp to ip.
2224 */
2225 error = xfs_droplink(tp, ip);
2226 if (error)
2227 goto out_bmap_cancel;
2228
2229 /*
2230 * Determine if this is the last link while
2231 * we are in the transaction.
2232 */
2233 link_zero = (ip->i_d.di_nlink == 0);
2234
2235 /*
2236 * If this is a synchronous mount, make sure that the
2237 * remove transaction goes to disk before returning to
2238 * the user.
2239 */
2240 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
2241 xfs_trans_set_sync(tp);
2242
2243 error = xfs_bmap_finish(&tp, &free_list, &committed);
2244 if (error)
2245 goto out_bmap_cancel;
2246
2247 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
2248 if (error)
2249 goto std_return;
2250
2251 /*
2252 * If we are using filestreams, kill the stream association.
2253 * If the file is still open it may get a new one but that
2254 * will get killed on last close in xfs_close() so we don't
2255 * have to worry about that.
2256 */
2257 if (!is_dir && link_zero && xfs_inode_is_filestream(ip))
2258 xfs_filestream_deassociate(ip);
2259
2260 return 0;
2261
2262 out_bmap_cancel:
2263 xfs_bmap_cancel(&free_list);
2264 cancel_flags |= XFS_TRANS_ABORT;
2265 out_trans_cancel:
2266 xfs_trans_cancel(tp, cancel_flags);
2267 std_return:
2268 return error;
2269}
2270
David Chinnerbad55842008-03-06 13:43:49 +11002271STATIC int
2272xfs_iflush_cluster(
2273 xfs_inode_t *ip,
2274 xfs_buf_t *bp)
2275{
2276 xfs_mount_t *mp = ip->i_mount;
Dave Chinner5017e972010-01-11 11:47:40 +00002277 struct xfs_perag *pag;
David Chinnerbad55842008-03-06 13:43:49 +11002278 unsigned long first_index, mask;
David Chinnerc8f5f122008-05-20 11:30:15 +10002279 unsigned long inodes_per_cluster;
David Chinnerbad55842008-03-06 13:43:49 +11002280 int ilist_size;
2281 xfs_inode_t **ilist;
2282 xfs_inode_t *iq;
David Chinnerbad55842008-03-06 13:43:49 +11002283 int nr_found;
2284 int clcount = 0;
2285 int bufwasdelwri;
2286 int i;
2287
Dave Chinner5017e972010-01-11 11:47:40 +00002288 pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ip->i_ino));
David Chinnerbad55842008-03-06 13:43:49 +11002289
David Chinnerc8f5f122008-05-20 11:30:15 +10002290 inodes_per_cluster = XFS_INODE_CLUSTER_SIZE(mp) >> mp->m_sb.sb_inodelog;
2291 ilist_size = inodes_per_cluster * sizeof(xfs_inode_t *);
David Chinner49383b02008-05-19 16:29:34 +10002292 ilist = kmem_alloc(ilist_size, KM_MAYFAIL|KM_NOFS);
David Chinnerbad55842008-03-06 13:43:49 +11002293 if (!ilist)
Dave Chinner44b56e02010-01-11 11:47:43 +00002294 goto out_put;
David Chinnerbad55842008-03-06 13:43:49 +11002295
2296 mask = ~(((XFS_INODE_CLUSTER_SIZE(mp) >> mp->m_sb.sb_inodelog)) - 1);
2297 first_index = XFS_INO_TO_AGINO(mp, ip->i_ino) & mask;
Dave Chinner1a3e8f32010-12-17 17:29:43 +11002298 rcu_read_lock();
David Chinnerbad55842008-03-06 13:43:49 +11002299 /* really need a gang lookup range call here */
2300 nr_found = radix_tree_gang_lookup(&pag->pag_ici_root, (void**)ilist,
David Chinnerc8f5f122008-05-20 11:30:15 +10002301 first_index, inodes_per_cluster);
David Chinnerbad55842008-03-06 13:43:49 +11002302 if (nr_found == 0)
2303 goto out_free;
2304
2305 for (i = 0; i < nr_found; i++) {
2306 iq = ilist[i];
2307 if (iq == ip)
2308 continue;
Dave Chinner1a3e8f32010-12-17 17:29:43 +11002309
2310 /*
2311 * because this is an RCU protected lookup, we could find a
2312 * recently freed or even reallocated inode during the lookup.
2313 * We need to check under the i_flags_lock for a valid inode
2314 * here. Skip it if it is not valid or the wrong inode.
2315 */
2316 spin_lock(&ip->i_flags_lock);
2317 if (!ip->i_ino ||
2318 (XFS_INO_TO_AGINO(mp, iq->i_ino) & mask) != first_index) {
2319 spin_unlock(&ip->i_flags_lock);
2320 continue;
2321 }
2322 spin_unlock(&ip->i_flags_lock);
2323
David Chinnerbad55842008-03-06 13:43:49 +11002324 /*
2325 * Do an un-protected check to see if the inode is dirty and
2326 * is a candidate for flushing. These checks will be repeated
2327 * later after the appropriate locks are acquired.
2328 */
David Chinner33540402008-03-06 13:43:59 +11002329 if (xfs_inode_clean(iq) && xfs_ipincount(iq) == 0)
David Chinnerbad55842008-03-06 13:43:49 +11002330 continue;
David Chinnerbad55842008-03-06 13:43:49 +11002331
2332 /*
2333 * Try to get locks. If any are unavailable or it is pinned,
2334 * then this inode cannot be flushed and is skipped.
2335 */
2336
2337 if (!xfs_ilock_nowait(iq, XFS_ILOCK_SHARED))
2338 continue;
2339 if (!xfs_iflock_nowait(iq)) {
2340 xfs_iunlock(iq, XFS_ILOCK_SHARED);
2341 continue;
2342 }
2343 if (xfs_ipincount(iq)) {
2344 xfs_ifunlock(iq);
2345 xfs_iunlock(iq, XFS_ILOCK_SHARED);
2346 continue;
2347 }
2348
2349 /*
2350 * arriving here means that this inode can be flushed. First
2351 * re-check that it's dirty before flushing.
2352 */
David Chinner33540402008-03-06 13:43:59 +11002353 if (!xfs_inode_clean(iq)) {
2354 int error;
David Chinnerbad55842008-03-06 13:43:49 +11002355 error = xfs_iflush_int(iq, bp);
2356 if (error) {
2357 xfs_iunlock(iq, XFS_ILOCK_SHARED);
2358 goto cluster_corrupt_out;
2359 }
2360 clcount++;
2361 } else {
2362 xfs_ifunlock(iq);
2363 }
2364 xfs_iunlock(iq, XFS_ILOCK_SHARED);
2365 }
2366
2367 if (clcount) {
2368 XFS_STATS_INC(xs_icluster_flushcnt);
2369 XFS_STATS_ADD(xs_icluster_flushinode, clcount);
2370 }
2371
2372out_free:
Dave Chinner1a3e8f32010-12-17 17:29:43 +11002373 rcu_read_unlock();
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10002374 kmem_free(ilist);
Dave Chinner44b56e02010-01-11 11:47:43 +00002375out_put:
2376 xfs_perag_put(pag);
David Chinnerbad55842008-03-06 13:43:49 +11002377 return 0;
2378
2379
2380cluster_corrupt_out:
2381 /*
2382 * Corruption detected in the clustering loop. Invalidate the
2383 * inode buffer and shut down the filesystem.
2384 */
Dave Chinner1a3e8f32010-12-17 17:29:43 +11002385 rcu_read_unlock();
David Chinnerbad55842008-03-06 13:43:49 +11002386 /*
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002387 * Clean up the buffer. If it was delwri, just release it --
David Chinnerbad55842008-03-06 13:43:49 +11002388 * brelse can handle it with no problems. If not, shut down the
2389 * filesystem before releasing the buffer.
2390 */
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002391 bufwasdelwri = (bp->b_flags & _XBF_DELWRI_Q);
David Chinnerbad55842008-03-06 13:43:49 +11002392 if (bufwasdelwri)
2393 xfs_buf_relse(bp);
2394
2395 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
2396
2397 if (!bufwasdelwri) {
2398 /*
2399 * Just like incore_relse: if we have b_iodone functions,
2400 * mark the buffer as an error and call them. Otherwise
2401 * mark it as stale and brelse.
2402 */
Christoph Hellwigcb669ca2011-07-13 13:43:49 +02002403 if (bp->b_iodone) {
David Chinnerbad55842008-03-06 13:43:49 +11002404 XFS_BUF_UNDONE(bp);
Christoph Hellwigc867cb62011-10-10 16:52:46 +00002405 xfs_buf_stale(bp);
Chandra Seetharaman5a52c2a582011-07-22 23:39:51 +00002406 xfs_buf_ioerror(bp, EIO);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00002407 xfs_buf_ioend(bp, 0);
David Chinnerbad55842008-03-06 13:43:49 +11002408 } else {
Christoph Hellwigc867cb62011-10-10 16:52:46 +00002409 xfs_buf_stale(bp);
David Chinnerbad55842008-03-06 13:43:49 +11002410 xfs_buf_relse(bp);
2411 }
2412 }
2413
2414 /*
2415 * Unlocks the flush lock
2416 */
Dave Chinner04913fd2012-04-23 15:58:41 +10002417 xfs_iflush_abort(iq, false);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10002418 kmem_free(ilist);
Dave Chinner44b56e02010-01-11 11:47:43 +00002419 xfs_perag_put(pag);
David Chinnerbad55842008-03-06 13:43:49 +11002420 return XFS_ERROR(EFSCORRUPTED);
2421}
2422
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423/*
Christoph Hellwig4c468192012-04-23 15:58:36 +10002424 * Flush dirty inode metadata into the backing buffer.
2425 *
2426 * The caller must have the inode lock and the inode flush lock held. The
2427 * inode lock will still be held upon return to the caller, and the inode
2428 * flush lock will be released after the inode has reached the disk.
2429 *
2430 * The caller must write out the buffer returned in *bpp and release it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 */
2432int
2433xfs_iflush(
Christoph Hellwig4c468192012-04-23 15:58:36 +10002434 struct xfs_inode *ip,
2435 struct xfs_buf **bpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436{
Christoph Hellwig4c468192012-04-23 15:58:36 +10002437 struct xfs_mount *mp = ip->i_mount;
2438 struct xfs_buf *bp;
2439 struct xfs_dinode *dip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441
2442 XFS_STATS_INC(xs_iflush_count);
2443
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10002444 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
Christoph Hellwig474fce02011-12-18 20:00:09 +00002445 ASSERT(xfs_isiflocked(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 ASSERT(ip->i_d.di_format != XFS_DINODE_FMT_BTREE ||
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00002447 ip->i_d.di_nextents > XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448
Christoph Hellwig4c468192012-04-23 15:58:36 +10002449 *bpp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 xfs_iunpin_wait(ip);
2452
2453 /*
Dave Chinner4b6a4682010-01-11 11:45:21 +00002454 * For stale inodes we cannot rely on the backing buffer remaining
2455 * stale in cache for the remaining life of the stale inode and so
Christoph Hellwig475ee412012-07-03 12:21:22 -04002456 * xfs_imap_to_bp() below may give us a buffer that no longer contains
Dave Chinner4b6a4682010-01-11 11:45:21 +00002457 * inodes below. We have to check this after ensuring the inode is
2458 * unpinned so that it is safe to reclaim the stale inode after the
2459 * flush call.
2460 */
2461 if (xfs_iflags_test(ip, XFS_ISTALE)) {
2462 xfs_ifunlock(ip);
2463 return 0;
2464 }
2465
2466 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 * This may have been unpinned because the filesystem is shutting
2468 * down forcibly. If that's the case we must not write this inode
Christoph Hellwig32ce90a2012-04-23 15:58:32 +10002469 * to disk, because the log record didn't make it to disk.
2470 *
2471 * We also have to remove the log item from the AIL in this case,
2472 * as we wait for an empty AIL as part of the unmount process.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 */
2474 if (XFS_FORCED_SHUTDOWN(mp)) {
Christoph Hellwig32ce90a2012-04-23 15:58:32 +10002475 error = XFS_ERROR(EIO);
2476 goto abort_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 }
2478
2479 /*
David Chinnera3f74ff2008-03-06 13:43:42 +11002480 * Get the buffer containing the on-disk inode.
2481 */
Christoph Hellwig475ee412012-07-03 12:21:22 -04002482 error = xfs_imap_to_bp(mp, NULL, &ip->i_imap, &dip, &bp, XBF_TRYLOCK,
2483 0);
David Chinnera3f74ff2008-03-06 13:43:42 +11002484 if (error || !bp) {
2485 xfs_ifunlock(ip);
2486 return error;
2487 }
2488
2489 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 * First flush out the inode that xfs_iflush was called with.
2491 */
2492 error = xfs_iflush_int(ip, bp);
David Chinnerbad55842008-03-06 13:43:49 +11002493 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 goto corrupt_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495
2496 /*
David Chinnera3f74ff2008-03-06 13:43:42 +11002497 * If the buffer is pinned then push on the log now so we won't
2498 * get stuck waiting in the write for too long.
2499 */
Chandra Seetharaman811e64c2011-07-22 23:40:27 +00002500 if (xfs_buf_ispinned(bp))
Christoph Hellwiga14a3482010-01-19 09:56:46 +00002501 xfs_log_force(mp, 0);
David Chinnera3f74ff2008-03-06 13:43:42 +11002502
2503 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 * inode clustering:
2505 * see if other inodes can be gathered into this write
2506 */
David Chinnerbad55842008-03-06 13:43:49 +11002507 error = xfs_iflush_cluster(ip, bp);
2508 if (error)
2509 goto cluster_corrupt_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510
Christoph Hellwig4c468192012-04-23 15:58:36 +10002511 *bpp = bp;
2512 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513
2514corrupt_out:
2515 xfs_buf_relse(bp);
Nathan Scott7d04a332006-06-09 14:58:38 +10002516 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517cluster_corrupt_out:
Christoph Hellwig32ce90a2012-04-23 15:58:32 +10002518 error = XFS_ERROR(EFSCORRUPTED);
2519abort_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 /*
2521 * Unlocks the flush lock
2522 */
Dave Chinner04913fd2012-04-23 15:58:41 +10002523 xfs_iflush_abort(ip, false);
Christoph Hellwig32ce90a2012-04-23 15:58:32 +10002524 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525}
2526
2527
2528STATIC int
2529xfs_iflush_int(
Christoph Hellwig93848a92013-04-03 16:11:17 +11002530 struct xfs_inode *ip,
2531 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532{
Christoph Hellwig93848a92013-04-03 16:11:17 +11002533 struct xfs_inode_log_item *iip = ip->i_itemp;
2534 struct xfs_dinode *dip;
2535 struct xfs_mount *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10002537 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
Christoph Hellwig474fce02011-12-18 20:00:09 +00002538 ASSERT(xfs_isiflocked(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 ASSERT(ip->i_d.di_format != XFS_DINODE_FMT_BTREE ||
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00002540 ip->i_d.di_nextents > XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK));
Christoph Hellwig93848a92013-04-03 16:11:17 +11002541 ASSERT(iip != NULL && iip->ili_fields != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 /* set *dip = inode's place in the buffer */
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +11002544 dip = (xfs_dinode_t *)xfs_buf_offset(bp, ip->i_imap.im_boffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545
Christoph Hellwig69ef9212011-07-08 14:36:05 +02002546 if (XFS_TEST_ERROR(dip->di_magic != cpu_to_be16(XFS_DINODE_MAGIC),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 mp, XFS_ERRTAG_IFLUSH_1, XFS_RANDOM_IFLUSH_1)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11002548 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
2549 "%s: Bad inode %Lu magic number 0x%x, ptr 0x%p",
2550 __func__, ip->i_ino, be16_to_cpu(dip->di_magic), dip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 goto corrupt_out;
2552 }
2553 if (XFS_TEST_ERROR(ip->i_d.di_magic != XFS_DINODE_MAGIC,
2554 mp, XFS_ERRTAG_IFLUSH_2, XFS_RANDOM_IFLUSH_2)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11002555 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
2556 "%s: Bad inode %Lu, ptr 0x%p, magic number 0x%x",
2557 __func__, ip->i_ino, ip, ip->i_d.di_magic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 goto corrupt_out;
2559 }
Al Viroabbede12011-07-26 02:31:30 -04002560 if (S_ISREG(ip->i_d.di_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 if (XFS_TEST_ERROR(
2562 (ip->i_d.di_format != XFS_DINODE_FMT_EXTENTS) &&
2563 (ip->i_d.di_format != XFS_DINODE_FMT_BTREE),
2564 mp, XFS_ERRTAG_IFLUSH_3, XFS_RANDOM_IFLUSH_3)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11002565 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
2566 "%s: Bad regular inode %Lu, ptr 0x%p",
2567 __func__, ip->i_ino, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 goto corrupt_out;
2569 }
Al Viroabbede12011-07-26 02:31:30 -04002570 } else if (S_ISDIR(ip->i_d.di_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 if (XFS_TEST_ERROR(
2572 (ip->i_d.di_format != XFS_DINODE_FMT_EXTENTS) &&
2573 (ip->i_d.di_format != XFS_DINODE_FMT_BTREE) &&
2574 (ip->i_d.di_format != XFS_DINODE_FMT_LOCAL),
2575 mp, XFS_ERRTAG_IFLUSH_4, XFS_RANDOM_IFLUSH_4)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11002576 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
2577 "%s: Bad directory inode %Lu, ptr 0x%p",
2578 __func__, ip->i_ino, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 goto corrupt_out;
2580 }
2581 }
2582 if (XFS_TEST_ERROR(ip->i_d.di_nextents + ip->i_d.di_anextents >
2583 ip->i_d.di_nblocks, mp, XFS_ERRTAG_IFLUSH_5,
2584 XFS_RANDOM_IFLUSH_5)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11002585 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
2586 "%s: detected corrupt incore inode %Lu, "
2587 "total extents = %d, nblocks = %Ld, ptr 0x%p",
2588 __func__, ip->i_ino,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 ip->i_d.di_nextents + ip->i_d.di_anextents,
Dave Chinner6a19d932011-03-07 10:02:35 +11002590 ip->i_d.di_nblocks, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 goto corrupt_out;
2592 }
2593 if (XFS_TEST_ERROR(ip->i_d.di_forkoff > mp->m_sb.sb_inodesize,
2594 mp, XFS_ERRTAG_IFLUSH_6, XFS_RANDOM_IFLUSH_6)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11002595 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
2596 "%s: bad inode %Lu, forkoff 0x%x, ptr 0x%p",
2597 __func__, ip->i_ino, ip->i_d.di_forkoff, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 goto corrupt_out;
2599 }
Dave Chinnere60896d2013-07-24 15:47:30 +10002600
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 /*
Dave Chinnere60896d2013-07-24 15:47:30 +10002602 * Inode item log recovery for v1/v2 inodes are dependent on the
2603 * di_flushiter count for correct sequencing. We bump the flush
2604 * iteration count so we can detect flushes which postdate a log record
2605 * during recovery. This is redundant as we now log every change and
2606 * hence this can't happen but we need to still do it to ensure
2607 * backwards compatibility with old kernels that predate logging all
2608 * inode changes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 */
Dave Chinnere60896d2013-07-24 15:47:30 +10002610 if (ip->i_d.di_version < 3)
2611 ip->i_d.di_flushiter++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612
2613 /*
2614 * Copy the dirty parts of the inode into the on-disk
2615 * inode. We always copy out the core of the inode,
2616 * because if the inode is dirty at all the core must
2617 * be.
2618 */
Christoph Hellwig81591fe2008-11-28 14:23:39 +11002619 xfs_dinode_to_disk(dip, &ip->i_d);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620
2621 /* Wrap, we never let the log put out DI_MAX_FLUSH */
2622 if (ip->i_d.di_flushiter == DI_MAX_FLUSH)
2623 ip->i_d.di_flushiter = 0;
2624
2625 /*
2626 * If this is really an old format inode and the superblock version
2627 * has not been updated to support only new format inodes, then
2628 * convert back to the old inode format. If the superblock version
2629 * has been updated, then make the conversion permanent.
2630 */
Christoph Hellwig51ce16d2008-11-28 14:23:39 +11002631 ASSERT(ip->i_d.di_version == 1 || xfs_sb_version_hasnlink(&mp->m_sb));
2632 if (ip->i_d.di_version == 1) {
Eric Sandeen62118702008-03-06 13:44:28 +11002633 if (!xfs_sb_version_hasnlink(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 /*
2635 * Convert it back.
2636 */
2637 ASSERT(ip->i_d.di_nlink <= XFS_MAXLINK_1);
Christoph Hellwig81591fe2008-11-28 14:23:39 +11002638 dip->di_onlink = cpu_to_be16(ip->i_d.di_nlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 } else {
2640 /*
2641 * The superblock version has already been bumped,
2642 * so just make the conversion to the new inode
2643 * format permanent.
2644 */
Christoph Hellwig51ce16d2008-11-28 14:23:39 +11002645 ip->i_d.di_version = 2;
2646 dip->di_version = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 ip->i_d.di_onlink = 0;
Christoph Hellwig81591fe2008-11-28 14:23:39 +11002648 dip->di_onlink = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 memset(&(ip->i_d.di_pad[0]), 0, sizeof(ip->i_d.di_pad));
Christoph Hellwig81591fe2008-11-28 14:23:39 +11002650 memset(&(dip->di_pad[0]), 0,
2651 sizeof(dip->di_pad));
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00002652 ASSERT(xfs_get_projid(ip) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 }
2654 }
2655
David Chinnere4ac9672008-04-10 12:23:58 +10002656 xfs_iflush_fork(ip, dip, iip, XFS_DATA_FORK, bp);
2657 if (XFS_IFORK_Q(ip))
2658 xfs_iflush_fork(ip, dip, iip, XFS_ATTR_FORK, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 xfs_inobp_check(mp, bp);
2660
2661 /*
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +00002662 * We've recorded everything logged in the inode, so we'd like to clear
2663 * the ili_fields bits so we don't log and flush things unnecessarily.
2664 * However, we can't stop logging all this information until the data
2665 * we've copied into the disk buffer is written to disk. If we did we
2666 * might overwrite the copy of the inode in the log with all the data
2667 * after re-logging only part of it, and in the face of a crash we
2668 * wouldn't have all the data we need to recover.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 *
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +00002670 * What we do is move the bits to the ili_last_fields field. When
2671 * logging the inode, these bits are moved back to the ili_fields field.
2672 * In the xfs_iflush_done() routine we clear ili_last_fields, since we
2673 * know that the information those bits represent is permanently on
2674 * disk. As long as the flush completes before the inode is logged
2675 * again, then both ili_fields and ili_last_fields will be cleared.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 *
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +00002677 * We can play with the ili_fields bits here, because the inode lock
2678 * must be held exclusively in order to set bits there and the flush
2679 * lock protects the ili_last_fields bits. Set ili_logged so the flush
2680 * done routine can tell whether or not to look in the AIL. Also, store
2681 * the current LSN of the inode so that we can tell whether the item has
2682 * moved in the AIL from xfs_iflush_done(). In order to read the lsn we
2683 * need the AIL lock, because it is a 64 bit value that cannot be read
2684 * atomically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 */
Christoph Hellwig93848a92013-04-03 16:11:17 +11002686 iip->ili_last_fields = iip->ili_fields;
2687 iip->ili_fields = 0;
2688 iip->ili_logged = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689
Christoph Hellwig93848a92013-04-03 16:11:17 +11002690 xfs_trans_ail_copy_lsn(mp->m_ail, &iip->ili_flush_lsn,
2691 &iip->ili_item.li_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692
Christoph Hellwig93848a92013-04-03 16:11:17 +11002693 /*
2694 * Attach the function xfs_iflush_done to the inode's
2695 * buffer. This will remove the inode from the AIL
2696 * and unlock the inode's flush lock when the inode is
2697 * completely written to disk.
2698 */
2699 xfs_buf_attach_iodone(bp, xfs_iflush_done, &iip->ili_item);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700
Christoph Hellwig93848a92013-04-03 16:11:17 +11002701 /* update the lsn in the on disk inode if required */
2702 if (ip->i_d.di_version == 3)
2703 dip->di_lsn = cpu_to_be64(iip->ili_item.li_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704
Christoph Hellwig93848a92013-04-03 16:11:17 +11002705 /* generate the checksum. */
2706 xfs_dinode_calc_crc(mp, dip);
2707
2708 ASSERT(bp->b_fspriv != NULL);
2709 ASSERT(bp->b_iodone != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 return 0;
2711
2712corrupt_out:
2713 return XFS_ERROR(EFSCORRUPTED);
2714}