blob: 1029f5670207ede4e88f0bbb2cdcc0f7d5b909a8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11003 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Robert P. J. Day40ebd812007-11-23 16:30:51 +110018#include <linux/log2.h>
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_fs.h"
Dave Chinner6ca1c902013-08-12 20:49:26 +100022#include "xfs_format.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110024#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_trans.h"
26#include "xfs_trans_priv.h"
27#include "xfs_sb.h"
28#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110031#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_ialloc_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110033#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_dinode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_inode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_buf_item.h"
Nathan Scotta844f452005-11-02 14:38:42 +110037#include "xfs_inode_item.h"
38#include "xfs_btree.h"
39#include "xfs_alloc.h"
40#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_utils.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include "xfs_quota.h"
David Chinner2a82b8b2007-07-11 11:09:12 +100046#include "xfs_filestream.h"
Christoph Hellwig739bfb22007-08-29 10:58:01 +100047#include "xfs_vnodeops.h"
Christoph Hellwig93848a92013-04-03 16:11:17 +110048#include "xfs_cksum.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000049#include "xfs_trace.h"
Dave Chinner33479e02012-10-08 21:56:11 +110050#include "xfs_icache.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Linus Torvalds1da177e2005-04-16 15:20:36 -070052kmem_zone_t *xfs_inode_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54/*
Christoph Hellwig8f04c472011-07-08 14:34:34 +020055 * Used in xfs_itruncate_extents(). This is the maximum number of extents
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 * freed from a file in a single transaction.
57 */
58#define XFS_ITRUNC_MAX_EXTENTS 2
59
60STATIC int xfs_iflush_int(xfs_inode_t *, xfs_buf_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Dave Chinner2a0ec1d2012-04-23 15:59:02 +100062/*
63 * helper function to extract extent size hint from inode
64 */
65xfs_extlen_t
66xfs_get_extsz_hint(
67 struct xfs_inode *ip)
68{
69 if ((ip->i_d.di_flags & XFS_DIFLAG_EXTSIZE) && ip->i_d.di_extsize)
70 return ip->i_d.di_extsize;
71 if (XFS_IS_REALTIME_INODE(ip))
72 return ip->i_mount->m_sb.sb_rextsize;
73 return 0;
74}
75
Dave Chinnerfa96aca2012-10-08 21:56:10 +110076/*
77 * This is a wrapper routine around the xfs_ilock() routine used to centralize
78 * some grungy code. It is used in places that wish to lock the inode solely
79 * for reading the extents. The reason these places can't just call
80 * xfs_ilock(SHARED) is that the inode lock also guards to bringing in of the
81 * extents from disk for a file in b-tree format. If the inode is in b-tree
82 * format, then we need to lock the inode exclusively until the extents are read
83 * in. Locking it exclusively all the time would limit our parallelism
84 * unnecessarily, though. What we do instead is check to see if the extents
85 * have been read in yet, and only lock the inode exclusively if they have not.
86 *
87 * The function returns a value which should be given to the corresponding
88 * xfs_iunlock_map_shared(). This value is the mode in which the lock was
89 * actually taken.
90 */
91uint
92xfs_ilock_map_shared(
93 xfs_inode_t *ip)
94{
95 uint lock_mode;
96
97 if ((ip->i_d.di_format == XFS_DINODE_FMT_BTREE) &&
98 ((ip->i_df.if_flags & XFS_IFEXTENTS) == 0)) {
99 lock_mode = XFS_ILOCK_EXCL;
100 } else {
101 lock_mode = XFS_ILOCK_SHARED;
102 }
103
104 xfs_ilock(ip, lock_mode);
105
106 return lock_mode;
107}
108
109/*
110 * This is simply the unlock routine to go with xfs_ilock_map_shared().
111 * All it does is call xfs_iunlock() with the given lock_mode.
112 */
113void
114xfs_iunlock_map_shared(
115 xfs_inode_t *ip,
116 unsigned int lock_mode)
117{
118 xfs_iunlock(ip, lock_mode);
119}
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
310void
311__xfs_iflock(
312 struct xfs_inode *ip)
313{
314 wait_queue_head_t *wq = bit_waitqueue(&ip->i_flags, __XFS_IFLOCK_BIT);
315 DEFINE_WAIT_BIT(wait, &ip->i_flags, __XFS_IFLOCK_BIT);
316
317 do {
318 prepare_to_wait_exclusive(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
319 if (xfs_isiflocked(ip))
320 io_schedule();
321 } while (!xfs_iflock_nowait(ip));
322
323 finish_wait(wq, &wait.wait);
324}
325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326STATIC uint
327_xfs_dic2xflags(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 __uint16_t di_flags)
329{
330 uint flags = 0;
331
332 if (di_flags & XFS_DIFLAG_ANY) {
333 if (di_flags & XFS_DIFLAG_REALTIME)
334 flags |= XFS_XFLAG_REALTIME;
335 if (di_flags & XFS_DIFLAG_PREALLOC)
336 flags |= XFS_XFLAG_PREALLOC;
337 if (di_flags & XFS_DIFLAG_IMMUTABLE)
338 flags |= XFS_XFLAG_IMMUTABLE;
339 if (di_flags & XFS_DIFLAG_APPEND)
340 flags |= XFS_XFLAG_APPEND;
341 if (di_flags & XFS_DIFLAG_SYNC)
342 flags |= XFS_XFLAG_SYNC;
343 if (di_flags & XFS_DIFLAG_NOATIME)
344 flags |= XFS_XFLAG_NOATIME;
345 if (di_flags & XFS_DIFLAG_NODUMP)
346 flags |= XFS_XFLAG_NODUMP;
347 if (di_flags & XFS_DIFLAG_RTINHERIT)
348 flags |= XFS_XFLAG_RTINHERIT;
349 if (di_flags & XFS_DIFLAG_PROJINHERIT)
350 flags |= XFS_XFLAG_PROJINHERIT;
351 if (di_flags & XFS_DIFLAG_NOSYMLINKS)
352 flags |= XFS_XFLAG_NOSYMLINKS;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100353 if (di_flags & XFS_DIFLAG_EXTSIZE)
354 flags |= XFS_XFLAG_EXTSIZE;
355 if (di_flags & XFS_DIFLAG_EXTSZINHERIT)
356 flags |= XFS_XFLAG_EXTSZINHERIT;
Barry Naujokd3446ea2006-06-09 14:54:19 +1000357 if (di_flags & XFS_DIFLAG_NODEFRAG)
358 flags |= XFS_XFLAG_NODEFRAG;
David Chinner2a82b8b2007-07-11 11:09:12 +1000359 if (di_flags & XFS_DIFLAG_FILESTREAM)
360 flags |= XFS_XFLAG_FILESTREAM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 }
362
363 return flags;
364}
365
366uint
367xfs_ip2xflags(
368 xfs_inode_t *ip)
369{
Christoph Hellwig347d1c02007-08-28 13:57:51 +1000370 xfs_icdinode_t *dic = &ip->i_d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Nathan Scotta916e2b2006-06-09 17:12:17 +1000372 return _xfs_dic2xflags(dic->di_flags) |
Christoph Hellwig45ba5982007-12-07 14:07:20 +1100373 (XFS_IFORK_Q(ip) ? XFS_XFLAG_HASATTR : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
375
376uint
377xfs_dic2xflags(
Christoph Hellwig45ba5982007-12-07 14:07:20 +1100378 xfs_dinode_t *dip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379{
Christoph Hellwig81591fe2008-11-28 14:23:39 +1100380 return _xfs_dic2xflags(be16_to_cpu(dip->di_flags)) |
Christoph Hellwig45ba5982007-12-07 14:07:20 +1100381 (XFS_DFORK_Q(dip) ? XFS_XFLAG_HASATTR : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382}
383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 * Allocate an inode on disk and return a copy of its in-core version.
386 * The in-core inode is locked exclusively. Set mode, nlink, and rdev
387 * appropriately within the inode. The uid and gid for the inode are
388 * set according to the contents of the given cred structure.
389 *
390 * Use xfs_dialloc() to allocate the on-disk inode. If xfs_dialloc()
Carlos Maiolinocd856db2012-10-20 11:08:19 -0300391 * has a free inode available, call xfs_iget() to obtain the in-core
392 * version of the allocated inode. Finally, fill in the inode and
393 * log its initial contents. In this case, ialloc_context would be
394 * set to NULL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 *
Carlos Maiolinocd856db2012-10-20 11:08:19 -0300396 * If xfs_dialloc() does not have an available inode, it will replenish
397 * its supply by doing an allocation. Since we can only do one
398 * allocation within a transaction without deadlocks, we must commit
399 * the current transaction before returning the inode itself.
400 * In this case, therefore, we will set ialloc_context and return.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 * The caller should then commit the current transaction, start a new
402 * transaction, and call xfs_ialloc() again to actually get the inode.
403 *
404 * To ensure that some other process does not grab the inode that
405 * was allocated during the first call to xfs_ialloc(), this routine
406 * also returns the [locked] bp pointing to the head of the freelist
407 * as ialloc_context. The caller should hold this buffer across
408 * the commit and pass it back into this routine on the second call.
David Chinnerb11f94d2007-07-11 11:09:33 +1000409 *
410 * If we are allocating quota inodes, we do not have a parent inode
411 * to attach to or associate with (i.e. pip == NULL) because they
412 * are not linked into the directory structure - they are attached
413 * directly to the superblock - and so have no parent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 */
415int
416xfs_ialloc(
417 xfs_trans_t *tp,
418 xfs_inode_t *pip,
Al Viro576b1d62011-07-26 02:50:15 -0400419 umode_t mode,
Nathan Scott31b084a2005-05-05 13:25:00 -0700420 xfs_nlink_t nlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 xfs_dev_t rdev,
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000422 prid_t prid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 int okalloc,
424 xfs_buf_t **ialloc_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 xfs_inode_t **ipp)
426{
Christoph Hellwig93848a92013-04-03 16:11:17 +1100427 struct xfs_mount *mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 xfs_ino_t ino;
429 xfs_inode_t *ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 uint flags;
431 int error;
Christoph Hellwigdff35fd2008-08-13 16:44:15 +1000432 timespec_t tv;
David Chinnerbf904242008-10-30 17:36:14 +1100433 int filestreams = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435 /*
436 * Call the space management code to pick
437 * the on-disk inode to be allocated.
438 */
David Chinnerb11f94d2007-07-11 11:09:33 +1000439 error = xfs_dialloc(tp, pip ? pip->i_ino : 0, mode, okalloc,
Christoph Hellwig08358902012-07-04 10:54:47 -0400440 ialloc_context, &ino);
David Chinnerbf904242008-10-30 17:36:14 +1100441 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 return error;
Christoph Hellwig08358902012-07-04 10:54:47 -0400443 if (*ialloc_context || ino == NULLFSINO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 *ipp = NULL;
445 return 0;
446 }
447 ASSERT(*ialloc_context == NULL);
448
449 /*
450 * Get the in-core inode with the lock held exclusively.
451 * This is because we're setting fields here we need
452 * to prevent others from looking at until we're done.
453 */
Christoph Hellwig93848a92013-04-03 16:11:17 +1100454 error = xfs_iget(mp, tp, ino, XFS_IGET_CREATE,
Christoph Hellwigec3ba852011-02-13 13:26:42 +0000455 XFS_ILOCK_EXCL, &ip);
David Chinnerbf904242008-10-30 17:36:14 +1100456 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 ASSERT(ip != NULL);
459
Al Viro576b1d62011-07-26 02:50:15 -0400460 ip->i_d.di_mode = mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 ip->i_d.di_onlink = 0;
462 ip->i_d.di_nlink = nlink;
463 ASSERT(ip->i_d.di_nlink == nlink);
David Howells9e2b2dc2008-08-13 16:20:04 +0100464 ip->i_d.di_uid = current_fsuid();
465 ip->i_d.di_gid = current_fsgid();
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000466 xfs_set_projid(ip, prid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 memset(&(ip->i_d.di_pad[0]), 0, sizeof(ip->i_d.di_pad));
468
469 /*
470 * If the superblock version is up to where we support new format
471 * inodes and this is currently an old format inode, then change
472 * the inode version number now. This way we only do the conversion
473 * here rather than here and in the flush/logging code.
474 */
Christoph Hellwig93848a92013-04-03 16:11:17 +1100475 if (xfs_sb_version_hasnlink(&mp->m_sb) &&
Christoph Hellwig51ce16d2008-11-28 14:23:39 +1100476 ip->i_d.di_version == 1) {
477 ip->i_d.di_version = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 /*
479 * We've already zeroed the old link count, the projid field,
480 * and the pad field.
481 */
482 }
483
484 /*
485 * Project ids won't be stored on disk if we are using a version 1 inode.
486 */
Christoph Hellwig51ce16d2008-11-28 14:23:39 +1100487 if ((prid != 0) && (ip->i_d.di_version == 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 xfs_bump_ino_vers2(tp, ip);
489
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000490 if (pip && XFS_INHERIT_GID(pip)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 ip->i_d.di_gid = pip->i_d.di_gid;
Al Viroabbede12011-07-26 02:31:30 -0400492 if ((pip->i_d.di_mode & S_ISGID) && S_ISDIR(mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 ip->i_d.di_mode |= S_ISGID;
494 }
495 }
496
497 /*
498 * If the group ID of the new file does not match the effective group
499 * ID or one of the supplementary group IDs, the S_ISGID bit is cleared
500 * (and only if the irix_sgid_inherit compatibility variable is set).
501 */
502 if ((irix_sgid_inherit) &&
503 (ip->i_d.di_mode & S_ISGID) &&
504 (!in_group_p((gid_t)ip->i_d.di_gid))) {
505 ip->i_d.di_mode &= ~S_ISGID;
506 }
507
508 ip->i_d.di_size = 0;
509 ip->i_d.di_nextents = 0;
510 ASSERT(ip->i_d.di_nblocks == 0);
Christoph Hellwigdff35fd2008-08-13 16:44:15 +1000511
512 nanotime(&tv);
513 ip->i_d.di_mtime.t_sec = (__int32_t)tv.tv_sec;
514 ip->i_d.di_mtime.t_nsec = (__int32_t)tv.tv_nsec;
515 ip->i_d.di_atime = ip->i_d.di_mtime;
516 ip->i_d.di_ctime = ip->i_d.di_mtime;
517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 /*
519 * di_gen will have been taken care of in xfs_iread.
520 */
521 ip->i_d.di_extsize = 0;
522 ip->i_d.di_dmevmask = 0;
523 ip->i_d.di_dmstate = 0;
524 ip->i_d.di_flags = 0;
Christoph Hellwig93848a92013-04-03 16:11:17 +1100525
526 if (ip->i_d.di_version == 3) {
527 ASSERT(ip->i_d.di_ino == ino);
528 ASSERT(uuid_equal(&ip->i_d.di_uuid, &mp->m_sb.sb_uuid));
529 ip->i_d.di_crc = 0;
530 ip->i_d.di_changecount = 1;
531 ip->i_d.di_lsn = 0;
532 ip->i_d.di_flags2 = 0;
533 memset(&(ip->i_d.di_pad2[0]), 0, sizeof(ip->i_d.di_pad2));
534 ip->i_d.di_crtime = ip->i_d.di_mtime;
535 }
536
537
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 flags = XFS_ILOG_CORE;
539 switch (mode & S_IFMT) {
540 case S_IFIFO:
541 case S_IFCHR:
542 case S_IFBLK:
543 case S_IFSOCK:
544 ip->i_d.di_format = XFS_DINODE_FMT_DEV;
545 ip->i_df.if_u2.if_rdev = rdev;
546 ip->i_df.if_flags = 0;
547 flags |= XFS_ILOG_DEV;
548 break;
549 case S_IFREG:
David Chinnerbf904242008-10-30 17:36:14 +1100550 /*
551 * we can't set up filestreams until after the VFS inode
552 * is set up properly.
553 */
554 if (pip && xfs_inode_is_filestream(pip))
555 filestreams = 1;
David Chinner2a82b8b2007-07-11 11:09:12 +1000556 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 case S_IFDIR:
David Chinnerb11f94d2007-07-11 11:09:33 +1000558 if (pip && (pip->i_d.di_flags & XFS_DIFLAG_ANY)) {
Nathan Scott365ca832005-06-21 15:39:12 +1000559 uint di_flags = 0;
560
Al Viroabbede12011-07-26 02:31:30 -0400561 if (S_ISDIR(mode)) {
Nathan Scott365ca832005-06-21 15:39:12 +1000562 if (pip->i_d.di_flags & XFS_DIFLAG_RTINHERIT)
563 di_flags |= XFS_DIFLAG_RTINHERIT;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100564 if (pip->i_d.di_flags & XFS_DIFLAG_EXTSZINHERIT) {
565 di_flags |= XFS_DIFLAG_EXTSZINHERIT;
566 ip->i_d.di_extsize = pip->i_d.di_extsize;
567 }
Al Viroabbede12011-07-26 02:31:30 -0400568 } else if (S_ISREG(mode)) {
Christoph Hellwig613d7042007-10-11 17:44:08 +1000569 if (pip->i_d.di_flags & XFS_DIFLAG_RTINHERIT)
Nathan Scott365ca832005-06-21 15:39:12 +1000570 di_flags |= XFS_DIFLAG_REALTIME;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100571 if (pip->i_d.di_flags & XFS_DIFLAG_EXTSZINHERIT) {
572 di_flags |= XFS_DIFLAG_EXTSIZE;
573 ip->i_d.di_extsize = pip->i_d.di_extsize;
574 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 }
576 if ((pip->i_d.di_flags & XFS_DIFLAG_NOATIME) &&
577 xfs_inherit_noatime)
Nathan Scott365ca832005-06-21 15:39:12 +1000578 di_flags |= XFS_DIFLAG_NOATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 if ((pip->i_d.di_flags & XFS_DIFLAG_NODUMP) &&
580 xfs_inherit_nodump)
Nathan Scott365ca832005-06-21 15:39:12 +1000581 di_flags |= XFS_DIFLAG_NODUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 if ((pip->i_d.di_flags & XFS_DIFLAG_SYNC) &&
583 xfs_inherit_sync)
Nathan Scott365ca832005-06-21 15:39:12 +1000584 di_flags |= XFS_DIFLAG_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 if ((pip->i_d.di_flags & XFS_DIFLAG_NOSYMLINKS) &&
586 xfs_inherit_nosymlinks)
Nathan Scott365ca832005-06-21 15:39:12 +1000587 di_flags |= XFS_DIFLAG_NOSYMLINKS;
588 if (pip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
589 di_flags |= XFS_DIFLAG_PROJINHERIT;
Barry Naujokd3446ea2006-06-09 14:54:19 +1000590 if ((pip->i_d.di_flags & XFS_DIFLAG_NODEFRAG) &&
591 xfs_inherit_nodefrag)
592 di_flags |= XFS_DIFLAG_NODEFRAG;
David Chinner2a82b8b2007-07-11 11:09:12 +1000593 if (pip->i_d.di_flags & XFS_DIFLAG_FILESTREAM)
594 di_flags |= XFS_DIFLAG_FILESTREAM;
Nathan Scott365ca832005-06-21 15:39:12 +1000595 ip->i_d.di_flags |= di_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 }
597 /* FALLTHROUGH */
598 case S_IFLNK:
599 ip->i_d.di_format = XFS_DINODE_FMT_EXTENTS;
600 ip->i_df.if_flags = XFS_IFEXTENTS;
601 ip->i_df.if_bytes = ip->i_df.if_real_bytes = 0;
602 ip->i_df.if_u1.if_extents = NULL;
603 break;
604 default:
605 ASSERT(0);
606 }
607 /*
608 * Attribute fork settings for new inode.
609 */
610 ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
611 ip->i_d.di_anextents = 0;
612
613 /*
614 * Log the new values stuffed into the inode.
615 */
Christoph Hellwigddc34152011-09-19 15:00:54 +0000616 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 xfs_trans_log_inode(tp, ip, flags);
618
Nathan Scottb83bd132006-06-09 16:48:30 +1000619 /* now that we have an i_mode we can setup inode ops and unlock */
Christoph Hellwig41be8be2008-08-13 16:23:13 +1000620 xfs_setup_inode(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
David Chinnerbf904242008-10-30 17:36:14 +1100622 /* now we have set up the vfs inode we can associate the filestream */
623 if (filestreams) {
624 error = xfs_filestream_associate(pip, ip);
625 if (error < 0)
626 return -error;
627 if (!error)
628 xfs_iflags_set(ip, XFS_IFILESTREAM);
629 }
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 *ipp = ip;
632 return 0;
633}
634
635/*
Christoph Hellwig8f04c472011-07-08 14:34:34 +0200636 * Free up the underlying blocks past new_size. The new size must be smaller
637 * than the current size. This routine can be used both for the attribute and
638 * data fork, and does not modify the inode size, which is left to the caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 *
David Chinnerf6485052008-04-17 16:50:04 +1000640 * The transaction passed to this routine must have made a permanent log
641 * reservation of at least XFS_ITRUNCATE_LOG_RES. This routine may commit the
642 * given transaction and start new ones, so make sure everything involved in
643 * the transaction is tidy before calling here. Some transaction will be
644 * returned to the caller to be committed. The incoming transaction must
645 * already include the inode, and both inode locks must be held exclusively.
646 * The inode must also be "held" within the transaction. On return the inode
647 * will be "held" within the returned transaction. This routine does NOT
648 * require any disk space to be reserved for it within the transaction.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 *
David Chinnerf6485052008-04-17 16:50:04 +1000650 * If we get an error, we must return with the inode locked and linked into the
651 * current transaction. This keeps things simple for the higher level code,
652 * because it always knows that the inode is locked and held in the transaction
653 * that returns to it whether errors occur or not. We don't mark the inode
654 * dirty on error so that transactions can be easily aborted if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 */
656int
Christoph Hellwig8f04c472011-07-08 14:34:34 +0200657xfs_itruncate_extents(
658 struct xfs_trans **tpp,
659 struct xfs_inode *ip,
660 int whichfork,
661 xfs_fsize_t new_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662{
Christoph Hellwig8f04c472011-07-08 14:34:34 +0200663 struct xfs_mount *mp = ip->i_mount;
664 struct xfs_trans *tp = *tpp;
665 struct xfs_trans *ntp;
666 xfs_bmap_free_t free_list;
667 xfs_fsblock_t first_block;
668 xfs_fileoff_t first_unmap_block;
669 xfs_fileoff_t last_block;
670 xfs_filblks_t unmap_len;
671 int committed;
672 int error = 0;
673 int done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Christoph Hellwig0b561852012-07-04 11:13:31 -0400675 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
676 ASSERT(!atomic_read(&VFS_I(ip)->i_count) ||
677 xfs_isilocked(ip, XFS_IOLOCK_EXCL));
Christoph Hellwigce7ae1512011-12-18 20:00:11 +0000678 ASSERT(new_size <= XFS_ISIZE(ip));
Christoph Hellwig8f04c472011-07-08 14:34:34 +0200679 ASSERT(tp->t_flags & XFS_TRANS_PERM_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 ASSERT(ip->i_itemp != NULL);
Christoph Hellwig898621d2010-06-24 11:36:58 +1000681 ASSERT(ip->i_itemp->ili_lock_flags == 0);
Christoph Hellwig8f04c472011-07-08 14:34:34 +0200682 ASSERT(!XFS_NOT_DQATTACHED(mp, ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000684 trace_xfs_itruncate_extents_start(ip, new_size);
685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 /*
687 * Since it is possible for space to become allocated beyond
688 * the end of the file (in a crash where the space is allocated
689 * but the inode size is not yet updated), simply remove any
690 * blocks which show up between the new EOF and the maximum
691 * possible file size. If the first block to be removed is
692 * beyond the maximum file size (ie it is the same as last_block),
693 * then there is nothing to do.
694 */
Christoph Hellwig8f04c472011-07-08 14:34:34 +0200695 first_unmap_block = XFS_B_TO_FSB(mp, (xfs_ufsize_t)new_size);
Dave Chinner32972382012-06-08 15:44:54 +1000696 last_block = XFS_B_TO_FSB(mp, mp->m_super->s_maxbytes);
Christoph Hellwig8f04c472011-07-08 14:34:34 +0200697 if (first_unmap_block == last_block)
698 return 0;
699
700 ASSERT(first_unmap_block < last_block);
701 unmap_len = last_block - first_unmap_block + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 while (!done) {
Eric Sandeen9d87c312009-01-14 23:22:07 -0600703 xfs_bmap_init(&free_list, &first_block);
Christoph Hellwig8f04c472011-07-08 14:34:34 +0200704 error = xfs_bunmapi(tp, ip,
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000705 first_unmap_block, unmap_len,
Christoph Hellwig8f04c472011-07-08 14:34:34 +0200706 xfs_bmapi_aflag(whichfork),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 XFS_ITRUNC_MAX_EXTENTS,
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000708 &first_block, &free_list,
Christoph Hellwigb4e91812010-06-23 18:11:15 +1000709 &done);
Christoph Hellwig8f04c472011-07-08 14:34:34 +0200710 if (error)
711 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 /*
714 * Duplicate the transaction that has the permanent
715 * reservation and commit the old transaction.
716 */
Christoph Hellwig8f04c472011-07-08 14:34:34 +0200717 error = xfs_bmap_finish(&tp, &free_list, &committed);
Christoph Hellwig898621d2010-06-24 11:36:58 +1000718 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +0000719 xfs_trans_ijoin(tp, ip, 0);
Christoph Hellwig8f04c472011-07-08 14:34:34 +0200720 if (error)
721 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
723 if (committed) {
724 /*
David Chinnerf6485052008-04-17 16:50:04 +1000725 * Mark the inode dirty so it will be logged and
David Chinnere5720ee2008-04-10 12:21:18 +1000726 * moved forward in the log as part of every commit.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 */
Christoph Hellwig8f04c472011-07-08 14:34:34 +0200728 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 }
David Chinnerf6485052008-04-17 16:50:04 +1000730
Christoph Hellwig8f04c472011-07-08 14:34:34 +0200731 ntp = xfs_trans_dup(tp);
732 error = xfs_trans_commit(tp, 0);
733 tp = ntp;
David Chinnere5720ee2008-04-10 12:21:18 +1000734
Christoph Hellwigddc34152011-09-19 15:00:54 +0000735 xfs_trans_ijoin(tp, ip, 0);
David Chinnerf6485052008-04-17 16:50:04 +1000736
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100737 if (error)
Christoph Hellwig8f04c472011-07-08 14:34:34 +0200738 goto out;
739
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100740 /*
Christoph Hellwig8f04c472011-07-08 14:34:34 +0200741 * Transaction commit worked ok so we can drop the extra ticket
Dave Chinnercc09c0d2008-11-17 17:37:10 +1100742 * reference that we gained in xfs_trans_dup()
743 */
Christoph Hellwig8f04c472011-07-08 14:34:34 +0200744 xfs_log_ticket_put(tp->t_ticket);
745 error = xfs_trans_reserve(tp, 0,
David Chinnerf6485052008-04-17 16:50:04 +1000746 XFS_ITRUNCATE_LOG_RES(mp), 0,
747 XFS_TRANS_PERM_LOG_RES,
748 XFS_ITRUNCATE_LOG_COUNT);
749 if (error)
Christoph Hellwig8f04c472011-07-08 14:34:34 +0200750 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 }
Christoph Hellwig8f04c472011-07-08 14:34:34 +0200752
Christoph Hellwig673e8e52011-12-18 20:00:04 +0000753 /*
754 * Always re-log the inode so that our permanent transaction can keep
755 * on rolling it forward in the log.
756 */
757 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
758
759 trace_xfs_itruncate_extents_end(ip, new_size);
760
Christoph Hellwig8f04c472011-07-08 14:34:34 +0200761out:
762 *tpp = tp;
763 return error;
764out_bmap_cancel:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 /*
Christoph Hellwig8f04c472011-07-08 14:34:34 +0200766 * If the bunmapi call encounters an error, return to the caller where
767 * the transaction can be properly aborted. We just need to make sure
768 * we're not holding any resources that we were not when we came in.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 */
Christoph Hellwig8f04c472011-07-08 14:34:34 +0200770 xfs_bmap_cancel(&free_list);
771 goto out;
772}
773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774/*
775 * This is called when the inode's link count goes to 0.
776 * We place the on-disk inode on a list in the AGI. It
777 * will be pulled from this list when the inode is freed.
778 */
779int
780xfs_iunlink(
781 xfs_trans_t *tp,
782 xfs_inode_t *ip)
783{
784 xfs_mount_t *mp;
785 xfs_agi_t *agi;
786 xfs_dinode_t *dip;
787 xfs_buf_t *agibp;
788 xfs_buf_t *ibp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 xfs_agino_t agino;
790 short bucket_index;
791 int offset;
792 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794 ASSERT(ip->i_d.di_nlink == 0);
795 ASSERT(ip->i_d.di_mode != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
797 mp = tp->t_mountp;
798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 /*
800 * Get the agi buffer first. It ensures lock ordering
801 * on the list.
802 */
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +1100803 error = xfs_read_agi(mp, tp, XFS_INO_TO_AGNO(mp, ip->i_ino), &agibp);
Vlad Apostolov859d7182007-10-11 17:44:18 +1000804 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 agi = XFS_BUF_TO_AGI(agibp);
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +1100807
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 /*
809 * Get the index into the agi hash table for the
810 * list this inode will go on.
811 */
812 agino = XFS_INO_TO_AGINO(mp, ip->i_ino);
813 ASSERT(agino != 0);
814 bucket_index = agino % XFS_AGI_UNLINKED_BUCKETS;
815 ASSERT(agi->agi_unlinked[bucket_index]);
Christoph Hellwig16259e72005-11-02 15:11:25 +1100816 ASSERT(be32_to_cpu(agi->agi_unlinked[bucket_index]) != agino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200818 if (agi->agi_unlinked[bucket_index] != cpu_to_be32(NULLAGINO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 /*
820 * There is already another inode in the bucket we need
821 * to add ourselves to. Add us at the front of the list.
822 * Here we put the head pointer into our next pointer,
823 * and then we fall through to point the head at us.
824 */
Christoph Hellwig475ee412012-07-03 12:21:22 -0400825 error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &dip, &ibp,
826 0, 0);
Vlad Apostolovc319b582007-11-23 16:27:51 +1100827 if (error)
828 return error;
829
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200830 ASSERT(dip->di_next_unlinked == cpu_to_be32(NULLAGINO));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 dip->di_next_unlinked = agi->agi_unlinked[bucket_index];
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +1100832 offset = ip->i_imap.im_boffset +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 offsetof(xfs_dinode_t, di_next_unlinked);
Dave Chinner0a32c262013-06-05 12:09:08 +1000834
835 /* need to recalc the inode CRC if appropriate */
836 xfs_dinode_calc_crc(mp, dip);
837
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 xfs_trans_inode_buf(tp, ibp);
839 xfs_trans_log_buf(tp, ibp, offset,
840 (offset + sizeof(xfs_agino_t) - 1));
841 xfs_inobp_check(mp, ibp);
842 }
843
844 /*
845 * Point the bucket head pointer at the inode being inserted.
846 */
847 ASSERT(agino != 0);
Christoph Hellwig16259e72005-11-02 15:11:25 +1100848 agi->agi_unlinked[bucket_index] = cpu_to_be32(agino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 offset = offsetof(xfs_agi_t, agi_unlinked) +
850 (sizeof(xfs_agino_t) * bucket_index);
851 xfs_trans_log_buf(tp, agibp, offset,
852 (offset + sizeof(xfs_agino_t) - 1));
853 return 0;
854}
855
856/*
857 * Pull the on-disk inode from the AGI unlinked list.
858 */
859STATIC int
860xfs_iunlink_remove(
861 xfs_trans_t *tp,
862 xfs_inode_t *ip)
863{
864 xfs_ino_t next_ino;
865 xfs_mount_t *mp;
866 xfs_agi_t *agi;
867 xfs_dinode_t *dip;
868 xfs_buf_t *agibp;
869 xfs_buf_t *ibp;
870 xfs_agnumber_t agno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 xfs_agino_t agino;
872 xfs_agino_t next_agino;
873 xfs_buf_t *last_ibp;
Nathan Scott6fdf8cc2006-06-28 10:13:52 +1000874 xfs_dinode_t *last_dip = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 short bucket_index;
Nathan Scott6fdf8cc2006-06-28 10:13:52 +1000876 int offset, last_offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 agno = XFS_INO_TO_AGNO(mp, ip->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
882 /*
883 * Get the agi buffer first. It ensures lock ordering
884 * on the list.
885 */
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +1100886 error = xfs_read_agi(mp, tp, agno, &agibp);
887 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 return error;
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +1100889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 agi = XFS_BUF_TO_AGI(agibp);
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +1100891
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 /*
893 * Get the index into the agi hash table for the
894 * list this inode will go on.
895 */
896 agino = XFS_INO_TO_AGINO(mp, ip->i_ino);
897 ASSERT(agino != 0);
898 bucket_index = agino % XFS_AGI_UNLINKED_BUCKETS;
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200899 ASSERT(agi->agi_unlinked[bucket_index] != cpu_to_be32(NULLAGINO));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 ASSERT(agi->agi_unlinked[bucket_index]);
901
Christoph Hellwig16259e72005-11-02 15:11:25 +1100902 if (be32_to_cpu(agi->agi_unlinked[bucket_index]) == agino) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 /*
Christoph Hellwig475ee412012-07-03 12:21:22 -0400904 * We're at the head of the list. Get the inode's on-disk
905 * buffer to see if there is anyone after us on the list.
906 * Only modify our next pointer if it is not already NULLAGINO.
907 * This saves us the overhead of dealing with the buffer when
908 * there is no need to change it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 */
Christoph Hellwig475ee412012-07-03 12:21:22 -0400910 error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &dip, &ibp,
911 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 if (error) {
Christoph Hellwig475ee412012-07-03 12:21:22 -0400913 xfs_warn(mp, "%s: xfs_imap_to_bp returned error %d.",
Dave Chinner0b932cc2011-03-07 10:08:35 +1100914 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 return error;
916 }
Christoph Hellwig347d1c02007-08-28 13:57:51 +1000917 next_agino = be32_to_cpu(dip->di_next_unlinked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 ASSERT(next_agino != 0);
919 if (next_agino != NULLAGINO) {
Christoph Hellwig347d1c02007-08-28 13:57:51 +1000920 dip->di_next_unlinked = cpu_to_be32(NULLAGINO);
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +1100921 offset = ip->i_imap.im_boffset +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 offsetof(xfs_dinode_t, di_next_unlinked);
Dave Chinner0a32c262013-06-05 12:09:08 +1000923
924 /* need to recalc the inode CRC if appropriate */
925 xfs_dinode_calc_crc(mp, dip);
926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 xfs_trans_inode_buf(tp, ibp);
928 xfs_trans_log_buf(tp, ibp, offset,
929 (offset + sizeof(xfs_agino_t) - 1));
930 xfs_inobp_check(mp, ibp);
931 } else {
932 xfs_trans_brelse(tp, ibp);
933 }
934 /*
935 * Point the bucket head pointer at the next inode.
936 */
937 ASSERT(next_agino != 0);
938 ASSERT(next_agino != agino);
Christoph Hellwig16259e72005-11-02 15:11:25 +1100939 agi->agi_unlinked[bucket_index] = cpu_to_be32(next_agino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 offset = offsetof(xfs_agi_t, agi_unlinked) +
941 (sizeof(xfs_agino_t) * bucket_index);
942 xfs_trans_log_buf(tp, agibp, offset,
943 (offset + sizeof(xfs_agino_t) - 1));
944 } else {
945 /*
946 * We need to search the list for the inode being freed.
947 */
Christoph Hellwig16259e72005-11-02 15:11:25 +1100948 next_agino = be32_to_cpu(agi->agi_unlinked[bucket_index]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 last_ibp = NULL;
950 while (next_agino != agino) {
Christoph Hellwig129dbc92012-07-03 12:21:51 -0400951 struct xfs_imap imap;
952
953 if (last_ibp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 xfs_trans_brelse(tp, last_ibp);
Christoph Hellwig129dbc92012-07-03 12:21:51 -0400955
956 imap.im_blkno = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 next_ino = XFS_AGINO_TO_INO(mp, agno, next_agino);
Christoph Hellwig129dbc92012-07-03 12:21:51 -0400958
959 error = xfs_imap(mp, tp, next_ino, &imap, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100961 xfs_warn(mp,
Christoph Hellwig129dbc92012-07-03 12:21:51 -0400962 "%s: xfs_imap returned error %d.",
963 __func__, error);
964 return error;
965 }
966
967 error = xfs_imap_to_bp(mp, tp, &imap, &last_dip,
968 &last_ibp, 0, 0);
969 if (error) {
970 xfs_warn(mp,
971 "%s: xfs_imap_to_bp returned error %d.",
Dave Chinner0b932cc2011-03-07 10:08:35 +1100972 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 return error;
974 }
Christoph Hellwig129dbc92012-07-03 12:21:51 -0400975
976 last_offset = imap.im_boffset;
Christoph Hellwig347d1c02007-08-28 13:57:51 +1000977 next_agino = be32_to_cpu(last_dip->di_next_unlinked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 ASSERT(next_agino != NULLAGINO);
979 ASSERT(next_agino != 0);
980 }
Christoph Hellwig475ee412012-07-03 12:21:22 -0400981
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 /*
Christoph Hellwig475ee412012-07-03 12:21:22 -0400983 * Now last_ibp points to the buffer previous to us on the
984 * unlinked list. Pull us from the list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 */
Christoph Hellwig475ee412012-07-03 12:21:22 -0400986 error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &dip, &ibp,
987 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 if (error) {
Christoph Hellwig475ee412012-07-03 12:21:22 -0400989 xfs_warn(mp, "%s: xfs_imap_to_bp(2) returned error %d.",
Dave Chinner0b932cc2011-03-07 10:08:35 +1100990 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 return error;
992 }
Christoph Hellwig347d1c02007-08-28 13:57:51 +1000993 next_agino = be32_to_cpu(dip->di_next_unlinked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 ASSERT(next_agino != 0);
995 ASSERT(next_agino != agino);
996 if (next_agino != NULLAGINO) {
Christoph Hellwig347d1c02007-08-28 13:57:51 +1000997 dip->di_next_unlinked = cpu_to_be32(NULLAGINO);
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +1100998 offset = ip->i_imap.im_boffset +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 offsetof(xfs_dinode_t, di_next_unlinked);
Dave Chinner0a32c262013-06-05 12:09:08 +10001000
1001 /* need to recalc the inode CRC if appropriate */
1002 xfs_dinode_calc_crc(mp, dip);
1003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 xfs_trans_inode_buf(tp, ibp);
1005 xfs_trans_log_buf(tp, ibp, offset,
1006 (offset + sizeof(xfs_agino_t) - 1));
1007 xfs_inobp_check(mp, ibp);
1008 } else {
1009 xfs_trans_brelse(tp, ibp);
1010 }
1011 /*
1012 * Point the previous inode on the list to the next inode.
1013 */
Christoph Hellwig347d1c02007-08-28 13:57:51 +10001014 last_dip->di_next_unlinked = cpu_to_be32(next_agino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 ASSERT(next_agino != 0);
1016 offset = last_offset + offsetof(xfs_dinode_t, di_next_unlinked);
Dave Chinner0a32c262013-06-05 12:09:08 +10001017
1018 /* need to recalc the inode CRC if appropriate */
1019 xfs_dinode_calc_crc(mp, last_dip);
1020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 xfs_trans_inode_buf(tp, last_ibp);
1022 xfs_trans_log_buf(tp, last_ibp, offset,
1023 (offset + sizeof(xfs_agino_t) - 1));
1024 xfs_inobp_check(mp, last_ibp);
1025 }
1026 return 0;
1027}
1028
Dave Chinner5b3eed72010-08-24 11:42:41 +10001029/*
1030 * A big issue when freeing the inode cluster is is that we _cannot_ skip any
1031 * inodes that are in memory - they all must be marked stale and attached to
1032 * the cluster buffer.
1033 */
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00001034STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035xfs_ifree_cluster(
1036 xfs_inode_t *free_ip,
1037 xfs_trans_t *tp,
1038 xfs_ino_t inum)
1039{
1040 xfs_mount_t *mp = free_ip->i_mount;
1041 int blks_per_cluster;
1042 int nbufs;
1043 int ninodes;
Dave Chinner5b257b42010-06-03 16:22:29 +10001044 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 xfs_daddr_t blkno;
1046 xfs_buf_t *bp;
Dave Chinner5b257b42010-06-03 16:22:29 +10001047 xfs_inode_t *ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 xfs_inode_log_item_t *iip;
1049 xfs_log_item_t *lip;
Dave Chinner5017e972010-01-11 11:47:40 +00001050 struct xfs_perag *pag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
Dave Chinner5017e972010-01-11 11:47:40 +00001052 pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, inum));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 if (mp->m_sb.sb_blocksize >= XFS_INODE_CLUSTER_SIZE(mp)) {
1054 blks_per_cluster = 1;
1055 ninodes = mp->m_sb.sb_inopblock;
1056 nbufs = XFS_IALLOC_BLOCKS(mp);
1057 } else {
1058 blks_per_cluster = XFS_INODE_CLUSTER_SIZE(mp) /
1059 mp->m_sb.sb_blocksize;
1060 ninodes = blks_per_cluster * mp->m_sb.sb_inopblock;
1061 nbufs = XFS_IALLOC_BLOCKS(mp) / blks_per_cluster;
1062 }
1063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 for (j = 0; j < nbufs; j++, inum += ninodes) {
1065 blkno = XFS_AGB_TO_DADDR(mp, XFS_INO_TO_AGNO(mp, inum),
1066 XFS_INO_TO_AGBNO(mp, inum));
1067
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 /*
Dave Chinner5b257b42010-06-03 16:22:29 +10001069 * We obtain and lock the backing buffer first in the process
1070 * here, as we have to ensure that any dirty inode that we
1071 * can't get the flush lock on is attached to the buffer.
1072 * If we scan the in-memory inodes first, then buffer IO can
1073 * complete before we get a lock on it, and hence we may fail
1074 * to mark all the active inodes on the buffer stale.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 */
Dave Chinner5b257b42010-06-03 16:22:29 +10001076 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, blkno,
Dave Chinnerb6aff292012-11-02 11:38:42 +11001077 mp->m_bsize * blks_per_cluster,
1078 XBF_UNMAPPED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00001080 if (!bp)
1081 return ENOMEM;
Dave Chinnerb0f539d2012-11-14 17:53:49 +11001082
1083 /*
1084 * This buffer may not have been correctly initialised as we
1085 * didn't read it from disk. That's not important because we are
1086 * only using to mark the buffer as stale in the log, and to
1087 * attach stale cached inodes on it. That means it will never be
1088 * dispatched for IO. If it is, we want to know about it, and we
1089 * want it to fail. We can acheive this by adding a write
1090 * verifier to the buffer.
1091 */
Dave Chinner1813dd62012-11-14 17:54:40 +11001092 bp->b_ops = &xfs_inode_buf_ops;
Dave Chinnerb0f539d2012-11-14 17:53:49 +11001093
Dave Chinner5b257b42010-06-03 16:22:29 +10001094 /*
1095 * Walk the inodes already attached to the buffer and mark them
1096 * stale. These will all have the flush locks held, so an
Dave Chinner5b3eed72010-08-24 11:42:41 +10001097 * in-memory inode walk can't lock them. By marking them all
1098 * stale first, we will not attempt to lock them in the loop
1099 * below as the XFS_ISTALE flag will be set.
Dave Chinner5b257b42010-06-03 16:22:29 +10001100 */
Christoph Hellwigadadbee2011-07-13 13:43:49 +02001101 lip = bp->b_fspriv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 while (lip) {
1103 if (lip->li_type == XFS_LI_INODE) {
1104 iip = (xfs_inode_log_item_t *)lip;
1105 ASSERT(iip->ili_logged == 1);
Christoph Hellwigca30b2a2010-06-23 18:11:15 +10001106 lip->li_cb = xfs_istale_done;
David Chinner7b2e2a32008-10-30 17:39:12 +11001107 xfs_trans_ail_copy_lsn(mp->m_ail,
1108 &iip->ili_flush_lsn,
1109 &iip->ili_item.li_lsn);
David Chinnere5ffd2b2006-11-21 18:55:33 +11001110 xfs_iflags_set(iip->ili_inode, XFS_ISTALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 }
1112 lip = lip->li_bio_list;
1113 }
1114
Dave Chinner5b3eed72010-08-24 11:42:41 +10001115
Dave Chinner5b257b42010-06-03 16:22:29 +10001116 /*
1117 * For each inode in memory attempt to add it to the inode
1118 * buffer and set it up for being staled on buffer IO
1119 * completion. This is safe as we've locked out tail pushing
1120 * and flushing by locking the buffer.
1121 *
1122 * We have already marked every inode that was part of a
1123 * transaction stale above, which means there is no point in
1124 * even trying to lock them.
1125 */
1126 for (i = 0; i < ninodes; i++) {
Dave Chinner5b3eed72010-08-24 11:42:41 +10001127retry:
Dave Chinner1a3e8f32010-12-17 17:29:43 +11001128 rcu_read_lock();
Dave Chinner5b257b42010-06-03 16:22:29 +10001129 ip = radix_tree_lookup(&pag->pag_ici_root,
1130 XFS_INO_TO_AGINO(mp, (inum + i)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
Dave Chinner1a3e8f32010-12-17 17:29:43 +11001132 /* Inode not in memory, nothing to do */
1133 if (!ip) {
1134 rcu_read_unlock();
Dave Chinner5b257b42010-06-03 16:22:29 +10001135 continue;
1136 }
1137
Dave Chinner5b3eed72010-08-24 11:42:41 +10001138 /*
Dave Chinner1a3e8f32010-12-17 17:29:43 +11001139 * because this is an RCU protected lookup, we could
1140 * find a recently freed or even reallocated inode
1141 * during the lookup. We need to check under the
1142 * i_flags_lock for a valid inode here. Skip it if it
1143 * is not valid, the wrong inode or stale.
1144 */
1145 spin_lock(&ip->i_flags_lock);
1146 if (ip->i_ino != inum + i ||
1147 __xfs_iflags_test(ip, XFS_ISTALE)) {
1148 spin_unlock(&ip->i_flags_lock);
1149 rcu_read_unlock();
1150 continue;
1151 }
1152 spin_unlock(&ip->i_flags_lock);
1153
1154 /*
Dave Chinner5b3eed72010-08-24 11:42:41 +10001155 * Don't try to lock/unlock the current inode, but we
1156 * _cannot_ skip the other inodes that we did not find
1157 * in the list attached to the buffer and are not
1158 * already marked stale. If we can't lock it, back off
1159 * and retry.
1160 */
Dave Chinner5b257b42010-06-03 16:22:29 +10001161 if (ip != free_ip &&
1162 !xfs_ilock_nowait(ip, XFS_ILOCK_EXCL)) {
Dave Chinner1a3e8f32010-12-17 17:29:43 +11001163 rcu_read_unlock();
Dave Chinner5b3eed72010-08-24 11:42:41 +10001164 delay(1);
1165 goto retry;
Dave Chinner5b257b42010-06-03 16:22:29 +10001166 }
Dave Chinner1a3e8f32010-12-17 17:29:43 +11001167 rcu_read_unlock();
Dave Chinner5b257b42010-06-03 16:22:29 +10001168
Dave Chinner5b3eed72010-08-24 11:42:41 +10001169 xfs_iflock(ip);
Dave Chinner5b257b42010-06-03 16:22:29 +10001170 xfs_iflags_set(ip, XFS_ISTALE);
Dave Chinner5b257b42010-06-03 16:22:29 +10001171
Dave Chinner5b3eed72010-08-24 11:42:41 +10001172 /*
1173 * we don't need to attach clean inodes or those only
1174 * with unlogged changes (which we throw away, anyway).
1175 */
Dave Chinner5b257b42010-06-03 16:22:29 +10001176 iip = ip->i_itemp;
Dave Chinner5b3eed72010-08-24 11:42:41 +10001177 if (!iip || xfs_inode_clean(ip)) {
Dave Chinner5b257b42010-06-03 16:22:29 +10001178 ASSERT(ip != free_ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 xfs_ifunlock(ip);
1180 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1181 continue;
1182 }
1183
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +00001184 iip->ili_last_fields = iip->ili_fields;
1185 iip->ili_fields = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 iip->ili_logged = 1;
David Chinner7b2e2a32008-10-30 17:39:12 +11001187 xfs_trans_ail_copy_lsn(mp->m_ail, &iip->ili_flush_lsn,
1188 &iip->ili_item.li_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
Christoph Hellwigca30b2a2010-06-23 18:11:15 +10001190 xfs_buf_attach_iodone(bp, xfs_istale_done,
1191 &iip->ili_item);
Dave Chinner5b257b42010-06-03 16:22:29 +10001192
1193 if (ip != free_ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 }
1196
Dave Chinner5b3eed72010-08-24 11:42:41 +10001197 xfs_trans_stale_inode_buf(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 xfs_trans_binval(tp, bp);
1199 }
1200
Dave Chinner5017e972010-01-11 11:47:40 +00001201 xfs_perag_put(pag);
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00001202 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203}
1204
1205/*
1206 * This is called to return an inode to the inode free list.
1207 * The inode should already be truncated to 0 length and have
1208 * no pages associated with it. This routine also assumes that
1209 * the inode is already a part of the transaction.
1210 *
1211 * The on-disk copy of the inode will have been added to the list
1212 * of unlinked inodes in the AGI. We need to remove the inode from
1213 * that list atomically with respect to freeing it here.
1214 */
1215int
1216xfs_ifree(
1217 xfs_trans_t *tp,
1218 xfs_inode_t *ip,
1219 xfs_bmap_free_t *flist)
1220{
1221 int error;
1222 int delete;
1223 xfs_ino_t first_ino;
1224
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10001225 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 ASSERT(ip->i_d.di_nlink == 0);
1227 ASSERT(ip->i_d.di_nextents == 0);
1228 ASSERT(ip->i_d.di_anextents == 0);
Christoph Hellwigce7ae1512011-12-18 20:00:11 +00001229 ASSERT(ip->i_d.di_size == 0 || !S_ISREG(ip->i_d.di_mode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 ASSERT(ip->i_d.di_nblocks == 0);
1231
1232 /*
1233 * Pull the on-disk inode from the AGI unlinked list.
1234 */
1235 error = xfs_iunlink_remove(tp, ip);
Dave Chinner1baaed82013-06-27 16:04:50 +10001236 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
1239 error = xfs_difree(tp, ip->i_ino, flist, &delete, &first_ino);
Dave Chinner1baaed82013-06-27 16:04:50 +10001240 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 return error;
Dave Chinner1baaed82013-06-27 16:04:50 +10001242
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 ip->i_d.di_mode = 0; /* mark incore inode as free */
1244 ip->i_d.di_flags = 0;
1245 ip->i_d.di_dmevmask = 0;
1246 ip->i_d.di_forkoff = 0; /* mark the attr fork not in use */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 ip->i_d.di_format = XFS_DINODE_FMT_EXTENTS;
1248 ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
1249 /*
1250 * Bump the generation count so no one will be confused
1251 * by reincarnations of this inode.
1252 */
1253 ip->i_d.di_gen++;
1254 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1255
Dave Chinner1baaed82013-06-27 16:04:50 +10001256 if (delete)
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00001257 error = xfs_ifree_cluster(ip, tp, first_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00001259 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260}
1261
1262/*
Christoph Hellwig60ec67832010-02-17 19:43:56 +00001263 * This is called to unpin an inode. The caller must have the inode locked
1264 * in at least shared mode so that the buffer cannot be subsequently pinned
1265 * once someone is waiting for it to be unpinned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 */
Christoph Hellwig60ec67832010-02-17 19:43:56 +00001267static void
Christoph Hellwigf392e632011-12-18 20:00:10 +00001268xfs_iunpin(
Christoph Hellwig60ec67832010-02-17 19:43:56 +00001269 struct xfs_inode *ip)
David Chinnera3f74ff2008-03-06 13:43:42 +11001270{
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10001271 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
David Chinnera3f74ff2008-03-06 13:43:42 +11001272
Dave Chinner4aaf15d2010-03-08 11:24:07 +11001273 trace_xfs_inode_unpin_nowait(ip, _RET_IP_);
1274
David Chinnera3f74ff2008-03-06 13:43:42 +11001275 /* Give the log a push to start the unpinning I/O */
Christoph Hellwig60ec67832010-02-17 19:43:56 +00001276 xfs_log_force_lsn(ip->i_mount, ip->i_itemp->ili_last_lsn, 0);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00001277
David Chinnera3f74ff2008-03-06 13:43:42 +11001278}
1279
Christoph Hellwigf392e632011-12-18 20:00:10 +00001280static void
1281__xfs_iunpin_wait(
1282 struct xfs_inode *ip)
1283{
1284 wait_queue_head_t *wq = bit_waitqueue(&ip->i_flags, __XFS_IPINNED_BIT);
1285 DEFINE_WAIT_BIT(wait, &ip->i_flags, __XFS_IPINNED_BIT);
1286
1287 xfs_iunpin(ip);
1288
1289 do {
1290 prepare_to_wait(wq, &wait.wait, TASK_UNINTERRUPTIBLE);
1291 if (xfs_ipincount(ip))
1292 io_schedule();
1293 } while (xfs_ipincount(ip));
1294 finish_wait(wq, &wait.wait);
1295}
1296
Dave Chinner777df5a2010-02-06 12:37:26 +11001297void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298xfs_iunpin_wait(
Christoph Hellwig60ec67832010-02-17 19:43:56 +00001299 struct xfs_inode *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300{
Christoph Hellwigf392e632011-12-18 20:00:10 +00001301 if (xfs_ipincount(ip))
1302 __xfs_iunpin_wait(ip);
David Chinnera3f74ff2008-03-06 13:43:42 +11001303}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
David Chinnerbad55842008-03-06 13:43:49 +11001305STATIC int
1306xfs_iflush_cluster(
1307 xfs_inode_t *ip,
1308 xfs_buf_t *bp)
1309{
1310 xfs_mount_t *mp = ip->i_mount;
Dave Chinner5017e972010-01-11 11:47:40 +00001311 struct xfs_perag *pag;
David Chinnerbad55842008-03-06 13:43:49 +11001312 unsigned long first_index, mask;
David Chinnerc8f5f122008-05-20 11:30:15 +10001313 unsigned long inodes_per_cluster;
David Chinnerbad55842008-03-06 13:43:49 +11001314 int ilist_size;
1315 xfs_inode_t **ilist;
1316 xfs_inode_t *iq;
David Chinnerbad55842008-03-06 13:43:49 +11001317 int nr_found;
1318 int clcount = 0;
1319 int bufwasdelwri;
1320 int i;
1321
Dave Chinner5017e972010-01-11 11:47:40 +00001322 pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ip->i_ino));
David Chinnerbad55842008-03-06 13:43:49 +11001323
David Chinnerc8f5f122008-05-20 11:30:15 +10001324 inodes_per_cluster = XFS_INODE_CLUSTER_SIZE(mp) >> mp->m_sb.sb_inodelog;
1325 ilist_size = inodes_per_cluster * sizeof(xfs_inode_t *);
David Chinner49383b02008-05-19 16:29:34 +10001326 ilist = kmem_alloc(ilist_size, KM_MAYFAIL|KM_NOFS);
David Chinnerbad55842008-03-06 13:43:49 +11001327 if (!ilist)
Dave Chinner44b56e02010-01-11 11:47:43 +00001328 goto out_put;
David Chinnerbad55842008-03-06 13:43:49 +11001329
1330 mask = ~(((XFS_INODE_CLUSTER_SIZE(mp) >> mp->m_sb.sb_inodelog)) - 1);
1331 first_index = XFS_INO_TO_AGINO(mp, ip->i_ino) & mask;
Dave Chinner1a3e8f32010-12-17 17:29:43 +11001332 rcu_read_lock();
David Chinnerbad55842008-03-06 13:43:49 +11001333 /* really need a gang lookup range call here */
1334 nr_found = radix_tree_gang_lookup(&pag->pag_ici_root, (void**)ilist,
David Chinnerc8f5f122008-05-20 11:30:15 +10001335 first_index, inodes_per_cluster);
David Chinnerbad55842008-03-06 13:43:49 +11001336 if (nr_found == 0)
1337 goto out_free;
1338
1339 for (i = 0; i < nr_found; i++) {
1340 iq = ilist[i];
1341 if (iq == ip)
1342 continue;
Dave Chinner1a3e8f32010-12-17 17:29:43 +11001343
1344 /*
1345 * because this is an RCU protected lookup, we could find a
1346 * recently freed or even reallocated inode during the lookup.
1347 * We need to check under the i_flags_lock for a valid inode
1348 * here. Skip it if it is not valid or the wrong inode.
1349 */
1350 spin_lock(&ip->i_flags_lock);
1351 if (!ip->i_ino ||
1352 (XFS_INO_TO_AGINO(mp, iq->i_ino) & mask) != first_index) {
1353 spin_unlock(&ip->i_flags_lock);
1354 continue;
1355 }
1356 spin_unlock(&ip->i_flags_lock);
1357
David Chinnerbad55842008-03-06 13:43:49 +11001358 /*
1359 * Do an un-protected check to see if the inode is dirty and
1360 * is a candidate for flushing. These checks will be repeated
1361 * later after the appropriate locks are acquired.
1362 */
David Chinner33540402008-03-06 13:43:59 +11001363 if (xfs_inode_clean(iq) && xfs_ipincount(iq) == 0)
David Chinnerbad55842008-03-06 13:43:49 +11001364 continue;
David Chinnerbad55842008-03-06 13:43:49 +11001365
1366 /*
1367 * Try to get locks. If any are unavailable or it is pinned,
1368 * then this inode cannot be flushed and is skipped.
1369 */
1370
1371 if (!xfs_ilock_nowait(iq, XFS_ILOCK_SHARED))
1372 continue;
1373 if (!xfs_iflock_nowait(iq)) {
1374 xfs_iunlock(iq, XFS_ILOCK_SHARED);
1375 continue;
1376 }
1377 if (xfs_ipincount(iq)) {
1378 xfs_ifunlock(iq);
1379 xfs_iunlock(iq, XFS_ILOCK_SHARED);
1380 continue;
1381 }
1382
1383 /*
1384 * arriving here means that this inode can be flushed. First
1385 * re-check that it's dirty before flushing.
1386 */
David Chinner33540402008-03-06 13:43:59 +11001387 if (!xfs_inode_clean(iq)) {
1388 int error;
David Chinnerbad55842008-03-06 13:43:49 +11001389 error = xfs_iflush_int(iq, bp);
1390 if (error) {
1391 xfs_iunlock(iq, XFS_ILOCK_SHARED);
1392 goto cluster_corrupt_out;
1393 }
1394 clcount++;
1395 } else {
1396 xfs_ifunlock(iq);
1397 }
1398 xfs_iunlock(iq, XFS_ILOCK_SHARED);
1399 }
1400
1401 if (clcount) {
1402 XFS_STATS_INC(xs_icluster_flushcnt);
1403 XFS_STATS_ADD(xs_icluster_flushinode, clcount);
1404 }
1405
1406out_free:
Dave Chinner1a3e8f32010-12-17 17:29:43 +11001407 rcu_read_unlock();
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001408 kmem_free(ilist);
Dave Chinner44b56e02010-01-11 11:47:43 +00001409out_put:
1410 xfs_perag_put(pag);
David Chinnerbad55842008-03-06 13:43:49 +11001411 return 0;
1412
1413
1414cluster_corrupt_out:
1415 /*
1416 * Corruption detected in the clustering loop. Invalidate the
1417 * inode buffer and shut down the filesystem.
1418 */
Dave Chinner1a3e8f32010-12-17 17:29:43 +11001419 rcu_read_unlock();
David Chinnerbad55842008-03-06 13:43:49 +11001420 /*
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001421 * Clean up the buffer. If it was delwri, just release it --
David Chinnerbad55842008-03-06 13:43:49 +11001422 * brelse can handle it with no problems. If not, shut down the
1423 * filesystem before releasing the buffer.
1424 */
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001425 bufwasdelwri = (bp->b_flags & _XBF_DELWRI_Q);
David Chinnerbad55842008-03-06 13:43:49 +11001426 if (bufwasdelwri)
1427 xfs_buf_relse(bp);
1428
1429 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
1430
1431 if (!bufwasdelwri) {
1432 /*
1433 * Just like incore_relse: if we have b_iodone functions,
1434 * mark the buffer as an error and call them. Otherwise
1435 * mark it as stale and brelse.
1436 */
Christoph Hellwigcb669ca2011-07-13 13:43:49 +02001437 if (bp->b_iodone) {
David Chinnerbad55842008-03-06 13:43:49 +11001438 XFS_BUF_UNDONE(bp);
Christoph Hellwigc867cb62011-10-10 16:52:46 +00001439 xfs_buf_stale(bp);
Chandra Seetharaman5a52c2a582011-07-22 23:39:51 +00001440 xfs_buf_ioerror(bp, EIO);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001441 xfs_buf_ioend(bp, 0);
David Chinnerbad55842008-03-06 13:43:49 +11001442 } else {
Christoph Hellwigc867cb62011-10-10 16:52:46 +00001443 xfs_buf_stale(bp);
David Chinnerbad55842008-03-06 13:43:49 +11001444 xfs_buf_relse(bp);
1445 }
1446 }
1447
1448 /*
1449 * Unlocks the flush lock
1450 */
Dave Chinner04913fd2012-04-23 15:58:41 +10001451 xfs_iflush_abort(iq, false);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001452 kmem_free(ilist);
Dave Chinner44b56e02010-01-11 11:47:43 +00001453 xfs_perag_put(pag);
David Chinnerbad55842008-03-06 13:43:49 +11001454 return XFS_ERROR(EFSCORRUPTED);
1455}
1456
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457/*
Christoph Hellwig4c468192012-04-23 15:58:36 +10001458 * Flush dirty inode metadata into the backing buffer.
1459 *
1460 * The caller must have the inode lock and the inode flush lock held. The
1461 * inode lock will still be held upon return to the caller, and the inode
1462 * flush lock will be released after the inode has reached the disk.
1463 *
1464 * The caller must write out the buffer returned in *bpp and release it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 */
1466int
1467xfs_iflush(
Christoph Hellwig4c468192012-04-23 15:58:36 +10001468 struct xfs_inode *ip,
1469 struct xfs_buf **bpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470{
Christoph Hellwig4c468192012-04-23 15:58:36 +10001471 struct xfs_mount *mp = ip->i_mount;
1472 struct xfs_buf *bp;
1473 struct xfs_dinode *dip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
1476 XFS_STATS_INC(xs_iflush_count);
1477
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10001478 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
Christoph Hellwig474fce02011-12-18 20:00:09 +00001479 ASSERT(xfs_isiflocked(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 ASSERT(ip->i_d.di_format != XFS_DINODE_FMT_BTREE ||
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00001481 ip->i_d.di_nextents > XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Christoph Hellwig4c468192012-04-23 15:58:36 +10001483 *bpp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 xfs_iunpin_wait(ip);
1486
1487 /*
Dave Chinner4b6a4682010-01-11 11:45:21 +00001488 * For stale inodes we cannot rely on the backing buffer remaining
1489 * stale in cache for the remaining life of the stale inode and so
Christoph Hellwig475ee412012-07-03 12:21:22 -04001490 * xfs_imap_to_bp() below may give us a buffer that no longer contains
Dave Chinner4b6a4682010-01-11 11:45:21 +00001491 * inodes below. We have to check this after ensuring the inode is
1492 * unpinned so that it is safe to reclaim the stale inode after the
1493 * flush call.
1494 */
1495 if (xfs_iflags_test(ip, XFS_ISTALE)) {
1496 xfs_ifunlock(ip);
1497 return 0;
1498 }
1499
1500 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 * This may have been unpinned because the filesystem is shutting
1502 * down forcibly. If that's the case we must not write this inode
Christoph Hellwig32ce90a2012-04-23 15:58:32 +10001503 * to disk, because the log record didn't make it to disk.
1504 *
1505 * We also have to remove the log item from the AIL in this case,
1506 * as we wait for an empty AIL as part of the unmount process.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 */
1508 if (XFS_FORCED_SHUTDOWN(mp)) {
Christoph Hellwig32ce90a2012-04-23 15:58:32 +10001509 error = XFS_ERROR(EIO);
1510 goto abort_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 }
1512
1513 /*
David Chinnera3f74ff2008-03-06 13:43:42 +11001514 * Get the buffer containing the on-disk inode.
1515 */
Christoph Hellwig475ee412012-07-03 12:21:22 -04001516 error = xfs_imap_to_bp(mp, NULL, &ip->i_imap, &dip, &bp, XBF_TRYLOCK,
1517 0);
David Chinnera3f74ff2008-03-06 13:43:42 +11001518 if (error || !bp) {
1519 xfs_ifunlock(ip);
1520 return error;
1521 }
1522
1523 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 * First flush out the inode that xfs_iflush was called with.
1525 */
1526 error = xfs_iflush_int(ip, bp);
David Chinnerbad55842008-03-06 13:43:49 +11001527 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 goto corrupt_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
1530 /*
David Chinnera3f74ff2008-03-06 13:43:42 +11001531 * If the buffer is pinned then push on the log now so we won't
1532 * get stuck waiting in the write for too long.
1533 */
Chandra Seetharaman811e64c2011-07-22 23:40:27 +00001534 if (xfs_buf_ispinned(bp))
Christoph Hellwiga14a3482010-01-19 09:56:46 +00001535 xfs_log_force(mp, 0);
David Chinnera3f74ff2008-03-06 13:43:42 +11001536
1537 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 * inode clustering:
1539 * see if other inodes can be gathered into this write
1540 */
David Chinnerbad55842008-03-06 13:43:49 +11001541 error = xfs_iflush_cluster(ip, bp);
1542 if (error)
1543 goto cluster_corrupt_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
Christoph Hellwig4c468192012-04-23 15:58:36 +10001545 *bpp = bp;
1546 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
1548corrupt_out:
1549 xfs_buf_relse(bp);
Nathan Scott7d04a332006-06-09 14:58:38 +10001550 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551cluster_corrupt_out:
Christoph Hellwig32ce90a2012-04-23 15:58:32 +10001552 error = XFS_ERROR(EFSCORRUPTED);
1553abort_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 /*
1555 * Unlocks the flush lock
1556 */
Dave Chinner04913fd2012-04-23 15:58:41 +10001557 xfs_iflush_abort(ip, false);
Christoph Hellwig32ce90a2012-04-23 15:58:32 +10001558 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559}
1560
1561
1562STATIC int
1563xfs_iflush_int(
Christoph Hellwig93848a92013-04-03 16:11:17 +11001564 struct xfs_inode *ip,
1565 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566{
Christoph Hellwig93848a92013-04-03 16:11:17 +11001567 struct xfs_inode_log_item *iip = ip->i_itemp;
1568 struct xfs_dinode *dip;
1569 struct xfs_mount *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10001571 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
Christoph Hellwig474fce02011-12-18 20:00:09 +00001572 ASSERT(xfs_isiflocked(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 ASSERT(ip->i_d.di_format != XFS_DINODE_FMT_BTREE ||
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00001574 ip->i_d.di_nextents > XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK));
Christoph Hellwig93848a92013-04-03 16:11:17 +11001575 ASSERT(iip != NULL && iip->ili_fields != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 /* set *dip = inode's place in the buffer */
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +11001578 dip = (xfs_dinode_t *)xfs_buf_offset(bp, ip->i_imap.im_boffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001580 if (XFS_TEST_ERROR(dip->di_magic != cpu_to_be16(XFS_DINODE_MAGIC),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 mp, XFS_ERRTAG_IFLUSH_1, XFS_RANDOM_IFLUSH_1)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11001582 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
1583 "%s: Bad inode %Lu magic number 0x%x, ptr 0x%p",
1584 __func__, ip->i_ino, be16_to_cpu(dip->di_magic), dip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 goto corrupt_out;
1586 }
1587 if (XFS_TEST_ERROR(ip->i_d.di_magic != XFS_DINODE_MAGIC,
1588 mp, XFS_ERRTAG_IFLUSH_2, XFS_RANDOM_IFLUSH_2)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11001589 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
1590 "%s: Bad inode %Lu, ptr 0x%p, magic number 0x%x",
1591 __func__, ip->i_ino, ip, ip->i_d.di_magic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 goto corrupt_out;
1593 }
Al Viroabbede12011-07-26 02:31:30 -04001594 if (S_ISREG(ip->i_d.di_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 if (XFS_TEST_ERROR(
1596 (ip->i_d.di_format != XFS_DINODE_FMT_EXTENTS) &&
1597 (ip->i_d.di_format != XFS_DINODE_FMT_BTREE),
1598 mp, XFS_ERRTAG_IFLUSH_3, XFS_RANDOM_IFLUSH_3)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11001599 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
1600 "%s: Bad regular inode %Lu, ptr 0x%p",
1601 __func__, ip->i_ino, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 goto corrupt_out;
1603 }
Al Viroabbede12011-07-26 02:31:30 -04001604 } else if (S_ISDIR(ip->i_d.di_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 if (XFS_TEST_ERROR(
1606 (ip->i_d.di_format != XFS_DINODE_FMT_EXTENTS) &&
1607 (ip->i_d.di_format != XFS_DINODE_FMT_BTREE) &&
1608 (ip->i_d.di_format != XFS_DINODE_FMT_LOCAL),
1609 mp, XFS_ERRTAG_IFLUSH_4, XFS_RANDOM_IFLUSH_4)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11001610 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
1611 "%s: Bad directory inode %Lu, ptr 0x%p",
1612 __func__, ip->i_ino, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 goto corrupt_out;
1614 }
1615 }
1616 if (XFS_TEST_ERROR(ip->i_d.di_nextents + ip->i_d.di_anextents >
1617 ip->i_d.di_nblocks, mp, XFS_ERRTAG_IFLUSH_5,
1618 XFS_RANDOM_IFLUSH_5)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11001619 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
1620 "%s: detected corrupt incore inode %Lu, "
1621 "total extents = %d, nblocks = %Ld, ptr 0x%p",
1622 __func__, ip->i_ino,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 ip->i_d.di_nextents + ip->i_d.di_anextents,
Dave Chinner6a19d932011-03-07 10:02:35 +11001624 ip->i_d.di_nblocks, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 goto corrupt_out;
1626 }
1627 if (XFS_TEST_ERROR(ip->i_d.di_forkoff > mp->m_sb.sb_inodesize,
1628 mp, XFS_ERRTAG_IFLUSH_6, XFS_RANDOM_IFLUSH_6)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11001629 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
1630 "%s: bad inode %Lu, forkoff 0x%x, ptr 0x%p",
1631 __func__, ip->i_ino, ip->i_d.di_forkoff, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 goto corrupt_out;
1633 }
Dave Chinnere60896d2013-07-24 15:47:30 +10001634
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 /*
Dave Chinnere60896d2013-07-24 15:47:30 +10001636 * Inode item log recovery for v1/v2 inodes are dependent on the
1637 * di_flushiter count for correct sequencing. We bump the flush
1638 * iteration count so we can detect flushes which postdate a log record
1639 * during recovery. This is redundant as we now log every change and
1640 * hence this can't happen but we need to still do it to ensure
1641 * backwards compatibility with old kernels that predate logging all
1642 * inode changes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 */
Dave Chinnere60896d2013-07-24 15:47:30 +10001644 if (ip->i_d.di_version < 3)
1645 ip->i_d.di_flushiter++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
1647 /*
1648 * Copy the dirty parts of the inode into the on-disk
1649 * inode. We always copy out the core of the inode,
1650 * because if the inode is dirty at all the core must
1651 * be.
1652 */
Christoph Hellwig81591fe2008-11-28 14:23:39 +11001653 xfs_dinode_to_disk(dip, &ip->i_d);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
1655 /* Wrap, we never let the log put out DI_MAX_FLUSH */
1656 if (ip->i_d.di_flushiter == DI_MAX_FLUSH)
1657 ip->i_d.di_flushiter = 0;
1658
1659 /*
1660 * If this is really an old format inode and the superblock version
1661 * has not been updated to support only new format inodes, then
1662 * convert back to the old inode format. If the superblock version
1663 * has been updated, then make the conversion permanent.
1664 */
Christoph Hellwig51ce16d2008-11-28 14:23:39 +11001665 ASSERT(ip->i_d.di_version == 1 || xfs_sb_version_hasnlink(&mp->m_sb));
1666 if (ip->i_d.di_version == 1) {
Eric Sandeen62118702008-03-06 13:44:28 +11001667 if (!xfs_sb_version_hasnlink(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 /*
1669 * Convert it back.
1670 */
1671 ASSERT(ip->i_d.di_nlink <= XFS_MAXLINK_1);
Christoph Hellwig81591fe2008-11-28 14:23:39 +11001672 dip->di_onlink = cpu_to_be16(ip->i_d.di_nlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 } else {
1674 /*
1675 * The superblock version has already been bumped,
1676 * so just make the conversion to the new inode
1677 * format permanent.
1678 */
Christoph Hellwig51ce16d2008-11-28 14:23:39 +11001679 ip->i_d.di_version = 2;
1680 dip->di_version = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 ip->i_d.di_onlink = 0;
Christoph Hellwig81591fe2008-11-28 14:23:39 +11001682 dip->di_onlink = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 memset(&(ip->i_d.di_pad[0]), 0, sizeof(ip->i_d.di_pad));
Christoph Hellwig81591fe2008-11-28 14:23:39 +11001684 memset(&(dip->di_pad[0]), 0,
1685 sizeof(dip->di_pad));
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001686 ASSERT(xfs_get_projid(ip) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 }
1688 }
1689
David Chinnere4ac9672008-04-10 12:23:58 +10001690 xfs_iflush_fork(ip, dip, iip, XFS_DATA_FORK, bp);
1691 if (XFS_IFORK_Q(ip))
1692 xfs_iflush_fork(ip, dip, iip, XFS_ATTR_FORK, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 xfs_inobp_check(mp, bp);
1694
1695 /*
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +00001696 * We've recorded everything logged in the inode, so we'd like to clear
1697 * the ili_fields bits so we don't log and flush things unnecessarily.
1698 * However, we can't stop logging all this information until the data
1699 * we've copied into the disk buffer is written to disk. If we did we
1700 * might overwrite the copy of the inode in the log with all the data
1701 * after re-logging only part of it, and in the face of a crash we
1702 * wouldn't have all the data we need to recover.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 *
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +00001704 * What we do is move the bits to the ili_last_fields field. When
1705 * logging the inode, these bits are moved back to the ili_fields field.
1706 * In the xfs_iflush_done() routine we clear ili_last_fields, since we
1707 * know that the information those bits represent is permanently on
1708 * disk. As long as the flush completes before the inode is logged
1709 * again, then both ili_fields and ili_last_fields will be cleared.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 *
Christoph Hellwigf5d8d5c2012-02-29 09:53:54 +00001711 * We can play with the ili_fields bits here, because the inode lock
1712 * must be held exclusively in order to set bits there and the flush
1713 * lock protects the ili_last_fields bits. Set ili_logged so the flush
1714 * done routine can tell whether or not to look in the AIL. Also, store
1715 * the current LSN of the inode so that we can tell whether the item has
1716 * moved in the AIL from xfs_iflush_done(). In order to read the lsn we
1717 * need the AIL lock, because it is a 64 bit value that cannot be read
1718 * atomically.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 */
Christoph Hellwig93848a92013-04-03 16:11:17 +11001720 iip->ili_last_fields = iip->ili_fields;
1721 iip->ili_fields = 0;
1722 iip->ili_logged = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
Christoph Hellwig93848a92013-04-03 16:11:17 +11001724 xfs_trans_ail_copy_lsn(mp->m_ail, &iip->ili_flush_lsn,
1725 &iip->ili_item.li_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726
Christoph Hellwig93848a92013-04-03 16:11:17 +11001727 /*
1728 * Attach the function xfs_iflush_done to the inode's
1729 * buffer. This will remove the inode from the AIL
1730 * and unlock the inode's flush lock when the inode is
1731 * completely written to disk.
1732 */
1733 xfs_buf_attach_iodone(bp, xfs_iflush_done, &iip->ili_item);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Christoph Hellwig93848a92013-04-03 16:11:17 +11001735 /* update the lsn in the on disk inode if required */
1736 if (ip->i_d.di_version == 3)
1737 dip->di_lsn = cpu_to_be64(iip->ili_item.li_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Christoph Hellwig93848a92013-04-03 16:11:17 +11001739 /* generate the checksum. */
1740 xfs_dinode_calc_crc(mp, dip);
1741
1742 ASSERT(bp->b_fspriv != NULL);
1743 ASSERT(bp->b_iodone != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 return 0;
1745
1746corrupt_out:
1747 return XFS_ERROR(EFSCORRUPTED);
1748}
1749
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11001750/*
Brian Foster72b53ef2012-11-06 09:50:40 -05001751 * Test whether it is appropriate to check an inode for and free post EOF
1752 * blocks. The 'force' parameter determines whether we should also consider
1753 * regular files that are marked preallocated or append-only.
1754 */
1755bool
1756xfs_can_free_eofblocks(struct xfs_inode *ip, bool force)
1757{
1758 /* prealloc/delalloc exists only on regular files */
1759 if (!S_ISREG(ip->i_d.di_mode))
1760 return false;
1761
1762 /*
1763 * Zero sized files with no cached pages and delalloc blocks will not
1764 * have speculative prealloc/delalloc blocks to remove.
1765 */
1766 if (VFS_I(ip)->i_size == 0 &&
1767 VN_CACHED(VFS_I(ip)) == 0 &&
1768 ip->i_delayed_blks == 0)
1769 return false;
1770
1771 /* If we haven't read in the extent list, then don't do it now. */
1772 if (!(ip->i_df.if_flags & XFS_IFEXTENTS))
1773 return false;
1774
1775 /*
1776 * Do not free real preallocated or append-only files unless the file
1777 * has delalloc blocks and we are forced to remove them.
1778 */
1779 if (ip->i_d.di_flags & (XFS_DIFLAG_PREALLOC | XFS_DIFLAG_APPEND))
1780 if (!force || ip->i_delayed_blks == 0)
1781 return false;
1782
1783 return true;
1784}