blob: a9079c142041bc1269fb9fa12167cae11e3e3ccc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11003 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Robert P. J. Day40ebd812007-11-23 16:30:51 +110018#include <linux/log2.h>
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_fs.h"
Dave Chinner70a9883c2013-10-23 10:36:05 +110022#include "xfs_shared.h"
Dave Chinner239880e2013-10-23 10:50:10 +110023#include "xfs_format.h"
24#include "xfs_log_format.h"
25#include "xfs_trans_resv.h"
Nathan Scotta844f452005-11-02 14:38:42 +110026#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_sb.h"
28#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_mount.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110030#include "xfs_inode.h"
Dave Chinner57062782013-10-15 09:17:51 +110031#include "xfs_da_format.h"
Dave Chinnerc24b5df2013-08-12 20:49:45 +100032#include "xfs_da_btree.h"
Dave Chinnerc24b5df2013-08-12 20:49:45 +100033#include "xfs_dir2.h"
Nathan Scotta844f452005-11-02 14:38:42 +110034#include "xfs_attr_sf.h"
Dave Chinnerc24b5df2013-08-12 20:49:45 +100035#include "xfs_attr.h"
Dave Chinner239880e2013-10-23 10:50:10 +110036#include "xfs_trans_space.h"
37#include "xfs_trans.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include "xfs_buf_item.h"
Nathan Scotta844f452005-11-02 14:38:42 +110039#include "xfs_inode_item.h"
Nathan Scotta844f452005-11-02 14:38:42 +110040#include "xfs_ialloc.h"
41#include "xfs_bmap.h"
Dave Chinner68988112013-08-12 20:49:42 +100042#include "xfs_bmap_util.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include "xfs_quota.h"
David Chinner2a82b8b2007-07-11 11:09:12 +100045#include "xfs_filestream.h"
Christoph Hellwig93848a92013-04-03 16:11:17 +110046#include "xfs_cksum.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000047#include "xfs_trace.h"
Dave Chinner33479e02012-10-08 21:56:11 +110048#include "xfs_icache.h"
Dave Chinnerc24b5df2013-08-12 20:49:45 +100049#include "xfs_symlink.h"
Dave Chinner239880e2013-10-23 10:50:10 +110050#include "xfs_trans_priv.h"
51#include "xfs_log.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110052#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Linus Torvalds1da177e2005-04-16 15:20:36 -070054kmem_zone_t *xfs_inode_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56/*
Christoph Hellwig8f04c472011-07-08 14:34:34 +020057 * Used in xfs_itruncate_extents(). This is the maximum number of extents
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 * freed from a file in a single transaction.
59 */
60#define XFS_ITRUNC_MAX_EXTENTS 2
61
62STATIC int xfs_iflush_int(xfs_inode_t *, xfs_buf_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Zhi Yong Wuab297432013-12-18 08:22:41 +080064STATIC int xfs_iunlink_remove(xfs_trans_t *, xfs_inode_t *);
65
Dave Chinner2a0ec1d2012-04-23 15:59:02 +100066/*
67 * helper function to extract extent size hint from inode
68 */
69xfs_extlen_t
70xfs_get_extsz_hint(
71 struct xfs_inode *ip)
72{
73 if ((ip->i_d.di_flags & XFS_DIFLAG_EXTSIZE) && ip->i_d.di_extsize)
74 return ip->i_d.di_extsize;
75 if (XFS_IS_REALTIME_INODE(ip))
76 return ip->i_mount->m_sb.sb_rextsize;
77 return 0;
78}
79
Dave Chinnerfa96aca2012-10-08 21:56:10 +110080/*
Christoph Hellwigefa70be2013-12-18 02:14:39 -080081 * These two are wrapper routines around the xfs_ilock() routine used to
82 * centralize some grungy code. They are used in places that wish to lock the
83 * inode solely for reading the extents. The reason these places can't just
84 * call xfs_ilock(ip, XFS_ILOCK_SHARED) is that the inode lock also guards to
85 * bringing in of the extents from disk for a file in b-tree format. If the
86 * inode is in b-tree format, then we need to lock the inode exclusively until
87 * the extents are read in. Locking it exclusively all the time would limit
88 * our parallelism unnecessarily, though. What we do instead is check to see
89 * if the extents have been read in yet, and only lock the inode exclusively
90 * if they have not.
Dave Chinnerfa96aca2012-10-08 21:56:10 +110091 *
Christoph Hellwigefa70be2013-12-18 02:14:39 -080092 * The functions return a value which should be given to the corresponding
Christoph Hellwig01f4f322013-12-06 12:30:08 -080093 * xfs_iunlock() call.
Dave Chinnerfa96aca2012-10-08 21:56:10 +110094 */
95uint
Christoph Hellwig309ecac2013-12-06 12:30:09 -080096xfs_ilock_data_map_shared(
97 struct xfs_inode *ip)
Dave Chinnerfa96aca2012-10-08 21:56:10 +110098{
Christoph Hellwig309ecac2013-12-06 12:30:09 -080099 uint lock_mode = XFS_ILOCK_SHARED;
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100100
Christoph Hellwig309ecac2013-12-06 12:30:09 -0800101 if (ip->i_d.di_format == XFS_DINODE_FMT_BTREE &&
102 (ip->i_df.if_flags & XFS_IFEXTENTS) == 0)
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100103 lock_mode = XFS_ILOCK_EXCL;
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100104 xfs_ilock(ip, lock_mode);
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100105 return lock_mode;
106}
107
Christoph Hellwigefa70be2013-12-18 02:14:39 -0800108uint
109xfs_ilock_attr_map_shared(
110 struct xfs_inode *ip)
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100111{
Christoph Hellwigefa70be2013-12-18 02:14:39 -0800112 uint lock_mode = XFS_ILOCK_SHARED;
113
114 if (ip->i_d.di_aformat == XFS_DINODE_FMT_BTREE &&
115 (ip->i_afp->if_flags & XFS_IFEXTENTS) == 0)
116 lock_mode = XFS_ILOCK_EXCL;
117 xfs_ilock(ip, lock_mode);
118 return lock_mode;
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100119}
120
121/*
122 * The xfs inode contains 2 locks: a multi-reader lock called the
123 * i_iolock and a multi-reader lock called the i_lock. This routine
124 * allows either or both of the locks to be obtained.
125 *
126 * The 2 locks should always be ordered so that the IO lock is
127 * obtained first in order to prevent deadlock.
128 *
129 * ip -- the inode being locked
130 * lock_flags -- this parameter indicates the inode's locks
131 * to be locked. It can be:
132 * XFS_IOLOCK_SHARED,
133 * XFS_IOLOCK_EXCL,
134 * XFS_ILOCK_SHARED,
135 * XFS_ILOCK_EXCL,
136 * XFS_IOLOCK_SHARED | XFS_ILOCK_SHARED,
137 * XFS_IOLOCK_SHARED | XFS_ILOCK_EXCL,
138 * XFS_IOLOCK_EXCL | XFS_ILOCK_SHARED,
139 * XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL
140 */
141void
142xfs_ilock(
143 xfs_inode_t *ip,
144 uint lock_flags)
145{
146 trace_xfs_ilock(ip, lock_flags, _RET_IP_);
147
148 /*
149 * You can't set both SHARED and EXCL for the same lock,
150 * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
151 * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
152 */
153 ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) !=
154 (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL));
155 ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) !=
156 (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
157 ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_DEP_MASK)) == 0);
158
159 if (lock_flags & XFS_IOLOCK_EXCL)
160 mrupdate_nested(&ip->i_iolock, XFS_IOLOCK_DEP(lock_flags));
161 else if (lock_flags & XFS_IOLOCK_SHARED)
162 mraccess_nested(&ip->i_iolock, XFS_IOLOCK_DEP(lock_flags));
163
164 if (lock_flags & XFS_ILOCK_EXCL)
165 mrupdate_nested(&ip->i_lock, XFS_ILOCK_DEP(lock_flags));
166 else if (lock_flags & XFS_ILOCK_SHARED)
167 mraccess_nested(&ip->i_lock, XFS_ILOCK_DEP(lock_flags));
168}
169
170/*
171 * This is just like xfs_ilock(), except that the caller
172 * is guaranteed not to sleep. It returns 1 if it gets
173 * the requested locks and 0 otherwise. If the IO lock is
174 * obtained but the inode lock cannot be, then the IO lock
175 * is dropped before returning.
176 *
177 * ip -- the inode being locked
178 * lock_flags -- this parameter indicates the inode's locks to be
179 * to be locked. See the comment for xfs_ilock() for a list
180 * of valid values.
181 */
182int
183xfs_ilock_nowait(
184 xfs_inode_t *ip,
185 uint lock_flags)
186{
187 trace_xfs_ilock_nowait(ip, lock_flags, _RET_IP_);
188
189 /*
190 * You can't set both SHARED and EXCL for the same lock,
191 * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
192 * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
193 */
194 ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) !=
195 (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL));
196 ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) !=
197 (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
198 ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_DEP_MASK)) == 0);
199
200 if (lock_flags & XFS_IOLOCK_EXCL) {
201 if (!mrtryupdate(&ip->i_iolock))
202 goto out;
203 } else if (lock_flags & XFS_IOLOCK_SHARED) {
204 if (!mrtryaccess(&ip->i_iolock))
205 goto out;
206 }
207 if (lock_flags & XFS_ILOCK_EXCL) {
208 if (!mrtryupdate(&ip->i_lock))
209 goto out_undo_iolock;
210 } else if (lock_flags & XFS_ILOCK_SHARED) {
211 if (!mrtryaccess(&ip->i_lock))
212 goto out_undo_iolock;
213 }
214 return 1;
215
216 out_undo_iolock:
217 if (lock_flags & XFS_IOLOCK_EXCL)
218 mrunlock_excl(&ip->i_iolock);
219 else if (lock_flags & XFS_IOLOCK_SHARED)
220 mrunlock_shared(&ip->i_iolock);
221 out:
222 return 0;
223}
224
225/*
226 * xfs_iunlock() is used to drop the inode locks acquired with
227 * xfs_ilock() and xfs_ilock_nowait(). The caller must pass
228 * in the flags given to xfs_ilock() or xfs_ilock_nowait() so
229 * that we know which locks to drop.
230 *
231 * ip -- the inode being unlocked
232 * lock_flags -- this parameter indicates the inode's locks to be
233 * to be unlocked. See the comment for xfs_ilock() for a list
234 * of valid values for this parameter.
235 *
236 */
237void
238xfs_iunlock(
239 xfs_inode_t *ip,
240 uint lock_flags)
241{
242 /*
243 * You can't set both SHARED and EXCL for the same lock,
244 * and only XFS_IOLOCK_SHARED, XFS_IOLOCK_EXCL, XFS_ILOCK_SHARED,
245 * and XFS_ILOCK_EXCL are valid values to set in lock_flags.
246 */
247 ASSERT((lock_flags & (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL)) !=
248 (XFS_IOLOCK_SHARED | XFS_IOLOCK_EXCL));
249 ASSERT((lock_flags & (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL)) !=
250 (XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
251 ASSERT((lock_flags & ~(XFS_LOCK_MASK | XFS_LOCK_DEP_MASK)) == 0);
252 ASSERT(lock_flags != 0);
253
254 if (lock_flags & XFS_IOLOCK_EXCL)
255 mrunlock_excl(&ip->i_iolock);
256 else if (lock_flags & XFS_IOLOCK_SHARED)
257 mrunlock_shared(&ip->i_iolock);
258
259 if (lock_flags & XFS_ILOCK_EXCL)
260 mrunlock_excl(&ip->i_lock);
261 else if (lock_flags & XFS_ILOCK_SHARED)
262 mrunlock_shared(&ip->i_lock);
263
264 trace_xfs_iunlock(ip, lock_flags, _RET_IP_);
265}
266
267/*
268 * give up write locks. the i/o lock cannot be held nested
269 * if it is being demoted.
270 */
271void
272xfs_ilock_demote(
273 xfs_inode_t *ip,
274 uint lock_flags)
275{
276 ASSERT(lock_flags & (XFS_IOLOCK_EXCL|XFS_ILOCK_EXCL));
277 ASSERT((lock_flags & ~(XFS_IOLOCK_EXCL|XFS_ILOCK_EXCL)) == 0);
278
279 if (lock_flags & XFS_ILOCK_EXCL)
280 mrdemote(&ip->i_lock);
281 if (lock_flags & XFS_IOLOCK_EXCL)
282 mrdemote(&ip->i_iolock);
283
284 trace_xfs_ilock_demote(ip, lock_flags, _RET_IP_);
285}
286
Dave Chinner742ae1e2013-04-30 21:39:34 +1000287#if defined(DEBUG) || defined(XFS_WARN)
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100288int
289xfs_isilocked(
290 xfs_inode_t *ip,
291 uint lock_flags)
292{
293 if (lock_flags & (XFS_ILOCK_EXCL|XFS_ILOCK_SHARED)) {
294 if (!(lock_flags & XFS_ILOCK_SHARED))
295 return !!ip->i_lock.mr_writer;
296 return rwsem_is_locked(&ip->i_lock.mr_lock);
297 }
298
299 if (lock_flags & (XFS_IOLOCK_EXCL|XFS_IOLOCK_SHARED)) {
300 if (!(lock_flags & XFS_IOLOCK_SHARED))
301 return !!ip->i_iolock.mr_writer;
302 return rwsem_is_locked(&ip->i_iolock.mr_lock);
303 }
304
305 ASSERT(0);
306 return 0;
307}
308#endif
309
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000310#ifdef DEBUG
311int xfs_locked_n;
312int xfs_small_retries;
313int xfs_middle_retries;
314int xfs_lots_retries;
315int xfs_lock_delays;
316#endif
317
318/*
319 * Bump the subclass so xfs_lock_inodes() acquires each lock with
320 * a different value
321 */
322static inline int
323xfs_lock_inumorder(int lock_mode, int subclass)
324{
325 if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL))
326 lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_IOLOCK_SHIFT;
327 if (lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL))
328 lock_mode |= (subclass + XFS_LOCK_INUMORDER) << XFS_ILOCK_SHIFT;
329
330 return lock_mode;
331}
332
333/*
334 * The following routine will lock n inodes in exclusive mode.
335 * We assume the caller calls us with the inodes in i_ino order.
336 *
337 * We need to detect deadlock where an inode that we lock
338 * is in the AIL and we start waiting for another inode that is locked
339 * by a thread in a long running transaction (such as truncate). This can
340 * result in deadlock since the long running trans might need to wait
341 * for the inode we just locked in order to push the tail and free space
342 * in the log.
343 */
344void
345xfs_lock_inodes(
346 xfs_inode_t **ips,
347 int inodes,
348 uint lock_mode)
349{
350 int attempts = 0, i, j, try_lock;
351 xfs_log_item_t *lp;
352
353 ASSERT(ips && (inodes >= 2)); /* we need at least two */
354
355 try_lock = 0;
356 i = 0;
357
358again:
359 for (; i < inodes; i++) {
360 ASSERT(ips[i]);
361
362 if (i && (ips[i] == ips[i-1])) /* Already locked */
363 continue;
364
365 /*
366 * If try_lock is not set yet, make sure all locked inodes
367 * are not in the AIL.
368 * If any are, set try_lock to be used later.
369 */
370
371 if (!try_lock) {
372 for (j = (i - 1); j >= 0 && !try_lock; j--) {
373 lp = (xfs_log_item_t *)ips[j]->i_itemp;
374 if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
375 try_lock++;
376 }
377 }
378 }
379
380 /*
381 * If any of the previous locks we have locked is in the AIL,
382 * we must TRY to get the second and subsequent locks. If
383 * we can't get any, we must release all we have
384 * and try again.
385 */
386
387 if (try_lock) {
388 /* try_lock must be 0 if i is 0. */
389 /*
390 * try_lock means we have an inode locked
391 * that is in the AIL.
392 */
393 ASSERT(i != 0);
394 if (!xfs_ilock_nowait(ips[i], xfs_lock_inumorder(lock_mode, i))) {
395 attempts++;
396
397 /*
398 * Unlock all previous guys and try again.
399 * xfs_iunlock will try to push the tail
400 * if the inode is in the AIL.
401 */
402
403 for(j = i - 1; j >= 0; j--) {
404
405 /*
406 * Check to see if we've already
407 * unlocked this one.
408 * Not the first one going back,
409 * and the inode ptr is the same.
410 */
411 if ((j != (i - 1)) && ips[j] ==
412 ips[j+1])
413 continue;
414
415 xfs_iunlock(ips[j], lock_mode);
416 }
417
418 if ((attempts % 5) == 0) {
419 delay(1); /* Don't just spin the CPU */
420#ifdef DEBUG
421 xfs_lock_delays++;
422#endif
423 }
424 i = 0;
425 try_lock = 0;
426 goto again;
427 }
428 } else {
429 xfs_ilock(ips[i], xfs_lock_inumorder(lock_mode, i));
430 }
431 }
432
433#ifdef DEBUG
434 if (attempts) {
435 if (attempts < 5) xfs_small_retries++;
436 else if (attempts < 100) xfs_middle_retries++;
437 else xfs_lots_retries++;
438 } else {
439 xfs_locked_n++;
440 }
441#endif
442}
443
444/*
445 * xfs_lock_two_inodes() can only be used to lock one type of lock
446 * at a time - the iolock or the ilock, but not both at once. If
447 * we lock both at once, lockdep will report false positives saying
448 * we have violated locking orders.
449 */
450void
451xfs_lock_two_inodes(
452 xfs_inode_t *ip0,
453 xfs_inode_t *ip1,
454 uint lock_mode)
455{
456 xfs_inode_t *temp;
457 int attempts = 0;
458 xfs_log_item_t *lp;
459
460 if (lock_mode & (XFS_IOLOCK_SHARED|XFS_IOLOCK_EXCL))
461 ASSERT((lock_mode & (XFS_ILOCK_SHARED|XFS_ILOCK_EXCL)) == 0);
462 ASSERT(ip0->i_ino != ip1->i_ino);
463
464 if (ip0->i_ino > ip1->i_ino) {
465 temp = ip0;
466 ip0 = ip1;
467 ip1 = temp;
468 }
469
470 again:
471 xfs_ilock(ip0, xfs_lock_inumorder(lock_mode, 0));
472
473 /*
474 * If the first lock we have locked is in the AIL, we must TRY to get
475 * the second lock. If we can't get it, we must release the first one
476 * and try again.
477 */
478 lp = (xfs_log_item_t *)ip0->i_itemp;
479 if (lp && (lp->li_flags & XFS_LI_IN_AIL)) {
480 if (!xfs_ilock_nowait(ip1, xfs_lock_inumorder(lock_mode, 1))) {
481 xfs_iunlock(ip0, lock_mode);
482 if ((++attempts % 5) == 0)
483 delay(1); /* Don't just spin the CPU */
484 goto again;
485 }
486 } else {
487 xfs_ilock(ip1, xfs_lock_inumorder(lock_mode, 1));
488 }
489}
490
491
Dave Chinnerfa96aca2012-10-08 21:56:10 +1100492void
493__xfs_iflock(
494 struct xfs_inode *ip)
495{
496 wait_queue_head_t *wq = bit_waitqueue(&ip->i_flags, __XFS_IFLOCK_BIT);
497 DEFINE_WAIT_BIT(wait, &ip->i_flags, __XFS_IFLOCK_BIT);
498
499 do {
500 prepare_to_wait_exclusive(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
501 if (xfs_isiflocked(ip))
502 io_schedule();
503 } while (!xfs_iflock_nowait(ip));
504
505 finish_wait(wq, &wait.wait);
506}
507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508STATIC uint
509_xfs_dic2xflags(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 __uint16_t di_flags)
511{
512 uint flags = 0;
513
514 if (di_flags & XFS_DIFLAG_ANY) {
515 if (di_flags & XFS_DIFLAG_REALTIME)
516 flags |= XFS_XFLAG_REALTIME;
517 if (di_flags & XFS_DIFLAG_PREALLOC)
518 flags |= XFS_XFLAG_PREALLOC;
519 if (di_flags & XFS_DIFLAG_IMMUTABLE)
520 flags |= XFS_XFLAG_IMMUTABLE;
521 if (di_flags & XFS_DIFLAG_APPEND)
522 flags |= XFS_XFLAG_APPEND;
523 if (di_flags & XFS_DIFLAG_SYNC)
524 flags |= XFS_XFLAG_SYNC;
525 if (di_flags & XFS_DIFLAG_NOATIME)
526 flags |= XFS_XFLAG_NOATIME;
527 if (di_flags & XFS_DIFLAG_NODUMP)
528 flags |= XFS_XFLAG_NODUMP;
529 if (di_flags & XFS_DIFLAG_RTINHERIT)
530 flags |= XFS_XFLAG_RTINHERIT;
531 if (di_flags & XFS_DIFLAG_PROJINHERIT)
532 flags |= XFS_XFLAG_PROJINHERIT;
533 if (di_flags & XFS_DIFLAG_NOSYMLINKS)
534 flags |= XFS_XFLAG_NOSYMLINKS;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100535 if (di_flags & XFS_DIFLAG_EXTSIZE)
536 flags |= XFS_XFLAG_EXTSIZE;
537 if (di_flags & XFS_DIFLAG_EXTSZINHERIT)
538 flags |= XFS_XFLAG_EXTSZINHERIT;
Barry Naujokd3446ea2006-06-09 14:54:19 +1000539 if (di_flags & XFS_DIFLAG_NODEFRAG)
540 flags |= XFS_XFLAG_NODEFRAG;
David Chinner2a82b8b2007-07-11 11:09:12 +1000541 if (di_flags & XFS_DIFLAG_FILESTREAM)
542 flags |= XFS_XFLAG_FILESTREAM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 }
544
545 return flags;
546}
547
548uint
549xfs_ip2xflags(
550 xfs_inode_t *ip)
551{
Christoph Hellwig347d1c02007-08-28 13:57:51 +1000552 xfs_icdinode_t *dic = &ip->i_d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Nathan Scotta916e2b2006-06-09 17:12:17 +1000554 return _xfs_dic2xflags(dic->di_flags) |
Christoph Hellwig45ba5982007-12-07 14:07:20 +1100555 (XFS_IFORK_Q(ip) ? XFS_XFLAG_HASATTR : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556}
557
558uint
559xfs_dic2xflags(
Christoph Hellwig45ba5982007-12-07 14:07:20 +1100560 xfs_dinode_t *dip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561{
Christoph Hellwig81591fe2008-11-28 14:23:39 +1100562 return _xfs_dic2xflags(be16_to_cpu(dip->di_flags)) |
Christoph Hellwig45ba5982007-12-07 14:07:20 +1100563 (XFS_DFORK_Q(dip) ? XFS_XFLAG_HASATTR : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566/*
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000567 * Lookups up an inode from "name". If ci_name is not NULL, then a CI match
568 * is allowed, otherwise it has to be an exact match. If a CI match is found,
569 * ci_name->name will point to a the actual name (caller must free) or
570 * will be set to NULL if an exact match is found.
571 */
572int
573xfs_lookup(
574 xfs_inode_t *dp,
575 struct xfs_name *name,
576 xfs_inode_t **ipp,
577 struct xfs_name *ci_name)
578{
579 xfs_ino_t inum;
580 int error;
581 uint lock_mode;
582
583 trace_xfs_lookup(dp, name);
584
585 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
586 return XFS_ERROR(EIO);
587
Christoph Hellwig309ecac2013-12-06 12:30:09 -0800588 lock_mode = xfs_ilock_data_map_shared(dp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000589 error = xfs_dir_lookup(NULL, dp, name, &inum, ci_name);
Christoph Hellwig01f4f322013-12-06 12:30:08 -0800590 xfs_iunlock(dp, lock_mode);
Dave Chinnerc24b5df2013-08-12 20:49:45 +1000591
592 if (error)
593 goto out;
594
595 error = xfs_iget(dp->i_mount, NULL, inum, 0, 0, ipp);
596 if (error)
597 goto out_free_name;
598
599 return 0;
600
601out_free_name:
602 if (ci_name)
603 kmem_free(ci_name->name);
604out:
605 *ipp = NULL;
606 return error;
607}
608
609/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 * Allocate an inode on disk and return a copy of its in-core version.
611 * The in-core inode is locked exclusively. Set mode, nlink, and rdev
612 * appropriately within the inode. The uid and gid for the inode are
613 * set according to the contents of the given cred structure.
614 *
615 * Use xfs_dialloc() to allocate the on-disk inode. If xfs_dialloc()
Carlos Maiolinocd856db2012-10-20 11:08:19 -0300616 * has a free inode available, call xfs_iget() to obtain the in-core
617 * version of the allocated inode. Finally, fill in the inode and
618 * log its initial contents. In this case, ialloc_context would be
619 * set to NULL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 *
Carlos Maiolinocd856db2012-10-20 11:08:19 -0300621 * If xfs_dialloc() does not have an available inode, it will replenish
622 * its supply by doing an allocation. Since we can only do one
623 * allocation within a transaction without deadlocks, we must commit
624 * the current transaction before returning the inode itself.
625 * In this case, therefore, we will set ialloc_context and return.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 * The caller should then commit the current transaction, start a new
627 * transaction, and call xfs_ialloc() again to actually get the inode.
628 *
629 * To ensure that some other process does not grab the inode that
630 * was allocated during the first call to xfs_ialloc(), this routine
631 * also returns the [locked] bp pointing to the head of the freelist
632 * as ialloc_context. The caller should hold this buffer across
633 * the commit and pass it back into this routine on the second call.
David Chinnerb11f94d2007-07-11 11:09:33 +1000634 *
635 * If we are allocating quota inodes, we do not have a parent inode
636 * to attach to or associate with (i.e. pip == NULL) because they
637 * are not linked into the directory structure - they are attached
638 * directly to the superblock - and so have no parent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 */
640int
641xfs_ialloc(
642 xfs_trans_t *tp,
643 xfs_inode_t *pip,
Al Viro576b1d62011-07-26 02:50:15 -0400644 umode_t mode,
Nathan Scott31b084a2005-05-05 13:25:00 -0700645 xfs_nlink_t nlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 xfs_dev_t rdev,
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000647 prid_t prid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 int okalloc,
649 xfs_buf_t **ialloc_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 xfs_inode_t **ipp)
651{
Christoph Hellwig93848a92013-04-03 16:11:17 +1100652 struct xfs_mount *mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 xfs_ino_t ino;
654 xfs_inode_t *ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 uint flags;
656 int error;
Christoph Hellwigdff35fd2008-08-13 16:44:15 +1000657 timespec_t tv;
David Chinnerbf904242008-10-30 17:36:14 +1100658 int filestreams = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
660 /*
661 * Call the space management code to pick
662 * the on-disk inode to be allocated.
663 */
David Chinnerb11f94d2007-07-11 11:09:33 +1000664 error = xfs_dialloc(tp, pip ? pip->i_ino : 0, mode, okalloc,
Christoph Hellwig08358902012-07-04 10:54:47 -0400665 ialloc_context, &ino);
David Chinnerbf904242008-10-30 17:36:14 +1100666 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 return error;
Christoph Hellwig08358902012-07-04 10:54:47 -0400668 if (*ialloc_context || ino == NULLFSINO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 *ipp = NULL;
670 return 0;
671 }
672 ASSERT(*ialloc_context == NULL);
673
674 /*
675 * Get the in-core inode with the lock held exclusively.
676 * This is because we're setting fields here we need
677 * to prevent others from looking at until we're done.
678 */
Christoph Hellwig93848a92013-04-03 16:11:17 +1100679 error = xfs_iget(mp, tp, ino, XFS_IGET_CREATE,
Christoph Hellwigec3ba852011-02-13 13:26:42 +0000680 XFS_ILOCK_EXCL, &ip);
David Chinnerbf904242008-10-30 17:36:14 +1100681 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 ASSERT(ip != NULL);
684
Al Viro576b1d62011-07-26 02:50:15 -0400685 ip->i_d.di_mode = mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 ip->i_d.di_onlink = 0;
687 ip->i_d.di_nlink = nlink;
688 ASSERT(ip->i_d.di_nlink == nlink);
Dwight Engen7aab1b22013-08-15 14:08:01 -0400689 ip->i_d.di_uid = xfs_kuid_to_uid(current_fsuid());
690 ip->i_d.di_gid = xfs_kgid_to_gid(current_fsgid());
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000691 xfs_set_projid(ip, prid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 memset(&(ip->i_d.di_pad[0]), 0, sizeof(ip->i_d.di_pad));
693
694 /*
695 * If the superblock version is up to where we support new format
696 * inodes and this is currently an old format inode, then change
697 * the inode version number now. This way we only do the conversion
698 * here rather than here and in the flush/logging code.
699 */
Christoph Hellwig93848a92013-04-03 16:11:17 +1100700 if (xfs_sb_version_hasnlink(&mp->m_sb) &&
Christoph Hellwig51ce16d2008-11-28 14:23:39 +1100701 ip->i_d.di_version == 1) {
702 ip->i_d.di_version = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 /*
704 * We've already zeroed the old link count, the projid field,
705 * and the pad field.
706 */
707 }
708
709 /*
710 * Project ids won't be stored on disk if we are using a version 1 inode.
711 */
Christoph Hellwig51ce16d2008-11-28 14:23:39 +1100712 if ((prid != 0) && (ip->i_d.di_version == 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 xfs_bump_ino_vers2(tp, ip);
714
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000715 if (pip && XFS_INHERIT_GID(pip)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 ip->i_d.di_gid = pip->i_d.di_gid;
Al Viroabbede12011-07-26 02:31:30 -0400717 if ((pip->i_d.di_mode & S_ISGID) && S_ISDIR(mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 ip->i_d.di_mode |= S_ISGID;
719 }
720 }
721
722 /*
723 * If the group ID of the new file does not match the effective group
724 * ID or one of the supplementary group IDs, the S_ISGID bit is cleared
725 * (and only if the irix_sgid_inherit compatibility variable is set).
726 */
727 if ((irix_sgid_inherit) &&
728 (ip->i_d.di_mode & S_ISGID) &&
Dwight Engen7aab1b22013-08-15 14:08:01 -0400729 (!in_group_p(xfs_gid_to_kgid(ip->i_d.di_gid)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 ip->i_d.di_mode &= ~S_ISGID;
731 }
732
733 ip->i_d.di_size = 0;
734 ip->i_d.di_nextents = 0;
735 ASSERT(ip->i_d.di_nblocks == 0);
Christoph Hellwigdff35fd2008-08-13 16:44:15 +1000736
737 nanotime(&tv);
738 ip->i_d.di_mtime.t_sec = (__int32_t)tv.tv_sec;
739 ip->i_d.di_mtime.t_nsec = (__int32_t)tv.tv_nsec;
740 ip->i_d.di_atime = ip->i_d.di_mtime;
741 ip->i_d.di_ctime = ip->i_d.di_mtime;
742
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 /*
744 * di_gen will have been taken care of in xfs_iread.
745 */
746 ip->i_d.di_extsize = 0;
747 ip->i_d.di_dmevmask = 0;
748 ip->i_d.di_dmstate = 0;
749 ip->i_d.di_flags = 0;
Christoph Hellwig93848a92013-04-03 16:11:17 +1100750
751 if (ip->i_d.di_version == 3) {
752 ASSERT(ip->i_d.di_ino == ino);
753 ASSERT(uuid_equal(&ip->i_d.di_uuid, &mp->m_sb.sb_uuid));
754 ip->i_d.di_crc = 0;
755 ip->i_d.di_changecount = 1;
756 ip->i_d.di_lsn = 0;
757 ip->i_d.di_flags2 = 0;
758 memset(&(ip->i_d.di_pad2[0]), 0, sizeof(ip->i_d.di_pad2));
759 ip->i_d.di_crtime = ip->i_d.di_mtime;
760 }
761
762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 flags = XFS_ILOG_CORE;
764 switch (mode & S_IFMT) {
765 case S_IFIFO:
766 case S_IFCHR:
767 case S_IFBLK:
768 case S_IFSOCK:
769 ip->i_d.di_format = XFS_DINODE_FMT_DEV;
770 ip->i_df.if_u2.if_rdev = rdev;
771 ip->i_df.if_flags = 0;
772 flags |= XFS_ILOG_DEV;
773 break;
774 case S_IFREG:
David Chinnerbf904242008-10-30 17:36:14 +1100775 /*
776 * we can't set up filestreams until after the VFS inode
777 * is set up properly.
778 */
779 if (pip && xfs_inode_is_filestream(pip))
780 filestreams = 1;
David Chinner2a82b8b2007-07-11 11:09:12 +1000781 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 case S_IFDIR:
David Chinnerb11f94d2007-07-11 11:09:33 +1000783 if (pip && (pip->i_d.di_flags & XFS_DIFLAG_ANY)) {
Nathan Scott365ca832005-06-21 15:39:12 +1000784 uint di_flags = 0;
785
Al Viroabbede12011-07-26 02:31:30 -0400786 if (S_ISDIR(mode)) {
Nathan Scott365ca832005-06-21 15:39:12 +1000787 if (pip->i_d.di_flags & XFS_DIFLAG_RTINHERIT)
788 di_flags |= XFS_DIFLAG_RTINHERIT;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100789 if (pip->i_d.di_flags & XFS_DIFLAG_EXTSZINHERIT) {
790 di_flags |= XFS_DIFLAG_EXTSZINHERIT;
791 ip->i_d.di_extsize = pip->i_d.di_extsize;
792 }
Al Viroabbede12011-07-26 02:31:30 -0400793 } else if (S_ISREG(mode)) {
Christoph Hellwig613d7042007-10-11 17:44:08 +1000794 if (pip->i_d.di_flags & XFS_DIFLAG_RTINHERIT)
Nathan Scott365ca832005-06-21 15:39:12 +1000795 di_flags |= XFS_DIFLAG_REALTIME;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100796 if (pip->i_d.di_flags & XFS_DIFLAG_EXTSZINHERIT) {
797 di_flags |= XFS_DIFLAG_EXTSIZE;
798 ip->i_d.di_extsize = pip->i_d.di_extsize;
799 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 }
801 if ((pip->i_d.di_flags & XFS_DIFLAG_NOATIME) &&
802 xfs_inherit_noatime)
Nathan Scott365ca832005-06-21 15:39:12 +1000803 di_flags |= XFS_DIFLAG_NOATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 if ((pip->i_d.di_flags & XFS_DIFLAG_NODUMP) &&
805 xfs_inherit_nodump)
Nathan Scott365ca832005-06-21 15:39:12 +1000806 di_flags |= XFS_DIFLAG_NODUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 if ((pip->i_d.di_flags & XFS_DIFLAG_SYNC) &&
808 xfs_inherit_sync)
Nathan Scott365ca832005-06-21 15:39:12 +1000809 di_flags |= XFS_DIFLAG_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 if ((pip->i_d.di_flags & XFS_DIFLAG_NOSYMLINKS) &&
811 xfs_inherit_nosymlinks)
Nathan Scott365ca832005-06-21 15:39:12 +1000812 di_flags |= XFS_DIFLAG_NOSYMLINKS;
813 if (pip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
814 di_flags |= XFS_DIFLAG_PROJINHERIT;
Barry Naujokd3446ea2006-06-09 14:54:19 +1000815 if ((pip->i_d.di_flags & XFS_DIFLAG_NODEFRAG) &&
816 xfs_inherit_nodefrag)
817 di_flags |= XFS_DIFLAG_NODEFRAG;
David Chinner2a82b8b2007-07-11 11:09:12 +1000818 if (pip->i_d.di_flags & XFS_DIFLAG_FILESTREAM)
819 di_flags |= XFS_DIFLAG_FILESTREAM;
Nathan Scott365ca832005-06-21 15:39:12 +1000820 ip->i_d.di_flags |= di_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 }
822 /* FALLTHROUGH */
823 case S_IFLNK:
824 ip->i_d.di_format = XFS_DINODE_FMT_EXTENTS;
825 ip->i_df.if_flags = XFS_IFEXTENTS;
826 ip->i_df.if_bytes = ip->i_df.if_real_bytes = 0;
827 ip->i_df.if_u1.if_extents = NULL;
828 break;
829 default:
830 ASSERT(0);
831 }
832 /*
833 * Attribute fork settings for new inode.
834 */
835 ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
836 ip->i_d.di_anextents = 0;
837
838 /*
839 * Log the new values stuffed into the inode.
840 */
Christoph Hellwigddc34152011-09-19 15:00:54 +0000841 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 xfs_trans_log_inode(tp, ip, flags);
843
Nathan Scottb83bd132006-06-09 16:48:30 +1000844 /* now that we have an i_mode we can setup inode ops and unlock */
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000845 xfs_setup_inode(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
David Chinnerbf904242008-10-30 17:36:14 +1100847 /* now we have set up the vfs inode we can associate the filestream */
848 if (filestreams) {
849 error = xfs_filestream_associate(pip, ip);
850 if (error < 0)
851 return -error;
852 if (!error)
853 xfs_iflags_set(ip, XFS_IFILESTREAM);
854 }
855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 *ipp = ip;
857 return 0;
858}
859
Dave Chinnere546cb72013-08-12 20:49:47 +1000860/*
861 * Allocates a new inode from disk and return a pointer to the
862 * incore copy. This routine will internally commit the current
863 * transaction and allocate a new one if the Space Manager needed
864 * to do an allocation to replenish the inode free-list.
865 *
866 * This routine is designed to be called from xfs_create and
867 * xfs_create_dir.
868 *
869 */
870int
871xfs_dir_ialloc(
872 xfs_trans_t **tpp, /* input: current transaction;
873 output: may be a new transaction. */
874 xfs_inode_t *dp, /* directory within whose allocate
875 the inode. */
876 umode_t mode,
877 xfs_nlink_t nlink,
878 xfs_dev_t rdev,
879 prid_t prid, /* project id */
880 int okalloc, /* ok to allocate new space */
881 xfs_inode_t **ipp, /* pointer to inode; it will be
882 locked. */
883 int *committed)
884
885{
886 xfs_trans_t *tp;
887 xfs_trans_t *ntp;
888 xfs_inode_t *ip;
889 xfs_buf_t *ialloc_context = NULL;
890 int code;
Dave Chinnere546cb72013-08-12 20:49:47 +1000891 void *dqinfo;
892 uint tflags;
893
894 tp = *tpp;
895 ASSERT(tp->t_flags & XFS_TRANS_PERM_LOG_RES);
896
897 /*
898 * xfs_ialloc will return a pointer to an incore inode if
899 * the Space Manager has an available inode on the free
900 * list. Otherwise, it will do an allocation and replenish
901 * the freelist. Since we can only do one allocation per
902 * transaction without deadlocks, we will need to commit the
903 * current transaction and start a new one. We will then
904 * need to call xfs_ialloc again to get the inode.
905 *
906 * If xfs_ialloc did an allocation to replenish the freelist,
907 * it returns the bp containing the head of the freelist as
908 * ialloc_context. We will hold a lock on it across the
909 * transaction commit so that no other process can steal
910 * the inode(s) that we've just allocated.
911 */
912 code = xfs_ialloc(tp, dp, mode, nlink, rdev, prid, okalloc,
913 &ialloc_context, &ip);
914
915 /*
916 * Return an error if we were unable to allocate a new inode.
917 * This should only happen if we run out of space on disk or
918 * encounter a disk error.
919 */
920 if (code) {
921 *ipp = NULL;
922 return code;
923 }
924 if (!ialloc_context && !ip) {
925 *ipp = NULL;
926 return XFS_ERROR(ENOSPC);
927 }
928
929 /*
930 * If the AGI buffer is non-NULL, then we were unable to get an
931 * inode in one operation. We need to commit the current
932 * transaction and call xfs_ialloc() again. It is guaranteed
933 * to succeed the second time.
934 */
935 if (ialloc_context) {
Jie Liu3d3c8b52013-08-12 20:49:59 +1000936 struct xfs_trans_res tres;
937
Dave Chinnere546cb72013-08-12 20:49:47 +1000938 /*
939 * Normally, xfs_trans_commit releases all the locks.
940 * We call bhold to hang on to the ialloc_context across
941 * the commit. Holding this buffer prevents any other
942 * processes from doing any allocations in this
943 * allocation group.
944 */
945 xfs_trans_bhold(tp, ialloc_context);
946 /*
947 * Save the log reservation so we can use
948 * them in the next transaction.
949 */
Jie Liu3d3c8b52013-08-12 20:49:59 +1000950 tres.tr_logres = xfs_trans_get_log_res(tp);
951 tres.tr_logcount = xfs_trans_get_log_count(tp);
Dave Chinnere546cb72013-08-12 20:49:47 +1000952
953 /*
954 * We want the quota changes to be associated with the next
955 * transaction, NOT this one. So, detach the dqinfo from this
956 * and attach it to the next transaction.
957 */
958 dqinfo = NULL;
959 tflags = 0;
960 if (tp->t_dqinfo) {
961 dqinfo = (void *)tp->t_dqinfo;
962 tp->t_dqinfo = NULL;
963 tflags = tp->t_flags & XFS_TRANS_DQ_DIRTY;
964 tp->t_flags &= ~(XFS_TRANS_DQ_DIRTY);
965 }
966
967 ntp = xfs_trans_dup(tp);
968 code = xfs_trans_commit(tp, 0);
969 tp = ntp;
970 if (committed != NULL) {
971 *committed = 1;
972 }
973 /*
974 * If we get an error during the commit processing,
975 * release the buffer that is still held and return
976 * to the caller.
977 */
978 if (code) {
979 xfs_buf_relse(ialloc_context);
980 if (dqinfo) {
981 tp->t_dqinfo = dqinfo;
982 xfs_trans_free_dqinfo(tp);
983 }
984 *tpp = ntp;
985 *ipp = NULL;
986 return code;
987 }
988
989 /*
990 * transaction commit worked ok so we can drop the extra ticket
991 * reference that we gained in xfs_trans_dup()
992 */
993 xfs_log_ticket_put(tp->t_ticket);
Jie Liu3d3c8b52013-08-12 20:49:59 +1000994 tres.tr_logflags = XFS_TRANS_PERM_LOG_RES;
995 code = xfs_trans_reserve(tp, &tres, 0, 0);
996
Dave Chinnere546cb72013-08-12 20:49:47 +1000997 /*
998 * Re-attach the quota info that we detached from prev trx.
999 */
1000 if (dqinfo) {
1001 tp->t_dqinfo = dqinfo;
1002 tp->t_flags |= tflags;
1003 }
1004
1005 if (code) {
1006 xfs_buf_relse(ialloc_context);
1007 *tpp = ntp;
1008 *ipp = NULL;
1009 return code;
1010 }
1011 xfs_trans_bjoin(tp, ialloc_context);
1012
1013 /*
1014 * Call ialloc again. Since we've locked out all
1015 * other allocations in this allocation group,
1016 * this call should always succeed.
1017 */
1018 code = xfs_ialloc(tp, dp, mode, nlink, rdev, prid,
1019 okalloc, &ialloc_context, &ip);
1020
1021 /*
1022 * If we get an error at this point, return to the caller
1023 * so that the current transaction can be aborted.
1024 */
1025 if (code) {
1026 *tpp = tp;
1027 *ipp = NULL;
1028 return code;
1029 }
1030 ASSERT(!ialloc_context && ip);
1031
1032 } else {
1033 if (committed != NULL)
1034 *committed = 0;
1035 }
1036
1037 *ipp = ip;
1038 *tpp = tp;
1039
1040 return 0;
1041}
1042
1043/*
1044 * Decrement the link count on an inode & log the change.
1045 * If this causes the link count to go to zero, initiate the
1046 * logging activity required to truncate a file.
1047 */
1048int /* error */
1049xfs_droplink(
1050 xfs_trans_t *tp,
1051 xfs_inode_t *ip)
1052{
1053 int error;
1054
1055 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG);
1056
1057 ASSERT (ip->i_d.di_nlink > 0);
1058 ip->i_d.di_nlink--;
1059 drop_nlink(VFS_I(ip));
1060 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1061
1062 error = 0;
1063 if (ip->i_d.di_nlink == 0) {
1064 /*
1065 * We're dropping the last link to this file.
1066 * Move the on-disk inode to the AGI unlinked list.
1067 * From xfs_inactive() we will pull the inode from
1068 * the list and free it.
1069 */
1070 error = xfs_iunlink(tp, ip);
1071 }
1072 return error;
1073}
1074
1075/*
1076 * This gets called when the inode's version needs to be changed from 1 to 2.
1077 * Currently this happens when the nlink field overflows the old 16-bit value
1078 * or when chproj is called to change the project for the first time.
1079 * As a side effect the superblock version will also get rev'd
1080 * to contain the NLINK bit.
1081 */
1082void
1083xfs_bump_ino_vers2(
1084 xfs_trans_t *tp,
1085 xfs_inode_t *ip)
1086{
1087 xfs_mount_t *mp;
1088
1089 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
1090 ASSERT(ip->i_d.di_version == 1);
1091
1092 ip->i_d.di_version = 2;
1093 ip->i_d.di_onlink = 0;
1094 memset(&(ip->i_d.di_pad[0]), 0, sizeof(ip->i_d.di_pad));
1095 mp = tp->t_mountp;
1096 if (!xfs_sb_version_hasnlink(&mp->m_sb)) {
1097 spin_lock(&mp->m_sb_lock);
1098 if (!xfs_sb_version_hasnlink(&mp->m_sb)) {
1099 xfs_sb_version_addnlink(&mp->m_sb);
1100 spin_unlock(&mp->m_sb_lock);
1101 xfs_mod_sb(tp, XFS_SB_VERSIONNUM);
1102 } else {
1103 spin_unlock(&mp->m_sb_lock);
1104 }
1105 }
1106 /* Caller must log the inode */
1107}
1108
1109/*
1110 * Increment the link count on an inode & log the change.
1111 */
1112int
1113xfs_bumplink(
1114 xfs_trans_t *tp,
1115 xfs_inode_t *ip)
1116{
1117 xfs_trans_ichgtime(tp, ip, XFS_ICHGTIME_CHG);
1118
Zhi Yong Wuab297432013-12-18 08:22:41 +08001119 ASSERT(ip->i_d.di_nlink > 0 || (VFS_I(ip)->i_state & I_LINKABLE));
Dave Chinnere546cb72013-08-12 20:49:47 +10001120 ip->i_d.di_nlink++;
1121 inc_nlink(VFS_I(ip));
1122 if ((ip->i_d.di_version == 1) &&
1123 (ip->i_d.di_nlink > XFS_MAXLINK_1)) {
1124 /*
1125 * The inode has increased its number of links beyond
1126 * what can fit in an old format inode. It now needs
1127 * to be converted to a version 2 inode with a 32 bit
1128 * link count. If this is the first inode in the file
1129 * system to do this, then we need to bump the superblock
1130 * version number as well.
1131 */
1132 xfs_bump_ino_vers2(tp, ip);
1133 }
1134
1135 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1136 return 0;
1137}
1138
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001139int
1140xfs_create(
1141 xfs_inode_t *dp,
1142 struct xfs_name *name,
1143 umode_t mode,
1144 xfs_dev_t rdev,
1145 xfs_inode_t **ipp)
1146{
1147 int is_dir = S_ISDIR(mode);
1148 struct xfs_mount *mp = dp->i_mount;
1149 struct xfs_inode *ip = NULL;
1150 struct xfs_trans *tp = NULL;
1151 int error;
1152 xfs_bmap_free_t free_list;
1153 xfs_fsblock_t first_block;
1154 bool unlock_dp_on_error = false;
1155 uint cancel_flags;
1156 int committed;
1157 prid_t prid;
1158 struct xfs_dquot *udqp = NULL;
1159 struct xfs_dquot *gdqp = NULL;
1160 struct xfs_dquot *pdqp = NULL;
Jie Liu3d3c8b52013-08-12 20:49:59 +10001161 struct xfs_trans_res tres;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001162 uint resblks;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001163
1164 trace_xfs_create(dp, name);
1165
1166 if (XFS_FORCED_SHUTDOWN(mp))
1167 return XFS_ERROR(EIO);
1168
Zhi Yong Wu163467d2013-12-18 08:22:39 +08001169 prid = xfs_get_initial_prid(dp);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001170
1171 /*
1172 * Make sure that we have allocated dquot(s) on disk.
1173 */
Dwight Engen7aab1b22013-08-15 14:08:01 -04001174 error = xfs_qm_vop_dqalloc(dp, xfs_kuid_to_uid(current_fsuid()),
1175 xfs_kgid_to_gid(current_fsgid()), prid,
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001176 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT,
1177 &udqp, &gdqp, &pdqp);
1178 if (error)
1179 return error;
1180
1181 if (is_dir) {
1182 rdev = 0;
1183 resblks = XFS_MKDIR_SPACE_RES(mp, name->len);
Jie Liu3d3c8b52013-08-12 20:49:59 +10001184 tres.tr_logres = M_RES(mp)->tr_mkdir.tr_logres;
1185 tres.tr_logcount = XFS_MKDIR_LOG_COUNT;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001186 tp = xfs_trans_alloc(mp, XFS_TRANS_MKDIR);
1187 } else {
1188 resblks = XFS_CREATE_SPACE_RES(mp, name->len);
Jie Liu3d3c8b52013-08-12 20:49:59 +10001189 tres.tr_logres = M_RES(mp)->tr_create.tr_logres;
1190 tres.tr_logcount = XFS_CREATE_LOG_COUNT;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001191 tp = xfs_trans_alloc(mp, XFS_TRANS_CREATE);
1192 }
1193
1194 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
1195
1196 /*
1197 * Initially assume that the file does not exist and
1198 * reserve the resources for that case. If that is not
1199 * the case we'll drop the one we have and get a more
1200 * appropriate transaction later.
1201 */
Jie Liu3d3c8b52013-08-12 20:49:59 +10001202 tres.tr_logflags = XFS_TRANS_PERM_LOG_RES;
1203 error = xfs_trans_reserve(tp, &tres, resblks, 0);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001204 if (error == ENOSPC) {
1205 /* flush outstanding delalloc blocks and retry */
1206 xfs_flush_inodes(mp);
Jie Liu3d3c8b52013-08-12 20:49:59 +10001207 error = xfs_trans_reserve(tp, &tres, resblks, 0);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001208 }
1209 if (error == ENOSPC) {
1210 /* No space at all so try a "no-allocation" reservation */
1211 resblks = 0;
Jie Liu3d3c8b52013-08-12 20:49:59 +10001212 error = xfs_trans_reserve(tp, &tres, 0, 0);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001213 }
1214 if (error) {
1215 cancel_flags = 0;
1216 goto out_trans_cancel;
1217 }
1218
1219 xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
1220 unlock_dp_on_error = true;
1221
1222 xfs_bmap_init(&free_list, &first_block);
1223
1224 /*
1225 * Reserve disk quota and the inode.
1226 */
1227 error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp,
1228 pdqp, resblks, 1, 0);
1229 if (error)
1230 goto out_trans_cancel;
1231
1232 error = xfs_dir_canenter(tp, dp, name, resblks);
1233 if (error)
1234 goto out_trans_cancel;
1235
1236 /*
1237 * A newly created regular or special file just has one directory
1238 * entry pointing to them, but a directory also the "." entry
1239 * pointing to itself.
1240 */
1241 error = xfs_dir_ialloc(&tp, dp, mode, is_dir ? 2 : 1, rdev,
1242 prid, resblks > 0, &ip, &committed);
1243 if (error) {
1244 if (error == ENOSPC)
1245 goto out_trans_cancel;
1246 goto out_trans_abort;
1247 }
1248
1249 /*
1250 * Now we join the directory inode to the transaction. We do not do it
1251 * earlier because xfs_dir_ialloc might commit the previous transaction
1252 * (and release all the locks). An error from here on will result in
1253 * the transaction cancel unlocking dp so don't do it explicitly in the
1254 * error path.
1255 */
1256 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
1257 unlock_dp_on_error = false;
1258
1259 error = xfs_dir_createname(tp, dp, name, ip->i_ino,
1260 &first_block, &free_list, resblks ?
1261 resblks - XFS_IALLOC_SPACE_RES(mp) : 0);
1262 if (error) {
1263 ASSERT(error != ENOSPC);
1264 goto out_trans_abort;
1265 }
1266 xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
1267 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
1268
1269 if (is_dir) {
1270 error = xfs_dir_init(tp, ip, dp);
1271 if (error)
1272 goto out_bmap_cancel;
1273
1274 error = xfs_bumplink(tp, dp);
1275 if (error)
1276 goto out_bmap_cancel;
1277 }
1278
1279 /*
1280 * If this is a synchronous mount, make sure that the
1281 * create transaction goes to disk before returning to
1282 * the user.
1283 */
1284 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
1285 xfs_trans_set_sync(tp);
1286
1287 /*
1288 * Attach the dquot(s) to the inodes and modify them incore.
1289 * These ids of the inode couldn't have changed since the new
1290 * inode has been locked ever since it was created.
1291 */
1292 xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp, pdqp);
1293
1294 error = xfs_bmap_finish(&tp, &free_list, &committed);
1295 if (error)
1296 goto out_bmap_cancel;
1297
1298 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1299 if (error)
1300 goto out_release_inode;
1301
1302 xfs_qm_dqrele(udqp);
1303 xfs_qm_dqrele(gdqp);
1304 xfs_qm_dqrele(pdqp);
1305
1306 *ipp = ip;
1307 return 0;
1308
1309 out_bmap_cancel:
1310 xfs_bmap_cancel(&free_list);
1311 out_trans_abort:
1312 cancel_flags |= XFS_TRANS_ABORT;
1313 out_trans_cancel:
1314 xfs_trans_cancel(tp, cancel_flags);
1315 out_release_inode:
1316 /*
1317 * Wait until after the current transaction is aborted to
1318 * release the inode. This prevents recursive transactions
1319 * and deadlocks from xfs_inactive.
1320 */
1321 if (ip)
1322 IRELE(ip);
1323
1324 xfs_qm_dqrele(udqp);
1325 xfs_qm_dqrele(gdqp);
1326 xfs_qm_dqrele(pdqp);
1327
1328 if (unlock_dp_on_error)
1329 xfs_iunlock(dp, XFS_ILOCK_EXCL);
1330 return error;
1331}
1332
1333int
Zhi Yong Wu99b64362013-12-18 08:22:40 +08001334xfs_create_tmpfile(
1335 struct xfs_inode *dp,
1336 struct dentry *dentry,
1337 umode_t mode)
1338{
1339 struct xfs_mount *mp = dp->i_mount;
1340 struct xfs_inode *ip = NULL;
1341 struct xfs_trans *tp = NULL;
1342 int error;
1343 uint cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
1344 prid_t prid;
1345 struct xfs_dquot *udqp = NULL;
1346 struct xfs_dquot *gdqp = NULL;
1347 struct xfs_dquot *pdqp = NULL;
1348 struct xfs_trans_res *tres;
1349 uint resblks;
1350
1351 if (XFS_FORCED_SHUTDOWN(mp))
1352 return XFS_ERROR(EIO);
1353
1354 prid = xfs_get_initial_prid(dp);
1355
1356 /*
1357 * Make sure that we have allocated dquot(s) on disk.
1358 */
1359 error = xfs_qm_vop_dqalloc(dp, xfs_kuid_to_uid(current_fsuid()),
1360 xfs_kgid_to_gid(current_fsgid()), prid,
1361 XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT,
1362 &udqp, &gdqp, &pdqp);
1363 if (error)
1364 return error;
1365
1366 resblks = XFS_IALLOC_SPACE_RES(mp);
1367 tp = xfs_trans_alloc(mp, XFS_TRANS_CREATE_TMPFILE);
1368
1369 tres = &M_RES(mp)->tr_create_tmpfile;
1370 error = xfs_trans_reserve(tp, tres, resblks, 0);
1371 if (error == ENOSPC) {
1372 /* No space at all so try a "no-allocation" reservation */
1373 resblks = 0;
1374 error = xfs_trans_reserve(tp, tres, 0, 0);
1375 }
1376 if (error) {
1377 cancel_flags = 0;
1378 goto out_trans_cancel;
1379 }
1380
1381 error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp,
1382 pdqp, resblks, 1, 0);
1383 if (error)
1384 goto out_trans_cancel;
1385
1386 error = xfs_dir_ialloc(&tp, dp, mode, 1, 0,
1387 prid, resblks > 0, &ip, NULL);
1388 if (error) {
1389 if (error == ENOSPC)
1390 goto out_trans_cancel;
1391 goto out_trans_abort;
1392 }
1393
1394 if (mp->m_flags & XFS_MOUNT_WSYNC)
1395 xfs_trans_set_sync(tp);
1396
1397 /*
1398 * Attach the dquot(s) to the inodes and modify them incore.
1399 * These ids of the inode couldn't have changed since the new
1400 * inode has been locked ever since it was created.
1401 */
1402 xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp, pdqp);
1403
1404 ip->i_d.di_nlink--;
1405 d_tmpfile(dentry, VFS_I(ip));
1406 error = xfs_iunlink(tp, ip);
1407 if (error)
1408 goto out_trans_abort;
1409
1410 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1411 if (error)
1412 goto out_release_inode;
1413
1414 xfs_qm_dqrele(udqp);
1415 xfs_qm_dqrele(gdqp);
1416 xfs_qm_dqrele(pdqp);
1417
1418 return 0;
1419
1420 out_trans_abort:
1421 cancel_flags |= XFS_TRANS_ABORT;
1422 out_trans_cancel:
1423 xfs_trans_cancel(tp, cancel_flags);
1424 out_release_inode:
1425 /*
1426 * Wait until after the current transaction is aborted to
1427 * release the inode. This prevents recursive transactions
1428 * and deadlocks from xfs_inactive.
1429 */
1430 if (ip)
1431 IRELE(ip);
1432
1433 xfs_qm_dqrele(udqp);
1434 xfs_qm_dqrele(gdqp);
1435 xfs_qm_dqrele(pdqp);
1436
1437 return error;
1438}
1439
1440int
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001441xfs_link(
1442 xfs_inode_t *tdp,
1443 xfs_inode_t *sip,
1444 struct xfs_name *target_name)
1445{
1446 xfs_mount_t *mp = tdp->i_mount;
1447 xfs_trans_t *tp;
1448 int error;
1449 xfs_bmap_free_t free_list;
1450 xfs_fsblock_t first_block;
1451 int cancel_flags;
1452 int committed;
1453 int resblks;
1454
1455 trace_xfs_link(tdp, target_name);
1456
1457 ASSERT(!S_ISDIR(sip->i_d.di_mode));
1458
1459 if (XFS_FORCED_SHUTDOWN(mp))
1460 return XFS_ERROR(EIO);
1461
1462 error = xfs_qm_dqattach(sip, 0);
1463 if (error)
1464 goto std_return;
1465
1466 error = xfs_qm_dqattach(tdp, 0);
1467 if (error)
1468 goto std_return;
1469
1470 tp = xfs_trans_alloc(mp, XFS_TRANS_LINK);
1471 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
1472 resblks = XFS_LINK_SPACE_RES(mp, target_name->len);
Jie Liu3d3c8b52013-08-12 20:49:59 +10001473 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_link, resblks, 0);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001474 if (error == ENOSPC) {
1475 resblks = 0;
Jie Liu3d3c8b52013-08-12 20:49:59 +10001476 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_link, 0, 0);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001477 }
1478 if (error) {
1479 cancel_flags = 0;
1480 goto error_return;
1481 }
1482
1483 xfs_lock_two_inodes(sip, tdp, XFS_ILOCK_EXCL);
1484
1485 xfs_trans_ijoin(tp, sip, XFS_ILOCK_EXCL);
1486 xfs_trans_ijoin(tp, tdp, XFS_ILOCK_EXCL);
1487
1488 /*
1489 * If we are using project inheritance, we only allow hard link
1490 * creation in our tree when the project IDs are the same; else
1491 * the tree quota mechanism could be circumvented.
1492 */
1493 if (unlikely((tdp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
1494 (xfs_get_projid(tdp) != xfs_get_projid(sip)))) {
1495 error = XFS_ERROR(EXDEV);
1496 goto error_return;
1497 }
1498
1499 error = xfs_dir_canenter(tp, tdp, target_name, resblks);
1500 if (error)
1501 goto error_return;
1502
1503 xfs_bmap_init(&free_list, &first_block);
1504
Zhi Yong Wuab297432013-12-18 08:22:41 +08001505 if (sip->i_d.di_nlink == 0) {
1506 error = xfs_iunlink_remove(tp, sip);
1507 if (error)
1508 goto abort_return;
1509 }
1510
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001511 error = xfs_dir_createname(tp, tdp, target_name, sip->i_ino,
1512 &first_block, &free_list, resblks);
1513 if (error)
1514 goto abort_return;
1515 xfs_trans_ichgtime(tp, tdp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
1516 xfs_trans_log_inode(tp, tdp, XFS_ILOG_CORE);
1517
1518 error = xfs_bumplink(tp, sip);
1519 if (error)
1520 goto abort_return;
1521
1522 /*
1523 * If this is a synchronous mount, make sure that the
1524 * link transaction goes to disk before returning to
1525 * the user.
1526 */
1527 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
1528 xfs_trans_set_sync(tp);
1529 }
1530
1531 error = xfs_bmap_finish (&tp, &free_list, &committed);
1532 if (error) {
1533 xfs_bmap_cancel(&free_list);
1534 goto abort_return;
1535 }
1536
1537 return xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1538
1539 abort_return:
1540 cancel_flags |= XFS_TRANS_ABORT;
1541 error_return:
1542 xfs_trans_cancel(tp, cancel_flags);
1543 std_return:
1544 return error;
1545}
1546
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547/*
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001548 * Free up the underlying blocks past new_size. The new size must be smaller
1549 * than the current size. This routine can be used both for the attribute and
1550 * data fork, and does not modify the inode size, which is left to the caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 *
David Chinnerf6485052008-04-17 16:50:04 +10001552 * The transaction passed to this routine must have made a permanent log
1553 * reservation of at least XFS_ITRUNCATE_LOG_RES. This routine may commit the
1554 * given transaction and start new ones, so make sure everything involved in
1555 * the transaction is tidy before calling here. Some transaction will be
1556 * returned to the caller to be committed. The incoming transaction must
1557 * already include the inode, and both inode locks must be held exclusively.
1558 * The inode must also be "held" within the transaction. On return the inode
1559 * will be "held" within the returned transaction. This routine does NOT
1560 * require any disk space to be reserved for it within the transaction.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 *
David Chinnerf6485052008-04-17 16:50:04 +10001562 * If we get an error, we must return with the inode locked and linked into the
1563 * current transaction. This keeps things simple for the higher level code,
1564 * because it always knows that the inode is locked and held in the transaction
1565 * that returns to it whether errors occur or not. We don't mark the inode
1566 * dirty on error so that transactions can be easily aborted if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 */
1568int
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001569xfs_itruncate_extents(
1570 struct xfs_trans **tpp,
1571 struct xfs_inode *ip,
1572 int whichfork,
1573 xfs_fsize_t new_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574{
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001575 struct xfs_mount *mp = ip->i_mount;
1576 struct xfs_trans *tp = *tpp;
1577 struct xfs_trans *ntp;
1578 xfs_bmap_free_t free_list;
1579 xfs_fsblock_t first_block;
1580 xfs_fileoff_t first_unmap_block;
1581 xfs_fileoff_t last_block;
1582 xfs_filblks_t unmap_len;
1583 int committed;
1584 int error = 0;
1585 int done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
Christoph Hellwig0b561852012-07-04 11:13:31 -04001587 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
1588 ASSERT(!atomic_read(&VFS_I(ip)->i_count) ||
1589 xfs_isilocked(ip, XFS_IOLOCK_EXCL));
Christoph Hellwigce7ae1512011-12-18 20:00:11 +00001590 ASSERT(new_size <= XFS_ISIZE(ip));
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001591 ASSERT(tp->t_flags & XFS_TRANS_PERM_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 ASSERT(ip->i_itemp != NULL);
Christoph Hellwig898621d2010-06-24 11:36:58 +10001593 ASSERT(ip->i_itemp->ili_lock_flags == 0);
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001594 ASSERT(!XFS_NOT_DQATTACHED(mp, ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
Christoph Hellwig673e8e52011-12-18 20:00:04 +00001596 trace_xfs_itruncate_extents_start(ip, new_size);
1597
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 /*
1599 * Since it is possible for space to become allocated beyond
1600 * the end of the file (in a crash where the space is allocated
1601 * but the inode size is not yet updated), simply remove any
1602 * blocks which show up between the new EOF and the maximum
1603 * possible file size. If the first block to be removed is
1604 * beyond the maximum file size (ie it is the same as last_block),
1605 * then there is nothing to do.
1606 */
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001607 first_unmap_block = XFS_B_TO_FSB(mp, (xfs_ufsize_t)new_size);
Dave Chinner32972382012-06-08 15:44:54 +10001608 last_block = XFS_B_TO_FSB(mp, mp->m_super->s_maxbytes);
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001609 if (first_unmap_block == last_block)
1610 return 0;
1611
1612 ASSERT(first_unmap_block < last_block);
1613 unmap_len = last_block - first_unmap_block + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 while (!done) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06001615 xfs_bmap_init(&free_list, &first_block);
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001616 error = xfs_bunmapi(tp, ip,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001617 first_unmap_block, unmap_len,
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001618 xfs_bmapi_aflag(whichfork),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 XFS_ITRUNC_MAX_EXTENTS,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001620 &first_block, &free_list,
Christoph Hellwigb4e91812010-06-23 18:11:15 +10001621 &done);
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001622 if (error)
1623 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
1625 /*
1626 * Duplicate the transaction that has the permanent
1627 * reservation and commit the old transaction.
1628 */
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001629 error = xfs_bmap_finish(&tp, &free_list, &committed);
Christoph Hellwig898621d2010-06-24 11:36:58 +10001630 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +00001631 xfs_trans_ijoin(tp, ip, 0);
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001632 if (error)
1633 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
1635 if (committed) {
1636 /*
David Chinnerf6485052008-04-17 16:50:04 +10001637 * Mark the inode dirty so it will be logged and
David Chinnere5720ee2008-04-10 12:21:18 +10001638 * moved forward in the log as part of every commit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 */
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001640 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 }
David Chinnerf6485052008-04-17 16:50:04 +10001642
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001643 ntp = xfs_trans_dup(tp);
1644 error = xfs_trans_commit(tp, 0);
1645 tp = ntp;
David Chinnere5720ee2008-04-10 12:21:18 +10001646
Christoph Hellwigddc34152011-09-19 15:00:54 +00001647 xfs_trans_ijoin(tp, ip, 0);
David Chinnerf6485052008-04-17 16:50:04 +10001648
Dave Chinnercc09c0d2008-11-17 17:37:10 +11001649 if (error)
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001650 goto out;
1651
Dave Chinnercc09c0d2008-11-17 17:37:10 +11001652 /*
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001653 * Transaction commit worked ok so we can drop the extra ticket
Dave Chinnercc09c0d2008-11-17 17:37:10 +11001654 * reference that we gained in xfs_trans_dup()
1655 */
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001656 xfs_log_ticket_put(tp->t_ticket);
Jie Liu3d3c8b52013-08-12 20:49:59 +10001657 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_itruncate, 0, 0);
David Chinnerf6485052008-04-17 16:50:04 +10001658 if (error)
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001659 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 }
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001661
Christoph Hellwig673e8e52011-12-18 20:00:04 +00001662 /*
1663 * Always re-log the inode so that our permanent transaction can keep
1664 * on rolling it forward in the log.
1665 */
1666 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1667
1668 trace_xfs_itruncate_extents_end(ip, new_size);
1669
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001670out:
1671 *tpp = tp;
1672 return error;
1673out_bmap_cancel:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 /*
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001675 * If the bunmapi call encounters an error, return to the caller where
1676 * the transaction can be properly aborted. We just need to make sure
1677 * we're not holding any resources that we were not when we came in.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 */
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001679 xfs_bmap_cancel(&free_list);
1680 goto out;
1681}
1682
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001683int
1684xfs_release(
1685 xfs_inode_t *ip)
1686{
1687 xfs_mount_t *mp = ip->i_mount;
1688 int error;
1689
1690 if (!S_ISREG(ip->i_d.di_mode) || (ip->i_d.di_mode == 0))
1691 return 0;
1692
1693 /* If this is a read-only mount, don't do this (would generate I/O) */
1694 if (mp->m_flags & XFS_MOUNT_RDONLY)
1695 return 0;
1696
1697 if (!XFS_FORCED_SHUTDOWN(mp)) {
1698 int truncated;
1699
1700 /*
1701 * If we are using filestreams, and we have an unlinked
1702 * file that we are processing the last close on, then nothing
1703 * will be able to reopen and write to this file. Purge this
1704 * inode from the filestreams cache so that it doesn't delay
1705 * teardown of the inode.
1706 */
1707 if ((ip->i_d.di_nlink == 0) && xfs_inode_is_filestream(ip))
1708 xfs_filestream_deassociate(ip);
1709
1710 /*
1711 * If we previously truncated this file and removed old data
1712 * in the process, we want to initiate "early" writeout on
1713 * the last close. This is an attempt to combat the notorious
1714 * NULL files problem which is particularly noticeable from a
1715 * truncate down, buffered (re-)write (delalloc), followed by
1716 * a crash. What we are effectively doing here is
1717 * significantly reducing the time window where we'd otherwise
1718 * be exposed to that problem.
1719 */
1720 truncated = xfs_iflags_test_and_clear(ip, XFS_ITRUNCATED);
1721 if (truncated) {
1722 xfs_iflags_clear(ip, XFS_IDIRTY_RELEASE);
1723 if (VN_DIRTY(VFS_I(ip)) && ip->i_delayed_blks > 0) {
1724 error = -filemap_flush(VFS_I(ip)->i_mapping);
1725 if (error)
1726 return error;
1727 }
1728 }
1729 }
1730
1731 if (ip->i_d.di_nlink == 0)
1732 return 0;
1733
1734 if (xfs_can_free_eofblocks(ip, false)) {
1735
1736 /*
1737 * If we can't get the iolock just skip truncating the blocks
1738 * past EOF because we could deadlock with the mmap_sem
1739 * otherwise. We'll get another chance to drop them once the
1740 * last reference to the inode is dropped, so we'll never leak
1741 * blocks permanently.
1742 *
1743 * Further, check if the inode is being opened, written and
1744 * closed frequently and we have delayed allocation blocks
1745 * outstanding (e.g. streaming writes from the NFS server),
1746 * truncating the blocks past EOF will cause fragmentation to
1747 * occur.
1748 *
1749 * In this case don't do the truncation, either, but we have to
1750 * be careful how we detect this case. Blocks beyond EOF show
1751 * up as i_delayed_blks even when the inode is clean, so we
1752 * need to truncate them away first before checking for a dirty
1753 * release. Hence on the first dirty close we will still remove
1754 * the speculative allocation, but after that we will leave it
1755 * in place.
1756 */
1757 if (xfs_iflags_test(ip, XFS_IDIRTY_RELEASE))
1758 return 0;
1759
1760 error = xfs_free_eofblocks(mp, ip, true);
1761 if (error && error != EAGAIN)
1762 return error;
1763
1764 /* delalloc blocks after truncation means it really is dirty */
1765 if (ip->i_delayed_blks)
1766 xfs_iflags_set(ip, XFS_IDIRTY_RELEASE);
1767 }
1768 return 0;
1769}
1770
1771/*
Brian Fosterf7be2d72013-09-20 11:06:10 -04001772 * xfs_inactive_truncate
1773 *
1774 * Called to perform a truncate when an inode becomes unlinked.
1775 */
1776STATIC int
1777xfs_inactive_truncate(
1778 struct xfs_inode *ip)
1779{
1780 struct xfs_mount *mp = ip->i_mount;
1781 struct xfs_trans *tp;
1782 int error;
1783
1784 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
1785 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_itruncate, 0, 0);
1786 if (error) {
1787 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1788 xfs_trans_cancel(tp, 0);
1789 return error;
1790 }
1791
1792 xfs_ilock(ip, XFS_ILOCK_EXCL);
1793 xfs_trans_ijoin(tp, ip, 0);
1794
1795 /*
1796 * Log the inode size first to prevent stale data exposure in the event
1797 * of a system crash before the truncate completes. See the related
1798 * comment in xfs_setattr_size() for details.
1799 */
1800 ip->i_d.di_size = 0;
1801 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1802
1803 error = xfs_itruncate_extents(&tp, ip, XFS_DATA_FORK, 0);
1804 if (error)
1805 goto error_trans_cancel;
1806
1807 ASSERT(ip->i_d.di_nextents == 0);
1808
1809 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1810 if (error)
1811 goto error_unlock;
1812
1813 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1814 return 0;
1815
1816error_trans_cancel:
1817 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
1818error_unlock:
1819 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1820 return error;
1821}
1822
1823/*
Brian Foster88877d22013-09-20 11:06:11 -04001824 * xfs_inactive_ifree()
1825 *
1826 * Perform the inode free when an inode is unlinked.
1827 */
1828STATIC int
1829xfs_inactive_ifree(
1830 struct xfs_inode *ip)
1831{
1832 xfs_bmap_free_t free_list;
1833 xfs_fsblock_t first_block;
1834 int committed;
1835 struct xfs_mount *mp = ip->i_mount;
1836 struct xfs_trans *tp;
1837 int error;
1838
1839 tp = xfs_trans_alloc(mp, XFS_TRANS_INACTIVE);
Brian Foster9d43b182014-04-24 16:00:52 +10001840
1841 /*
1842 * The ifree transaction might need to allocate blocks for record
1843 * insertion to the finobt. We don't want to fail here at ENOSPC, so
1844 * allow ifree to dip into the reserved block pool if necessary.
1845 *
1846 * Freeing large sets of inodes generally means freeing inode chunks,
1847 * directory and file data blocks, so this should be relatively safe.
1848 * Only under severe circumstances should it be possible to free enough
1849 * inodes to exhaust the reserve block pool via finobt expansion while
1850 * at the same time not creating free space in the filesystem.
1851 *
1852 * Send a warning if the reservation does happen to fail, as the inode
1853 * now remains allocated and sits on the unlinked list until the fs is
1854 * repaired.
1855 */
1856 tp->t_flags |= XFS_TRANS_RESERVE;
1857 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_ifree,
1858 XFS_IFREE_SPACE_RES(mp), 0);
Brian Foster88877d22013-09-20 11:06:11 -04001859 if (error) {
Brian Foster9d43b182014-04-24 16:00:52 +10001860 if (error == ENOSPC) {
1861 xfs_warn_ratelimited(mp,
1862 "Failed to remove inode(s) from unlinked list. "
1863 "Please free space, unmount and run xfs_repair.");
1864 } else {
1865 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1866 }
Brian Foster88877d22013-09-20 11:06:11 -04001867 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES);
1868 return error;
1869 }
1870
1871 xfs_ilock(ip, XFS_ILOCK_EXCL);
1872 xfs_trans_ijoin(tp, ip, 0);
1873
1874 xfs_bmap_init(&free_list, &first_block);
1875 error = xfs_ifree(tp, ip, &free_list);
1876 if (error) {
1877 /*
1878 * If we fail to free the inode, shut down. The cancel
1879 * might do that, we need to make sure. Otherwise the
1880 * inode might be lost for a long time or forever.
1881 */
1882 if (!XFS_FORCED_SHUTDOWN(mp)) {
1883 xfs_notice(mp, "%s: xfs_ifree returned error %d",
1884 __func__, error);
1885 xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
1886 }
1887 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
1888 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1889 return error;
1890 }
1891
1892 /*
1893 * Credit the quota account(s). The inode is gone.
1894 */
1895 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_ICOUNT, -1);
1896
1897 /*
1898 * Just ignore errors at this point. There is nothing we can
1899 * do except to try to keep going. Make sure it's not a silent
1900 * error.
1901 */
1902 error = xfs_bmap_finish(&tp, &free_list, &committed);
1903 if (error)
1904 xfs_notice(mp, "%s: xfs_bmap_finish returned error %d",
1905 __func__, error);
1906 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1907 if (error)
1908 xfs_notice(mp, "%s: xfs_trans_commit returned error %d",
1909 __func__, error);
1910
1911 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1912 return 0;
1913}
1914
1915/*
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001916 * xfs_inactive
1917 *
1918 * This is called when the vnode reference count for the vnode
1919 * goes to zero. If the file has been unlinked, then it must
1920 * now be truncated. Also, we clear all of the read-ahead state
1921 * kept for the inode here since the file is now closed.
1922 */
Brian Foster74564fb2013-09-20 11:06:12 -04001923void
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001924xfs_inactive(
1925 xfs_inode_t *ip)
1926{
Jie Liu3d3c8b52013-08-12 20:49:59 +10001927 struct xfs_mount *mp;
Jie Liu3d3c8b52013-08-12 20:49:59 +10001928 int error;
1929 int truncate = 0;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001930
1931 /*
1932 * If the inode is already free, then there can be nothing
1933 * to clean up here.
1934 */
Ben Myersd9487092013-09-10 18:11:22 -05001935 if (ip->i_d.di_mode == 0) {
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001936 ASSERT(ip->i_df.if_real_bytes == 0);
1937 ASSERT(ip->i_df.if_broot_bytes == 0);
Brian Foster74564fb2013-09-20 11:06:12 -04001938 return;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001939 }
1940
1941 mp = ip->i_mount;
1942
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001943 /* If this is a read-only mount, don't do this (would generate I/O) */
1944 if (mp->m_flags & XFS_MOUNT_RDONLY)
Brian Foster74564fb2013-09-20 11:06:12 -04001945 return;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001946
1947 if (ip->i_d.di_nlink != 0) {
1948 /*
1949 * force is true because we are evicting an inode from the
1950 * cache. Post-eof blocks must be freed, lest we end up with
1951 * broken free space accounting.
1952 */
Brian Foster74564fb2013-09-20 11:06:12 -04001953 if (xfs_can_free_eofblocks(ip, true))
1954 xfs_free_eofblocks(mp, ip, false);
1955
1956 return;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001957 }
1958
1959 if (S_ISREG(ip->i_d.di_mode) &&
1960 (ip->i_d.di_size != 0 || XFS_ISIZE(ip) != 0 ||
1961 ip->i_d.di_nextents > 0 || ip->i_delayed_blks > 0))
1962 truncate = 1;
1963
1964 error = xfs_qm_dqattach(ip, 0);
1965 if (error)
Brian Foster74564fb2013-09-20 11:06:12 -04001966 return;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001967
Brian Fosterf7be2d72013-09-20 11:06:10 -04001968 if (S_ISLNK(ip->i_d.di_mode))
Brian Foster36b21dd2013-09-20 11:06:09 -04001969 error = xfs_inactive_symlink(ip);
Brian Fosterf7be2d72013-09-20 11:06:10 -04001970 else if (truncate)
1971 error = xfs_inactive_truncate(ip);
1972 if (error)
Brian Foster74564fb2013-09-20 11:06:12 -04001973 return;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001974
1975 /*
1976 * If there are attributes associated with the file then blow them away
1977 * now. The code calls a routine that recursively deconstructs the
1978 * attribute fork. We need to just commit the current transaction
1979 * because we can't use it for xfs_attr_inactive().
1980 */
1981 if (ip->i_d.di_anextents > 0) {
1982 ASSERT(ip->i_d.di_forkoff != 0);
1983
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001984 error = xfs_attr_inactive(ip);
1985 if (error)
Brian Foster74564fb2013-09-20 11:06:12 -04001986 return;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10001987 }
1988
1989 if (ip->i_afp)
1990 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
1991
1992 ASSERT(ip->i_d.di_anextents == 0);
1993
1994 /*
1995 * Free the inode.
1996 */
Brian Foster88877d22013-09-20 11:06:11 -04001997 error = xfs_inactive_ifree(ip);
1998 if (error)
Brian Foster74564fb2013-09-20 11:06:12 -04001999 return;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002000
2001 /*
2002 * Release the dquots held by inode, if any.
2003 */
2004 xfs_qm_dqdetach(ip);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002005}
2006
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007/*
2008 * This is called when the inode's link count goes to 0.
2009 * We place the on-disk inode on a list in the AGI. It
2010 * will be pulled from this list when the inode is freed.
2011 */
2012int
2013xfs_iunlink(
2014 xfs_trans_t *tp,
2015 xfs_inode_t *ip)
2016{
2017 xfs_mount_t *mp;
2018 xfs_agi_t *agi;
2019 xfs_dinode_t *dip;
2020 xfs_buf_t *agibp;
2021 xfs_buf_t *ibp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 xfs_agino_t agino;
2023 short bucket_index;
2024 int offset;
2025 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
2027 ASSERT(ip->i_d.di_nlink == 0);
2028 ASSERT(ip->i_d.di_mode != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
2030 mp = tp->t_mountp;
2031
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 /*
2033 * Get the agi buffer first. It ensures lock ordering
2034 * on the list.
2035 */
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11002036 error = xfs_read_agi(mp, tp, XFS_INO_TO_AGNO(mp, ip->i_ino), &agibp);
Vlad Apostolov859d7182007-10-11 17:44:18 +10002037 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 agi = XFS_BUF_TO_AGI(agibp);
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11002040
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 /*
2042 * Get the index into the agi hash table for the
2043 * list this inode will go on.
2044 */
2045 agino = XFS_INO_TO_AGINO(mp, ip->i_ino);
2046 ASSERT(agino != 0);
2047 bucket_index = agino % XFS_AGI_UNLINKED_BUCKETS;
2048 ASSERT(agi->agi_unlinked[bucket_index]);
Christoph Hellwig16259e72005-11-02 15:11:25 +11002049 ASSERT(be32_to_cpu(agi->agi_unlinked[bucket_index]) != agino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
Christoph Hellwig69ef9212011-07-08 14:36:05 +02002051 if (agi->agi_unlinked[bucket_index] != cpu_to_be32(NULLAGINO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 /*
2053 * There is already another inode in the bucket we need
2054 * to add ourselves to. Add us at the front of the list.
2055 * Here we put the head pointer into our next pointer,
2056 * and then we fall through to point the head at us.
2057 */
Christoph Hellwig475ee412012-07-03 12:21:22 -04002058 error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &dip, &ibp,
2059 0, 0);
Vlad Apostolovc319b582007-11-23 16:27:51 +11002060 if (error)
2061 return error;
2062
Christoph Hellwig69ef9212011-07-08 14:36:05 +02002063 ASSERT(dip->di_next_unlinked == cpu_to_be32(NULLAGINO));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 dip->di_next_unlinked = agi->agi_unlinked[bucket_index];
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +11002065 offset = ip->i_imap.im_boffset +
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 offsetof(xfs_dinode_t, di_next_unlinked);
Dave Chinner0a32c262013-06-05 12:09:08 +10002067
2068 /* need to recalc the inode CRC if appropriate */
2069 xfs_dinode_calc_crc(mp, dip);
2070
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 xfs_trans_inode_buf(tp, ibp);
2072 xfs_trans_log_buf(tp, ibp, offset,
2073 (offset + sizeof(xfs_agino_t) - 1));
2074 xfs_inobp_check(mp, ibp);
2075 }
2076
2077 /*
2078 * Point the bucket head pointer at the inode being inserted.
2079 */
2080 ASSERT(agino != 0);
Christoph Hellwig16259e72005-11-02 15:11:25 +11002081 agi->agi_unlinked[bucket_index] = cpu_to_be32(agino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 offset = offsetof(xfs_agi_t, agi_unlinked) +
2083 (sizeof(xfs_agino_t) * bucket_index);
2084 xfs_trans_log_buf(tp, agibp, offset,
2085 (offset + sizeof(xfs_agino_t) - 1));
2086 return 0;
2087}
2088
2089/*
2090 * Pull the on-disk inode from the AGI unlinked list.
2091 */
2092STATIC int
2093xfs_iunlink_remove(
2094 xfs_trans_t *tp,
2095 xfs_inode_t *ip)
2096{
2097 xfs_ino_t next_ino;
2098 xfs_mount_t *mp;
2099 xfs_agi_t *agi;
2100 xfs_dinode_t *dip;
2101 xfs_buf_t *agibp;
2102 xfs_buf_t *ibp;
2103 xfs_agnumber_t agno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 xfs_agino_t agino;
2105 xfs_agino_t next_agino;
2106 xfs_buf_t *last_ibp;
Nathan Scott6fdf8cc2006-06-28 10:13:52 +10002107 xfs_dinode_t *last_dip = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 short bucket_index;
Nathan Scott6fdf8cc2006-06-28 10:13:52 +10002109 int offset, last_offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 agno = XFS_INO_TO_AGNO(mp, ip->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114
2115 /*
2116 * Get the agi buffer first. It ensures lock ordering
2117 * on the list.
2118 */
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11002119 error = xfs_read_agi(mp, tp, agno, &agibp);
2120 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 return error;
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11002122
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 agi = XFS_BUF_TO_AGI(agibp);
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11002124
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 /*
2126 * Get the index into the agi hash table for the
2127 * list this inode will go on.
2128 */
2129 agino = XFS_INO_TO_AGINO(mp, ip->i_ino);
2130 ASSERT(agino != 0);
2131 bucket_index = agino % XFS_AGI_UNLINKED_BUCKETS;
Christoph Hellwig69ef9212011-07-08 14:36:05 +02002132 ASSERT(agi->agi_unlinked[bucket_index] != cpu_to_be32(NULLAGINO));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 ASSERT(agi->agi_unlinked[bucket_index]);
2134
Christoph Hellwig16259e72005-11-02 15:11:25 +11002135 if (be32_to_cpu(agi->agi_unlinked[bucket_index]) == agino) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 /*
Christoph Hellwig475ee412012-07-03 12:21:22 -04002137 * We're at the head of the list. Get the inode's on-disk
2138 * buffer to see if there is anyone after us on the list.
2139 * Only modify our next pointer if it is not already NULLAGINO.
2140 * This saves us the overhead of dealing with the buffer when
2141 * there is no need to change it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 */
Christoph Hellwig475ee412012-07-03 12:21:22 -04002143 error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &dip, &ibp,
2144 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 if (error) {
Christoph Hellwig475ee412012-07-03 12:21:22 -04002146 xfs_warn(mp, "%s: xfs_imap_to_bp returned error %d.",
Dave Chinner0b932cc2011-03-07 10:08:35 +11002147 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 return error;
2149 }
Christoph Hellwig347d1c02007-08-28 13:57:51 +10002150 next_agino = be32_to_cpu(dip->di_next_unlinked);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 ASSERT(next_agino != 0);
2152 if (next_agino != NULLAGINO) {
Christoph Hellwig347d1c02007-08-28 13:57:51 +10002153 dip->di_next_unlinked = cpu_to_be32(NULLAGINO);
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +11002154 offset = ip->i_imap.im_boffset +
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 offsetof(xfs_dinode_t, di_next_unlinked);
Dave Chinner0a32c262013-06-05 12:09:08 +10002156
2157 /* need to recalc the inode CRC if appropriate */
2158 xfs_dinode_calc_crc(mp, dip);
2159
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 xfs_trans_inode_buf(tp, ibp);
2161 xfs_trans_log_buf(tp, ibp, offset,
2162 (offset + sizeof(xfs_agino_t) - 1));
2163 xfs_inobp_check(mp, ibp);
2164 } else {
2165 xfs_trans_brelse(tp, ibp);
2166 }
2167 /*
2168 * Point the bucket head pointer at the next inode.
2169 */
2170 ASSERT(next_agino != 0);
2171 ASSERT(next_agino != agino);
Christoph Hellwig16259e72005-11-02 15:11:25 +11002172 agi->agi_unlinked[bucket_index] = cpu_to_be32(next_agino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 offset = offsetof(xfs_agi_t, agi_unlinked) +
2174 (sizeof(xfs_agino_t) * bucket_index);
2175 xfs_trans_log_buf(tp, agibp, offset,
2176 (offset + sizeof(xfs_agino_t) - 1));
2177 } else {
2178 /*
2179 * We need to search the list for the inode being freed.
2180 */
Christoph Hellwig16259e72005-11-02 15:11:25 +11002181 next_agino = be32_to_cpu(agi->agi_unlinked[bucket_index]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 last_ibp = NULL;
2183 while (next_agino != agino) {
Christoph Hellwig129dbc92012-07-03 12:21:51 -04002184 struct xfs_imap imap;
2185
2186 if (last_ibp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 xfs_trans_brelse(tp, last_ibp);
Christoph Hellwig129dbc92012-07-03 12:21:51 -04002188
2189 imap.im_blkno = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 next_ino = XFS_AGINO_TO_INO(mp, agno, next_agino);
Christoph Hellwig129dbc92012-07-03 12:21:51 -04002191
2192 error = xfs_imap(mp, tp, next_ino, &imap, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11002194 xfs_warn(mp,
Christoph Hellwig129dbc92012-07-03 12:21:51 -04002195 "%s: xfs_imap returned error %d.",
2196 __func__, error);
2197 return error;
2198 }
2199
2200 error = xfs_imap_to_bp(mp, tp, &imap, &last_dip,
2201 &last_ibp, 0, 0);
2202 if (error) {
2203 xfs_warn(mp,
2204 "%s: xfs_imap_to_bp returned error %d.",
Dave Chinner0b932cc2011-03-07 10:08:35 +11002205 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 return error;
2207 }
Christoph Hellwig129dbc92012-07-03 12:21:51 -04002208
2209 last_offset = imap.im_boffset;
Christoph Hellwig347d1c02007-08-28 13:57:51 +10002210 next_agino = be32_to_cpu(last_dip->di_next_unlinked);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 ASSERT(next_agino != NULLAGINO);
2212 ASSERT(next_agino != 0);
2213 }
Christoph Hellwig475ee412012-07-03 12:21:22 -04002214
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 /*
Christoph Hellwig475ee412012-07-03 12:21:22 -04002216 * Now last_ibp points to the buffer previous to us on the
2217 * unlinked list. Pull us from the list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 */
Christoph Hellwig475ee412012-07-03 12:21:22 -04002219 error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &dip, &ibp,
2220 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 if (error) {
Christoph Hellwig475ee412012-07-03 12:21:22 -04002222 xfs_warn(mp, "%s: xfs_imap_to_bp(2) returned error %d.",
Dave Chinner0b932cc2011-03-07 10:08:35 +11002223 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 return error;
2225 }
Christoph Hellwig347d1c02007-08-28 13:57:51 +10002226 next_agino = be32_to_cpu(dip->di_next_unlinked);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 ASSERT(next_agino != 0);
2228 ASSERT(next_agino != agino);
2229 if (next_agino != NULLAGINO) {
Christoph Hellwig347d1c02007-08-28 13:57:51 +10002230 dip->di_next_unlinked = cpu_to_be32(NULLAGINO);
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +11002231 offset = ip->i_imap.im_boffset +
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 offsetof(xfs_dinode_t, di_next_unlinked);
Dave Chinner0a32c262013-06-05 12:09:08 +10002233
2234 /* need to recalc the inode CRC if appropriate */
2235 xfs_dinode_calc_crc(mp, dip);
2236
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 xfs_trans_inode_buf(tp, ibp);
2238 xfs_trans_log_buf(tp, ibp, offset,
2239 (offset + sizeof(xfs_agino_t) - 1));
2240 xfs_inobp_check(mp, ibp);
2241 } else {
2242 xfs_trans_brelse(tp, ibp);
2243 }
2244 /*
2245 * Point the previous inode on the list to the next inode.
2246 */
Christoph Hellwig347d1c02007-08-28 13:57:51 +10002247 last_dip->di_next_unlinked = cpu_to_be32(next_agino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 ASSERT(next_agino != 0);
2249 offset = last_offset + offsetof(xfs_dinode_t, di_next_unlinked);
Dave Chinner0a32c262013-06-05 12:09:08 +10002250
2251 /* need to recalc the inode CRC if appropriate */
2252 xfs_dinode_calc_crc(mp, last_dip);
2253
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 xfs_trans_inode_buf(tp, last_ibp);
2255 xfs_trans_log_buf(tp, last_ibp, offset,
2256 (offset + sizeof(xfs_agino_t) - 1));
2257 xfs_inobp_check(mp, last_ibp);
2258 }
2259 return 0;
2260}
2261
Dave Chinner5b3eed72010-08-24 11:42:41 +10002262/*
Zhi Yong Wu0b8182d2013-08-12 03:14:59 +00002263 * A big issue when freeing the inode cluster is that we _cannot_ skip any
Dave Chinner5b3eed72010-08-24 11:42:41 +10002264 * inodes that are in memory - they all must be marked stale and attached to
2265 * the cluster buffer.
2266 */
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00002267STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268xfs_ifree_cluster(
2269 xfs_inode_t *free_ip,
2270 xfs_trans_t *tp,
2271 xfs_ino_t inum)
2272{
2273 xfs_mount_t *mp = free_ip->i_mount;
2274 int blks_per_cluster;
Jie Liu982e9392013-12-13 15:51:49 +11002275 int inodes_per_cluster;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 int nbufs;
Dave Chinner5b257b42010-06-03 16:22:29 +10002277 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 xfs_daddr_t blkno;
2279 xfs_buf_t *bp;
Dave Chinner5b257b42010-06-03 16:22:29 +10002280 xfs_inode_t *ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 xfs_inode_log_item_t *iip;
2282 xfs_log_item_t *lip;
Dave Chinner5017e972010-01-11 11:47:40 +00002283 struct xfs_perag *pag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284
Dave Chinner5017e972010-01-11 11:47:40 +00002285 pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, inum));
Jie Liu982e9392013-12-13 15:51:49 +11002286 blks_per_cluster = xfs_icluster_size_fsb(mp);
2287 inodes_per_cluster = blks_per_cluster << mp->m_sb.sb_inopblog;
2288 nbufs = mp->m_ialloc_blks / blks_per_cluster;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289
Jie Liu982e9392013-12-13 15:51:49 +11002290 for (j = 0; j < nbufs; j++, inum += inodes_per_cluster) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 blkno = XFS_AGB_TO_DADDR(mp, XFS_INO_TO_AGNO(mp, inum),
2292 XFS_INO_TO_AGBNO(mp, inum));
2293
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 /*
Dave Chinner5b257b42010-06-03 16:22:29 +10002295 * We obtain and lock the backing buffer first in the process
2296 * here, as we have to ensure that any dirty inode that we
2297 * can't get the flush lock on is attached to the buffer.
2298 * If we scan the in-memory inodes first, then buffer IO can
2299 * complete before we get a lock on it, and hence we may fail
2300 * to mark all the active inodes on the buffer stale.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 */
Dave Chinner5b257b42010-06-03 16:22:29 +10002302 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, blkno,
Dave Chinnerb6aff292012-11-02 11:38:42 +11002303 mp->m_bsize * blks_per_cluster,
2304 XBF_UNMAPPED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00002306 if (!bp)
2307 return ENOMEM;
Dave Chinnerb0f539d2012-11-14 17:53:49 +11002308
2309 /*
2310 * This buffer may not have been correctly initialised as we
2311 * didn't read it from disk. That's not important because we are
2312 * only using to mark the buffer as stale in the log, and to
2313 * attach stale cached inodes on it. That means it will never be
2314 * dispatched for IO. If it is, we want to know about it, and we
2315 * want it to fail. We can acheive this by adding a write
2316 * verifier to the buffer.
2317 */
Dave Chinner1813dd62012-11-14 17:54:40 +11002318 bp->b_ops = &xfs_inode_buf_ops;
Dave Chinnerb0f539d2012-11-14 17:53:49 +11002319
Dave Chinner5b257b42010-06-03 16:22:29 +10002320 /*
2321 * Walk the inodes already attached to the buffer and mark them
2322 * stale. These will all have the flush locks held, so an
Dave Chinner5b3eed72010-08-24 11:42:41 +10002323 * in-memory inode walk can't lock them. By marking them all
2324 * stale first, we will not attempt to lock them in the loop
2325 * below as the XFS_ISTALE flag will be set.
Dave Chinner5b257b42010-06-03 16:22:29 +10002326 */
Christoph Hellwigadadbee2011-07-13 13:43:49 +02002327 lip = bp->b_fspriv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 while (lip) {
2329 if (lip->li_type == XFS_LI_INODE) {
2330 iip = (xfs_inode_log_item_t *)lip;
2331 ASSERT(iip->ili_logged == 1);
Christoph Hellwigca30b2a2010-06-23 18:11:15 +10002332 lip->li_cb = xfs_istale_done;
David Chinner7b2e2a32008-10-30 17:39:12 +11002333 xfs_trans_ail_copy_lsn(mp->m_ail,
2334 &iip->ili_flush_lsn,
2335 &iip->ili_item.li_lsn);
David Chinnere5ffd2b2006-11-21 18:55:33 +11002336 xfs_iflags_set(iip->ili_inode, XFS_ISTALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 }
2338 lip = lip->li_bio_list;
2339 }
2340
Dave Chinner5b3eed72010-08-24 11:42:41 +10002341
Dave Chinner5b257b42010-06-03 16:22:29 +10002342 /*
2343 * For each inode in memory attempt to add it to the inode
2344 * buffer and set it up for being staled on buffer IO
2345 * completion. This is safe as we've locked out tail pushing
2346 * and flushing by locking the buffer.
2347 *
2348 * We have already marked every inode that was part of a
2349 * transaction stale above, which means there is no point in
2350 * even trying to lock them.
2351 */
Jie Liu982e9392013-12-13 15:51:49 +11002352 for (i = 0; i < inodes_per_cluster; i++) {
Dave Chinner5b3eed72010-08-24 11:42:41 +10002353retry:
Dave Chinner1a3e8f32010-12-17 17:29:43 +11002354 rcu_read_lock();
Dave Chinner5b257b42010-06-03 16:22:29 +10002355 ip = radix_tree_lookup(&pag->pag_ici_root,
2356 XFS_INO_TO_AGINO(mp, (inum + i)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357
Dave Chinner1a3e8f32010-12-17 17:29:43 +11002358 /* Inode not in memory, nothing to do */
2359 if (!ip) {
2360 rcu_read_unlock();
Dave Chinner5b257b42010-06-03 16:22:29 +10002361 continue;
2362 }
2363
Dave Chinner5b3eed72010-08-24 11:42:41 +10002364 /*
Dave Chinner1a3e8f32010-12-17 17:29:43 +11002365 * because this is an RCU protected lookup, we could
2366 * find a recently freed or even reallocated inode
2367 * during the lookup. We need to check under the
2368 * i_flags_lock for a valid inode here. Skip it if it
2369 * is not valid, the wrong inode or stale.
2370 */
2371 spin_lock(&ip->i_flags_lock);
2372 if (ip->i_ino != inum + i ||
2373 __xfs_iflags_test(ip, XFS_ISTALE)) {
2374 spin_unlock(&ip->i_flags_lock);
2375 rcu_read_unlock();
2376 continue;
2377 }
2378 spin_unlock(&ip->i_flags_lock);
2379
2380 /*
Dave Chinner5b3eed72010-08-24 11:42:41 +10002381 * Don't try to lock/unlock the current inode, but we
2382 * _cannot_ skip the other inodes that we did not find
2383 * in the list attached to the buffer and are not
2384 * already marked stale. If we can't lock it, back off
2385 * and retry.
2386 */
Dave Chinner5b257b42010-06-03 16:22:29 +10002387 if (ip != free_ip &&
2388 !xfs_ilock_nowait(ip, XFS_ILOCK_EXCL)) {
Dave Chinner1a3e8f32010-12-17 17:29:43 +11002389 rcu_read_unlock();
Dave Chinner5b3eed72010-08-24 11:42:41 +10002390 delay(1);
2391 goto retry;
Dave Chinner5b257b42010-06-03 16:22:29 +10002392 }
Dave Chinner1a3e8f32010-12-17 17:29:43 +11002393 rcu_read_unlock();
Dave Chinner5b257b42010-06-03 16:22:29 +10002394
Dave Chinner5b3eed72010-08-24 11:42:41 +10002395 xfs_iflock(ip);
Dave Chinner5b257b42010-06-03 16:22:29 +10002396 xfs_iflags_set(ip, XFS_ISTALE);
Dave Chinner5b257b42010-06-03 16:22:29 +10002397
Dave Chinner5b3eed72010-08-24 11:42:41 +10002398 /*
2399 * we don't need to attach clean inodes or those only
2400 * with unlogged changes (which we throw away, anyway).
2401 */
Dave Chinner5b257b42010-06-03 16:22:29 +10002402 iip = ip->i_itemp;
Dave Chinner5b3eed72010-08-24 11:42:41 +10002403 if (!iip || xfs_inode_clean(ip)) {
Dave Chinner5b257b42010-06-03 16:22:29 +10002404 ASSERT(ip != free_ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 xfs_ifunlock(ip);
2406 xfs_iunlock(ip, XFS_ILOCK_EXCL);
2407 continue;
2408 }
2409
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +00002410 iip->ili_last_fields = iip->ili_fields;
2411 iip->ili_fields = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 iip->ili_logged = 1;
David Chinner7b2e2a32008-10-30 17:39:12 +11002413 xfs_trans_ail_copy_lsn(mp->m_ail, &iip->ili_flush_lsn,
2414 &iip->ili_item.li_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415
Christoph Hellwigca30b2a2010-06-23 18:11:15 +10002416 xfs_buf_attach_iodone(bp, xfs_istale_done,
2417 &iip->ili_item);
Dave Chinner5b257b42010-06-03 16:22:29 +10002418
2419 if (ip != free_ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 }
2422
Dave Chinner5b3eed72010-08-24 11:42:41 +10002423 xfs_trans_stale_inode_buf(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 xfs_trans_binval(tp, bp);
2425 }
2426
Dave Chinner5017e972010-01-11 11:47:40 +00002427 xfs_perag_put(pag);
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00002428 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429}
2430
2431/*
2432 * This is called to return an inode to the inode free list.
2433 * The inode should already be truncated to 0 length and have
2434 * no pages associated with it. This routine also assumes that
2435 * the inode is already a part of the transaction.
2436 *
2437 * The on-disk copy of the inode will have been added to the list
2438 * of unlinked inodes in the AGI. We need to remove the inode from
2439 * that list atomically with respect to freeing it here.
2440 */
2441int
2442xfs_ifree(
2443 xfs_trans_t *tp,
2444 xfs_inode_t *ip,
2445 xfs_bmap_free_t *flist)
2446{
2447 int error;
2448 int delete;
2449 xfs_ino_t first_ino;
2450
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10002451 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 ASSERT(ip->i_d.di_nlink == 0);
2453 ASSERT(ip->i_d.di_nextents == 0);
2454 ASSERT(ip->i_d.di_anextents == 0);
Christoph Hellwigce7ae1512011-12-18 20:00:11 +00002455 ASSERT(ip->i_d.di_size == 0 || !S_ISREG(ip->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 ASSERT(ip->i_d.di_nblocks == 0);
2457
2458 /*
2459 * Pull the on-disk inode from the AGI unlinked list.
2460 */
2461 error = xfs_iunlink_remove(tp, ip);
Dave Chinner1baaed82013-06-27 16:04:50 +10002462 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464
2465 error = xfs_difree(tp, ip->i_ino, flist, &delete, &first_ino);
Dave Chinner1baaed82013-06-27 16:04:50 +10002466 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 return error;
Dave Chinner1baaed82013-06-27 16:04:50 +10002468
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 ip->i_d.di_mode = 0; /* mark incore inode as free */
2470 ip->i_d.di_flags = 0;
2471 ip->i_d.di_dmevmask = 0;
2472 ip->i_d.di_forkoff = 0; /* mark the attr fork not in use */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 ip->i_d.di_format = XFS_DINODE_FMT_EXTENTS;
2474 ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
2475 /*
2476 * Bump the generation count so no one will be confused
2477 * by reincarnations of this inode.
2478 */
2479 ip->i_d.di_gen++;
2480 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
2481
Dave Chinner1baaed82013-06-27 16:04:50 +10002482 if (delete)
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00002483 error = xfs_ifree_cluster(ip, tp, first_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00002485 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486}
2487
2488/*
Christoph Hellwig60ec67832010-02-17 19:43:56 +00002489 * This is called to unpin an inode. The caller must have the inode locked
2490 * in at least shared mode so that the buffer cannot be subsequently pinned
2491 * once someone is waiting for it to be unpinned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 */
Christoph Hellwig60ec67832010-02-17 19:43:56 +00002493static void
Christoph Hellwigf392e632011-12-18 20:00:10 +00002494xfs_iunpin(
Christoph Hellwig60ec67832010-02-17 19:43:56 +00002495 struct xfs_inode *ip)
David Chinnera3f74ff2008-03-06 13:43:42 +11002496{
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10002497 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
David Chinnera3f74ff2008-03-06 13:43:42 +11002498
Dave Chinner4aaf15d2010-03-08 11:24:07 +11002499 trace_xfs_inode_unpin_nowait(ip, _RET_IP_);
2500
David Chinnera3f74ff2008-03-06 13:43:42 +11002501 /* Give the log a push to start the unpinning I/O */
Christoph Hellwig60ec67832010-02-17 19:43:56 +00002502 xfs_log_force_lsn(ip->i_mount, ip->i_itemp->ili_last_lsn, 0);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00002503
David Chinnera3f74ff2008-03-06 13:43:42 +11002504}
2505
Christoph Hellwigf392e632011-12-18 20:00:10 +00002506static void
2507__xfs_iunpin_wait(
2508 struct xfs_inode *ip)
2509{
2510 wait_queue_head_t *wq = bit_waitqueue(&ip->i_flags, __XFS_IPINNED_BIT);
2511 DEFINE_WAIT_BIT(wait, &ip->i_flags, __XFS_IPINNED_BIT);
2512
2513 xfs_iunpin(ip);
2514
2515 do {
2516 prepare_to_wait(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
2517 if (xfs_ipincount(ip))
2518 io_schedule();
2519 } while (xfs_ipincount(ip));
2520 finish_wait(wq, &wait.wait);
2521}
2522
Dave Chinner777df5a2010-02-06 12:37:26 +11002523void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524xfs_iunpin_wait(
Christoph Hellwig60ec67832010-02-17 19:43:56 +00002525 struct xfs_inode *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526{
Christoph Hellwigf392e632011-12-18 20:00:10 +00002527 if (xfs_ipincount(ip))
2528 __xfs_iunpin_wait(ip);
David Chinnera3f74ff2008-03-06 13:43:42 +11002529}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530
Dave Chinner27320362013-10-29 22:11:44 +11002531/*
2532 * Removing an inode from the namespace involves removing the directory entry
2533 * and dropping the link count on the inode. Removing the directory entry can
2534 * result in locking an AGF (directory blocks were freed) and removing a link
2535 * count can result in placing the inode on an unlinked list which results in
2536 * locking an AGI.
2537 *
2538 * The big problem here is that we have an ordering constraint on AGF and AGI
2539 * locking - inode allocation locks the AGI, then can allocate a new extent for
2540 * new inodes, locking the AGF after the AGI. Similarly, freeing the inode
2541 * removes the inode from the unlinked list, requiring that we lock the AGI
2542 * first, and then freeing the inode can result in an inode chunk being freed
2543 * and hence freeing disk space requiring that we lock an AGF.
2544 *
2545 * Hence the ordering that is imposed by other parts of the code is AGI before
2546 * AGF. This means we cannot remove the directory entry before we drop the inode
2547 * reference count and put it on the unlinked list as this results in a lock
2548 * order of AGF then AGI, and this can deadlock against inode allocation and
2549 * freeing. Therefore we must drop the link counts before we remove the
2550 * directory entry.
2551 *
2552 * This is still safe from a transactional point of view - it is not until we
2553 * get to xfs_bmap_finish() that we have the possibility of multiple
2554 * transactions in this operation. Hence as long as we remove the directory
2555 * entry and drop the link count in the first transaction of the remove
2556 * operation, there are no transactional constraints on the ordering here.
2557 */
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002558int
2559xfs_remove(
2560 xfs_inode_t *dp,
2561 struct xfs_name *name,
2562 xfs_inode_t *ip)
2563{
2564 xfs_mount_t *mp = dp->i_mount;
2565 xfs_trans_t *tp = NULL;
2566 int is_dir = S_ISDIR(ip->i_d.di_mode);
2567 int error = 0;
2568 xfs_bmap_free_t free_list;
2569 xfs_fsblock_t first_block;
2570 int cancel_flags;
2571 int committed;
2572 int link_zero;
2573 uint resblks;
2574 uint log_count;
2575
2576 trace_xfs_remove(dp, name);
2577
2578 if (XFS_FORCED_SHUTDOWN(mp))
2579 return XFS_ERROR(EIO);
2580
2581 error = xfs_qm_dqattach(dp, 0);
2582 if (error)
2583 goto std_return;
2584
2585 error = xfs_qm_dqattach(ip, 0);
2586 if (error)
2587 goto std_return;
2588
2589 if (is_dir) {
2590 tp = xfs_trans_alloc(mp, XFS_TRANS_RMDIR);
2591 log_count = XFS_DEFAULT_LOG_COUNT;
2592 } else {
2593 tp = xfs_trans_alloc(mp, XFS_TRANS_REMOVE);
2594 log_count = XFS_REMOVE_LOG_COUNT;
2595 }
2596 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
2597
2598 /*
2599 * We try to get the real space reservation first,
2600 * allowing for directory btree deletion(s) implying
2601 * possible bmap insert(s). If we can't get the space
2602 * reservation then we use 0 instead, and avoid the bmap
2603 * btree insert(s) in the directory code by, if the bmap
2604 * insert tries to happen, instead trimming the LAST
2605 * block from the directory.
2606 */
2607 resblks = XFS_REMOVE_SPACE_RES(mp);
Jie Liu3d3c8b52013-08-12 20:49:59 +10002608 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_remove, resblks, 0);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002609 if (error == ENOSPC) {
2610 resblks = 0;
Jie Liu3d3c8b52013-08-12 20:49:59 +10002611 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_remove, 0, 0);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002612 }
2613 if (error) {
2614 ASSERT(error != ENOSPC);
2615 cancel_flags = 0;
2616 goto out_trans_cancel;
2617 }
2618
2619 xfs_lock_two_inodes(dp, ip, XFS_ILOCK_EXCL);
2620
2621 xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
2622 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
2623
2624 /*
2625 * If we're removing a directory perform some additional validation.
2626 */
Dave Chinner27320362013-10-29 22:11:44 +11002627 cancel_flags |= XFS_TRANS_ABORT;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002628 if (is_dir) {
2629 ASSERT(ip->i_d.di_nlink >= 2);
2630 if (ip->i_d.di_nlink != 2) {
2631 error = XFS_ERROR(ENOTEMPTY);
2632 goto out_trans_cancel;
2633 }
2634 if (!xfs_dir_isempty(ip)) {
2635 error = XFS_ERROR(ENOTEMPTY);
2636 goto out_trans_cancel;
2637 }
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002638
Dave Chinner27320362013-10-29 22:11:44 +11002639 /* Drop the link from ip's "..". */
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002640 error = xfs_droplink(tp, dp);
2641 if (error)
Dave Chinner27320362013-10-29 22:11:44 +11002642 goto out_trans_cancel;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002643
Dave Chinner27320362013-10-29 22:11:44 +11002644 /* Drop the "." link from ip to self. */
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002645 error = xfs_droplink(tp, ip);
2646 if (error)
Dave Chinner27320362013-10-29 22:11:44 +11002647 goto out_trans_cancel;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002648 } else {
2649 /*
2650 * When removing a non-directory we need to log the parent
2651 * inode here. For a directory this is done implicitly
2652 * by the xfs_droplink call for the ".." entry.
2653 */
2654 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
2655 }
Dave Chinner27320362013-10-29 22:11:44 +11002656 xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002657
Dave Chinner27320362013-10-29 22:11:44 +11002658 /* Drop the link from dp to ip. */
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002659 error = xfs_droplink(tp, ip);
2660 if (error)
Dave Chinner27320362013-10-29 22:11:44 +11002661 goto out_trans_cancel;
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002662
Dave Chinner27320362013-10-29 22:11:44 +11002663 /* Determine if this is the last link while the inode is locked */
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002664 link_zero = (ip->i_d.di_nlink == 0);
2665
Dave Chinner27320362013-10-29 22:11:44 +11002666 xfs_bmap_init(&free_list, &first_block);
2667 error = xfs_dir_removename(tp, dp, name, ip->i_ino,
2668 &first_block, &free_list, resblks);
2669 if (error) {
2670 ASSERT(error != ENOENT);
2671 goto out_bmap_cancel;
2672 }
2673
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002674 /*
2675 * If this is a synchronous mount, make sure that the
2676 * remove transaction goes to disk before returning to
2677 * the user.
2678 */
2679 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC))
2680 xfs_trans_set_sync(tp);
2681
2682 error = xfs_bmap_finish(&tp, &free_list, &committed);
2683 if (error)
2684 goto out_bmap_cancel;
2685
2686 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
2687 if (error)
2688 goto std_return;
2689
2690 /*
2691 * If we are using filestreams, kill the stream association.
2692 * If the file is still open it may get a new one but that
2693 * will get killed on last close in xfs_close() so we don't
2694 * have to worry about that.
2695 */
2696 if (!is_dir && link_zero && xfs_inode_is_filestream(ip))
2697 xfs_filestream_deassociate(ip);
2698
2699 return 0;
2700
2701 out_bmap_cancel:
2702 xfs_bmap_cancel(&free_list);
Dave Chinnerc24b5df2013-08-12 20:49:45 +10002703 out_trans_cancel:
2704 xfs_trans_cancel(tp, cancel_flags);
2705 std_return:
2706 return error;
2707}
2708
Dave Chinnerf6bba202013-08-12 20:49:46 +10002709/*
2710 * Enter all inodes for a rename transaction into a sorted array.
2711 */
2712STATIC void
2713xfs_sort_for_rename(
2714 xfs_inode_t *dp1, /* in: old (source) directory inode */
2715 xfs_inode_t *dp2, /* in: new (target) directory inode */
2716 xfs_inode_t *ip1, /* in: inode of old entry */
2717 xfs_inode_t *ip2, /* in: inode of new entry, if it
2718 already exists, NULL otherwise. */
2719 xfs_inode_t **i_tab,/* out: array of inode returned, sorted */
2720 int *num_inodes) /* out: number of inodes in array */
2721{
2722 xfs_inode_t *temp;
2723 int i, j;
2724
2725 /*
2726 * i_tab contains a list of pointers to inodes. We initialize
2727 * the table here & we'll sort it. We will then use it to
2728 * order the acquisition of the inode locks.
2729 *
2730 * Note that the table may contain duplicates. e.g., dp1 == dp2.
2731 */
2732 i_tab[0] = dp1;
2733 i_tab[1] = dp2;
2734 i_tab[2] = ip1;
2735 if (ip2) {
2736 *num_inodes = 4;
2737 i_tab[3] = ip2;
2738 } else {
2739 *num_inodes = 3;
2740 i_tab[3] = NULL;
2741 }
2742
2743 /*
2744 * Sort the elements via bubble sort. (Remember, there are at
2745 * most 4 elements to sort, so this is adequate.)
2746 */
2747 for (i = 0; i < *num_inodes; i++) {
2748 for (j = 1; j < *num_inodes; j++) {
2749 if (i_tab[j]->i_ino < i_tab[j-1]->i_ino) {
2750 temp = i_tab[j];
2751 i_tab[j] = i_tab[j-1];
2752 i_tab[j-1] = temp;
2753 }
2754 }
2755 }
2756}
2757
2758/*
2759 * xfs_rename
2760 */
2761int
2762xfs_rename(
2763 xfs_inode_t *src_dp,
2764 struct xfs_name *src_name,
2765 xfs_inode_t *src_ip,
2766 xfs_inode_t *target_dp,
2767 struct xfs_name *target_name,
2768 xfs_inode_t *target_ip)
2769{
2770 xfs_trans_t *tp = NULL;
2771 xfs_mount_t *mp = src_dp->i_mount;
2772 int new_parent; /* moving to a new dir */
2773 int src_is_directory; /* src_name is a directory */
2774 int error;
2775 xfs_bmap_free_t free_list;
2776 xfs_fsblock_t first_block;
2777 int cancel_flags;
2778 int committed;
2779 xfs_inode_t *inodes[4];
2780 int spaceres;
2781 int num_inodes;
2782
2783 trace_xfs_rename(src_dp, target_dp, src_name, target_name);
2784
2785 new_parent = (src_dp != target_dp);
2786 src_is_directory = S_ISDIR(src_ip->i_d.di_mode);
2787
2788 xfs_sort_for_rename(src_dp, target_dp, src_ip, target_ip,
2789 inodes, &num_inodes);
2790
2791 xfs_bmap_init(&free_list, &first_block);
2792 tp = xfs_trans_alloc(mp, XFS_TRANS_RENAME);
2793 cancel_flags = XFS_TRANS_RELEASE_LOG_RES;
2794 spaceres = XFS_RENAME_SPACE_RES(mp, target_name->len);
Jie Liu3d3c8b52013-08-12 20:49:59 +10002795 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_rename, spaceres, 0);
Dave Chinnerf6bba202013-08-12 20:49:46 +10002796 if (error == ENOSPC) {
2797 spaceres = 0;
Jie Liu3d3c8b52013-08-12 20:49:59 +10002798 error = xfs_trans_reserve(tp, &M_RES(mp)->tr_rename, 0, 0);
Dave Chinnerf6bba202013-08-12 20:49:46 +10002799 }
2800 if (error) {
2801 xfs_trans_cancel(tp, 0);
2802 goto std_return;
2803 }
2804
2805 /*
2806 * Attach the dquots to the inodes
2807 */
2808 error = xfs_qm_vop_rename_dqattach(inodes);
2809 if (error) {
2810 xfs_trans_cancel(tp, cancel_flags);
2811 goto std_return;
2812 }
2813
2814 /*
2815 * Lock all the participating inodes. Depending upon whether
2816 * the target_name exists in the target directory, and
2817 * whether the target directory is the same as the source
2818 * directory, we can lock from 2 to 4 inodes.
2819 */
2820 xfs_lock_inodes(inodes, num_inodes, XFS_ILOCK_EXCL);
2821
2822 /*
2823 * Join all the inodes to the transaction. From this point on,
2824 * we can rely on either trans_commit or trans_cancel to unlock
2825 * them.
2826 */
2827 xfs_trans_ijoin(tp, src_dp, XFS_ILOCK_EXCL);
2828 if (new_parent)
2829 xfs_trans_ijoin(tp, target_dp, XFS_ILOCK_EXCL);
2830 xfs_trans_ijoin(tp, src_ip, XFS_ILOCK_EXCL);
2831 if (target_ip)
2832 xfs_trans_ijoin(tp, target_ip, XFS_ILOCK_EXCL);
2833
2834 /*
2835 * If we are using project inheritance, we only allow renames
2836 * into our tree when the project IDs are the same; else the
2837 * tree quota mechanism would be circumvented.
2838 */
2839 if (unlikely((target_dp->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
2840 (xfs_get_projid(target_dp) != xfs_get_projid(src_ip)))) {
2841 error = XFS_ERROR(EXDEV);
2842 goto error_return;
2843 }
2844
2845 /*
2846 * Set up the target.
2847 */
2848 if (target_ip == NULL) {
2849 /*
2850 * If there's no space reservation, check the entry will
2851 * fit before actually inserting it.
2852 */
2853 error = xfs_dir_canenter(tp, target_dp, target_name, spaceres);
2854 if (error)
2855 goto error_return;
2856 /*
2857 * If target does not exist and the rename crosses
2858 * directories, adjust the target directory link count
2859 * to account for the ".." reference from the new entry.
2860 */
2861 error = xfs_dir_createname(tp, target_dp, target_name,
2862 src_ip->i_ino, &first_block,
2863 &free_list, spaceres);
2864 if (error == ENOSPC)
2865 goto error_return;
2866 if (error)
2867 goto abort_return;
2868
2869 xfs_trans_ichgtime(tp, target_dp,
2870 XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2871
2872 if (new_parent && src_is_directory) {
2873 error = xfs_bumplink(tp, target_dp);
2874 if (error)
2875 goto abort_return;
2876 }
2877 } else { /* target_ip != NULL */
2878 /*
2879 * If target exists and it's a directory, check that both
2880 * target and source are directories and that target can be
2881 * destroyed, or that neither is a directory.
2882 */
2883 if (S_ISDIR(target_ip->i_d.di_mode)) {
2884 /*
2885 * Make sure target dir is empty.
2886 */
2887 if (!(xfs_dir_isempty(target_ip)) ||
2888 (target_ip->i_d.di_nlink > 2)) {
2889 error = XFS_ERROR(EEXIST);
2890 goto error_return;
2891 }
2892 }
2893
2894 /*
2895 * Link the source inode under the target name.
2896 * If the source inode is a directory and we are moving
2897 * it across directories, its ".." entry will be
2898 * inconsistent until we replace that down below.
2899 *
2900 * In case there is already an entry with the same
2901 * name at the destination directory, remove it first.
2902 */
2903 error = xfs_dir_replace(tp, target_dp, target_name,
2904 src_ip->i_ino,
2905 &first_block, &free_list, spaceres);
2906 if (error)
2907 goto abort_return;
2908
2909 xfs_trans_ichgtime(tp, target_dp,
2910 XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2911
2912 /*
2913 * Decrement the link count on the target since the target
2914 * dir no longer points to it.
2915 */
2916 error = xfs_droplink(tp, target_ip);
2917 if (error)
2918 goto abort_return;
2919
2920 if (src_is_directory) {
2921 /*
2922 * Drop the link from the old "." entry.
2923 */
2924 error = xfs_droplink(tp, target_ip);
2925 if (error)
2926 goto abort_return;
2927 }
2928 } /* target_ip != NULL */
2929
2930 /*
2931 * Remove the source.
2932 */
2933 if (new_parent && src_is_directory) {
2934 /*
2935 * Rewrite the ".." entry to point to the new
2936 * directory.
2937 */
2938 error = xfs_dir_replace(tp, src_ip, &xfs_name_dotdot,
2939 target_dp->i_ino,
2940 &first_block, &free_list, spaceres);
2941 ASSERT(error != EEXIST);
2942 if (error)
2943 goto abort_return;
2944 }
2945
2946 /*
2947 * We always want to hit the ctime on the source inode.
2948 *
2949 * This isn't strictly required by the standards since the source
2950 * inode isn't really being changed, but old unix file systems did
2951 * it and some incremental backup programs won't work without it.
2952 */
2953 xfs_trans_ichgtime(tp, src_ip, XFS_ICHGTIME_CHG);
2954 xfs_trans_log_inode(tp, src_ip, XFS_ILOG_CORE);
2955
2956 /*
2957 * Adjust the link count on src_dp. This is necessary when
2958 * renaming a directory, either within one parent when
2959 * the target existed, or across two parent directories.
2960 */
2961 if (src_is_directory && (new_parent || target_ip != NULL)) {
2962
2963 /*
2964 * Decrement link count on src_directory since the
2965 * entry that's moved no longer points to it.
2966 */
2967 error = xfs_droplink(tp, src_dp);
2968 if (error)
2969 goto abort_return;
2970 }
2971
2972 error = xfs_dir_removename(tp, src_dp, src_name, src_ip->i_ino,
2973 &first_block, &free_list, spaceres);
2974 if (error)
2975 goto abort_return;
2976
2977 xfs_trans_ichgtime(tp, src_dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
2978 xfs_trans_log_inode(tp, src_dp, XFS_ILOG_CORE);
2979 if (new_parent)
2980 xfs_trans_log_inode(tp, target_dp, XFS_ILOG_CORE);
2981
2982 /*
2983 * If this is a synchronous mount, make sure that the
2984 * rename transaction goes to disk before returning to
2985 * the user.
2986 */
2987 if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
2988 xfs_trans_set_sync(tp);
2989 }
2990
2991 error = xfs_bmap_finish(&tp, &free_list, &committed);
2992 if (error) {
2993 xfs_bmap_cancel(&free_list);
2994 xfs_trans_cancel(tp, (XFS_TRANS_RELEASE_LOG_RES |
2995 XFS_TRANS_ABORT));
2996 goto std_return;
2997 }
2998
2999 /*
3000 * trans_commit will unlock src_ip, target_ip & decrement
3001 * the vnode references.
3002 */
3003 return xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
3004
3005 abort_return:
3006 cancel_flags |= XFS_TRANS_ABORT;
3007 error_return:
3008 xfs_bmap_cancel(&free_list);
3009 xfs_trans_cancel(tp, cancel_flags);
3010 std_return:
3011 return error;
3012}
3013
David Chinnerbad55842008-03-06 13:43:49 +11003014STATIC int
3015xfs_iflush_cluster(
3016 xfs_inode_t *ip,
3017 xfs_buf_t *bp)
3018{
3019 xfs_mount_t *mp = ip->i_mount;
Dave Chinner5017e972010-01-11 11:47:40 +00003020 struct xfs_perag *pag;
David Chinnerbad55842008-03-06 13:43:49 +11003021 unsigned long first_index, mask;
David Chinnerc8f5f122008-05-20 11:30:15 +10003022 unsigned long inodes_per_cluster;
David Chinnerbad55842008-03-06 13:43:49 +11003023 int ilist_size;
3024 xfs_inode_t **ilist;
3025 xfs_inode_t *iq;
David Chinnerbad55842008-03-06 13:43:49 +11003026 int nr_found;
3027 int clcount = 0;
3028 int bufwasdelwri;
3029 int i;
3030
Dave Chinner5017e972010-01-11 11:47:40 +00003031 pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ip->i_ino));
David Chinnerbad55842008-03-06 13:43:49 +11003032
Jie Liu0f49efd2013-12-13 15:51:48 +11003033 inodes_per_cluster = mp->m_inode_cluster_size >> mp->m_sb.sb_inodelog;
David Chinnerc8f5f122008-05-20 11:30:15 +10003034 ilist_size = inodes_per_cluster * sizeof(xfs_inode_t *);
David Chinner49383b02008-05-19 16:29:34 +10003035 ilist = kmem_alloc(ilist_size, KM_MAYFAIL|KM_NOFS);
David Chinnerbad55842008-03-06 13:43:49 +11003036 if (!ilist)
Dave Chinner44b56e02010-01-11 11:47:43 +00003037 goto out_put;
David Chinnerbad55842008-03-06 13:43:49 +11003038
Jie Liu0f49efd2013-12-13 15:51:48 +11003039 mask = ~(((mp->m_inode_cluster_size >> mp->m_sb.sb_inodelog)) - 1);
David Chinnerbad55842008-03-06 13:43:49 +11003040 first_index = XFS_INO_TO_AGINO(mp, ip->i_ino) & mask;
Dave Chinner1a3e8f32010-12-17 17:29:43 +11003041 rcu_read_lock();
David Chinnerbad55842008-03-06 13:43:49 +11003042 /* really need a gang lookup range call here */
3043 nr_found = radix_tree_gang_lookup(&pag->pag_ici_root, (void**)ilist,
David Chinnerc8f5f122008-05-20 11:30:15 +10003044 first_index, inodes_per_cluster);
David Chinnerbad55842008-03-06 13:43:49 +11003045 if (nr_found == 0)
3046 goto out_free;
3047
3048 for (i = 0; i < nr_found; i++) {
3049 iq = ilist[i];
3050 if (iq == ip)
3051 continue;
Dave Chinner1a3e8f32010-12-17 17:29:43 +11003052
3053 /*
3054 * because this is an RCU protected lookup, we could find a
3055 * recently freed or even reallocated inode during the lookup.
3056 * We need to check under the i_flags_lock for a valid inode
3057 * here. Skip it if it is not valid or the wrong inode.
3058 */
3059 spin_lock(&ip->i_flags_lock);
3060 if (!ip->i_ino ||
3061 (XFS_INO_TO_AGINO(mp, iq->i_ino) & mask) != first_index) {
3062 spin_unlock(&ip->i_flags_lock);
3063 continue;
3064 }
3065 spin_unlock(&ip->i_flags_lock);
3066
David Chinnerbad55842008-03-06 13:43:49 +11003067 /*
3068 * Do an un-protected check to see if the inode is dirty and
3069 * is a candidate for flushing. These checks will be repeated
3070 * later after the appropriate locks are acquired.
3071 */
David Chinner33540402008-03-06 13:43:59 +11003072 if (xfs_inode_clean(iq) && xfs_ipincount(iq) == 0)
David Chinnerbad55842008-03-06 13:43:49 +11003073 continue;
David Chinnerbad55842008-03-06 13:43:49 +11003074
3075 /*
3076 * Try to get locks. If any are unavailable or it is pinned,
3077 * then this inode cannot be flushed and is skipped.
3078 */
3079
3080 if (!xfs_ilock_nowait(iq, XFS_ILOCK_SHARED))
3081 continue;
3082 if (!xfs_iflock_nowait(iq)) {
3083 xfs_iunlock(iq, XFS_ILOCK_SHARED);
3084 continue;
3085 }
3086 if (xfs_ipincount(iq)) {
3087 xfs_ifunlock(iq);
3088 xfs_iunlock(iq, XFS_ILOCK_SHARED);
3089 continue;
3090 }
3091
3092 /*
3093 * arriving here means that this inode can be flushed. First
3094 * re-check that it's dirty before flushing.
3095 */
David Chinner33540402008-03-06 13:43:59 +11003096 if (!xfs_inode_clean(iq)) {
3097 int error;
David Chinnerbad55842008-03-06 13:43:49 +11003098 error = xfs_iflush_int(iq, bp);
3099 if (error) {
3100 xfs_iunlock(iq, XFS_ILOCK_SHARED);
3101 goto cluster_corrupt_out;
3102 }
3103 clcount++;
3104 } else {
3105 xfs_ifunlock(iq);
3106 }
3107 xfs_iunlock(iq, XFS_ILOCK_SHARED);
3108 }
3109
3110 if (clcount) {
3111 XFS_STATS_INC(xs_icluster_flushcnt);
3112 XFS_STATS_ADD(xs_icluster_flushinode, clcount);
3113 }
3114
3115out_free:
Dave Chinner1a3e8f32010-12-17 17:29:43 +11003116 rcu_read_unlock();
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10003117 kmem_free(ilist);
Dave Chinner44b56e02010-01-11 11:47:43 +00003118out_put:
3119 xfs_perag_put(pag);
David Chinnerbad55842008-03-06 13:43:49 +11003120 return 0;
3121
3122
3123cluster_corrupt_out:
3124 /*
3125 * Corruption detected in the clustering loop. Invalidate the
3126 * inode buffer and shut down the filesystem.
3127 */
Dave Chinner1a3e8f32010-12-17 17:29:43 +11003128 rcu_read_unlock();
David Chinnerbad55842008-03-06 13:43:49 +11003129 /*
Christoph Hellwig43ff2122012-04-23 15:58:39 +10003130 * Clean up the buffer. If it was delwri, just release it --
David Chinnerbad55842008-03-06 13:43:49 +11003131 * brelse can handle it with no problems. If not, shut down the
3132 * filesystem before releasing the buffer.
3133 */
Christoph Hellwig43ff2122012-04-23 15:58:39 +10003134 bufwasdelwri = (bp->b_flags & _XBF_DELWRI_Q);
David Chinnerbad55842008-03-06 13:43:49 +11003135 if (bufwasdelwri)
3136 xfs_buf_relse(bp);
3137
3138 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
3139
3140 if (!bufwasdelwri) {
3141 /*
3142 * Just like incore_relse: if we have b_iodone functions,
3143 * mark the buffer as an error and call them. Otherwise
3144 * mark it as stale and brelse.
3145 */
Christoph Hellwigcb669ca2011-07-13 13:43:49 +02003146 if (bp->b_iodone) {
David Chinnerbad55842008-03-06 13:43:49 +11003147 XFS_BUF_UNDONE(bp);
Christoph Hellwigc867cb62011-10-10 16:52:46 +00003148 xfs_buf_stale(bp);
Chandra Seetharaman5a52c2a582011-07-22 23:39:51 +00003149 xfs_buf_ioerror(bp, EIO);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00003150 xfs_buf_ioend(bp, 0);
David Chinnerbad55842008-03-06 13:43:49 +11003151 } else {
Christoph Hellwigc867cb62011-10-10 16:52:46 +00003152 xfs_buf_stale(bp);
David Chinnerbad55842008-03-06 13:43:49 +11003153 xfs_buf_relse(bp);
3154 }
3155 }
3156
3157 /*
3158 * Unlocks the flush lock
3159 */
Dave Chinner04913fd2012-04-23 15:58:41 +10003160 xfs_iflush_abort(iq, false);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10003161 kmem_free(ilist);
Dave Chinner44b56e02010-01-11 11:47:43 +00003162 xfs_perag_put(pag);
David Chinnerbad55842008-03-06 13:43:49 +11003163 return XFS_ERROR(EFSCORRUPTED);
3164}
3165
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166/*
Christoph Hellwig4c468192012-04-23 15:58:36 +10003167 * Flush dirty inode metadata into the backing buffer.
3168 *
3169 * The caller must have the inode lock and the inode flush lock held. The
3170 * inode lock will still be held upon return to the caller, and the inode
3171 * flush lock will be released after the inode has reached the disk.
3172 *
3173 * The caller must write out the buffer returned in *bpp and release it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 */
3175int
3176xfs_iflush(
Christoph Hellwig4c468192012-04-23 15:58:36 +10003177 struct xfs_inode *ip,
3178 struct xfs_buf **bpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179{
Christoph Hellwig4c468192012-04-23 15:58:36 +10003180 struct xfs_mount *mp = ip->i_mount;
3181 struct xfs_buf *bp;
3182 struct xfs_dinode *dip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184
3185 XFS_STATS_INC(xs_iflush_count);
3186
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10003187 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
Christoph Hellwig474fce02011-12-18 20:00:09 +00003188 ASSERT(xfs_isiflocked(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189 ASSERT(ip->i_d.di_format != XFS_DINODE_FMT_BTREE ||
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00003190 ip->i_d.di_nextents > XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191
Christoph Hellwig4c468192012-04-23 15:58:36 +10003192 *bpp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194 xfs_iunpin_wait(ip);
3195
3196 /*
Dave Chinner4b6a4682010-01-11 11:45:21 +00003197 * For stale inodes we cannot rely on the backing buffer remaining
3198 * stale in cache for the remaining life of the stale inode and so
Christoph Hellwig475ee412012-07-03 12:21:22 -04003199 * xfs_imap_to_bp() below may give us a buffer that no longer contains
Dave Chinner4b6a4682010-01-11 11:45:21 +00003200 * inodes below. We have to check this after ensuring the inode is
3201 * unpinned so that it is safe to reclaim the stale inode after the
3202 * flush call.
3203 */
3204 if (xfs_iflags_test(ip, XFS_ISTALE)) {
3205 xfs_ifunlock(ip);
3206 return 0;
3207 }
3208
3209 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210 * This may have been unpinned because the filesystem is shutting
3211 * down forcibly. If that's the case we must not write this inode
Christoph Hellwig32ce90a2012-04-23 15:58:32 +10003212 * to disk, because the log record didn't make it to disk.
3213 *
3214 * We also have to remove the log item from the AIL in this case,
3215 * as we wait for an empty AIL as part of the unmount process.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 */
3217 if (XFS_FORCED_SHUTDOWN(mp)) {
Christoph Hellwig32ce90a2012-04-23 15:58:32 +10003218 error = XFS_ERROR(EIO);
3219 goto abort_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 }
3221
3222 /*
David Chinnera3f74ff2008-03-06 13:43:42 +11003223 * Get the buffer containing the on-disk inode.
3224 */
Christoph Hellwig475ee412012-07-03 12:21:22 -04003225 error = xfs_imap_to_bp(mp, NULL, &ip->i_imap, &dip, &bp, XBF_TRYLOCK,
3226 0);
David Chinnera3f74ff2008-03-06 13:43:42 +11003227 if (error || !bp) {
3228 xfs_ifunlock(ip);
3229 return error;
3230 }
3231
3232 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 * First flush out the inode that xfs_iflush was called with.
3234 */
3235 error = xfs_iflush_int(ip, bp);
David Chinnerbad55842008-03-06 13:43:49 +11003236 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237 goto corrupt_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238
3239 /*
David Chinnera3f74ff2008-03-06 13:43:42 +11003240 * If the buffer is pinned then push on the log now so we won't
3241 * get stuck waiting in the write for too long.
3242 */
Chandra Seetharaman811e64c2011-07-22 23:40:27 +00003243 if (xfs_buf_ispinned(bp))
Christoph Hellwiga14a3482010-01-19 09:56:46 +00003244 xfs_log_force(mp, 0);
David Chinnera3f74ff2008-03-06 13:43:42 +11003245
3246 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 * inode clustering:
3248 * see if other inodes can be gathered into this write
3249 */
David Chinnerbad55842008-03-06 13:43:49 +11003250 error = xfs_iflush_cluster(ip, bp);
3251 if (error)
3252 goto cluster_corrupt_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253
Christoph Hellwig4c468192012-04-23 15:58:36 +10003254 *bpp = bp;
3255 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256
3257corrupt_out:
3258 xfs_buf_relse(bp);
Nathan Scott7d04a332006-06-09 14:58:38 +10003259 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260cluster_corrupt_out:
Christoph Hellwig32ce90a2012-04-23 15:58:32 +10003261 error = XFS_ERROR(EFSCORRUPTED);
3262abort_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263 /*
3264 * Unlocks the flush lock
3265 */
Dave Chinner04913fd2012-04-23 15:58:41 +10003266 xfs_iflush_abort(ip, false);
Christoph Hellwig32ce90a2012-04-23 15:58:32 +10003267 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268}
3269
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270STATIC int
3271xfs_iflush_int(
Christoph Hellwig93848a92013-04-03 16:11:17 +11003272 struct xfs_inode *ip,
3273 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274{
Christoph Hellwig93848a92013-04-03 16:11:17 +11003275 struct xfs_inode_log_item *iip = ip->i_itemp;
3276 struct xfs_dinode *dip;
3277 struct xfs_mount *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10003279 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
Christoph Hellwig474fce02011-12-18 20:00:09 +00003280 ASSERT(xfs_isiflocked(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 ASSERT(ip->i_d.di_format != XFS_DINODE_FMT_BTREE ||
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00003282 ip->i_d.di_nextents > XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK));
Christoph Hellwig93848a92013-04-03 16:11:17 +11003283 ASSERT(iip != NULL && iip->ili_fields != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285 /* set *dip = inode's place in the buffer */
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +11003286 dip = (xfs_dinode_t *)xfs_buf_offset(bp, ip->i_imap.im_boffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287
Christoph Hellwig69ef9212011-07-08 14:36:05 +02003288 if (XFS_TEST_ERROR(dip->di_magic != cpu_to_be16(XFS_DINODE_MAGIC),
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 mp, XFS_ERRTAG_IFLUSH_1, XFS_RANDOM_IFLUSH_1)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11003290 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
3291 "%s: Bad inode %Lu magic number 0x%x, ptr 0x%p",
3292 __func__, ip->i_ino, be16_to_cpu(dip->di_magic), dip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 goto corrupt_out;
3294 }
3295 if (XFS_TEST_ERROR(ip->i_d.di_magic != XFS_DINODE_MAGIC,
3296 mp, XFS_ERRTAG_IFLUSH_2, XFS_RANDOM_IFLUSH_2)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11003297 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
3298 "%s: Bad inode %Lu, ptr 0x%p, magic number 0x%x",
3299 __func__, ip->i_ino, ip, ip->i_d.di_magic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 goto corrupt_out;
3301 }
Al Viroabbede12011-07-26 02:31:30 -04003302 if (S_ISREG(ip->i_d.di_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 if (XFS_TEST_ERROR(
3304 (ip->i_d.di_format != XFS_DINODE_FMT_EXTENTS) &&
3305 (ip->i_d.di_format != XFS_DINODE_FMT_BTREE),
3306 mp, XFS_ERRTAG_IFLUSH_3, XFS_RANDOM_IFLUSH_3)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11003307 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
3308 "%s: Bad regular inode %Lu, ptr 0x%p",
3309 __func__, ip->i_ino, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310 goto corrupt_out;
3311 }
Al Viroabbede12011-07-26 02:31:30 -04003312 } else if (S_ISDIR(ip->i_d.di_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313 if (XFS_TEST_ERROR(
3314 (ip->i_d.di_format != XFS_DINODE_FMT_EXTENTS) &&
3315 (ip->i_d.di_format != XFS_DINODE_FMT_BTREE) &&
3316 (ip->i_d.di_format != XFS_DINODE_FMT_LOCAL),
3317 mp, XFS_ERRTAG_IFLUSH_4, XFS_RANDOM_IFLUSH_4)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11003318 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
3319 "%s: Bad directory inode %Lu, ptr 0x%p",
3320 __func__, ip->i_ino, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 goto corrupt_out;
3322 }
3323 }
3324 if (XFS_TEST_ERROR(ip->i_d.di_nextents + ip->i_d.di_anextents >
3325 ip->i_d.di_nblocks, mp, XFS_ERRTAG_IFLUSH_5,
3326 XFS_RANDOM_IFLUSH_5)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11003327 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
3328 "%s: detected corrupt incore inode %Lu, "
3329 "total extents = %d, nblocks = %Ld, ptr 0x%p",
3330 __func__, ip->i_ino,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331 ip->i_d.di_nextents + ip->i_d.di_anextents,
Dave Chinner6a19d932011-03-07 10:02:35 +11003332 ip->i_d.di_nblocks, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333 goto corrupt_out;
3334 }
3335 if (XFS_TEST_ERROR(ip->i_d.di_forkoff > mp->m_sb.sb_inodesize,
3336 mp, XFS_ERRTAG_IFLUSH_6, XFS_RANDOM_IFLUSH_6)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11003337 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
3338 "%s: bad inode %Lu, forkoff 0x%x, ptr 0x%p",
3339 __func__, ip->i_ino, ip->i_d.di_forkoff, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340 goto corrupt_out;
3341 }
Dave Chinnere60896d2013-07-24 15:47:30 +10003342
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343 /*
Dave Chinnere60896d2013-07-24 15:47:30 +10003344 * Inode item log recovery for v1/v2 inodes are dependent on the
3345 * di_flushiter count for correct sequencing. We bump the flush
3346 * iteration count so we can detect flushes which postdate a log record
3347 * during recovery. This is redundant as we now log every change and
3348 * hence this can't happen but we need to still do it to ensure
3349 * backwards compatibility with old kernels that predate logging all
3350 * inode changes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 */
Dave Chinnere60896d2013-07-24 15:47:30 +10003352 if (ip->i_d.di_version < 3)
3353 ip->i_d.di_flushiter++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354
3355 /*
3356 * Copy the dirty parts of the inode into the on-disk
3357 * inode. We always copy out the core of the inode,
3358 * because if the inode is dirty at all the core must
3359 * be.
3360 */
Christoph Hellwig81591fe2008-11-28 14:23:39 +11003361 xfs_dinode_to_disk(dip, &ip->i_d);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362
3363 /* Wrap, we never let the log put out DI_MAX_FLUSH */
3364 if (ip->i_d.di_flushiter == DI_MAX_FLUSH)
3365 ip->i_d.di_flushiter = 0;
3366
3367 /*
3368 * If this is really an old format inode and the superblock version
3369 * has not been updated to support only new format inodes, then
3370 * convert back to the old inode format. If the superblock version
3371 * has been updated, then make the conversion permanent.
3372 */
Christoph Hellwig51ce16d2008-11-28 14:23:39 +11003373 ASSERT(ip->i_d.di_version == 1 || xfs_sb_version_hasnlink(&mp->m_sb));
3374 if (ip->i_d.di_version == 1) {
Eric Sandeen62118702008-03-06 13:44:28 +11003375 if (!xfs_sb_version_hasnlink(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376 /*
3377 * Convert it back.
3378 */
3379 ASSERT(ip->i_d.di_nlink <= XFS_MAXLINK_1);
Christoph Hellwig81591fe2008-11-28 14:23:39 +11003380 dip->di_onlink = cpu_to_be16(ip->i_d.di_nlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381 } else {
3382 /*
3383 * The superblock version has already been bumped,
3384 * so just make the conversion to the new inode
3385 * format permanent.
3386 */
Christoph Hellwig51ce16d2008-11-28 14:23:39 +11003387 ip->i_d.di_version = 2;
3388 dip->di_version = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389 ip->i_d.di_onlink = 0;
Christoph Hellwig81591fe2008-11-28 14:23:39 +11003390 dip->di_onlink = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391 memset(&(ip->i_d.di_pad[0]), 0, sizeof(ip->i_d.di_pad));
Christoph Hellwig81591fe2008-11-28 14:23:39 +11003392 memset(&(dip->di_pad[0]), 0,
3393 sizeof(dip->di_pad));
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00003394 ASSERT(xfs_get_projid(ip) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395 }
3396 }
3397
David Chinnere4ac9672008-04-10 12:23:58 +10003398 xfs_iflush_fork(ip, dip, iip, XFS_DATA_FORK, bp);
3399 if (XFS_IFORK_Q(ip))
3400 xfs_iflush_fork(ip, dip, iip, XFS_ATTR_FORK, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401 xfs_inobp_check(mp, bp);
3402
3403 /*
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +00003404 * We've recorded everything logged in the inode, so we'd like to clear
3405 * the ili_fields bits so we don't log and flush things unnecessarily.
3406 * However, we can't stop logging all this information until the data
3407 * we've copied into the disk buffer is written to disk. If we did we
3408 * might overwrite the copy of the inode in the log with all the data
3409 * after re-logging only part of it, and in the face of a crash we
3410 * wouldn't have all the data we need to recover.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411 *
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +00003412 * What we do is move the bits to the ili_last_fields field. When
3413 * logging the inode, these bits are moved back to the ili_fields field.
3414 * In the xfs_iflush_done() routine we clear ili_last_fields, since we
3415 * know that the information those bits represent is permanently on
3416 * disk. As long as the flush completes before the inode is logged
3417 * again, then both ili_fields and ili_last_fields will be cleared.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418 *
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +00003419 * We can play with the ili_fields bits here, because the inode lock
3420 * must be held exclusively in order to set bits there and the flush
3421 * lock protects the ili_last_fields bits. Set ili_logged so the flush
3422 * done routine can tell whether or not to look in the AIL. Also, store
3423 * the current LSN of the inode so that we can tell whether the item has
3424 * moved in the AIL from xfs_iflush_done(). In order to read the lsn we
3425 * need the AIL lock, because it is a 64 bit value that cannot be read
3426 * atomically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427 */
Christoph Hellwig93848a92013-04-03 16:11:17 +11003428 iip->ili_last_fields = iip->ili_fields;
3429 iip->ili_fields = 0;
3430 iip->ili_logged = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431
Christoph Hellwig93848a92013-04-03 16:11:17 +11003432 xfs_trans_ail_copy_lsn(mp->m_ail, &iip->ili_flush_lsn,
3433 &iip->ili_item.li_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434
Christoph Hellwig93848a92013-04-03 16:11:17 +11003435 /*
3436 * Attach the function xfs_iflush_done to the inode's
3437 * buffer. This will remove the inode from the AIL
3438 * and unlock the inode's flush lock when the inode is
3439 * completely written to disk.
3440 */
3441 xfs_buf_attach_iodone(bp, xfs_iflush_done, &iip->ili_item);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442
Christoph Hellwig93848a92013-04-03 16:11:17 +11003443 /* update the lsn in the on disk inode if required */
3444 if (ip->i_d.di_version == 3)
3445 dip->di_lsn = cpu_to_be64(iip->ili_item.li_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446
Christoph Hellwig93848a92013-04-03 16:11:17 +11003447 /* generate the checksum. */
3448 xfs_dinode_calc_crc(mp, dip);
3449
3450 ASSERT(bp->b_fspriv != NULL);
3451 ASSERT(bp->b_iodone != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452 return 0;
3453
3454corrupt_out:
3455 return XFS_ERROR(EFSCORRUPTED);
3456}