blob: eeb60d31b0865420f16d8bbce134fb9c09a87bc3 [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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_types.h"
Nathan Scotta844f452005-11-02 14:38:42 +110023#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110025#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_trans.h"
27#include "xfs_trans_priv.h"
28#include "xfs_sb.h"
29#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110032#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_ialloc_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110034#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_dinode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_inode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "xfs_buf_item.h"
Nathan Scotta844f452005-11-02 14:38:42 +110038#include "xfs_inode_item.h"
39#include "xfs_btree.h"
40#include "xfs_alloc.h"
41#include "xfs_ialloc.h"
42#include "xfs_bmap.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 Hellwig0b1b2132009-12-14 23:14:59 +000048#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050kmem_zone_t *xfs_ifork_zone;
51kmem_zone_t *xfs_inode_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53/*
Christoph Hellwig8f04c472011-07-08 14:34:34 +020054 * Used in xfs_itruncate_extents(). This is the maximum number of extents
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 * freed from a file in a single transaction.
56 */
57#define XFS_ITRUNC_MAX_EXTENTS 2
58
59STATIC int xfs_iflush_int(xfs_inode_t *, xfs_buf_t *);
60STATIC int xfs_iformat_local(xfs_inode_t *, xfs_dinode_t *, int, int);
61STATIC int xfs_iformat_extents(xfs_inode_t *, xfs_dinode_t *, int);
62STATIC int xfs_iformat_btree(xfs_inode_t *, xfs_dinode_t *, int);
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#ifdef DEBUG
65/*
66 * Make sure that the extents in the given memory buffer
67 * are valid.
68 */
69STATIC void
70xfs_validate_extents(
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +110071 xfs_ifork_t *ifp,
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 int nrecs,
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 xfs_exntfmt_t fmt)
74{
75 xfs_bmbt_irec_t irec;
Christoph Hellwiga6f64d42007-08-16 16:23:40 +100076 xfs_bmbt_rec_host_t rec;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 int i;
78
79 for (i = 0; i < nrecs; i++) {
Christoph Hellwiga6f64d42007-08-16 16:23:40 +100080 xfs_bmbt_rec_host_t *ep = xfs_iext_get_ext(ifp, i);
81 rec.l0 = get_unaligned(&ep->l0);
82 rec.l1 = get_unaligned(&ep->l1);
83 xfs_bmbt_get_all(&rec, &irec);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 if (fmt == XFS_EXTFMT_NOSTATE)
85 ASSERT(irec.br_state == XFS_EXT_NORM);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 }
87}
88#else /* DEBUG */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +100089#define xfs_validate_extents(ifp, nrecs, fmt)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#endif /* DEBUG */
91
92/*
93 * Check that none of the inode's in the buffer have a next
94 * unlinked field of 0.
95 */
96#if defined(DEBUG)
97void
98xfs_inobp_check(
99 xfs_mount_t *mp,
100 xfs_buf_t *bp)
101{
102 int i;
103 int j;
104 xfs_dinode_t *dip;
105
106 j = mp->m_inode_cluster_size >> mp->m_sb.sb_inodelog;
107
108 for (i = 0; i < j; i++) {
109 dip = (xfs_dinode_t *)xfs_buf_offset(bp,
110 i * mp->m_sb.sb_inodesize);
111 if (!dip->di_next_unlinked) {
Dave Chinner53487782011-03-07 10:05:35 +1100112 xfs_alert(mp,
113 "Detected bogus zero next_unlinked field in incore inode buffer 0x%p.",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 bp);
115 ASSERT(dip->di_next_unlinked);
116 }
117 }
118}
119#endif
120
121/*
David Chinner4ae29b42008-03-06 13:43:34 +1100122 * Find the buffer associated with the given inode map
123 * We do basic validation checks on the buffer once it has been
124 * retrieved from disk.
125 */
126STATIC int
127xfs_imap_to_bp(
128 xfs_mount_t *mp,
129 xfs_trans_t *tp,
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +1100130 struct xfs_imap *imap,
David Chinner4ae29b42008-03-06 13:43:34 +1100131 xfs_buf_t **bpp,
132 uint buf_flags,
Christoph Hellwigb48d8d62008-11-28 14:23:41 +1100133 uint iget_flags)
David Chinner4ae29b42008-03-06 13:43:34 +1100134{
135 int error;
136 int i;
137 int ni;
138 xfs_buf_t *bp;
139
140 error = xfs_trans_read_buf(mp, tp, mp->m_ddev_targp, imap->im_blkno,
David Chinnera3f74ff2008-03-06 13:43:42 +1100141 (int)imap->im_len, buf_flags, &bp);
David Chinner4ae29b42008-03-06 13:43:34 +1100142 if (error) {
David Chinnera3f74ff2008-03-06 13:43:42 +1100143 if (error != EAGAIN) {
Dave Chinner0b932cc2011-03-07 10:08:35 +1100144 xfs_warn(mp,
145 "%s: xfs_trans_read_buf() returned error %d.",
146 __func__, error);
David Chinnera3f74ff2008-03-06 13:43:42 +1100147 } else {
Christoph Hellwig0cadda12010-01-19 09:56:44 +0000148 ASSERT(buf_flags & XBF_TRYLOCK);
David Chinnera3f74ff2008-03-06 13:43:42 +1100149 }
David Chinner4ae29b42008-03-06 13:43:34 +1100150 return error;
151 }
152
153 /*
154 * Validate the magic number and version of every inode in the buffer
155 * (if DEBUG kernel) or the first inode in the buffer, otherwise.
156 */
157#ifdef DEBUG
158 ni = BBTOB(imap->im_len) >> mp->m_sb.sb_inodelog;
159#else /* usual case */
160 ni = 1;
161#endif
162
163 for (i = 0; i < ni; i++) {
164 int di_ok;
165 xfs_dinode_t *dip;
166
167 dip = (xfs_dinode_t *)xfs_buf_offset(bp,
168 (i << mp->m_sb.sb_inodelog));
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200169 di_ok = dip->di_magic == cpu_to_be16(XFS_DINODE_MAGIC) &&
Christoph Hellwig81591fe2008-11-28 14:23:39 +1100170 XFS_DINODE_GOOD_VERSION(dip->di_version);
David Chinner4ae29b42008-03-06 13:43:34 +1100171 if (unlikely(XFS_TEST_ERROR(!di_ok, mp,
172 XFS_ERRTAG_ITOBP_INOTOBP,
173 XFS_RANDOM_ITOBP_INOTOBP))) {
Dave Chinner19207792010-06-24 11:15:47 +1000174 if (iget_flags & XFS_IGET_UNTRUSTED) {
David Chinner4ae29b42008-03-06 13:43:34 +1100175 xfs_trans_brelse(tp, bp);
176 return XFS_ERROR(EINVAL);
177 }
178 XFS_CORRUPTION_ERROR("xfs_imap_to_bp",
179 XFS_ERRLEVEL_HIGH, mp, dip);
180#ifdef DEBUG
Dave Chinner0b932cc2011-03-07 10:08:35 +1100181 xfs_emerg(mp,
182 "bad inode magic/vsn daddr %lld #%d (magic=%x)",
David Chinner4ae29b42008-03-06 13:43:34 +1100183 (unsigned long long)imap->im_blkno, i,
Christoph Hellwig81591fe2008-11-28 14:23:39 +1100184 be16_to_cpu(dip->di_magic));
Dave Chinner0b932cc2011-03-07 10:08:35 +1100185 ASSERT(0);
David Chinner4ae29b42008-03-06 13:43:34 +1100186#endif
187 xfs_trans_brelse(tp, bp);
188 return XFS_ERROR(EFSCORRUPTED);
189 }
190 }
191
192 xfs_inobp_check(mp, bp);
David Chinner4ae29b42008-03-06 13:43:34 +1100193 *bpp = bp;
194 return 0;
195}
196
197/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 * This routine is called to map an inode number within a file
199 * system to the buffer containing the on-disk version of the
200 * inode. It returns a pointer to the buffer containing the
201 * on-disk inode in the bpp parameter, and in the dip parameter
202 * it returns a pointer to the on-disk inode within that buffer.
203 *
204 * If a non-zero error is returned, then the contents of bpp and
205 * dipp are undefined.
206 *
207 * Use xfs_imap() to determine the size and location of the
208 * buffer to read from disk.
209 */
Christoph Hellwigc679eef2008-10-30 18:04:13 +1100210int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211xfs_inotobp(
212 xfs_mount_t *mp,
213 xfs_trans_t *tp,
214 xfs_ino_t ino,
215 xfs_dinode_t **dipp,
216 xfs_buf_t **bpp,
Christoph Hellwigc679eef2008-10-30 18:04:13 +1100217 int *offset,
218 uint imap_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +1100220 struct xfs_imap imap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 xfs_buf_t *bp;
222 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 imap.im_blkno = 0;
Christoph Hellwiga1941892008-11-28 14:23:40 +1100225 error = xfs_imap(mp, tp, ino, &imap, imap_flags);
David Chinner4ae29b42008-03-06 13:43:34 +1100226 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
Christoph Hellwig0cadda12010-01-19 09:56:44 +0000229 error = xfs_imap_to_bp(mp, tp, &imap, &bp, XBF_LOCK, imap_flags);
David Chinner4ae29b42008-03-06 13:43:34 +1100230 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 *dipp = (xfs_dinode_t *)xfs_buf_offset(bp, imap.im_boffset);
234 *bpp = bp;
235 *offset = imap.im_boffset;
236 return 0;
237}
238
239
240/*
241 * This routine is called to map an inode to the buffer containing
242 * the on-disk version of the inode. It returns a pointer to the
243 * buffer containing the on-disk inode in the bpp parameter, and in
244 * the dip parameter it returns a pointer to the on-disk inode within
245 * that buffer.
246 *
247 * If a non-zero error is returned, then the contents of bpp and
248 * dipp are undefined.
249 *
Christoph Hellwig76d8b272008-11-28 14:23:40 +1100250 * The inode is expected to already been mapped to its buffer and read
251 * in once, thus we can use the mapping information stored in the inode
252 * rather than calling xfs_imap(). This allows us to avoid the overhead
253 * of looking at the inode btree for small block file systems
Christoph Hellwig94e1b692008-11-28 14:23:41 +1100254 * (see xfs_imap()).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 */
256int
257xfs_itobp(
258 xfs_mount_t *mp,
259 xfs_trans_t *tp,
260 xfs_inode_t *ip,
261 xfs_dinode_t **dipp,
262 xfs_buf_t **bpp,
David Chinnera3f74ff2008-03-06 13:43:42 +1100263 uint buf_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
265 xfs_buf_t *bp;
266 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +1100268 ASSERT(ip->i_imap.im_blkno != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +1100270 error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &bp, buf_flags, 0);
David Chinner4ae29b42008-03-06 13:43:34 +1100271 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 return error;
Nathan Scott4d1a2ed2006-06-09 17:12:28 +1000273
David Chinnera3f74ff2008-03-06 13:43:42 +1100274 if (!bp) {
Christoph Hellwig0cadda12010-01-19 09:56:44 +0000275 ASSERT(buf_flags & XBF_TRYLOCK);
David Chinnera3f74ff2008-03-06 13:43:42 +1100276 ASSERT(tp == NULL);
277 *bpp = NULL;
278 return EAGAIN;
279 }
280
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +1100281 *dipp = (xfs_dinode_t *)xfs_buf_offset(bp, ip->i_imap.im_boffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 *bpp = bp;
283 return 0;
284}
285
286/*
287 * Move inode type and inode format specific information from the
288 * on-disk inode to the in-core inode. For fifos, devs, and sockets
289 * this means set if_rdev to the proper value. For files, directories,
290 * and symlinks this means to bring in the in-line data or extent
291 * pointers. For a file in B-tree format, only the root is immediately
292 * brought in-core. The rest will be in-lined in if_extents when it
293 * is first referenced (see xfs_iread_extents()).
294 */
295STATIC int
296xfs_iformat(
297 xfs_inode_t *ip,
298 xfs_dinode_t *dip)
299{
300 xfs_attr_shortform_t *atp;
301 int size;
Christoph Hellwig8096b1e2011-12-18 20:00:07 +0000302 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 xfs_fsize_t di_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Christoph Hellwig81591fe2008-11-28 14:23:39 +1100305 if (unlikely(be32_to_cpu(dip->di_nextents) +
306 be16_to_cpu(dip->di_anextents) >
307 be64_to_cpu(dip->di_nblocks))) {
Dave Chinner65333b42011-03-07 10:03:35 +1100308 xfs_warn(ip->i_mount,
Nathan Scott3762ec62006-01-12 10:29:53 +1100309 "corrupt dinode %Lu, extent total = %d, nblocks = %Lu.",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 (unsigned long long)ip->i_ino,
Christoph Hellwig81591fe2008-11-28 14:23:39 +1100311 (int)(be32_to_cpu(dip->di_nextents) +
312 be16_to_cpu(dip->di_anextents)),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 (unsigned long long)
Christoph Hellwig81591fe2008-11-28 14:23:39 +1100314 be64_to_cpu(dip->di_nblocks));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 XFS_CORRUPTION_ERROR("xfs_iformat(1)", XFS_ERRLEVEL_LOW,
316 ip->i_mount, dip);
317 return XFS_ERROR(EFSCORRUPTED);
318 }
319
Christoph Hellwig81591fe2008-11-28 14:23:39 +1100320 if (unlikely(dip->di_forkoff > ip->i_mount->m_sb.sb_inodesize)) {
Dave Chinner65333b42011-03-07 10:03:35 +1100321 xfs_warn(ip->i_mount, "corrupt dinode %Lu, forkoff = 0x%x.",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 (unsigned long long)ip->i_ino,
Christoph Hellwig81591fe2008-11-28 14:23:39 +1100323 dip->di_forkoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 XFS_CORRUPTION_ERROR("xfs_iformat(2)", XFS_ERRLEVEL_LOW,
325 ip->i_mount, dip);
326 return XFS_ERROR(EFSCORRUPTED);
327 }
328
Christoph Hellwigb89d4202009-08-10 11:32:18 -0300329 if (unlikely((ip->i_d.di_flags & XFS_DIFLAG_REALTIME) &&
330 !ip->i_mount->m_rtdev_targp)) {
Dave Chinner65333b42011-03-07 10:03:35 +1100331 xfs_warn(ip->i_mount,
Christoph Hellwigb89d4202009-08-10 11:32:18 -0300332 "corrupt dinode %Lu, has realtime flag set.",
333 ip->i_ino);
334 XFS_CORRUPTION_ERROR("xfs_iformat(realtime)",
335 XFS_ERRLEVEL_LOW, ip->i_mount, dip);
336 return XFS_ERROR(EFSCORRUPTED);
337 }
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 switch (ip->i_d.di_mode & S_IFMT) {
340 case S_IFIFO:
341 case S_IFCHR:
342 case S_IFBLK:
343 case S_IFSOCK:
Christoph Hellwig81591fe2008-11-28 14:23:39 +1100344 if (unlikely(dip->di_format != XFS_DINODE_FMT_DEV)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 XFS_CORRUPTION_ERROR("xfs_iformat(3)", XFS_ERRLEVEL_LOW,
346 ip->i_mount, dip);
347 return XFS_ERROR(EFSCORRUPTED);
348 }
349 ip->i_d.di_size = 0;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000350 ip->i_size = 0;
Christoph Hellwig81591fe2008-11-28 14:23:39 +1100351 ip->i_df.if_u2.if_rdev = xfs_dinode_get_rdev(dip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 break;
353
354 case S_IFREG:
355 case S_IFLNK:
356 case S_IFDIR:
Christoph Hellwig81591fe2008-11-28 14:23:39 +1100357 switch (dip->di_format) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 case XFS_DINODE_FMT_LOCAL:
359 /*
360 * no local regular files yet
361 */
Al Viroabbede12011-07-26 02:31:30 -0400362 if (unlikely(S_ISREG(be16_to_cpu(dip->di_mode)))) {
Dave Chinner65333b42011-03-07 10:03:35 +1100363 xfs_warn(ip->i_mount,
364 "corrupt inode %Lu (local format for regular file).",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 (unsigned long long) ip->i_ino);
366 XFS_CORRUPTION_ERROR("xfs_iformat(4)",
367 XFS_ERRLEVEL_LOW,
368 ip->i_mount, dip);
369 return XFS_ERROR(EFSCORRUPTED);
370 }
371
Christoph Hellwig81591fe2008-11-28 14:23:39 +1100372 di_size = be64_to_cpu(dip->di_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 if (unlikely(di_size > XFS_DFORK_DSIZE(dip, ip->i_mount))) {
Dave Chinner65333b42011-03-07 10:03:35 +1100374 xfs_warn(ip->i_mount,
375 "corrupt inode %Lu (bad size %Ld for local inode).",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 (unsigned long long) ip->i_ino,
377 (long long) di_size);
378 XFS_CORRUPTION_ERROR("xfs_iformat(5)",
379 XFS_ERRLEVEL_LOW,
380 ip->i_mount, dip);
381 return XFS_ERROR(EFSCORRUPTED);
382 }
383
384 size = (int)di_size;
385 error = xfs_iformat_local(ip, dip, XFS_DATA_FORK, size);
386 break;
387 case XFS_DINODE_FMT_EXTENTS:
388 error = xfs_iformat_extents(ip, dip, XFS_DATA_FORK);
389 break;
390 case XFS_DINODE_FMT_BTREE:
391 error = xfs_iformat_btree(ip, dip, XFS_DATA_FORK);
392 break;
393 default:
394 XFS_ERROR_REPORT("xfs_iformat(6)", XFS_ERRLEVEL_LOW,
395 ip->i_mount);
396 return XFS_ERROR(EFSCORRUPTED);
397 }
398 break;
399
400 default:
401 XFS_ERROR_REPORT("xfs_iformat(7)", XFS_ERRLEVEL_LOW, ip->i_mount);
402 return XFS_ERROR(EFSCORRUPTED);
403 }
404 if (error) {
405 return error;
406 }
407 if (!XFS_DFORK_Q(dip))
408 return 0;
Christoph Hellwig8096b1e2011-12-18 20:00:07 +0000409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 ASSERT(ip->i_afp == NULL);
Dave Chinner4a7eddd2010-07-20 17:53:59 +1000411 ip->i_afp = kmem_zone_zalloc(xfs_ifork_zone, KM_SLEEP | KM_NOFS);
Christoph Hellwig8096b1e2011-12-18 20:00:07 +0000412
Christoph Hellwig81591fe2008-11-28 14:23:39 +1100413 switch (dip->di_aformat) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 case XFS_DINODE_FMT_LOCAL:
415 atp = (xfs_attr_shortform_t *)XFS_DFORK_APTR(dip);
Nathan Scott3b244aa2006-03-17 17:29:25 +1100416 size = be16_to_cpu(atp->hdr.totsize);
Christoph Hellwig2809f762009-01-19 02:04:16 +0100417
418 if (unlikely(size < sizeof(struct xfs_attr_sf_hdr))) {
Dave Chinner65333b42011-03-07 10:03:35 +1100419 xfs_warn(ip->i_mount,
420 "corrupt inode %Lu (bad attr fork size %Ld).",
Christoph Hellwig2809f762009-01-19 02:04:16 +0100421 (unsigned long long) ip->i_ino,
422 (long long) size);
423 XFS_CORRUPTION_ERROR("xfs_iformat(8)",
424 XFS_ERRLEVEL_LOW,
425 ip->i_mount, dip);
426 return XFS_ERROR(EFSCORRUPTED);
427 }
428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 error = xfs_iformat_local(ip, dip, XFS_ATTR_FORK, size);
430 break;
431 case XFS_DINODE_FMT_EXTENTS:
432 error = xfs_iformat_extents(ip, dip, XFS_ATTR_FORK);
433 break;
434 case XFS_DINODE_FMT_BTREE:
435 error = xfs_iformat_btree(ip, dip, XFS_ATTR_FORK);
436 break;
437 default:
438 error = XFS_ERROR(EFSCORRUPTED);
439 break;
440 }
441 if (error) {
442 kmem_zone_free(xfs_ifork_zone, ip->i_afp);
443 ip->i_afp = NULL;
444 xfs_idestroy_fork(ip, XFS_DATA_FORK);
445 }
446 return error;
447}
448
449/*
450 * The file is in-lined in the on-disk inode.
451 * If it fits into if_inline_data, then copy
452 * it there, otherwise allocate a buffer for it
453 * and copy the data there. Either way, set
454 * if_data to point at the data.
455 * If we allocate a buffer for the data, make
456 * sure that its size is a multiple of 4 and
457 * record the real size in i_real_bytes.
458 */
459STATIC int
460xfs_iformat_local(
461 xfs_inode_t *ip,
462 xfs_dinode_t *dip,
463 int whichfork,
464 int size)
465{
466 xfs_ifork_t *ifp;
467 int real_size;
468
469 /*
470 * If the size is unreasonable, then something
471 * is wrong and we just bail out rather than crash in
472 * kmem_alloc() or memcpy() below.
473 */
474 if (unlikely(size > XFS_DFORK_SIZE(dip, ip->i_mount, whichfork))) {
Dave Chinner65333b42011-03-07 10:03:35 +1100475 xfs_warn(ip->i_mount,
476 "corrupt inode %Lu (bad size %d for local fork, size = %d).",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 (unsigned long long) ip->i_ino, size,
478 XFS_DFORK_SIZE(dip, ip->i_mount, whichfork));
479 XFS_CORRUPTION_ERROR("xfs_iformat_local", XFS_ERRLEVEL_LOW,
480 ip->i_mount, dip);
481 return XFS_ERROR(EFSCORRUPTED);
482 }
483 ifp = XFS_IFORK_PTR(ip, whichfork);
484 real_size = 0;
485 if (size == 0)
486 ifp->if_u1.if_data = NULL;
487 else if (size <= sizeof(ifp->if_u2.if_inline_data))
488 ifp->if_u1.if_data = ifp->if_u2.if_inline_data;
489 else {
490 real_size = roundup(size, 4);
Dave Chinner4a7eddd2010-07-20 17:53:59 +1000491 ifp->if_u1.if_data = kmem_alloc(real_size, KM_SLEEP | KM_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 }
493 ifp->if_bytes = size;
494 ifp->if_real_bytes = real_size;
495 if (size)
496 memcpy(ifp->if_u1.if_data, XFS_DFORK_PTR(dip, whichfork), size);
497 ifp->if_flags &= ~XFS_IFEXTENTS;
498 ifp->if_flags |= XFS_IFINLINE;
499 return 0;
500}
501
502/*
503 * The file consists of a set of extents all
504 * of which fit into the on-disk inode.
505 * If there are few enough extents to fit into
506 * the if_inline_ext, then copy them there.
507 * Otherwise allocate a buffer for them and copy
508 * them into it. Either way, set if_extents
509 * to point at the extents.
510 */
511STATIC int
512xfs_iformat_extents(
513 xfs_inode_t *ip,
514 xfs_dinode_t *dip,
515 int whichfork)
516{
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000517 xfs_bmbt_rec_t *dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 xfs_ifork_t *ifp;
519 int nex;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 int size;
521 int i;
522
523 ifp = XFS_IFORK_PTR(ip, whichfork);
524 nex = XFS_DFORK_NEXTENTS(dip, whichfork);
525 size = nex * (uint)sizeof(xfs_bmbt_rec_t);
526
527 /*
528 * If the number of extents is unreasonable, then something
529 * is wrong and we just bail out rather than crash in
530 * kmem_alloc() or memcpy() below.
531 */
532 if (unlikely(size < 0 || size > XFS_DFORK_SIZE(dip, ip->i_mount, whichfork))) {
Dave Chinner65333b42011-03-07 10:03:35 +1100533 xfs_warn(ip->i_mount, "corrupt inode %Lu ((a)extents = %d).",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 (unsigned long long) ip->i_ino, nex);
535 XFS_CORRUPTION_ERROR("xfs_iformat_extents(1)", XFS_ERRLEVEL_LOW,
536 ip->i_mount, dip);
537 return XFS_ERROR(EFSCORRUPTED);
538 }
539
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100540 ifp->if_real_bytes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 if (nex == 0)
542 ifp->if_u1.if_extents = NULL;
543 else if (nex <= XFS_INLINE_EXTS)
544 ifp->if_u1.if_extents = ifp->if_u2.if_inline_ext;
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100545 else
546 xfs_iext_add(ifp, 0, nex);
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 ifp->if_bytes = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 if (size) {
550 dp = (xfs_bmbt_rec_t *) XFS_DFORK_PTR(dip, whichfork);
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000551 xfs_validate_extents(ifp, nex, XFS_EXTFMT_INODE(ip));
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100552 for (i = 0; i < nex; i++, dp++) {
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000553 xfs_bmbt_rec_host_t *ep = xfs_iext_get_ext(ifp, i);
Harvey Harrison597bca62008-08-13 16:29:21 +1000554 ep->l0 = get_unaligned_be64(&dp->l0);
555 ep->l1 = get_unaligned_be64(&dp->l1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 }
Eric Sandeen3a59c942007-07-11 11:09:47 +1000557 XFS_BMAP_TRACE_EXLIST(ip, nex, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 if (whichfork != XFS_DATA_FORK ||
559 XFS_EXTFMT_INODE(ip) == XFS_EXTFMT_NOSTATE)
560 if (unlikely(xfs_check_nostate_extents(
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100561 ifp, 0, nex))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 XFS_ERROR_REPORT("xfs_iformat_extents(2)",
563 XFS_ERRLEVEL_LOW,
564 ip->i_mount);
565 return XFS_ERROR(EFSCORRUPTED);
566 }
567 }
568 ifp->if_flags |= XFS_IFEXTENTS;
569 return 0;
570}
571
572/*
573 * The file has too many extents to fit into
574 * the inode, so they are in B-tree format.
575 * Allocate a buffer for the root of the B-tree
576 * and copy the root into it. The i_extents
577 * field will remain NULL until all of the
578 * extents are read in (when they are needed).
579 */
580STATIC int
581xfs_iformat_btree(
582 xfs_inode_t *ip,
583 xfs_dinode_t *dip,
584 int whichfork)
585{
586 xfs_bmdr_block_t *dfp;
587 xfs_ifork_t *ifp;
588 /* REFERENCED */
589 int nrecs;
590 int size;
591
592 ifp = XFS_IFORK_PTR(ip, whichfork);
593 dfp = (xfs_bmdr_block_t *)XFS_DFORK_PTR(dip, whichfork);
594 size = XFS_BMAP_BROOT_SPACE(dfp);
Christoph Hellwig60197e82008-10-30 17:11:19 +1100595 nrecs = be16_to_cpu(dfp->bb_numrecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597 /*
598 * blow out if -- fork has less extents than can fit in
599 * fork (fork shouldn't be a btree format), root btree
600 * block has more records than can fit into the fork,
601 * or the number of extents is greater than the number of
602 * blocks.
603 */
Christoph Hellwig8096b1e2011-12-18 20:00:07 +0000604 if (unlikely(XFS_IFORK_NEXTENTS(ip, whichfork) <=
605 XFS_IFORK_MAXEXT(ip, whichfork) ||
606 XFS_BMDR_SPACE_CALC(nrecs) >
607 XFS_DFORK_SIZE(dip, ip->i_mount, whichfork) ||
608 XFS_IFORK_NEXTENTS(ip, whichfork) > ip->i_d.di_nblocks)) {
Dave Chinner65333b42011-03-07 10:03:35 +1100609 xfs_warn(ip->i_mount, "corrupt inode %Lu (btree).",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 (unsigned long long) ip->i_ino);
Dave Chinner65333b42011-03-07 10:03:35 +1100611 XFS_CORRUPTION_ERROR("xfs_iformat_btree", XFS_ERRLEVEL_LOW,
612 ip->i_mount, dip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 return XFS_ERROR(EFSCORRUPTED);
614 }
615
616 ifp->if_broot_bytes = size;
Dave Chinner4a7eddd2010-07-20 17:53:59 +1000617 ifp->if_broot = kmem_alloc(size, KM_SLEEP | KM_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 ASSERT(ifp->if_broot != NULL);
619 /*
620 * Copy and convert from the on-disk structure
621 * to the in-memory structure.
622 */
Christoph Hellwig60197e82008-10-30 17:11:19 +1100623 xfs_bmdr_to_bmbt(ip->i_mount, dfp,
624 XFS_DFORK_SIZE(dip, ip->i_mount, whichfork),
625 ifp->if_broot, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 ifp->if_flags &= ~XFS_IFEXTENTS;
627 ifp->if_flags |= XFS_IFBROOT;
628
629 return 0;
630}
631
Eric Sandeend96f8f82009-07-02 00:09:33 -0500632STATIC void
Christoph Hellwig347d1c02007-08-28 13:57:51 +1000633xfs_dinode_from_disk(
634 xfs_icdinode_t *to,
Christoph Hellwig81591fe2008-11-28 14:23:39 +1100635 xfs_dinode_t *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636{
Christoph Hellwig347d1c02007-08-28 13:57:51 +1000637 to->di_magic = be16_to_cpu(from->di_magic);
638 to->di_mode = be16_to_cpu(from->di_mode);
639 to->di_version = from ->di_version;
640 to->di_format = from->di_format;
641 to->di_onlink = be16_to_cpu(from->di_onlink);
642 to->di_uid = be32_to_cpu(from->di_uid);
643 to->di_gid = be32_to_cpu(from->di_gid);
644 to->di_nlink = be32_to_cpu(from->di_nlink);
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000645 to->di_projid_lo = be16_to_cpu(from->di_projid_lo);
646 to->di_projid_hi = be16_to_cpu(from->di_projid_hi);
Christoph Hellwig347d1c02007-08-28 13:57:51 +1000647 memcpy(to->di_pad, from->di_pad, sizeof(to->di_pad));
648 to->di_flushiter = be16_to_cpu(from->di_flushiter);
649 to->di_atime.t_sec = be32_to_cpu(from->di_atime.t_sec);
650 to->di_atime.t_nsec = be32_to_cpu(from->di_atime.t_nsec);
651 to->di_mtime.t_sec = be32_to_cpu(from->di_mtime.t_sec);
652 to->di_mtime.t_nsec = be32_to_cpu(from->di_mtime.t_nsec);
653 to->di_ctime.t_sec = be32_to_cpu(from->di_ctime.t_sec);
654 to->di_ctime.t_nsec = be32_to_cpu(from->di_ctime.t_nsec);
655 to->di_size = be64_to_cpu(from->di_size);
656 to->di_nblocks = be64_to_cpu(from->di_nblocks);
657 to->di_extsize = be32_to_cpu(from->di_extsize);
658 to->di_nextents = be32_to_cpu(from->di_nextents);
659 to->di_anextents = be16_to_cpu(from->di_anextents);
660 to->di_forkoff = from->di_forkoff;
661 to->di_aformat = from->di_aformat;
662 to->di_dmevmask = be32_to_cpu(from->di_dmevmask);
663 to->di_dmstate = be16_to_cpu(from->di_dmstate);
664 to->di_flags = be16_to_cpu(from->di_flags);
665 to->di_gen = be32_to_cpu(from->di_gen);
666}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
Christoph Hellwig347d1c02007-08-28 13:57:51 +1000668void
669xfs_dinode_to_disk(
Christoph Hellwig81591fe2008-11-28 14:23:39 +1100670 xfs_dinode_t *to,
Christoph Hellwig347d1c02007-08-28 13:57:51 +1000671 xfs_icdinode_t *from)
672{
673 to->di_magic = cpu_to_be16(from->di_magic);
674 to->di_mode = cpu_to_be16(from->di_mode);
675 to->di_version = from ->di_version;
676 to->di_format = from->di_format;
677 to->di_onlink = cpu_to_be16(from->di_onlink);
678 to->di_uid = cpu_to_be32(from->di_uid);
679 to->di_gid = cpu_to_be32(from->di_gid);
680 to->di_nlink = cpu_to_be32(from->di_nlink);
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000681 to->di_projid_lo = cpu_to_be16(from->di_projid_lo);
682 to->di_projid_hi = cpu_to_be16(from->di_projid_hi);
Christoph Hellwig347d1c02007-08-28 13:57:51 +1000683 memcpy(to->di_pad, from->di_pad, sizeof(to->di_pad));
684 to->di_flushiter = cpu_to_be16(from->di_flushiter);
685 to->di_atime.t_sec = cpu_to_be32(from->di_atime.t_sec);
686 to->di_atime.t_nsec = cpu_to_be32(from->di_atime.t_nsec);
687 to->di_mtime.t_sec = cpu_to_be32(from->di_mtime.t_sec);
688 to->di_mtime.t_nsec = cpu_to_be32(from->di_mtime.t_nsec);
689 to->di_ctime.t_sec = cpu_to_be32(from->di_ctime.t_sec);
690 to->di_ctime.t_nsec = cpu_to_be32(from->di_ctime.t_nsec);
691 to->di_size = cpu_to_be64(from->di_size);
692 to->di_nblocks = cpu_to_be64(from->di_nblocks);
693 to->di_extsize = cpu_to_be32(from->di_extsize);
694 to->di_nextents = cpu_to_be32(from->di_nextents);
695 to->di_anextents = cpu_to_be16(from->di_anextents);
696 to->di_forkoff = from->di_forkoff;
697 to->di_aformat = from->di_aformat;
698 to->di_dmevmask = cpu_to_be32(from->di_dmevmask);
699 to->di_dmstate = cpu_to_be16(from->di_dmstate);
700 to->di_flags = cpu_to_be16(from->di_flags);
701 to->di_gen = cpu_to_be32(from->di_gen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702}
703
704STATIC uint
705_xfs_dic2xflags(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 __uint16_t di_flags)
707{
708 uint flags = 0;
709
710 if (di_flags & XFS_DIFLAG_ANY) {
711 if (di_flags & XFS_DIFLAG_REALTIME)
712 flags |= XFS_XFLAG_REALTIME;
713 if (di_flags & XFS_DIFLAG_PREALLOC)
714 flags |= XFS_XFLAG_PREALLOC;
715 if (di_flags & XFS_DIFLAG_IMMUTABLE)
716 flags |= XFS_XFLAG_IMMUTABLE;
717 if (di_flags & XFS_DIFLAG_APPEND)
718 flags |= XFS_XFLAG_APPEND;
719 if (di_flags & XFS_DIFLAG_SYNC)
720 flags |= XFS_XFLAG_SYNC;
721 if (di_flags & XFS_DIFLAG_NOATIME)
722 flags |= XFS_XFLAG_NOATIME;
723 if (di_flags & XFS_DIFLAG_NODUMP)
724 flags |= XFS_XFLAG_NODUMP;
725 if (di_flags & XFS_DIFLAG_RTINHERIT)
726 flags |= XFS_XFLAG_RTINHERIT;
727 if (di_flags & XFS_DIFLAG_PROJINHERIT)
728 flags |= XFS_XFLAG_PROJINHERIT;
729 if (di_flags & XFS_DIFLAG_NOSYMLINKS)
730 flags |= XFS_XFLAG_NOSYMLINKS;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100731 if (di_flags & XFS_DIFLAG_EXTSIZE)
732 flags |= XFS_XFLAG_EXTSIZE;
733 if (di_flags & XFS_DIFLAG_EXTSZINHERIT)
734 flags |= XFS_XFLAG_EXTSZINHERIT;
Barry Naujokd3446ea2006-06-09 14:54:19 +1000735 if (di_flags & XFS_DIFLAG_NODEFRAG)
736 flags |= XFS_XFLAG_NODEFRAG;
David Chinner2a82b8b2007-07-11 11:09:12 +1000737 if (di_flags & XFS_DIFLAG_FILESTREAM)
738 flags |= XFS_XFLAG_FILESTREAM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 }
740
741 return flags;
742}
743
744uint
745xfs_ip2xflags(
746 xfs_inode_t *ip)
747{
Christoph Hellwig347d1c02007-08-28 13:57:51 +1000748 xfs_icdinode_t *dic = &ip->i_d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Nathan Scotta916e2b2006-06-09 17:12:17 +1000750 return _xfs_dic2xflags(dic->di_flags) |
Christoph Hellwig45ba5982007-12-07 14:07:20 +1100751 (XFS_IFORK_Q(ip) ? XFS_XFLAG_HASATTR : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752}
753
754uint
755xfs_dic2xflags(
Christoph Hellwig45ba5982007-12-07 14:07:20 +1100756 xfs_dinode_t *dip)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757{
Christoph Hellwig81591fe2008-11-28 14:23:39 +1100758 return _xfs_dic2xflags(be16_to_cpu(dip->di_flags)) |
Christoph Hellwig45ba5982007-12-07 14:07:20 +1100759 (XFS_DFORK_Q(dip) ? XFS_XFLAG_HASATTR : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760}
761
762/*
Christoph Hellwig24f211b2008-11-28 14:23:42 +1100763 * Read the disk inode attributes into the in-core inode structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 */
765int
766xfs_iread(
767 xfs_mount_t *mp,
768 xfs_trans_t *tp,
Christoph Hellwig24f211b2008-11-28 14:23:42 +1100769 xfs_inode_t *ip,
Christoph Hellwig24f211b2008-11-28 14:23:42 +1100770 uint iget_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771{
772 xfs_buf_t *bp;
773 xfs_dinode_t *dip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 int error;
775
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 /*
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +1100777 * Fill in the location information in the in-core inode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 */
Christoph Hellwig24f211b2008-11-28 14:23:42 +1100779 error = xfs_imap(mp, tp, ip->i_ino, &ip->i_imap, iget_flags);
Christoph Hellwig9ed04512008-10-30 18:26:04 +1100780 if (error)
Christoph Hellwig24f211b2008-11-28 14:23:42 +1100781 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
783 /*
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +1100784 * Get pointers to the on-disk inode and the buffer containing it.
Christoph Hellwig76d8b272008-11-28 14:23:40 +1100785 */
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +1100786 error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &bp,
Christoph Hellwig0cadda12010-01-19 09:56:44 +0000787 XBF_LOCK, iget_flags);
Christoph Hellwig76d8b272008-11-28 14:23:40 +1100788 if (error)
Christoph Hellwig24f211b2008-11-28 14:23:42 +1100789 return error;
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +1100790 dip = (xfs_dinode_t *)xfs_buf_offset(bp, ip->i_imap.im_boffset);
Christoph Hellwig76d8b272008-11-28 14:23:40 +1100791
792 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 * If we got something that isn't an inode it means someone
794 * (nfs or dmi) has a stale handle.
795 */
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200796 if (dip->di_magic != cpu_to_be16(XFS_DINODE_MAGIC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797#ifdef DEBUG
Dave Chinner53487782011-03-07 10:05:35 +1100798 xfs_alert(mp,
799 "%s: dip->di_magic (0x%x) != XFS_DINODE_MAGIC (0x%x)",
800 __func__, be16_to_cpu(dip->di_magic), XFS_DINODE_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801#endif /* DEBUG */
Christoph Hellwig9ed04512008-10-30 18:26:04 +1100802 error = XFS_ERROR(EINVAL);
803 goto out_brelse;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
805
806 /*
807 * If the on-disk inode is already linked to a directory
808 * entry, copy all of the inode into the in-core inode.
809 * xfs_iformat() handles copying in the inode format
810 * specific information.
811 * Otherwise, just get the truly permanent information.
812 */
Christoph Hellwig81591fe2008-11-28 14:23:39 +1100813 if (dip->di_mode) {
814 xfs_dinode_from_disk(&ip->i_d, dip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 error = xfs_iformat(ip, dip);
816 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817#ifdef DEBUG
Dave Chinner53487782011-03-07 10:05:35 +1100818 xfs_alert(mp, "%s: xfs_iformat() returned error %d",
819 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820#endif /* DEBUG */
Christoph Hellwig9ed04512008-10-30 18:26:04 +1100821 goto out_brelse;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 }
823 } else {
Christoph Hellwig81591fe2008-11-28 14:23:39 +1100824 ip->i_d.di_magic = be16_to_cpu(dip->di_magic);
825 ip->i_d.di_version = dip->di_version;
826 ip->i_d.di_gen = be32_to_cpu(dip->di_gen);
827 ip->i_d.di_flushiter = be16_to_cpu(dip->di_flushiter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 /*
829 * Make sure to pull in the mode here as well in
830 * case the inode is released without being used.
831 * This ensures that xfs_inactive() will see that
832 * the inode is already free and not try to mess
833 * with the uninitialized part of it.
834 */
835 ip->i_d.di_mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
837
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 /*
839 * The inode format changed when we moved the link count and
840 * made it 32 bits long. If this is an old format inode,
841 * convert it in memory to look like a new one. If it gets
842 * flushed to disk we will convert back before flushing or
843 * logging it. We zero out the new projid field and the old link
844 * count field. We'll handle clearing the pad field (the remains
845 * of the old uuid field) when we actually convert the inode to
846 * the new format. We don't change the version number so that we
847 * can distinguish this from a real new format inode.
848 */
Christoph Hellwig51ce16d2008-11-28 14:23:39 +1100849 if (ip->i_d.di_version == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 ip->i_d.di_nlink = ip->i_d.di_onlink;
851 ip->i_d.di_onlink = 0;
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000852 xfs_set_projid(ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 }
854
855 ip->i_delayed_blks = 0;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000856 ip->i_size = ip->i_d.di_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
858 /*
859 * Mark the buffer containing the inode as something to keep
860 * around for a while. This helps to keep recently accessed
861 * meta-data in-core longer.
862 */
Dave Chinner821eb212010-12-02 16:31:13 +1100863 xfs_buf_set_ref(bp, XFS_INO_REF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
865 /*
866 * Use xfs_trans_brelse() to release the buffer containing the
867 * on-disk inode, because it was acquired with xfs_trans_read_buf()
868 * in xfs_itobp() above. If tp is NULL, this is just a normal
869 * brelse(). If we're within a transaction, then xfs_trans_brelse()
870 * will only release the buffer if it is not dirty within the
871 * transaction. It will be OK to release the buffer in this case,
872 * because inodes on disk are never destroyed and we will be
873 * locking the new in-core inode before putting it in the hash
874 * table where other processes can find it. Thus we don't have
875 * to worry about the inode being changed just because we released
876 * the buffer.
877 */
Christoph Hellwig9ed04512008-10-30 18:26:04 +1100878 out_brelse:
879 xfs_trans_brelse(tp, bp);
Christoph Hellwig9ed04512008-10-30 18:26:04 +1100880 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881}
882
883/*
884 * Read in extents from a btree-format inode.
885 * Allocate and fill in if_extents. Real work is done in xfs_bmap.c.
886 */
887int
888xfs_iread_extents(
889 xfs_trans_t *tp,
890 xfs_inode_t *ip,
891 int whichfork)
892{
893 int error;
894 xfs_ifork_t *ifp;
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100895 xfs_extnum_t nextents;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
897 if (unlikely(XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)) {
898 XFS_ERROR_REPORT("xfs_iread_extents", XFS_ERRLEVEL_LOW,
899 ip->i_mount);
900 return XFS_ERROR(EFSCORRUPTED);
901 }
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100902 nextents = XFS_IFORK_NEXTENTS(ip, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 ifp = XFS_IFORK_PTR(ip, whichfork);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 /*
906 * We know that the size is valid (it's checked in iformat_btree)
907 */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100908 ifp->if_bytes = ifp->if_real_bytes = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 ifp->if_flags |= XFS_IFEXTENTS;
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100910 xfs_iext_add(ifp, 0, nextents);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 error = xfs_bmap_read_extents(tp, ip, whichfork);
912 if (error) {
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +1100913 xfs_iext_destroy(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 ifp->if_flags &= ~XFS_IFEXTENTS;
915 return error;
916 }
Christoph Hellwiga6f64d42007-08-16 16:23:40 +1000917 xfs_validate_extents(ifp, nextents, XFS_EXTFMT_INODE(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 return 0;
919}
920
921/*
922 * Allocate an inode on disk and return a copy of its in-core version.
923 * The in-core inode is locked exclusively. Set mode, nlink, and rdev
924 * appropriately within the inode. The uid and gid for the inode are
925 * set according to the contents of the given cred structure.
926 *
927 * Use xfs_dialloc() to allocate the on-disk inode. If xfs_dialloc()
928 * has a free inode available, call xfs_iget()
929 * to obtain the in-core version of the allocated inode. Finally,
930 * fill in the inode and log its initial contents. In this case,
931 * ialloc_context would be set to NULL and call_again set to false.
932 *
933 * If xfs_dialloc() does not have an available inode,
934 * it will replenish its supply by doing an allocation. Since we can
935 * only do one allocation within a transaction without deadlocks, we
936 * must commit the current transaction before returning the inode itself.
937 * In this case, therefore, we will set call_again to true and return.
938 * The caller should then commit the current transaction, start a new
939 * transaction, and call xfs_ialloc() again to actually get the inode.
940 *
941 * To ensure that some other process does not grab the inode that
942 * was allocated during the first call to xfs_ialloc(), this routine
943 * also returns the [locked] bp pointing to the head of the freelist
944 * as ialloc_context. The caller should hold this buffer across
945 * the commit and pass it back into this routine on the second call.
David Chinnerb11f94d2007-07-11 11:09:33 +1000946 *
947 * If we are allocating quota inodes, we do not have a parent inode
948 * to attach to or associate with (i.e. pip == NULL) because they
949 * are not linked into the directory structure - they are attached
950 * directly to the superblock - and so have no parent.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 */
952int
953xfs_ialloc(
954 xfs_trans_t *tp,
955 xfs_inode_t *pip,
Al Viro576b1d62011-07-26 02:50:15 -0400956 umode_t mode,
Nathan Scott31b084a2005-05-05 13:25:00 -0700957 xfs_nlink_t nlink,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 xfs_dev_t rdev,
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +0000959 prid_t prid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 int okalloc,
961 xfs_buf_t **ialloc_context,
962 boolean_t *call_again,
963 xfs_inode_t **ipp)
964{
965 xfs_ino_t ino;
966 xfs_inode_t *ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 uint flags;
968 int error;
Christoph Hellwigdff35fd2008-08-13 16:44:15 +1000969 timespec_t tv;
David Chinnerbf904242008-10-30 17:36:14 +1100970 int filestreams = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
972 /*
973 * Call the space management code to pick
974 * the on-disk inode to be allocated.
975 */
David Chinnerb11f94d2007-07-11 11:09:33 +1000976 error = xfs_dialloc(tp, pip ? pip->i_ino : 0, mode, okalloc,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 ialloc_context, call_again, &ino);
David Chinnerbf904242008-10-30 17:36:14 +1100978 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 if (*call_again || ino == NULLFSINO) {
981 *ipp = NULL;
982 return 0;
983 }
984 ASSERT(*ialloc_context == NULL);
985
986 /*
987 * Get the in-core inode with the lock held exclusively.
988 * This is because we're setting fields here we need
989 * to prevent others from looking at until we're done.
990 */
Christoph Hellwigec3ba852011-02-13 13:26:42 +0000991 error = xfs_iget(tp->t_mountp, tp, ino, XFS_IGET_CREATE,
992 XFS_ILOCK_EXCL, &ip);
David Chinnerbf904242008-10-30 17:36:14 +1100993 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 ASSERT(ip != NULL);
996
Al Viro576b1d62011-07-26 02:50:15 -0400997 ip->i_d.di_mode = mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 ip->i_d.di_onlink = 0;
999 ip->i_d.di_nlink = nlink;
1000 ASSERT(ip->i_d.di_nlink == nlink);
David Howells9e2b2dc2008-08-13 16:20:04 +01001001 ip->i_d.di_uid = current_fsuid();
1002 ip->i_d.di_gid = current_fsgid();
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00001003 xfs_set_projid(ip, prid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 memset(&(ip->i_d.di_pad[0]), 0, sizeof(ip->i_d.di_pad));
1005
1006 /*
1007 * If the superblock version is up to where we support new format
1008 * inodes and this is currently an old format inode, then change
1009 * the inode version number now. This way we only do the conversion
1010 * here rather than here and in the flush/logging code.
1011 */
Eric Sandeen62118702008-03-06 13:44:28 +11001012 if (xfs_sb_version_hasnlink(&tp->t_mountp->m_sb) &&
Christoph Hellwig51ce16d2008-11-28 14:23:39 +11001013 ip->i_d.di_version == 1) {
1014 ip->i_d.di_version = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 /*
1016 * We've already zeroed the old link count, the projid field,
1017 * and the pad field.
1018 */
1019 }
1020
1021 /*
1022 * Project ids won't be stored on disk if we are using a version 1 inode.
1023 */
Christoph Hellwig51ce16d2008-11-28 14:23:39 +11001024 if ((prid != 0) && (ip->i_d.di_version == 1))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 xfs_bump_ino_vers2(tp, ip);
1026
Christoph Hellwigbd186aa2007-08-30 17:21:12 +10001027 if (pip && XFS_INHERIT_GID(pip)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 ip->i_d.di_gid = pip->i_d.di_gid;
Al Viroabbede12011-07-26 02:31:30 -04001029 if ((pip->i_d.di_mode & S_ISGID) && S_ISDIR(mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 ip->i_d.di_mode |= S_ISGID;
1031 }
1032 }
1033
1034 /*
1035 * If the group ID of the new file does not match the effective group
1036 * ID or one of the supplementary group IDs, the S_ISGID bit is cleared
1037 * (and only if the irix_sgid_inherit compatibility variable is set).
1038 */
1039 if ((irix_sgid_inherit) &&
1040 (ip->i_d.di_mode & S_ISGID) &&
1041 (!in_group_p((gid_t)ip->i_d.di_gid))) {
1042 ip->i_d.di_mode &= ~S_ISGID;
1043 }
1044
1045 ip->i_d.di_size = 0;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001046 ip->i_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 ip->i_d.di_nextents = 0;
1048 ASSERT(ip->i_d.di_nblocks == 0);
Christoph Hellwigdff35fd2008-08-13 16:44:15 +10001049
1050 nanotime(&tv);
1051 ip->i_d.di_mtime.t_sec = (__int32_t)tv.tv_sec;
1052 ip->i_d.di_mtime.t_nsec = (__int32_t)tv.tv_nsec;
1053 ip->i_d.di_atime = ip->i_d.di_mtime;
1054 ip->i_d.di_ctime = ip->i_d.di_mtime;
1055
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 /*
1057 * di_gen will have been taken care of in xfs_iread.
1058 */
1059 ip->i_d.di_extsize = 0;
1060 ip->i_d.di_dmevmask = 0;
1061 ip->i_d.di_dmstate = 0;
1062 ip->i_d.di_flags = 0;
1063 flags = XFS_ILOG_CORE;
1064 switch (mode & S_IFMT) {
1065 case S_IFIFO:
1066 case S_IFCHR:
1067 case S_IFBLK:
1068 case S_IFSOCK:
1069 ip->i_d.di_format = XFS_DINODE_FMT_DEV;
1070 ip->i_df.if_u2.if_rdev = rdev;
1071 ip->i_df.if_flags = 0;
1072 flags |= XFS_ILOG_DEV;
1073 break;
1074 case S_IFREG:
David Chinnerbf904242008-10-30 17:36:14 +11001075 /*
1076 * we can't set up filestreams until after the VFS inode
1077 * is set up properly.
1078 */
1079 if (pip && xfs_inode_is_filestream(pip))
1080 filestreams = 1;
David Chinner2a82b8b2007-07-11 11:09:12 +10001081 /* fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 case S_IFDIR:
David Chinnerb11f94d2007-07-11 11:09:33 +10001083 if (pip && (pip->i_d.di_flags & XFS_DIFLAG_ANY)) {
Nathan Scott365ca832005-06-21 15:39:12 +10001084 uint di_flags = 0;
1085
Al Viroabbede12011-07-26 02:31:30 -04001086 if (S_ISDIR(mode)) {
Nathan Scott365ca832005-06-21 15:39:12 +10001087 if (pip->i_d.di_flags & XFS_DIFLAG_RTINHERIT)
1088 di_flags |= XFS_DIFLAG_RTINHERIT;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001089 if (pip->i_d.di_flags & XFS_DIFLAG_EXTSZINHERIT) {
1090 di_flags |= XFS_DIFLAG_EXTSZINHERIT;
1091 ip->i_d.di_extsize = pip->i_d.di_extsize;
1092 }
Al Viroabbede12011-07-26 02:31:30 -04001093 } else if (S_ISREG(mode)) {
Christoph Hellwig613d7042007-10-11 17:44:08 +10001094 if (pip->i_d.di_flags & XFS_DIFLAG_RTINHERIT)
Nathan Scott365ca832005-06-21 15:39:12 +10001095 di_flags |= XFS_DIFLAG_REALTIME;
Nathan Scottdd9f4382006-01-11 15:28:28 +11001096 if (pip->i_d.di_flags & XFS_DIFLAG_EXTSZINHERIT) {
1097 di_flags |= XFS_DIFLAG_EXTSIZE;
1098 ip->i_d.di_extsize = pip->i_d.di_extsize;
1099 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 }
1101 if ((pip->i_d.di_flags & XFS_DIFLAG_NOATIME) &&
1102 xfs_inherit_noatime)
Nathan Scott365ca832005-06-21 15:39:12 +10001103 di_flags |= XFS_DIFLAG_NOATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 if ((pip->i_d.di_flags & XFS_DIFLAG_NODUMP) &&
1105 xfs_inherit_nodump)
Nathan Scott365ca832005-06-21 15:39:12 +10001106 di_flags |= XFS_DIFLAG_NODUMP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 if ((pip->i_d.di_flags & XFS_DIFLAG_SYNC) &&
1108 xfs_inherit_sync)
Nathan Scott365ca832005-06-21 15:39:12 +10001109 di_flags |= XFS_DIFLAG_SYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 if ((pip->i_d.di_flags & XFS_DIFLAG_NOSYMLINKS) &&
1111 xfs_inherit_nosymlinks)
Nathan Scott365ca832005-06-21 15:39:12 +10001112 di_flags |= XFS_DIFLAG_NOSYMLINKS;
1113 if (pip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
1114 di_flags |= XFS_DIFLAG_PROJINHERIT;
Barry Naujokd3446ea2006-06-09 14:54:19 +10001115 if ((pip->i_d.di_flags & XFS_DIFLAG_NODEFRAG) &&
1116 xfs_inherit_nodefrag)
1117 di_flags |= XFS_DIFLAG_NODEFRAG;
David Chinner2a82b8b2007-07-11 11:09:12 +10001118 if (pip->i_d.di_flags & XFS_DIFLAG_FILESTREAM)
1119 di_flags |= XFS_DIFLAG_FILESTREAM;
Nathan Scott365ca832005-06-21 15:39:12 +10001120 ip->i_d.di_flags |= di_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 }
1122 /* FALLTHROUGH */
1123 case S_IFLNK:
1124 ip->i_d.di_format = XFS_DINODE_FMT_EXTENTS;
1125 ip->i_df.if_flags = XFS_IFEXTENTS;
1126 ip->i_df.if_bytes = ip->i_df.if_real_bytes = 0;
1127 ip->i_df.if_u1.if_extents = NULL;
1128 break;
1129 default:
1130 ASSERT(0);
1131 }
1132 /*
1133 * Attribute fork settings for new inode.
1134 */
1135 ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
1136 ip->i_d.di_anextents = 0;
1137
1138 /*
1139 * Log the new values stuffed into the inode.
1140 */
Christoph Hellwigddc34152011-09-19 15:00:54 +00001141 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 xfs_trans_log_inode(tp, ip, flags);
1143
Nathan Scottb83bd132006-06-09 16:48:30 +10001144 /* now that we have an i_mode we can setup inode ops and unlock */
Christoph Hellwig41be8be2008-08-13 16:23:13 +10001145 xfs_setup_inode(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
David Chinnerbf904242008-10-30 17:36:14 +11001147 /* now we have set up the vfs inode we can associate the filestream */
1148 if (filestreams) {
1149 error = xfs_filestream_associate(pip, ip);
1150 if (error < 0)
1151 return -error;
1152 if (!error)
1153 xfs_iflags_set(ip, XFS_IFILESTREAM);
1154 }
1155
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 *ipp = ip;
1157 return 0;
1158}
1159
1160/*
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001161 * Free up the underlying blocks past new_size. The new size must be smaller
1162 * than the current size. This routine can be used both for the attribute and
1163 * data fork, and does not modify the inode size, which is left to the caller.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 *
David Chinnerf6485052008-04-17 16:50:04 +10001165 * The transaction passed to this routine must have made a permanent log
1166 * reservation of at least XFS_ITRUNCATE_LOG_RES. This routine may commit the
1167 * given transaction and start new ones, so make sure everything involved in
1168 * the transaction is tidy before calling here. Some transaction will be
1169 * returned to the caller to be committed. The incoming transaction must
1170 * already include the inode, and both inode locks must be held exclusively.
1171 * The inode must also be "held" within the transaction. On return the inode
1172 * will be "held" within the returned transaction. This routine does NOT
1173 * require any disk space to be reserved for it within the transaction.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 *
David Chinnerf6485052008-04-17 16:50:04 +10001175 * If we get an error, we must return with the inode locked and linked into the
1176 * current transaction. This keeps things simple for the higher level code,
1177 * because it always knows that the inode is locked and held in the transaction
1178 * that returns to it whether errors occur or not. We don't mark the inode
1179 * dirty on error so that transactions can be easily aborted if possible.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 */
1181int
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001182xfs_itruncate_extents(
1183 struct xfs_trans **tpp,
1184 struct xfs_inode *ip,
1185 int whichfork,
1186 xfs_fsize_t new_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187{
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001188 struct xfs_mount *mp = ip->i_mount;
1189 struct xfs_trans *tp = *tpp;
1190 struct xfs_trans *ntp;
1191 xfs_bmap_free_t free_list;
1192 xfs_fsblock_t first_block;
1193 xfs_fileoff_t first_unmap_block;
1194 xfs_fileoff_t last_block;
1195 xfs_filblks_t unmap_len;
1196 int committed;
1197 int error = 0;
1198 int done = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10001200 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_IOLOCK_EXCL));
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001201 ASSERT(new_size <= ip->i_size);
1202 ASSERT(tp->t_flags & XFS_TRANS_PERM_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 ASSERT(ip->i_itemp != NULL);
Christoph Hellwig898621d2010-06-24 11:36:58 +10001204 ASSERT(ip->i_itemp->ili_lock_flags == 0);
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001205 ASSERT(!XFS_NOT_DQATTACHED(mp, ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Christoph Hellwig673e8e52011-12-18 20:00:04 +00001207 trace_xfs_itruncate_extents_start(ip, new_size);
1208
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 /*
1210 * Since it is possible for space to become allocated beyond
1211 * the end of the file (in a crash where the space is allocated
1212 * but the inode size is not yet updated), simply remove any
1213 * blocks which show up between the new EOF and the maximum
1214 * possible file size. If the first block to be removed is
1215 * beyond the maximum file size (ie it is the same as last_block),
1216 * then there is nothing to do.
1217 */
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001218 first_unmap_block = XFS_B_TO_FSB(mp, (xfs_ufsize_t)new_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 last_block = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_MAXIOFFSET(mp));
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001220 if (first_unmap_block == last_block)
1221 return 0;
1222
1223 ASSERT(first_unmap_block < last_block);
1224 unmap_len = last_block - first_unmap_block + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 while (!done) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06001226 xfs_bmap_init(&free_list, &first_block);
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001227 error = xfs_bunmapi(tp, ip,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001228 first_unmap_block, unmap_len,
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001229 xfs_bmapi_aflag(whichfork),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 XFS_ITRUNC_MAX_EXTENTS,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10001231 &first_block, &free_list,
Christoph Hellwigb4e91812010-06-23 18:11:15 +10001232 &done);
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001233 if (error)
1234 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
1236 /*
1237 * Duplicate the transaction that has the permanent
1238 * reservation and commit the old transaction.
1239 */
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001240 error = xfs_bmap_finish(&tp, &free_list, &committed);
Christoph Hellwig898621d2010-06-24 11:36:58 +10001241 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +00001242 xfs_trans_ijoin(tp, ip, 0);
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001243 if (error)
1244 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
1246 if (committed) {
1247 /*
David Chinnerf6485052008-04-17 16:50:04 +10001248 * Mark the inode dirty so it will be logged and
David Chinnere5720ee2008-04-10 12:21:18 +10001249 * moved forward in the log as part of every commit.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 */
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001251 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 }
David Chinnerf6485052008-04-17 16:50:04 +10001253
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001254 ntp = xfs_trans_dup(tp);
1255 error = xfs_trans_commit(tp, 0);
1256 tp = ntp;
David Chinnere5720ee2008-04-10 12:21:18 +10001257
Christoph Hellwigddc34152011-09-19 15:00:54 +00001258 xfs_trans_ijoin(tp, ip, 0);
David Chinnerf6485052008-04-17 16:50:04 +10001259
Dave Chinnercc09c0d2008-11-17 17:37:10 +11001260 if (error)
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001261 goto out;
1262
Dave Chinnercc09c0d2008-11-17 17:37:10 +11001263 /*
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001264 * Transaction commit worked ok so we can drop the extra ticket
Dave Chinnercc09c0d2008-11-17 17:37:10 +11001265 * reference that we gained in xfs_trans_dup()
1266 */
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001267 xfs_log_ticket_put(tp->t_ticket);
1268 error = xfs_trans_reserve(tp, 0,
David Chinnerf6485052008-04-17 16:50:04 +10001269 XFS_ITRUNCATE_LOG_RES(mp), 0,
1270 XFS_TRANS_PERM_LOG_RES,
1271 XFS_ITRUNCATE_LOG_COUNT);
1272 if (error)
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001273 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 }
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001275
Christoph Hellwig673e8e52011-12-18 20:00:04 +00001276 /*
1277 * Always re-log the inode so that our permanent transaction can keep
1278 * on rolling it forward in the log.
1279 */
1280 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1281
1282 trace_xfs_itruncate_extents_end(ip, new_size);
1283
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001284out:
1285 *tpp = tp;
1286 return error;
1287out_bmap_cancel:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 /*
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001289 * If the bunmapi call encounters an error, return to the caller where
1290 * the transaction can be properly aborted. We just need to make sure
1291 * we're not holding any resources that we were not when we came in.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 */
Christoph Hellwig8f04c472011-07-08 14:34:34 +02001293 xfs_bmap_cancel(&free_list);
1294 goto out;
1295}
1296
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297/*
1298 * This is called when the inode's link count goes to 0.
1299 * We place the on-disk inode on a list in the AGI. It
1300 * will be pulled from this list when the inode is freed.
1301 */
1302int
1303xfs_iunlink(
1304 xfs_trans_t *tp,
1305 xfs_inode_t *ip)
1306{
1307 xfs_mount_t *mp;
1308 xfs_agi_t *agi;
1309 xfs_dinode_t *dip;
1310 xfs_buf_t *agibp;
1311 xfs_buf_t *ibp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 xfs_agino_t agino;
1313 short bucket_index;
1314 int offset;
1315 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
1317 ASSERT(ip->i_d.di_nlink == 0);
1318 ASSERT(ip->i_d.di_mode != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
1320 mp = tp->t_mountp;
1321
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 /*
1323 * Get the agi buffer first. It ensures lock ordering
1324 * on the list.
1325 */
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11001326 error = xfs_read_agi(mp, tp, XFS_INO_TO_AGNO(mp, ip->i_ino), &agibp);
Vlad Apostolov859d7182007-10-11 17:44:18 +10001327 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 agi = XFS_BUF_TO_AGI(agibp);
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11001330
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 /*
1332 * Get the index into the agi hash table for the
1333 * list this inode will go on.
1334 */
1335 agino = XFS_INO_TO_AGINO(mp, ip->i_ino);
1336 ASSERT(agino != 0);
1337 bucket_index = agino % XFS_AGI_UNLINKED_BUCKETS;
1338 ASSERT(agi->agi_unlinked[bucket_index]);
Christoph Hellwig16259e72005-11-02 15:11:25 +11001339 ASSERT(be32_to_cpu(agi->agi_unlinked[bucket_index]) != agino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001341 if (agi->agi_unlinked[bucket_index] != cpu_to_be32(NULLAGINO)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 /*
1343 * There is already another inode in the bucket we need
1344 * to add ourselves to. Add us at the front of the list.
1345 * Here we put the head pointer into our next pointer,
1346 * and then we fall through to point the head at us.
1347 */
Christoph Hellwig0cadda12010-01-19 09:56:44 +00001348 error = xfs_itobp(mp, tp, ip, &dip, &ibp, XBF_LOCK);
Vlad Apostolovc319b582007-11-23 16:27:51 +11001349 if (error)
1350 return error;
1351
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001352 ASSERT(dip->di_next_unlinked == cpu_to_be32(NULLAGINO));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 dip->di_next_unlinked = agi->agi_unlinked[bucket_index];
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +11001354 offset = ip->i_imap.im_boffset +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 offsetof(xfs_dinode_t, di_next_unlinked);
1356 xfs_trans_inode_buf(tp, ibp);
1357 xfs_trans_log_buf(tp, ibp, offset,
1358 (offset + sizeof(xfs_agino_t) - 1));
1359 xfs_inobp_check(mp, ibp);
1360 }
1361
1362 /*
1363 * Point the bucket head pointer at the inode being inserted.
1364 */
1365 ASSERT(agino != 0);
Christoph Hellwig16259e72005-11-02 15:11:25 +11001366 agi->agi_unlinked[bucket_index] = cpu_to_be32(agino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 offset = offsetof(xfs_agi_t, agi_unlinked) +
1368 (sizeof(xfs_agino_t) * bucket_index);
1369 xfs_trans_log_buf(tp, agibp, offset,
1370 (offset + sizeof(xfs_agino_t) - 1));
1371 return 0;
1372}
1373
1374/*
1375 * Pull the on-disk inode from the AGI unlinked list.
1376 */
1377STATIC int
1378xfs_iunlink_remove(
1379 xfs_trans_t *tp,
1380 xfs_inode_t *ip)
1381{
1382 xfs_ino_t next_ino;
1383 xfs_mount_t *mp;
1384 xfs_agi_t *agi;
1385 xfs_dinode_t *dip;
1386 xfs_buf_t *agibp;
1387 xfs_buf_t *ibp;
1388 xfs_agnumber_t agno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 xfs_agino_t agino;
1390 xfs_agino_t next_agino;
1391 xfs_buf_t *last_ibp;
Nathan Scott6fdf8cc2006-06-28 10:13:52 +10001392 xfs_dinode_t *last_dip = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 short bucket_index;
Nathan Scott6fdf8cc2006-06-28 10:13:52 +10001394 int offset, last_offset = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 agno = XFS_INO_TO_AGNO(mp, ip->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
1400 /*
1401 * Get the agi buffer first. It ensures lock ordering
1402 * on the list.
1403 */
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11001404 error = xfs_read_agi(mp, tp, agno, &agibp);
1405 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 return error;
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11001407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 agi = XFS_BUF_TO_AGI(agibp);
Christoph Hellwig5e1be0f2008-11-28 14:23:37 +11001409
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 /*
1411 * Get the index into the agi hash table for the
1412 * list this inode will go on.
1413 */
1414 agino = XFS_INO_TO_AGINO(mp, ip->i_ino);
1415 ASSERT(agino != 0);
1416 bucket_index = agino % XFS_AGI_UNLINKED_BUCKETS;
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001417 ASSERT(agi->agi_unlinked[bucket_index] != cpu_to_be32(NULLAGINO));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 ASSERT(agi->agi_unlinked[bucket_index]);
1419
Christoph Hellwig16259e72005-11-02 15:11:25 +11001420 if (be32_to_cpu(agi->agi_unlinked[bucket_index]) == agino) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 /*
1422 * We're at the head of the list. Get the inode's
1423 * on-disk buffer to see if there is anyone after us
1424 * on the list. Only modify our next pointer if it
1425 * is not already NULLAGINO. This saves us the overhead
1426 * of dealing with the buffer when there is no need to
1427 * change it.
1428 */
Christoph Hellwig0cadda12010-01-19 09:56:44 +00001429 error = xfs_itobp(mp, tp, ip, &dip, &ibp, XBF_LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001431 xfs_warn(mp, "%s: xfs_itobp() returned error %d.",
1432 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 return error;
1434 }
Christoph Hellwig347d1c02007-08-28 13:57:51 +10001435 next_agino = be32_to_cpu(dip->di_next_unlinked);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 ASSERT(next_agino != 0);
1437 if (next_agino != NULLAGINO) {
Christoph Hellwig347d1c02007-08-28 13:57:51 +10001438 dip->di_next_unlinked = cpu_to_be32(NULLAGINO);
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +11001439 offset = ip->i_imap.im_boffset +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 offsetof(xfs_dinode_t, di_next_unlinked);
1441 xfs_trans_inode_buf(tp, ibp);
1442 xfs_trans_log_buf(tp, ibp, offset,
1443 (offset + sizeof(xfs_agino_t) - 1));
1444 xfs_inobp_check(mp, ibp);
1445 } else {
1446 xfs_trans_brelse(tp, ibp);
1447 }
1448 /*
1449 * Point the bucket head pointer at the next inode.
1450 */
1451 ASSERT(next_agino != 0);
1452 ASSERT(next_agino != agino);
Christoph Hellwig16259e72005-11-02 15:11:25 +11001453 agi->agi_unlinked[bucket_index] = cpu_to_be32(next_agino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 offset = offsetof(xfs_agi_t, agi_unlinked) +
1455 (sizeof(xfs_agino_t) * bucket_index);
1456 xfs_trans_log_buf(tp, agibp, offset,
1457 (offset + sizeof(xfs_agino_t) - 1));
1458 } else {
1459 /*
1460 * We need to search the list for the inode being freed.
1461 */
Christoph Hellwig16259e72005-11-02 15:11:25 +11001462 next_agino = be32_to_cpu(agi->agi_unlinked[bucket_index]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 last_ibp = NULL;
1464 while (next_agino != agino) {
1465 /*
1466 * If the last inode wasn't the one pointing to
1467 * us, then release its buffer since we're not
1468 * going to do anything with it.
1469 */
1470 if (last_ibp != NULL) {
1471 xfs_trans_brelse(tp, last_ibp);
1472 }
1473 next_ino = XFS_AGINO_TO_INO(mp, agno, next_agino);
1474 error = xfs_inotobp(mp, tp, next_ino, &last_dip,
Christoph Hellwigc679eef2008-10-30 18:04:13 +11001475 &last_ibp, &last_offset, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001477 xfs_warn(mp,
1478 "%s: xfs_inotobp() returned error %d.",
1479 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 return error;
1481 }
Christoph Hellwig347d1c02007-08-28 13:57:51 +10001482 next_agino = be32_to_cpu(last_dip->di_next_unlinked);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 ASSERT(next_agino != NULLAGINO);
1484 ASSERT(next_agino != 0);
1485 }
1486 /*
1487 * Now last_ibp points to the buffer previous to us on
1488 * the unlinked list. Pull us from the list.
1489 */
Christoph Hellwig0cadda12010-01-19 09:56:44 +00001490 error = xfs_itobp(mp, tp, ip, &dip, &ibp, XBF_LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001492 xfs_warn(mp, "%s: xfs_itobp(2) returned error %d.",
1493 __func__, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 return error;
1495 }
Christoph Hellwig347d1c02007-08-28 13:57:51 +10001496 next_agino = be32_to_cpu(dip->di_next_unlinked);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 ASSERT(next_agino != 0);
1498 ASSERT(next_agino != agino);
1499 if (next_agino != NULLAGINO) {
Christoph Hellwig347d1c02007-08-28 13:57:51 +10001500 dip->di_next_unlinked = cpu_to_be32(NULLAGINO);
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +11001501 offset = ip->i_imap.im_boffset +
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 offsetof(xfs_dinode_t, di_next_unlinked);
1503 xfs_trans_inode_buf(tp, ibp);
1504 xfs_trans_log_buf(tp, ibp, offset,
1505 (offset + sizeof(xfs_agino_t) - 1));
1506 xfs_inobp_check(mp, ibp);
1507 } else {
1508 xfs_trans_brelse(tp, ibp);
1509 }
1510 /*
1511 * Point the previous inode on the list to the next inode.
1512 */
Christoph Hellwig347d1c02007-08-28 13:57:51 +10001513 last_dip->di_next_unlinked = cpu_to_be32(next_agino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 ASSERT(next_agino != 0);
1515 offset = last_offset + offsetof(xfs_dinode_t, di_next_unlinked);
1516 xfs_trans_inode_buf(tp, last_ibp);
1517 xfs_trans_log_buf(tp, last_ibp, offset,
1518 (offset + sizeof(xfs_agino_t) - 1));
1519 xfs_inobp_check(mp, last_ibp);
1520 }
1521 return 0;
1522}
1523
Dave Chinner5b3eed72010-08-24 11:42:41 +10001524/*
1525 * A big issue when freeing the inode cluster is is that we _cannot_ skip any
1526 * inodes that are in memory - they all must be marked stale and attached to
1527 * the cluster buffer.
1528 */
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00001529STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530xfs_ifree_cluster(
1531 xfs_inode_t *free_ip,
1532 xfs_trans_t *tp,
1533 xfs_ino_t inum)
1534{
1535 xfs_mount_t *mp = free_ip->i_mount;
1536 int blks_per_cluster;
1537 int nbufs;
1538 int ninodes;
Dave Chinner5b257b42010-06-03 16:22:29 +10001539 int i, j;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 xfs_daddr_t blkno;
1541 xfs_buf_t *bp;
Dave Chinner5b257b42010-06-03 16:22:29 +10001542 xfs_inode_t *ip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 xfs_inode_log_item_t *iip;
1544 xfs_log_item_t *lip;
Dave Chinner5017e972010-01-11 11:47:40 +00001545 struct xfs_perag *pag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546
Dave Chinner5017e972010-01-11 11:47:40 +00001547 pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, inum));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 if (mp->m_sb.sb_blocksize >= XFS_INODE_CLUSTER_SIZE(mp)) {
1549 blks_per_cluster = 1;
1550 ninodes = mp->m_sb.sb_inopblock;
1551 nbufs = XFS_IALLOC_BLOCKS(mp);
1552 } else {
1553 blks_per_cluster = XFS_INODE_CLUSTER_SIZE(mp) /
1554 mp->m_sb.sb_blocksize;
1555 ninodes = blks_per_cluster * mp->m_sb.sb_inopblock;
1556 nbufs = XFS_IALLOC_BLOCKS(mp) / blks_per_cluster;
1557 }
1558
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 for (j = 0; j < nbufs; j++, inum += ninodes) {
1560 blkno = XFS_AGB_TO_DADDR(mp, XFS_INO_TO_AGNO(mp, inum),
1561 XFS_INO_TO_AGBNO(mp, inum));
1562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 /*
Dave Chinner5b257b42010-06-03 16:22:29 +10001564 * We obtain and lock the backing buffer first in the process
1565 * here, as we have to ensure that any dirty inode that we
1566 * can't get the flush lock on is attached to the buffer.
1567 * If we scan the in-memory inodes first, then buffer IO can
1568 * complete before we get a lock on it, and hence we may fail
1569 * to mark all the active inodes on the buffer stale.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 */
Dave Chinner5b257b42010-06-03 16:22:29 +10001571 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, blkno,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 mp->m_bsize * blks_per_cluster,
Christoph Hellwig0cadda12010-01-19 09:56:44 +00001573 XBF_LOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00001575 if (!bp)
1576 return ENOMEM;
Dave Chinner5b257b42010-06-03 16:22:29 +10001577 /*
1578 * Walk the inodes already attached to the buffer and mark them
1579 * stale. These will all have the flush locks held, so an
Dave Chinner5b3eed72010-08-24 11:42:41 +10001580 * in-memory inode walk can't lock them. By marking them all
1581 * stale first, we will not attempt to lock them in the loop
1582 * below as the XFS_ISTALE flag will be set.
Dave Chinner5b257b42010-06-03 16:22:29 +10001583 */
Christoph Hellwigadadbee2011-07-13 13:43:49 +02001584 lip = bp->b_fspriv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 while (lip) {
1586 if (lip->li_type == XFS_LI_INODE) {
1587 iip = (xfs_inode_log_item_t *)lip;
1588 ASSERT(iip->ili_logged == 1);
Christoph Hellwigca30b2a2010-06-23 18:11:15 +10001589 lip->li_cb = xfs_istale_done;
David Chinner7b2e2a32008-10-30 17:39:12 +11001590 xfs_trans_ail_copy_lsn(mp->m_ail,
1591 &iip->ili_flush_lsn,
1592 &iip->ili_item.li_lsn);
David Chinnere5ffd2b2006-11-21 18:55:33 +11001593 xfs_iflags_set(iip->ili_inode, XFS_ISTALE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 }
1595 lip = lip->li_bio_list;
1596 }
1597
Dave Chinner5b3eed72010-08-24 11:42:41 +10001598
Dave Chinner5b257b42010-06-03 16:22:29 +10001599 /*
1600 * For each inode in memory attempt to add it to the inode
1601 * buffer and set it up for being staled on buffer IO
1602 * completion. This is safe as we've locked out tail pushing
1603 * and flushing by locking the buffer.
1604 *
1605 * We have already marked every inode that was part of a
1606 * transaction stale above, which means there is no point in
1607 * even trying to lock them.
1608 */
1609 for (i = 0; i < ninodes; i++) {
Dave Chinner5b3eed72010-08-24 11:42:41 +10001610retry:
Dave Chinner1a3e8f32010-12-17 17:29:43 +11001611 rcu_read_lock();
Dave Chinner5b257b42010-06-03 16:22:29 +10001612 ip = radix_tree_lookup(&pag->pag_ici_root,
1613 XFS_INO_TO_AGINO(mp, (inum + i)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
Dave Chinner1a3e8f32010-12-17 17:29:43 +11001615 /* Inode not in memory, nothing to do */
1616 if (!ip) {
1617 rcu_read_unlock();
Dave Chinner5b257b42010-06-03 16:22:29 +10001618 continue;
1619 }
1620
Dave Chinner5b3eed72010-08-24 11:42:41 +10001621 /*
Dave Chinner1a3e8f32010-12-17 17:29:43 +11001622 * because this is an RCU protected lookup, we could
1623 * find a recently freed or even reallocated inode
1624 * during the lookup. We need to check under the
1625 * i_flags_lock for a valid inode here. Skip it if it
1626 * is not valid, the wrong inode or stale.
1627 */
1628 spin_lock(&ip->i_flags_lock);
1629 if (ip->i_ino != inum + i ||
1630 __xfs_iflags_test(ip, XFS_ISTALE)) {
1631 spin_unlock(&ip->i_flags_lock);
1632 rcu_read_unlock();
1633 continue;
1634 }
1635 spin_unlock(&ip->i_flags_lock);
1636
1637 /*
Dave Chinner5b3eed72010-08-24 11:42:41 +10001638 * Don't try to lock/unlock the current inode, but we
1639 * _cannot_ skip the other inodes that we did not find
1640 * in the list attached to the buffer and are not
1641 * already marked stale. If we can't lock it, back off
1642 * and retry.
1643 */
Dave Chinner5b257b42010-06-03 16:22:29 +10001644 if (ip != free_ip &&
1645 !xfs_ilock_nowait(ip, XFS_ILOCK_EXCL)) {
Dave Chinner1a3e8f32010-12-17 17:29:43 +11001646 rcu_read_unlock();
Dave Chinner5b3eed72010-08-24 11:42:41 +10001647 delay(1);
1648 goto retry;
Dave Chinner5b257b42010-06-03 16:22:29 +10001649 }
Dave Chinner1a3e8f32010-12-17 17:29:43 +11001650 rcu_read_unlock();
Dave Chinner5b257b42010-06-03 16:22:29 +10001651
Dave Chinner5b3eed72010-08-24 11:42:41 +10001652 xfs_iflock(ip);
Dave Chinner5b257b42010-06-03 16:22:29 +10001653 xfs_iflags_set(ip, XFS_ISTALE);
Dave Chinner5b257b42010-06-03 16:22:29 +10001654
Dave Chinner5b3eed72010-08-24 11:42:41 +10001655 /*
1656 * we don't need to attach clean inodes or those only
1657 * with unlogged changes (which we throw away, anyway).
1658 */
Dave Chinner5b257b42010-06-03 16:22:29 +10001659 iip = ip->i_itemp;
Dave Chinner5b3eed72010-08-24 11:42:41 +10001660 if (!iip || xfs_inode_clean(ip)) {
Dave Chinner5b257b42010-06-03 16:22:29 +10001661 ASSERT(ip != free_ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 ip->i_update_core = 0;
1663 xfs_ifunlock(ip);
1664 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1665 continue;
1666 }
1667
1668 iip->ili_last_fields = iip->ili_format.ilf_fields;
1669 iip->ili_format.ilf_fields = 0;
1670 iip->ili_logged = 1;
David Chinner7b2e2a32008-10-30 17:39:12 +11001671 xfs_trans_ail_copy_lsn(mp->m_ail, &iip->ili_flush_lsn,
1672 &iip->ili_item.li_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
Christoph Hellwigca30b2a2010-06-23 18:11:15 +10001674 xfs_buf_attach_iodone(bp, xfs_istale_done,
1675 &iip->ili_item);
Dave Chinner5b257b42010-06-03 16:22:29 +10001676
1677 if (ip != free_ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 }
1680
Dave Chinner5b3eed72010-08-24 11:42:41 +10001681 xfs_trans_stale_inode_buf(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 xfs_trans_binval(tp, bp);
1683 }
1684
Dave Chinner5017e972010-01-11 11:47:40 +00001685 xfs_perag_put(pag);
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00001686 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687}
1688
1689/*
1690 * This is called to return an inode to the inode free list.
1691 * The inode should already be truncated to 0 length and have
1692 * no pages associated with it. This routine also assumes that
1693 * the inode is already a part of the transaction.
1694 *
1695 * The on-disk copy of the inode will have been added to the list
1696 * of unlinked inodes in the AGI. We need to remove the inode from
1697 * that list atomically with respect to freeing it here.
1698 */
1699int
1700xfs_ifree(
1701 xfs_trans_t *tp,
1702 xfs_inode_t *ip,
1703 xfs_bmap_free_t *flist)
1704{
1705 int error;
1706 int delete;
1707 xfs_ino_t first_ino;
Vlad Apostolovc319b582007-11-23 16:27:51 +11001708 xfs_dinode_t *dip;
1709 xfs_buf_t *ibp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10001711 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 ASSERT(ip->i_d.di_nlink == 0);
1713 ASSERT(ip->i_d.di_nextents == 0);
1714 ASSERT(ip->i_d.di_anextents == 0);
Lachlan McIlroyba87ea62007-05-08 13:49:46 +10001715 ASSERT((ip->i_d.di_size == 0 && ip->i_size == 0) ||
Al Viroabbede12011-07-26 02:31:30 -04001716 (!S_ISREG(ip->i_d.di_mode)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 ASSERT(ip->i_d.di_nblocks == 0);
1718
1719 /*
1720 * Pull the on-disk inode from the AGI unlinked list.
1721 */
1722 error = xfs_iunlink_remove(tp, ip);
1723 if (error != 0) {
1724 return error;
1725 }
1726
1727 error = xfs_difree(tp, ip->i_ino, flist, &delete, &first_ino);
1728 if (error != 0) {
1729 return error;
1730 }
1731 ip->i_d.di_mode = 0; /* mark incore inode as free */
1732 ip->i_d.di_flags = 0;
1733 ip->i_d.di_dmevmask = 0;
1734 ip->i_d.di_forkoff = 0; /* mark the attr fork not in use */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 ip->i_d.di_format = XFS_DINODE_FMT_EXTENTS;
1736 ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
1737 /*
1738 * Bump the generation count so no one will be confused
1739 * by reincarnations of this inode.
1740 */
1741 ip->i_d.di_gen++;
Vlad Apostolovc319b582007-11-23 16:27:51 +11001742
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1744
Christoph Hellwig0cadda12010-01-19 09:56:44 +00001745 error = xfs_itobp(ip->i_mount, tp, ip, &dip, &ibp, XBF_LOCK);
Vlad Apostolovc319b582007-11-23 16:27:51 +11001746 if (error)
1747 return error;
1748
1749 /*
1750 * Clear the on-disk di_mode. This is to prevent xfs_bulkstat
1751 * from picking up this inode when it is reclaimed (its incore state
1752 * initialzed but not flushed to disk yet). The in-core di_mode is
1753 * already cleared and a corresponding transaction logged.
1754 * The hack here just synchronizes the in-core to on-disk
1755 * di_mode value in advance before the actual inode sync to disk.
1756 * This is OK because the inode is already unlinked and would never
1757 * change its di_mode again for this inode generation.
1758 * This is a temporary hack that would require a proper fix
1759 * in the future.
1760 */
Christoph Hellwig81591fe2008-11-28 14:23:39 +11001761 dip->di_mode = 0;
Vlad Apostolovc319b582007-11-23 16:27:51 +11001762
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 if (delete) {
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00001764 error = xfs_ifree_cluster(ip, tp, first_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 }
1766
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00001767 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768}
1769
1770/*
1771 * Reallocate the space for if_broot based on the number of records
1772 * being added or deleted as indicated in rec_diff. Move the records
1773 * and pointers in if_broot to fit the new size. When shrinking this
1774 * will eliminate holes between the records and pointers created by
1775 * the caller. When growing this will create holes to be filled in
1776 * by the caller.
1777 *
1778 * The caller must not request to add more records than would fit in
1779 * the on-disk inode root. If the if_broot is currently NULL, then
1780 * if we adding records one will be allocated. The caller must also
1781 * not request that the number of records go below zero, although
1782 * it can go to zero.
1783 *
1784 * ip -- the inode whose if_broot area is changing
1785 * ext_diff -- the change in the number of records, positive or negative,
1786 * requested for the if_broot array.
1787 */
1788void
1789xfs_iroot_realloc(
1790 xfs_inode_t *ip,
1791 int rec_diff,
1792 int whichfork)
1793{
Christoph Hellwig60197e82008-10-30 17:11:19 +11001794 struct xfs_mount *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 int cur_max;
1796 xfs_ifork_t *ifp;
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11001797 struct xfs_btree_block *new_broot;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 int new_max;
1799 size_t new_size;
1800 char *np;
1801 char *op;
1802
1803 /*
1804 * Handle the degenerate case quietly.
1805 */
1806 if (rec_diff == 0) {
1807 return;
1808 }
1809
1810 ifp = XFS_IFORK_PTR(ip, whichfork);
1811 if (rec_diff > 0) {
1812 /*
1813 * If there wasn't any memory allocated before, just
1814 * allocate it now and get out.
1815 */
1816 if (ifp->if_broot_bytes == 0) {
1817 new_size = (size_t)XFS_BMAP_BROOT_SPACE_CALC(rec_diff);
Dave Chinner4a7eddd2010-07-20 17:53:59 +10001818 ifp->if_broot = kmem_alloc(new_size, KM_SLEEP | KM_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 ifp->if_broot_bytes = (int)new_size;
1820 return;
1821 }
1822
1823 /*
1824 * If there is already an existing if_broot, then we need
1825 * to realloc() it and shift the pointers to their new
1826 * location. The records don't change location because
1827 * they are kept butted up against the btree block header.
1828 */
Christoph Hellwig60197e82008-10-30 17:11:19 +11001829 cur_max = xfs_bmbt_maxrecs(mp, ifp->if_broot_bytes, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 new_max = cur_max + rec_diff;
1831 new_size = (size_t)XFS_BMAP_BROOT_SPACE_CALC(new_max);
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11001832 ifp->if_broot = kmem_realloc(ifp->if_broot, new_size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 (size_t)XFS_BMAP_BROOT_SPACE_CALC(cur_max), /* old size */
Dave Chinner4a7eddd2010-07-20 17:53:59 +10001834 KM_SLEEP | KM_NOFS);
Christoph Hellwig60197e82008-10-30 17:11:19 +11001835 op = (char *)XFS_BMAP_BROOT_PTR_ADDR(mp, ifp->if_broot, 1,
1836 ifp->if_broot_bytes);
1837 np = (char *)XFS_BMAP_BROOT_PTR_ADDR(mp, ifp->if_broot, 1,
1838 (int)new_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 ifp->if_broot_bytes = (int)new_size;
1840 ASSERT(ifp->if_broot_bytes <=
1841 XFS_IFORK_SIZE(ip, whichfork) + XFS_BROOT_SIZE_ADJ);
1842 memmove(np, op, cur_max * (uint)sizeof(xfs_dfsbno_t));
1843 return;
1844 }
1845
1846 /*
1847 * rec_diff is less than 0. In this case, we are shrinking the
1848 * if_broot buffer. It must already exist. If we go to zero
1849 * records, just get rid of the root and clear the status bit.
1850 */
1851 ASSERT((ifp->if_broot != NULL) && (ifp->if_broot_bytes > 0));
Christoph Hellwig60197e82008-10-30 17:11:19 +11001852 cur_max = xfs_bmbt_maxrecs(mp, ifp->if_broot_bytes, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 new_max = cur_max + rec_diff;
1854 ASSERT(new_max >= 0);
1855 if (new_max > 0)
1856 new_size = (size_t)XFS_BMAP_BROOT_SPACE_CALC(new_max);
1857 else
1858 new_size = 0;
1859 if (new_size > 0) {
Dave Chinner4a7eddd2010-07-20 17:53:59 +10001860 new_broot = kmem_alloc(new_size, KM_SLEEP | KM_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 /*
1862 * First copy over the btree block header.
1863 */
Christoph Hellwig7cc95a82008-10-30 17:14:34 +11001864 memcpy(new_broot, ifp->if_broot, XFS_BTREE_LBLOCK_LEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 } else {
1866 new_broot = NULL;
1867 ifp->if_flags &= ~XFS_IFBROOT;
1868 }
1869
1870 /*
1871 * Only copy the records and pointers if there are any.
1872 */
1873 if (new_max > 0) {
1874 /*
1875 * First copy the records.
1876 */
Christoph Hellwig136341b2008-10-30 17:11:40 +11001877 op = (char *)XFS_BMBT_REC_ADDR(mp, ifp->if_broot, 1);
1878 np = (char *)XFS_BMBT_REC_ADDR(mp, new_broot, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 memcpy(np, op, new_max * (uint)sizeof(xfs_bmbt_rec_t));
1880
1881 /*
1882 * Then copy the pointers.
1883 */
Christoph Hellwig60197e82008-10-30 17:11:19 +11001884 op = (char *)XFS_BMAP_BROOT_PTR_ADDR(mp, ifp->if_broot, 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 ifp->if_broot_bytes);
Christoph Hellwig60197e82008-10-30 17:11:19 +11001886 np = (char *)XFS_BMAP_BROOT_PTR_ADDR(mp, new_broot, 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 (int)new_size);
1888 memcpy(np, op, new_max * (uint)sizeof(xfs_dfsbno_t));
1889 }
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001890 kmem_free(ifp->if_broot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 ifp->if_broot = new_broot;
1892 ifp->if_broot_bytes = (int)new_size;
1893 ASSERT(ifp->if_broot_bytes <=
1894 XFS_IFORK_SIZE(ip, whichfork) + XFS_BROOT_SIZE_ADJ);
1895 return;
1896}
1897
1898
1899/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 * This is called when the amount of space needed for if_data
1901 * is increased or decreased. The change in size is indicated by
1902 * the number of bytes that need to be added or deleted in the
1903 * byte_diff parameter.
1904 *
1905 * If the amount of space needed has decreased below the size of the
1906 * inline buffer, then switch to using the inline buffer. Otherwise,
1907 * use kmem_realloc() or kmem_alloc() to adjust the size of the buffer
1908 * to what is needed.
1909 *
1910 * ip -- the inode whose if_data area is changing
1911 * byte_diff -- the change in the number of bytes, positive or negative,
1912 * requested for the if_data array.
1913 */
1914void
1915xfs_idata_realloc(
1916 xfs_inode_t *ip,
1917 int byte_diff,
1918 int whichfork)
1919{
1920 xfs_ifork_t *ifp;
1921 int new_size;
1922 int real_size;
1923
1924 if (byte_diff == 0) {
1925 return;
1926 }
1927
1928 ifp = XFS_IFORK_PTR(ip, whichfork);
1929 new_size = (int)ifp->if_bytes + byte_diff;
1930 ASSERT(new_size >= 0);
1931
1932 if (new_size == 0) {
1933 if (ifp->if_u1.if_data != ifp->if_u2.if_inline_data) {
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001934 kmem_free(ifp->if_u1.if_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 }
1936 ifp->if_u1.if_data = NULL;
1937 real_size = 0;
1938 } else if (new_size <= sizeof(ifp->if_u2.if_inline_data)) {
1939 /*
1940 * If the valid extents/data can fit in if_inline_ext/data,
1941 * copy them from the malloc'd vector and free it.
1942 */
1943 if (ifp->if_u1.if_data == NULL) {
1944 ifp->if_u1.if_data = ifp->if_u2.if_inline_data;
1945 } else if (ifp->if_u1.if_data != ifp->if_u2.if_inline_data) {
1946 ASSERT(ifp->if_real_bytes != 0);
1947 memcpy(ifp->if_u2.if_inline_data, ifp->if_u1.if_data,
1948 new_size);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001949 kmem_free(ifp->if_u1.if_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 ifp->if_u1.if_data = ifp->if_u2.if_inline_data;
1951 }
1952 real_size = 0;
1953 } else {
1954 /*
1955 * Stuck with malloc/realloc.
1956 * For inline data, the underlying buffer must be
1957 * a multiple of 4 bytes in size so that it can be
1958 * logged and stay on word boundaries. We enforce
1959 * that here.
1960 */
1961 real_size = roundup(new_size, 4);
1962 if (ifp->if_u1.if_data == NULL) {
1963 ASSERT(ifp->if_real_bytes == 0);
Dave Chinner4a7eddd2010-07-20 17:53:59 +10001964 ifp->if_u1.if_data = kmem_alloc(real_size,
1965 KM_SLEEP | KM_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 } else if (ifp->if_u1.if_data != ifp->if_u2.if_inline_data) {
1967 /*
1968 * Only do the realloc if the underlying size
1969 * is really changing.
1970 */
1971 if (ifp->if_real_bytes != real_size) {
1972 ifp->if_u1.if_data =
1973 kmem_realloc(ifp->if_u1.if_data,
1974 real_size,
1975 ifp->if_real_bytes,
Dave Chinner4a7eddd2010-07-20 17:53:59 +10001976 KM_SLEEP | KM_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 }
1978 } else {
1979 ASSERT(ifp->if_real_bytes == 0);
Dave Chinner4a7eddd2010-07-20 17:53:59 +10001980 ifp->if_u1.if_data = kmem_alloc(real_size,
1981 KM_SLEEP | KM_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 memcpy(ifp->if_u1.if_data, ifp->if_u2.if_inline_data,
1983 ifp->if_bytes);
1984 }
1985 }
1986 ifp->if_real_bytes = real_size;
1987 ifp->if_bytes = new_size;
1988 ASSERT(ifp->if_bytes <= XFS_IFORK_SIZE(ip, whichfork));
1989}
1990
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991void
1992xfs_idestroy_fork(
1993 xfs_inode_t *ip,
1994 int whichfork)
1995{
1996 xfs_ifork_t *ifp;
1997
1998 ifp = XFS_IFORK_PTR(ip, whichfork);
1999 if (ifp->if_broot != NULL) {
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10002000 kmem_free(ifp->if_broot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 ifp->if_broot = NULL;
2002 }
2003
2004 /*
2005 * If the format is local, then we can't have an extents
2006 * array so just look for an inline data array. If we're
2007 * not local then we may or may not have an extents list,
2008 * so check and free it up if we do.
2009 */
2010 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL) {
2011 if ((ifp->if_u1.if_data != ifp->if_u2.if_inline_data) &&
2012 (ifp->if_u1.if_data != NULL)) {
2013 ASSERT(ifp->if_real_bytes != 0);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10002014 kmem_free(ifp->if_u1.if_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 ifp->if_u1.if_data = NULL;
2016 ifp->if_real_bytes = 0;
2017 }
2018 } else if ((ifp->if_flags & XFS_IFEXTENTS) &&
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11002019 ((ifp->if_flags & XFS_IFEXTIREC) ||
2020 ((ifp->if_u1.if_extents != NULL) &&
2021 (ifp->if_u1.if_extents != ifp->if_u2.if_inline_ext)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 ASSERT(ifp->if_real_bytes != 0);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002023 xfs_iext_destroy(ifp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 }
2025 ASSERT(ifp->if_u1.if_extents == NULL ||
2026 ifp->if_u1.if_extents == ifp->if_u2.if_inline_ext);
2027 ASSERT(ifp->if_real_bytes == 0);
2028 if (whichfork == XFS_ATTR_FORK) {
2029 kmem_zone_free(xfs_ifork_zone, ip->i_afp);
2030 ip->i_afp = NULL;
2031 }
2032}
2033
2034/*
Christoph Hellwig60ec67832010-02-17 19:43:56 +00002035 * This is called to unpin an inode. The caller must have the inode locked
2036 * in at least shared mode so that the buffer cannot be subsequently pinned
2037 * once someone is waiting for it to be unpinned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 */
Christoph Hellwig60ec67832010-02-17 19:43:56 +00002039static void
2040xfs_iunpin_nowait(
2041 struct xfs_inode *ip)
David Chinnera3f74ff2008-03-06 13:43:42 +11002042{
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10002043 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
David Chinnera3f74ff2008-03-06 13:43:42 +11002044
Dave Chinner4aaf15d2010-03-08 11:24:07 +11002045 trace_xfs_inode_unpin_nowait(ip, _RET_IP_);
2046
David Chinnera3f74ff2008-03-06 13:43:42 +11002047 /* Give the log a push to start the unpinning I/O */
Christoph Hellwig60ec67832010-02-17 19:43:56 +00002048 xfs_log_force_lsn(ip->i_mount, ip->i_itemp->ili_last_lsn, 0);
Christoph Hellwiga14a3482010-01-19 09:56:46 +00002049
David Chinnera3f74ff2008-03-06 13:43:42 +11002050}
2051
Dave Chinner777df5a2010-02-06 12:37:26 +11002052void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053xfs_iunpin_wait(
Christoph Hellwig60ec67832010-02-17 19:43:56 +00002054 struct xfs_inode *ip)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055{
Christoph Hellwig60ec67832010-02-17 19:43:56 +00002056 if (xfs_ipincount(ip)) {
2057 xfs_iunpin_nowait(ip);
2058 wait_event(ip->i_ipin_wait, (xfs_ipincount(ip) == 0));
2059 }
David Chinnera3f74ff2008-03-06 13:43:42 +11002060}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062/*
2063 * xfs_iextents_copy()
2064 *
2065 * This is called to copy the REAL extents (as opposed to the delayed
2066 * allocation extents) from the inode into the given buffer. It
2067 * returns the number of bytes copied into the buffer.
2068 *
2069 * If there are no delayed allocation extents, then we can just
2070 * memcpy() the extents into the buffer. Otherwise, we need to
2071 * examine each extent in turn and skip those which are delayed.
2072 */
2073int
2074xfs_iextents_copy(
2075 xfs_inode_t *ip,
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10002076 xfs_bmbt_rec_t *dp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 int whichfork)
2078{
2079 int copied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 int i;
2081 xfs_ifork_t *ifp;
2082 int nrecs;
2083 xfs_fsblock_t start_block;
2084
2085 ifp = XFS_IFORK_PTR(ip, whichfork);
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10002086 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 ASSERT(ifp->if_bytes > 0);
2088
2089 nrecs = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
Eric Sandeen3a59c942007-07-11 11:09:47 +10002090 XFS_BMAP_TRACE_EXLIST(ip, nrecs, whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 ASSERT(nrecs > 0);
2092
2093 /*
2094 * There are some delayed allocation extents in the
2095 * inode, so copy the extents one at a time and skip
2096 * the delayed ones. There must be at least one
2097 * non-delayed extent.
2098 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 copied = 0;
2100 for (i = 0; i < nrecs; i++) {
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10002101 xfs_bmbt_rec_host_t *ep = xfs_iext_get_ext(ifp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 start_block = xfs_bmbt_get_startblock(ep);
Eric Sandeen9d87c312009-01-14 23:22:07 -06002103 if (isnullstartblock(start_block)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 /*
2105 * It's a delayed allocation extent, so skip it.
2106 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 continue;
2108 }
2109
2110 /* Translate to on disk format */
Christoph Hellwigcd8b0a92007-08-16 16:24:15 +10002111 put_unaligned(cpu_to_be64(ep->l0), &dp->l0);
2112 put_unaligned(cpu_to_be64(ep->l1), &dp->l1);
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10002113 dp++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 copied++;
2115 }
2116 ASSERT(copied != 0);
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10002117 xfs_validate_extents(ifp, copied, XFS_EXTFMT_INODE(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
2119 return (copied * (uint)sizeof(xfs_bmbt_rec_t));
2120}
2121
2122/*
2123 * Each of the following cases stores data into the same region
2124 * of the on-disk inode, so only one of them can be valid at
2125 * any given time. While it is possible to have conflicting formats
2126 * and log flags, e.g. having XFS_ILOG_?DATA set when the fork is
2127 * in EXTENTS format, this can only happen when the fork has
2128 * changed formats after being modified but before being flushed.
2129 * In these cases, the format always takes precedence, because the
2130 * format indicates the current state of the fork.
2131 */
2132/*ARGSUSED*/
David Chinnere4ac9672008-04-10 12:23:58 +10002133STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134xfs_iflush_fork(
2135 xfs_inode_t *ip,
2136 xfs_dinode_t *dip,
2137 xfs_inode_log_item_t *iip,
2138 int whichfork,
2139 xfs_buf_t *bp)
2140{
2141 char *cp;
2142 xfs_ifork_t *ifp;
2143 xfs_mount_t *mp;
2144#ifdef XFS_TRANS_DEBUG
2145 int first;
2146#endif
2147 static const short brootflag[2] =
2148 { XFS_ILOG_DBROOT, XFS_ILOG_ABROOT };
2149 static const short dataflag[2] =
2150 { XFS_ILOG_DDATA, XFS_ILOG_ADATA };
2151 static const short extflag[2] =
2152 { XFS_ILOG_DEXT, XFS_ILOG_AEXT };
2153
David Chinnere4ac9672008-04-10 12:23:58 +10002154 if (!iip)
2155 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 ifp = XFS_IFORK_PTR(ip, whichfork);
2157 /*
2158 * This can happen if we gave up in iformat in an error path,
2159 * for the attribute fork.
2160 */
David Chinnere4ac9672008-04-10 12:23:58 +10002161 if (!ifp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 ASSERT(whichfork == XFS_ATTR_FORK);
David Chinnere4ac9672008-04-10 12:23:58 +10002163 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 }
2165 cp = XFS_DFORK_PTR(dip, whichfork);
2166 mp = ip->i_mount;
2167 switch (XFS_IFORK_FORMAT(ip, whichfork)) {
2168 case XFS_DINODE_FMT_LOCAL:
2169 if ((iip->ili_format.ilf_fields & dataflag[whichfork]) &&
2170 (ifp->if_bytes > 0)) {
2171 ASSERT(ifp->if_u1.if_data != NULL);
2172 ASSERT(ifp->if_bytes <= XFS_IFORK_SIZE(ip, whichfork));
2173 memcpy(cp, ifp->if_u1.if_data, ifp->if_bytes);
2174 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 break;
2176
2177 case XFS_DINODE_FMT_EXTENTS:
2178 ASSERT((ifp->if_flags & XFS_IFEXTENTS) ||
2179 !(iip->ili_format.ilf_fields & extflag[whichfork]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 if ((iip->ili_format.ilf_fields & extflag[whichfork]) &&
2181 (ifp->if_bytes > 0)) {
Christoph Hellwigab1908a2011-05-11 15:04:10 +00002182 ASSERT(xfs_iext_get_ext(ifp, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 ASSERT(XFS_IFORK_NEXTENTS(ip, whichfork) > 0);
2184 (void)xfs_iextents_copy(ip, (xfs_bmbt_rec_t *)cp,
2185 whichfork);
2186 }
2187 break;
2188
2189 case XFS_DINODE_FMT_BTREE:
2190 if ((iip->ili_format.ilf_fields & brootflag[whichfork]) &&
2191 (ifp->if_broot_bytes > 0)) {
2192 ASSERT(ifp->if_broot != NULL);
2193 ASSERT(ifp->if_broot_bytes <=
2194 (XFS_IFORK_SIZE(ip, whichfork) +
2195 XFS_BROOT_SIZE_ADJ));
Christoph Hellwig60197e82008-10-30 17:11:19 +11002196 xfs_bmbt_to_bmdr(mp, ifp->if_broot, ifp->if_broot_bytes,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 (xfs_bmdr_block_t *)cp,
2198 XFS_DFORK_SIZE(dip, mp, whichfork));
2199 }
2200 break;
2201
2202 case XFS_DINODE_FMT_DEV:
2203 if (iip->ili_format.ilf_fields & XFS_ILOG_DEV) {
2204 ASSERT(whichfork == XFS_DATA_FORK);
Christoph Hellwig81591fe2008-11-28 14:23:39 +11002205 xfs_dinode_put_rdev(dip, ip->i_df.if_u2.if_rdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 }
2207 break;
2208
2209 case XFS_DINODE_FMT_UUID:
2210 if (iip->ili_format.ilf_fields & XFS_ILOG_UUID) {
2211 ASSERT(whichfork == XFS_DATA_FORK);
Christoph Hellwig81591fe2008-11-28 14:23:39 +11002212 memcpy(XFS_DFORK_DPTR(dip),
2213 &ip->i_df.if_u2.if_uuid,
2214 sizeof(uuid_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 }
2216 break;
2217
2218 default:
2219 ASSERT(0);
2220 break;
2221 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222}
2223
David Chinnerbad55842008-03-06 13:43:49 +11002224STATIC int
2225xfs_iflush_cluster(
2226 xfs_inode_t *ip,
2227 xfs_buf_t *bp)
2228{
2229 xfs_mount_t *mp = ip->i_mount;
Dave Chinner5017e972010-01-11 11:47:40 +00002230 struct xfs_perag *pag;
David Chinnerbad55842008-03-06 13:43:49 +11002231 unsigned long first_index, mask;
David Chinnerc8f5f122008-05-20 11:30:15 +10002232 unsigned long inodes_per_cluster;
David Chinnerbad55842008-03-06 13:43:49 +11002233 int ilist_size;
2234 xfs_inode_t **ilist;
2235 xfs_inode_t *iq;
David Chinnerbad55842008-03-06 13:43:49 +11002236 int nr_found;
2237 int clcount = 0;
2238 int bufwasdelwri;
2239 int i;
2240
Dave Chinner5017e972010-01-11 11:47:40 +00002241 pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ip->i_ino));
David Chinnerbad55842008-03-06 13:43:49 +11002242
David Chinnerc8f5f122008-05-20 11:30:15 +10002243 inodes_per_cluster = XFS_INODE_CLUSTER_SIZE(mp) >> mp->m_sb.sb_inodelog;
2244 ilist_size = inodes_per_cluster * sizeof(xfs_inode_t *);
David Chinner49383b02008-05-19 16:29:34 +10002245 ilist = kmem_alloc(ilist_size, KM_MAYFAIL|KM_NOFS);
David Chinnerbad55842008-03-06 13:43:49 +11002246 if (!ilist)
Dave Chinner44b56e02010-01-11 11:47:43 +00002247 goto out_put;
David Chinnerbad55842008-03-06 13:43:49 +11002248
2249 mask = ~(((XFS_INODE_CLUSTER_SIZE(mp) >> mp->m_sb.sb_inodelog)) - 1);
2250 first_index = XFS_INO_TO_AGINO(mp, ip->i_ino) & mask;
Dave Chinner1a3e8f32010-12-17 17:29:43 +11002251 rcu_read_lock();
David Chinnerbad55842008-03-06 13:43:49 +11002252 /* really need a gang lookup range call here */
2253 nr_found = radix_tree_gang_lookup(&pag->pag_ici_root, (void**)ilist,
David Chinnerc8f5f122008-05-20 11:30:15 +10002254 first_index, inodes_per_cluster);
David Chinnerbad55842008-03-06 13:43:49 +11002255 if (nr_found == 0)
2256 goto out_free;
2257
2258 for (i = 0; i < nr_found; i++) {
2259 iq = ilist[i];
2260 if (iq == ip)
2261 continue;
Dave Chinner1a3e8f32010-12-17 17:29:43 +11002262
2263 /*
2264 * because this is an RCU protected lookup, we could find a
2265 * recently freed or even reallocated inode during the lookup.
2266 * We need to check under the i_flags_lock for a valid inode
2267 * here. Skip it if it is not valid or the wrong inode.
2268 */
2269 spin_lock(&ip->i_flags_lock);
2270 if (!ip->i_ino ||
2271 (XFS_INO_TO_AGINO(mp, iq->i_ino) & mask) != first_index) {
2272 spin_unlock(&ip->i_flags_lock);
2273 continue;
2274 }
2275 spin_unlock(&ip->i_flags_lock);
2276
David Chinnerbad55842008-03-06 13:43:49 +11002277 /*
2278 * Do an un-protected check to see if the inode is dirty and
2279 * is a candidate for flushing. These checks will be repeated
2280 * later after the appropriate locks are acquired.
2281 */
David Chinner33540402008-03-06 13:43:59 +11002282 if (xfs_inode_clean(iq) && xfs_ipincount(iq) == 0)
David Chinnerbad55842008-03-06 13:43:49 +11002283 continue;
David Chinnerbad55842008-03-06 13:43:49 +11002284
2285 /*
2286 * Try to get locks. If any are unavailable or it is pinned,
2287 * then this inode cannot be flushed and is skipped.
2288 */
2289
2290 if (!xfs_ilock_nowait(iq, XFS_ILOCK_SHARED))
2291 continue;
2292 if (!xfs_iflock_nowait(iq)) {
2293 xfs_iunlock(iq, XFS_ILOCK_SHARED);
2294 continue;
2295 }
2296 if (xfs_ipincount(iq)) {
2297 xfs_ifunlock(iq);
2298 xfs_iunlock(iq, XFS_ILOCK_SHARED);
2299 continue;
2300 }
2301
2302 /*
2303 * arriving here means that this inode can be flushed. First
2304 * re-check that it's dirty before flushing.
2305 */
David Chinner33540402008-03-06 13:43:59 +11002306 if (!xfs_inode_clean(iq)) {
2307 int error;
David Chinnerbad55842008-03-06 13:43:49 +11002308 error = xfs_iflush_int(iq, bp);
2309 if (error) {
2310 xfs_iunlock(iq, XFS_ILOCK_SHARED);
2311 goto cluster_corrupt_out;
2312 }
2313 clcount++;
2314 } else {
2315 xfs_ifunlock(iq);
2316 }
2317 xfs_iunlock(iq, XFS_ILOCK_SHARED);
2318 }
2319
2320 if (clcount) {
2321 XFS_STATS_INC(xs_icluster_flushcnt);
2322 XFS_STATS_ADD(xs_icluster_flushinode, clcount);
2323 }
2324
2325out_free:
Dave Chinner1a3e8f32010-12-17 17:29:43 +11002326 rcu_read_unlock();
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10002327 kmem_free(ilist);
Dave Chinner44b56e02010-01-11 11:47:43 +00002328out_put:
2329 xfs_perag_put(pag);
David Chinnerbad55842008-03-06 13:43:49 +11002330 return 0;
2331
2332
2333cluster_corrupt_out:
2334 /*
2335 * Corruption detected in the clustering loop. Invalidate the
2336 * inode buffer and shut down the filesystem.
2337 */
Dave Chinner1a3e8f32010-12-17 17:29:43 +11002338 rcu_read_unlock();
David Chinnerbad55842008-03-06 13:43:49 +11002339 /*
2340 * Clean up the buffer. If it was B_DELWRI, just release it --
2341 * brelse can handle it with no problems. If not, shut down the
2342 * filesystem before releasing the buffer.
2343 */
2344 bufwasdelwri = XFS_BUF_ISDELAYWRITE(bp);
2345 if (bufwasdelwri)
2346 xfs_buf_relse(bp);
2347
2348 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
2349
2350 if (!bufwasdelwri) {
2351 /*
2352 * Just like incore_relse: if we have b_iodone functions,
2353 * mark the buffer as an error and call them. Otherwise
2354 * mark it as stale and brelse.
2355 */
Christoph Hellwigcb669ca2011-07-13 13:43:49 +02002356 if (bp->b_iodone) {
David Chinnerbad55842008-03-06 13:43:49 +11002357 XFS_BUF_UNDONE(bp);
Christoph Hellwigc867cb62011-10-10 16:52:46 +00002358 xfs_buf_stale(bp);
Chandra Seetharaman5a52c2a582011-07-22 23:39:51 +00002359 xfs_buf_ioerror(bp, EIO);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00002360 xfs_buf_ioend(bp, 0);
David Chinnerbad55842008-03-06 13:43:49 +11002361 } else {
Christoph Hellwigc867cb62011-10-10 16:52:46 +00002362 xfs_buf_stale(bp);
David Chinnerbad55842008-03-06 13:43:49 +11002363 xfs_buf_relse(bp);
2364 }
2365 }
2366
2367 /*
2368 * Unlocks the flush lock
2369 */
2370 xfs_iflush_abort(iq);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10002371 kmem_free(ilist);
Dave Chinner44b56e02010-01-11 11:47:43 +00002372 xfs_perag_put(pag);
David Chinnerbad55842008-03-06 13:43:49 +11002373 return XFS_ERROR(EFSCORRUPTED);
2374}
2375
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376/*
2377 * xfs_iflush() will write a modified inode's changes out to the
2378 * inode's on disk home. The caller must have the inode lock held
David Chinnerc63942d2008-08-13 16:41:16 +10002379 * in at least shared mode and the inode flush completion must be
2380 * active as well. The inode lock will still be held upon return from
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 * the call and the caller is free to unlock it.
David Chinnerc63942d2008-08-13 16:41:16 +10002382 * The inode flush will be completed when the inode reaches the disk.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 * The flags indicate how the inode's buffer should be written out.
2384 */
2385int
2386xfs_iflush(
2387 xfs_inode_t *ip,
2388 uint flags)
2389{
2390 xfs_inode_log_item_t *iip;
2391 xfs_buf_t *bp;
2392 xfs_dinode_t *dip;
2393 xfs_mount_t *mp;
2394 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395
2396 XFS_STATS_INC(xs_iflush_count);
2397
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10002398 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
Christoph Hellwig474fce02011-12-18 20:00:09 +00002399 ASSERT(xfs_isiflocked(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 ASSERT(ip->i_d.di_format != XFS_DINODE_FMT_BTREE ||
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00002401 ip->i_d.di_nextents > XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
2403 iip = ip->i_itemp;
2404 mp = ip->i_mount;
2405
2406 /*
David Chinnera3f74ff2008-03-06 13:43:42 +11002407 * We can't flush the inode until it is unpinned, so wait for it if we
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002408 * are allowed to block. We know no one new can pin it, because we are
David Chinnera3f74ff2008-03-06 13:43:42 +11002409 * holding the inode lock shared and you need to hold it exclusively to
2410 * pin the inode.
2411 *
2412 * If we are not allowed to block, force the log out asynchronously so
2413 * that when we come back the inode will be unpinned. If other inodes
2414 * in the same cluster are dirty, they will probably write the inode
2415 * out for us if they occur after the log force completes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 */
Dave Chinnerc8543632010-02-06 12:39:36 +11002417 if (!(flags & SYNC_WAIT) && xfs_ipincount(ip)) {
David Chinnera3f74ff2008-03-06 13:43:42 +11002418 xfs_iunpin_nowait(ip);
2419 xfs_ifunlock(ip);
2420 return EAGAIN;
2421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 xfs_iunpin_wait(ip);
2423
2424 /*
Dave Chinner4b6a4682010-01-11 11:45:21 +00002425 * For stale inodes we cannot rely on the backing buffer remaining
2426 * stale in cache for the remaining life of the stale inode and so
2427 * xfs_itobp() below may give us a buffer that no longer contains
2428 * inodes below. We have to check this after ensuring the inode is
2429 * unpinned so that it is safe to reclaim the stale inode after the
2430 * flush call.
2431 */
2432 if (xfs_iflags_test(ip, XFS_ISTALE)) {
2433 xfs_ifunlock(ip);
2434 return 0;
2435 }
2436
2437 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 * This may have been unpinned because the filesystem is shutting
2439 * down forcibly. If that's the case we must not write this inode
2440 * to disk, because the log record didn't make it to disk!
2441 */
2442 if (XFS_FORCED_SHUTDOWN(mp)) {
2443 ip->i_update_core = 0;
2444 if (iip)
2445 iip->ili_format.ilf_fields = 0;
2446 xfs_ifunlock(ip);
2447 return XFS_ERROR(EIO);
2448 }
2449
2450 /*
David Chinnera3f74ff2008-03-06 13:43:42 +11002451 * Get the buffer containing the on-disk inode.
2452 */
Christoph Hellwig76d8b272008-11-28 14:23:40 +11002453 error = xfs_itobp(mp, NULL, ip, &dip, &bp,
Dave Chinner1bfd8d02011-03-26 09:13:55 +11002454 (flags & SYNC_TRYLOCK) ? XBF_TRYLOCK : XBF_LOCK);
David Chinnera3f74ff2008-03-06 13:43:42 +11002455 if (error || !bp) {
2456 xfs_ifunlock(ip);
2457 return error;
2458 }
2459
2460 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 * First flush out the inode that xfs_iflush was called with.
2462 */
2463 error = xfs_iflush_int(ip, bp);
David Chinnerbad55842008-03-06 13:43:49 +11002464 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 goto corrupt_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466
2467 /*
David Chinnera3f74ff2008-03-06 13:43:42 +11002468 * If the buffer is pinned then push on the log now so we won't
2469 * get stuck waiting in the write for too long.
2470 */
Chandra Seetharaman811e64c2011-07-22 23:40:27 +00002471 if (xfs_buf_ispinned(bp))
Christoph Hellwiga14a3482010-01-19 09:56:46 +00002472 xfs_log_force(mp, 0);
David Chinnera3f74ff2008-03-06 13:43:42 +11002473
2474 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 * inode clustering:
2476 * see if other inodes can be gathered into this write
2477 */
David Chinnerbad55842008-03-06 13:43:49 +11002478 error = xfs_iflush_cluster(ip, bp);
2479 if (error)
2480 goto cluster_corrupt_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481
Dave Chinnerc8543632010-02-06 12:39:36 +11002482 if (flags & SYNC_WAIT)
Christoph Hellwigc2b006c2011-08-23 08:28:07 +00002483 error = xfs_bwrite(bp);
2484 else
Christoph Hellwig61551f12011-08-23 08:28:06 +00002485 xfs_buf_delwri_queue(bp);
Christoph Hellwigc2b006c2011-08-23 08:28:07 +00002486
2487 xfs_buf_relse(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 return error;
2489
2490corrupt_out:
2491 xfs_buf_relse(bp);
Nathan Scott7d04a332006-06-09 14:58:38 +10002492 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493cluster_corrupt_out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 /*
2495 * Unlocks the flush lock
2496 */
David Chinnerbad55842008-03-06 13:43:49 +11002497 xfs_iflush_abort(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 return XFS_ERROR(EFSCORRUPTED);
2499}
2500
2501
2502STATIC int
2503xfs_iflush_int(
2504 xfs_inode_t *ip,
2505 xfs_buf_t *bp)
2506{
2507 xfs_inode_log_item_t *iip;
2508 xfs_dinode_t *dip;
2509 xfs_mount_t *mp;
2510#ifdef XFS_TRANS_DEBUG
2511 int first;
2512#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513
Christoph Hellwig579aa9c2008-04-22 17:34:00 +10002514 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
Christoph Hellwig474fce02011-12-18 20:00:09 +00002515 ASSERT(xfs_isiflocked(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 ASSERT(ip->i_d.di_format != XFS_DINODE_FMT_BTREE ||
Christoph Hellwig8096b1e2011-12-18 20:00:07 +00002517 ip->i_d.di_nextents > XFS_IFORK_MAXEXT(ip, XFS_DATA_FORK));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518
2519 iip = ip->i_itemp;
2520 mp = ip->i_mount;
2521
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 /* set *dip = inode's place in the buffer */
Christoph Hellwig92bfc6e2008-11-28 14:23:41 +11002523 dip = (xfs_dinode_t *)xfs_buf_offset(bp, ip->i_imap.im_boffset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524
2525 /*
2526 * Clear i_update_core before copying out the data.
2527 * This is for coordination with our timestamp updates
2528 * that don't hold the inode lock. They will always
2529 * update the timestamps BEFORE setting i_update_core,
2530 * so if we clear i_update_core after they set it we
2531 * are guaranteed to see their updates to the timestamps.
2532 * I believe that this depends on strongly ordered memory
2533 * semantics, but we have that. We use the SYNCHRONIZE
2534 * macro to make sure that the compiler does not reorder
2535 * the i_update_core access below the data copy below.
2536 */
2537 ip->i_update_core = 0;
2538 SYNCHRONIZE();
2539
Christoph Hellwig42fe2b12006-01-11 15:35:17 +11002540 /*
Christoph Hellwigf9581b12009-10-06 20:29:26 +00002541 * Make sure to get the latest timestamps from the Linux inode.
Christoph Hellwig42fe2b12006-01-11 15:35:17 +11002542 */
Christoph Hellwigf9581b12009-10-06 20:29:26 +00002543 xfs_synchronize_times(ip);
Christoph Hellwig42fe2b12006-01-11 15:35:17 +11002544
Christoph Hellwig69ef9212011-07-08 14:36:05 +02002545 if (XFS_TEST_ERROR(dip->di_magic != cpu_to_be16(XFS_DINODE_MAGIC),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 mp, XFS_ERRTAG_IFLUSH_1, XFS_RANDOM_IFLUSH_1)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11002547 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
2548 "%s: Bad inode %Lu magic number 0x%x, ptr 0x%p",
2549 __func__, ip->i_ino, be16_to_cpu(dip->di_magic), dip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 goto corrupt_out;
2551 }
2552 if (XFS_TEST_ERROR(ip->i_d.di_magic != XFS_DINODE_MAGIC,
2553 mp, XFS_ERRTAG_IFLUSH_2, XFS_RANDOM_IFLUSH_2)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11002554 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
2555 "%s: Bad inode %Lu, ptr 0x%p, magic number 0x%x",
2556 __func__, ip->i_ino, ip, ip->i_d.di_magic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 goto corrupt_out;
2558 }
Al Viroabbede12011-07-26 02:31:30 -04002559 if (S_ISREG(ip->i_d.di_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 if (XFS_TEST_ERROR(
2561 (ip->i_d.di_format != XFS_DINODE_FMT_EXTENTS) &&
2562 (ip->i_d.di_format != XFS_DINODE_FMT_BTREE),
2563 mp, XFS_ERRTAG_IFLUSH_3, XFS_RANDOM_IFLUSH_3)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11002564 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
2565 "%s: Bad regular inode %Lu, ptr 0x%p",
2566 __func__, ip->i_ino, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 goto corrupt_out;
2568 }
Al Viroabbede12011-07-26 02:31:30 -04002569 } else if (S_ISDIR(ip->i_d.di_mode)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 if (XFS_TEST_ERROR(
2571 (ip->i_d.di_format != XFS_DINODE_FMT_EXTENTS) &&
2572 (ip->i_d.di_format != XFS_DINODE_FMT_BTREE) &&
2573 (ip->i_d.di_format != XFS_DINODE_FMT_LOCAL),
2574 mp, XFS_ERRTAG_IFLUSH_4, XFS_RANDOM_IFLUSH_4)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11002575 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
2576 "%s: Bad directory inode %Lu, ptr 0x%p",
2577 __func__, ip->i_ino, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 goto corrupt_out;
2579 }
2580 }
2581 if (XFS_TEST_ERROR(ip->i_d.di_nextents + ip->i_d.di_anextents >
2582 ip->i_d.di_nblocks, mp, XFS_ERRTAG_IFLUSH_5,
2583 XFS_RANDOM_IFLUSH_5)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11002584 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
2585 "%s: detected corrupt incore inode %Lu, "
2586 "total extents = %d, nblocks = %Ld, ptr 0x%p",
2587 __func__, ip->i_ino,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 ip->i_d.di_nextents + ip->i_d.di_anextents,
Dave Chinner6a19d932011-03-07 10:02:35 +11002589 ip->i_d.di_nblocks, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 goto corrupt_out;
2591 }
2592 if (XFS_TEST_ERROR(ip->i_d.di_forkoff > mp->m_sb.sb_inodesize,
2593 mp, XFS_ERRTAG_IFLUSH_6, XFS_RANDOM_IFLUSH_6)) {
Dave Chinner6a19d932011-03-07 10:02:35 +11002594 xfs_alert_tag(mp, XFS_PTAG_IFLUSH,
2595 "%s: bad inode %Lu, forkoff 0x%x, ptr 0x%p",
2596 __func__, ip->i_ino, ip->i_d.di_forkoff, ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 goto corrupt_out;
2598 }
2599 /*
2600 * bump the flush iteration count, used to detect flushes which
2601 * postdate a log record during recovery.
2602 */
2603
2604 ip->i_d.di_flushiter++;
2605
2606 /*
2607 * Copy the dirty parts of the inode into the on-disk
2608 * inode. We always copy out the core of the inode,
2609 * because if the inode is dirty at all the core must
2610 * be.
2611 */
Christoph Hellwig81591fe2008-11-28 14:23:39 +11002612 xfs_dinode_to_disk(dip, &ip->i_d);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613
2614 /* Wrap, we never let the log put out DI_MAX_FLUSH */
2615 if (ip->i_d.di_flushiter == DI_MAX_FLUSH)
2616 ip->i_d.di_flushiter = 0;
2617
2618 /*
2619 * If this is really an old format inode and the superblock version
2620 * has not been updated to support only new format inodes, then
2621 * convert back to the old inode format. If the superblock version
2622 * has been updated, then make the conversion permanent.
2623 */
Christoph Hellwig51ce16d2008-11-28 14:23:39 +11002624 ASSERT(ip->i_d.di_version == 1 || xfs_sb_version_hasnlink(&mp->m_sb));
2625 if (ip->i_d.di_version == 1) {
Eric Sandeen62118702008-03-06 13:44:28 +11002626 if (!xfs_sb_version_hasnlink(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 /*
2628 * Convert it back.
2629 */
2630 ASSERT(ip->i_d.di_nlink <= XFS_MAXLINK_1);
Christoph Hellwig81591fe2008-11-28 14:23:39 +11002631 dip->di_onlink = cpu_to_be16(ip->i_d.di_nlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 } else {
2633 /*
2634 * The superblock version has already been bumped,
2635 * so just make the conversion to the new inode
2636 * format permanent.
2637 */
Christoph Hellwig51ce16d2008-11-28 14:23:39 +11002638 ip->i_d.di_version = 2;
2639 dip->di_version = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 ip->i_d.di_onlink = 0;
Christoph Hellwig81591fe2008-11-28 14:23:39 +11002641 dip->di_onlink = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 memset(&(ip->i_d.di_pad[0]), 0, sizeof(ip->i_d.di_pad));
Christoph Hellwig81591fe2008-11-28 14:23:39 +11002643 memset(&(dip->di_pad[0]), 0,
2644 sizeof(dip->di_pad));
Arkadiusz Mi?kiewicz67430992010-09-26 06:10:18 +00002645 ASSERT(xfs_get_projid(ip) == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 }
2647 }
2648
David Chinnere4ac9672008-04-10 12:23:58 +10002649 xfs_iflush_fork(ip, dip, iip, XFS_DATA_FORK, bp);
2650 if (XFS_IFORK_Q(ip))
2651 xfs_iflush_fork(ip, dip, iip, XFS_ATTR_FORK, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 xfs_inobp_check(mp, bp);
2653
2654 /*
2655 * We've recorded everything logged in the inode, so we'd
2656 * like to clear the ilf_fields bits so we don't log and
2657 * flush things unnecessarily. However, we can't stop
2658 * logging all this information until the data we've copied
2659 * into the disk buffer is written to disk. If we did we might
2660 * overwrite the copy of the inode in the log with all the
2661 * data after re-logging only part of it, and in the face of
2662 * a crash we wouldn't have all the data we need to recover.
2663 *
2664 * What we do is move the bits to the ili_last_fields field.
2665 * When logging the inode, these bits are moved back to the
2666 * ilf_fields field. In the xfs_iflush_done() routine we
2667 * clear ili_last_fields, since we know that the information
2668 * those bits represent is permanently on disk. As long as
2669 * the flush completes before the inode is logged again, then
2670 * both ilf_fields and ili_last_fields will be cleared.
2671 *
2672 * We can play with the ilf_fields bits here, because the inode
2673 * lock must be held exclusively in order to set bits there
2674 * and the flush lock protects the ili_last_fields bits.
2675 * Set ili_logged so the flush done
2676 * routine can tell whether or not to look in the AIL.
2677 * Also, store the current LSN of the inode so that we can tell
2678 * whether the item has moved in the AIL from xfs_iflush_done().
2679 * In order to read the lsn we need the AIL lock, because
2680 * it is a 64 bit value that cannot be read atomically.
2681 */
2682 if (iip != NULL && iip->ili_format.ilf_fields != 0) {
2683 iip->ili_last_fields = iip->ili_format.ilf_fields;
2684 iip->ili_format.ilf_fields = 0;
2685 iip->ili_logged = 1;
2686
David Chinner7b2e2a32008-10-30 17:39:12 +11002687 xfs_trans_ail_copy_lsn(mp->m_ail, &iip->ili_flush_lsn,
2688 &iip->ili_item.li_lsn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689
2690 /*
2691 * Attach the function xfs_iflush_done to the inode's
2692 * buffer. This will remove the inode from the AIL
2693 * and unlock the inode's flush lock when the inode is
2694 * completely written to disk.
2695 */
Christoph Hellwigca30b2a2010-06-23 18:11:15 +10002696 xfs_buf_attach_iodone(bp, xfs_iflush_done, &iip->ili_item);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697
Christoph Hellwigadadbee2011-07-13 13:43:49 +02002698 ASSERT(bp->b_fspriv != NULL);
Christoph Hellwigcb669ca2011-07-13 13:43:49 +02002699 ASSERT(bp->b_iodone != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 } else {
2701 /*
2702 * We're flushing an inode which is not in the AIL and has
2703 * not been logged but has i_update_core set. For this
2704 * case we can use a B_DELWRI flush and immediately drop
2705 * the inode flush lock because we can avoid the whole
2706 * AIL state thing. It's OK to drop the flush lock now,
2707 * because we've already locked the buffer and to do anything
2708 * you really need both.
2709 */
2710 if (iip != NULL) {
2711 ASSERT(iip->ili_logged == 0);
2712 ASSERT(iip->ili_last_fields == 0);
2713 ASSERT((iip->ili_item.li_flags & XFS_LI_IN_AIL) == 0);
2714 }
2715 xfs_ifunlock(ip);
2716 }
2717
2718 return 0;
2719
2720corrupt_out:
2721 return XFS_ERROR(EFSCORRUPTED);
2722}
2723
Christoph Hellwig4dd2cb42011-11-29 12:06:14 -06002724void
2725xfs_promote_inode(
2726 struct xfs_inode *ip)
2727{
2728 struct xfs_buf *bp;
2729
2730 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
2731
2732 bp = xfs_incore(ip->i_mount->m_ddev_targp, ip->i_imap.im_blkno,
2733 ip->i_imap.im_len, XBF_TRYLOCK);
2734 if (!bp)
2735 return;
2736
2737 if (XFS_BUF_ISDELAYWRITE(bp)) {
2738 xfs_buf_delwri_promote(bp);
2739 wake_up_process(ip->i_mount->m_ddev_targp->bt_task);
2740 }
2741
2742 xfs_buf_relse(bp);
2743}
2744
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002745/*
2746 * Return a pointer to the extent record at file index idx.
2747 */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10002748xfs_bmbt_rec_host_t *
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002749xfs_iext_get_ext(
2750 xfs_ifork_t *ifp, /* inode fork pointer */
2751 xfs_extnum_t idx) /* index of target extent */
2752{
2753 ASSERT(idx >= 0);
Christoph Hellwig87bef182011-05-11 15:04:11 +00002754 ASSERT(idx < ifp->if_bytes / sizeof(xfs_bmbt_rec_t));
2755
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11002756 if ((ifp->if_flags & XFS_IFEXTIREC) && (idx == 0)) {
2757 return ifp->if_u1.if_ext_irec->er_extbuf;
2758 } else if (ifp->if_flags & XFS_IFEXTIREC) {
2759 xfs_ext_irec_t *erp; /* irec pointer */
2760 int erp_idx = 0; /* irec index */
2761 xfs_extnum_t page_idx = idx; /* ext index in target list */
2762
2763 erp = xfs_iext_idx_to_irec(ifp, &page_idx, &erp_idx, 0);
2764 return &erp->er_extbuf[page_idx];
2765 } else if (ifp->if_bytes) {
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002766 return &ifp->if_u1.if_extents[idx];
2767 } else {
2768 return NULL;
2769 }
2770}
2771
2772/*
2773 * Insert new item(s) into the extent records for incore inode
2774 * fork 'ifp'. 'count' new items are inserted at index 'idx'.
2775 */
2776void
2777xfs_iext_insert(
Christoph Hellwig6ef35542009-11-25 00:00:21 +00002778 xfs_inode_t *ip, /* incore inode pointer */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002779 xfs_extnum_t idx, /* starting index of new items */
2780 xfs_extnum_t count, /* number of inserted items */
Christoph Hellwig6ef35542009-11-25 00:00:21 +00002781 xfs_bmbt_irec_t *new, /* items to insert */
2782 int state) /* type of extent conversion */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002783{
Christoph Hellwig6ef35542009-11-25 00:00:21 +00002784 xfs_ifork_t *ifp = (state & BMAP_ATTRFORK) ? ip->i_afp : &ip->i_df;
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002785 xfs_extnum_t i; /* extent record index */
2786
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002787 trace_xfs_iext_insert(ip, idx, new, state, _RET_IP_);
2788
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002789 ASSERT(ifp->if_flags & XFS_IFEXTENTS);
2790 xfs_iext_add(ifp, idx, count);
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10002791 for (i = idx; i < idx + count; i++, new++)
2792 xfs_bmbt_set_all(xfs_iext_get_ext(ifp, i), new);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002793}
2794
2795/*
2796 * This is called when the amount of space required for incore file
2797 * extents needs to be increased. The ext_diff parameter stores the
2798 * number of new extents being added and the idx parameter contains
2799 * the extent index where the new extents will be added. If the new
2800 * extents are being appended, then we just need to (re)allocate and
2801 * initialize the space. Otherwise, if the new extents are being
2802 * inserted into the middle of the existing entries, a bit more work
2803 * is required to make room for the new extents to be inserted. The
2804 * caller is responsible for filling in the new extent entries upon
2805 * return.
2806 */
2807void
2808xfs_iext_add(
2809 xfs_ifork_t *ifp, /* inode fork pointer */
2810 xfs_extnum_t idx, /* index to begin adding exts */
Nathan Scottc41564b2006-03-29 08:55:14 +10002811 int ext_diff) /* number of extents to add */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002812{
2813 int byte_diff; /* new bytes being added */
2814 int new_size; /* size of extents after adding */
2815 xfs_extnum_t nextents; /* number of extents in file */
2816
2817 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
2818 ASSERT((idx >= 0) && (idx <= nextents));
2819 byte_diff = ext_diff * sizeof(xfs_bmbt_rec_t);
2820 new_size = ifp->if_bytes + byte_diff;
2821 /*
2822 * If the new number of extents (nextents + ext_diff)
2823 * fits inside the inode, then continue to use the inline
2824 * extent buffer.
2825 */
2826 if (nextents + ext_diff <= XFS_INLINE_EXTS) {
2827 if (idx < nextents) {
2828 memmove(&ifp->if_u2.if_inline_ext[idx + ext_diff],
2829 &ifp->if_u2.if_inline_ext[idx],
2830 (nextents - idx) * sizeof(xfs_bmbt_rec_t));
2831 memset(&ifp->if_u2.if_inline_ext[idx], 0, byte_diff);
2832 }
2833 ifp->if_u1.if_extents = ifp->if_u2.if_inline_ext;
2834 ifp->if_real_bytes = 0;
2835 }
2836 /*
2837 * Otherwise use a linear (direct) extent list.
2838 * If the extents are currently inside the inode,
2839 * xfs_iext_realloc_direct will switch us from
2840 * inline to direct extent allocation mode.
2841 */
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11002842 else if (nextents + ext_diff <= XFS_LINEAR_EXTS) {
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002843 xfs_iext_realloc_direct(ifp, new_size);
2844 if (idx < nextents) {
2845 memmove(&ifp->if_u1.if_extents[idx + ext_diff],
2846 &ifp->if_u1.if_extents[idx],
2847 (nextents - idx) * sizeof(xfs_bmbt_rec_t));
2848 memset(&ifp->if_u1.if_extents[idx], 0, byte_diff);
2849 }
2850 }
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11002851 /* Indirection array */
2852 else {
2853 xfs_ext_irec_t *erp;
2854 int erp_idx = 0;
2855 int page_idx = idx;
2856
2857 ASSERT(nextents + ext_diff > XFS_LINEAR_EXTS);
2858 if (ifp->if_flags & XFS_IFEXTIREC) {
2859 erp = xfs_iext_idx_to_irec(ifp, &page_idx, &erp_idx, 1);
2860 } else {
2861 xfs_iext_irec_init(ifp);
2862 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
2863 erp = ifp->if_u1.if_ext_irec;
2864 }
2865 /* Extents fit in target extent page */
2866 if (erp && erp->er_extcount + ext_diff <= XFS_LINEAR_EXTS) {
2867 if (page_idx < erp->er_extcount) {
2868 memmove(&erp->er_extbuf[page_idx + ext_diff],
2869 &erp->er_extbuf[page_idx],
2870 (erp->er_extcount - page_idx) *
2871 sizeof(xfs_bmbt_rec_t));
2872 memset(&erp->er_extbuf[page_idx], 0, byte_diff);
2873 }
2874 erp->er_extcount += ext_diff;
2875 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1, ext_diff);
2876 }
2877 /* Insert a new extent page */
2878 else if (erp) {
2879 xfs_iext_add_indirect_multi(ifp,
2880 erp_idx, page_idx, ext_diff);
2881 }
2882 /*
2883 * If extent(s) are being appended to the last page in
2884 * the indirection array and the new extent(s) don't fit
2885 * in the page, then erp is NULL and erp_idx is set to
2886 * the next index needed in the indirection array.
2887 */
2888 else {
2889 int count = ext_diff;
2890
2891 while (count) {
2892 erp = xfs_iext_irec_new(ifp, erp_idx);
2893 erp->er_extcount = count;
2894 count -= MIN(count, (int)XFS_LINEAR_EXTS);
2895 if (count) {
2896 erp_idx++;
2897 }
2898 }
2899 }
2900 }
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11002901 ifp->if_bytes = new_size;
2902}
2903
2904/*
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11002905 * This is called when incore extents are being added to the indirection
2906 * array and the new extents do not fit in the target extent list. The
2907 * erp_idx parameter contains the irec index for the target extent list
2908 * in the indirection array, and the idx parameter contains the extent
2909 * index within the list. The number of extents being added is stored
2910 * in the count parameter.
2911 *
2912 * |-------| |-------|
2913 * | | | | idx - number of extents before idx
2914 * | idx | | count |
2915 * | | | | count - number of extents being inserted at idx
2916 * |-------| |-------|
2917 * | count | | nex2 | nex2 - number of extents after idx + count
2918 * |-------| |-------|
2919 */
2920void
2921xfs_iext_add_indirect_multi(
2922 xfs_ifork_t *ifp, /* inode fork pointer */
2923 int erp_idx, /* target extent irec index */
2924 xfs_extnum_t idx, /* index within target list */
2925 int count) /* new extents being added */
2926{
2927 int byte_diff; /* new bytes being added */
2928 xfs_ext_irec_t *erp; /* pointer to irec entry */
2929 xfs_extnum_t ext_diff; /* number of extents to add */
2930 xfs_extnum_t ext_cnt; /* new extents still needed */
2931 xfs_extnum_t nex2; /* extents after idx + count */
2932 xfs_bmbt_rec_t *nex2_ep = NULL; /* temp list for nex2 extents */
2933 int nlists; /* number of irec's (lists) */
2934
2935 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
2936 erp = &ifp->if_u1.if_ext_irec[erp_idx];
2937 nex2 = erp->er_extcount - idx;
2938 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
2939
2940 /*
2941 * Save second part of target extent list
2942 * (all extents past */
2943 if (nex2) {
2944 byte_diff = nex2 * sizeof(xfs_bmbt_rec_t);
David Chinner67850732008-08-13 16:02:51 +10002945 nex2_ep = (xfs_bmbt_rec_t *) kmem_alloc(byte_diff, KM_NOFS);
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11002946 memmove(nex2_ep, &erp->er_extbuf[idx], byte_diff);
2947 erp->er_extcount -= nex2;
2948 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1, -nex2);
2949 memset(&erp->er_extbuf[idx], 0, byte_diff);
2950 }
2951
2952 /*
2953 * Add the new extents to the end of the target
2954 * list, then allocate new irec record(s) and
2955 * extent buffer(s) as needed to store the rest
2956 * of the new extents.
2957 */
2958 ext_cnt = count;
2959 ext_diff = MIN(ext_cnt, (int)XFS_LINEAR_EXTS - erp->er_extcount);
2960 if (ext_diff) {
2961 erp->er_extcount += ext_diff;
2962 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1, ext_diff);
2963 ext_cnt -= ext_diff;
2964 }
2965 while (ext_cnt) {
2966 erp_idx++;
2967 erp = xfs_iext_irec_new(ifp, erp_idx);
2968 ext_diff = MIN(ext_cnt, (int)XFS_LINEAR_EXTS);
2969 erp->er_extcount = ext_diff;
2970 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1, ext_diff);
2971 ext_cnt -= ext_diff;
2972 }
2973
2974 /* Add nex2 extents back to indirection array */
2975 if (nex2) {
2976 xfs_extnum_t ext_avail;
2977 int i;
2978
2979 byte_diff = nex2 * sizeof(xfs_bmbt_rec_t);
2980 ext_avail = XFS_LINEAR_EXTS - erp->er_extcount;
2981 i = 0;
2982 /*
2983 * If nex2 extents fit in the current page, append
2984 * nex2_ep after the new extents.
2985 */
2986 if (nex2 <= ext_avail) {
2987 i = erp->er_extcount;
2988 }
2989 /*
2990 * Otherwise, check if space is available in the
2991 * next page.
2992 */
2993 else if ((erp_idx < nlists - 1) &&
2994 (nex2 <= (ext_avail = XFS_LINEAR_EXTS -
2995 ifp->if_u1.if_ext_irec[erp_idx+1].er_extcount))) {
2996 erp_idx++;
2997 erp++;
2998 /* Create a hole for nex2 extents */
2999 memmove(&erp->er_extbuf[nex2], erp->er_extbuf,
3000 erp->er_extcount * sizeof(xfs_bmbt_rec_t));
3001 }
3002 /*
3003 * Final choice, create a new extent page for
3004 * nex2 extents.
3005 */
3006 else {
3007 erp_idx++;
3008 erp = xfs_iext_irec_new(ifp, erp_idx);
3009 }
3010 memmove(&erp->er_extbuf[i], nex2_ep, byte_diff);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10003011 kmem_free(nex2_ep);
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003012 erp->er_extcount += nex2;
3013 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1, nex2);
3014 }
3015}
3016
3017/*
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003018 * This is called when the amount of space required for incore file
3019 * extents needs to be decreased. The ext_diff parameter stores the
3020 * number of extents to be removed and the idx parameter contains
3021 * the extent index where the extents will be removed from.
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003022 *
3023 * If the amount of space needed has decreased below the linear
3024 * limit, XFS_IEXT_BUFSZ, then switch to using the contiguous
3025 * extent array. Otherwise, use kmem_realloc() to adjust the
3026 * size to what is needed.
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003027 */
3028void
3029xfs_iext_remove(
Christoph Hellwig6ef35542009-11-25 00:00:21 +00003030 xfs_inode_t *ip, /* incore inode pointer */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003031 xfs_extnum_t idx, /* index to begin removing exts */
Christoph Hellwig6ef35542009-11-25 00:00:21 +00003032 int ext_diff, /* number of extents to remove */
3033 int state) /* type of extent conversion */
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003034{
Christoph Hellwig6ef35542009-11-25 00:00:21 +00003035 xfs_ifork_t *ifp = (state & BMAP_ATTRFORK) ? ip->i_afp : &ip->i_df;
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003036 xfs_extnum_t nextents; /* number of extents in file */
3037 int new_size; /* size of extents after removal */
3038
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00003039 trace_xfs_iext_remove(ip, idx, state, _RET_IP_);
3040
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003041 ASSERT(ext_diff > 0);
3042 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
3043 new_size = (nextents - ext_diff) * sizeof(xfs_bmbt_rec_t);
3044
3045 if (new_size == 0) {
3046 xfs_iext_destroy(ifp);
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003047 } else if (ifp->if_flags & XFS_IFEXTIREC) {
3048 xfs_iext_remove_indirect(ifp, idx, ext_diff);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003049 } else if (ifp->if_real_bytes) {
3050 xfs_iext_remove_direct(ifp, idx, ext_diff);
3051 } else {
3052 xfs_iext_remove_inline(ifp, idx, ext_diff);
3053 }
3054 ifp->if_bytes = new_size;
3055}
3056
3057/*
3058 * This removes ext_diff extents from the inline buffer, beginning
3059 * at extent index idx.
3060 */
3061void
3062xfs_iext_remove_inline(
3063 xfs_ifork_t *ifp, /* inode fork pointer */
3064 xfs_extnum_t idx, /* index to begin removing exts */
3065 int ext_diff) /* number of extents to remove */
3066{
3067 int nextents; /* number of extents in file */
3068
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003069 ASSERT(!(ifp->if_flags & XFS_IFEXTIREC));
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003070 ASSERT(idx < XFS_INLINE_EXTS);
3071 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
3072 ASSERT(((nextents - ext_diff) > 0) &&
3073 (nextents - ext_diff) < XFS_INLINE_EXTS);
3074
3075 if (idx + ext_diff < nextents) {
3076 memmove(&ifp->if_u2.if_inline_ext[idx],
3077 &ifp->if_u2.if_inline_ext[idx + ext_diff],
3078 (nextents - (idx + ext_diff)) *
3079 sizeof(xfs_bmbt_rec_t));
3080 memset(&ifp->if_u2.if_inline_ext[nextents - ext_diff],
3081 0, ext_diff * sizeof(xfs_bmbt_rec_t));
3082 } else {
3083 memset(&ifp->if_u2.if_inline_ext[idx], 0,
3084 ext_diff * sizeof(xfs_bmbt_rec_t));
3085 }
3086}
3087
3088/*
3089 * This removes ext_diff extents from a linear (direct) extent list,
3090 * beginning at extent index idx. If the extents are being removed
3091 * from the end of the list (ie. truncate) then we just need to re-
3092 * allocate the list to remove the extra space. Otherwise, if the
3093 * extents are being removed from the middle of the existing extent
3094 * entries, then we first need to move the extent records beginning
3095 * at idx + ext_diff up in the list to overwrite the records being
3096 * removed, then remove the extra space via kmem_realloc.
3097 */
3098void
3099xfs_iext_remove_direct(
3100 xfs_ifork_t *ifp, /* inode fork pointer */
3101 xfs_extnum_t idx, /* index to begin removing exts */
3102 int ext_diff) /* number of extents to remove */
3103{
3104 xfs_extnum_t nextents; /* number of extents in file */
3105 int new_size; /* size of extents after removal */
3106
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003107 ASSERT(!(ifp->if_flags & XFS_IFEXTIREC));
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003108 new_size = ifp->if_bytes -
3109 (ext_diff * sizeof(xfs_bmbt_rec_t));
3110 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
3111
3112 if (new_size == 0) {
3113 xfs_iext_destroy(ifp);
3114 return;
3115 }
3116 /* Move extents up in the list (if needed) */
3117 if (idx + ext_diff < nextents) {
3118 memmove(&ifp->if_u1.if_extents[idx],
3119 &ifp->if_u1.if_extents[idx + ext_diff],
3120 (nextents - (idx + ext_diff)) *
3121 sizeof(xfs_bmbt_rec_t));
3122 }
3123 memset(&ifp->if_u1.if_extents[nextents - ext_diff],
3124 0, ext_diff * sizeof(xfs_bmbt_rec_t));
3125 /*
3126 * Reallocate the direct extent list. If the extents
3127 * will fit inside the inode then xfs_iext_realloc_direct
3128 * will switch from direct to inline extent allocation
3129 * mode for us.
3130 */
3131 xfs_iext_realloc_direct(ifp, new_size);
3132 ifp->if_bytes = new_size;
3133}
3134
3135/*
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003136 * This is called when incore extents are being removed from the
3137 * indirection array and the extents being removed span multiple extent
3138 * buffers. The idx parameter contains the file extent index where we
3139 * want to begin removing extents, and the count parameter contains
3140 * how many extents need to be removed.
3141 *
3142 * |-------| |-------|
3143 * | nex1 | | | nex1 - number of extents before idx
3144 * |-------| | count |
3145 * | | | | count - number of extents being removed at idx
3146 * | count | |-------|
3147 * | | | nex2 | nex2 - number of extents after idx + count
3148 * |-------| |-------|
3149 */
3150void
3151xfs_iext_remove_indirect(
3152 xfs_ifork_t *ifp, /* inode fork pointer */
3153 xfs_extnum_t idx, /* index to begin removing extents */
3154 int count) /* number of extents to remove */
3155{
3156 xfs_ext_irec_t *erp; /* indirection array pointer */
3157 int erp_idx = 0; /* indirection array index */
3158 xfs_extnum_t ext_cnt; /* extents left to remove */
3159 xfs_extnum_t ext_diff; /* extents to remove in current list */
3160 xfs_extnum_t nex1; /* number of extents before idx */
3161 xfs_extnum_t nex2; /* extents after idx + count */
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003162 int page_idx = idx; /* index in target extent list */
3163
3164 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
3165 erp = xfs_iext_idx_to_irec(ifp, &page_idx, &erp_idx, 0);
3166 ASSERT(erp != NULL);
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003167 nex1 = page_idx;
3168 ext_cnt = count;
3169 while (ext_cnt) {
3170 nex2 = MAX((erp->er_extcount - (nex1 + ext_cnt)), 0);
3171 ext_diff = MIN(ext_cnt, (erp->er_extcount - nex1));
3172 /*
3173 * Check for deletion of entire list;
3174 * xfs_iext_irec_remove() updates extent offsets.
3175 */
3176 if (ext_diff == erp->er_extcount) {
3177 xfs_iext_irec_remove(ifp, erp_idx);
3178 ext_cnt -= ext_diff;
3179 nex1 = 0;
3180 if (ext_cnt) {
3181 ASSERT(erp_idx < ifp->if_real_bytes /
3182 XFS_IEXT_BUFSZ);
3183 erp = &ifp->if_u1.if_ext_irec[erp_idx];
3184 nex1 = 0;
3185 continue;
3186 } else {
3187 break;
3188 }
3189 }
3190 /* Move extents up (if needed) */
3191 if (nex2) {
3192 memmove(&erp->er_extbuf[nex1],
3193 &erp->er_extbuf[nex1 + ext_diff],
3194 nex2 * sizeof(xfs_bmbt_rec_t));
3195 }
3196 /* Zero out rest of page */
3197 memset(&erp->er_extbuf[nex1 + nex2], 0, (XFS_IEXT_BUFSZ -
3198 ((nex1 + nex2) * sizeof(xfs_bmbt_rec_t))));
3199 /* Update remaining counters */
3200 erp->er_extcount -= ext_diff;
3201 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1, -ext_diff);
3202 ext_cnt -= ext_diff;
3203 nex1 = 0;
3204 erp_idx++;
3205 erp++;
3206 }
3207 ifp->if_bytes -= count * sizeof(xfs_bmbt_rec_t);
3208 xfs_iext_irec_compact(ifp);
3209}
3210
3211/*
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003212 * Create, destroy, or resize a linear (direct) block of extents.
3213 */
3214void
3215xfs_iext_realloc_direct(
3216 xfs_ifork_t *ifp, /* inode fork pointer */
3217 int new_size) /* new size of extents */
3218{
3219 int rnew_size; /* real new size of extents */
3220
3221 rnew_size = new_size;
3222
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003223 ASSERT(!(ifp->if_flags & XFS_IFEXTIREC) ||
3224 ((new_size >= 0) && (new_size <= XFS_IEXT_BUFSZ) &&
3225 (new_size != ifp->if_real_bytes)));
3226
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003227 /* Free extent records */
3228 if (new_size == 0) {
3229 xfs_iext_destroy(ifp);
3230 }
3231 /* Resize direct extent list and zero any new bytes */
3232 else if (ifp->if_real_bytes) {
3233 /* Check if extents will fit inside the inode */
3234 if (new_size <= XFS_INLINE_EXTS * sizeof(xfs_bmbt_rec_t)) {
3235 xfs_iext_direct_to_inline(ifp, new_size /
3236 (uint)sizeof(xfs_bmbt_rec_t));
3237 ifp->if_bytes = new_size;
3238 return;
3239 }
Vignesh Babu16a087d2007-06-28 16:46:37 +10003240 if (!is_power_of_2(new_size)){
Robert P. J. Day40ebd812007-11-23 16:30:51 +11003241 rnew_size = roundup_pow_of_two(new_size);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003242 }
3243 if (rnew_size != ifp->if_real_bytes) {
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10003244 ifp->if_u1.if_extents =
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003245 kmem_realloc(ifp->if_u1.if_extents,
3246 rnew_size,
David Chinner67850732008-08-13 16:02:51 +10003247 ifp->if_real_bytes, KM_NOFS);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003248 }
3249 if (rnew_size > ifp->if_real_bytes) {
3250 memset(&ifp->if_u1.if_extents[ifp->if_bytes /
3251 (uint)sizeof(xfs_bmbt_rec_t)], 0,
3252 rnew_size - ifp->if_real_bytes);
3253 }
3254 }
3255 /*
3256 * Switch from the inline extent buffer to a direct
3257 * extent list. Be sure to include the inline extent
3258 * bytes in new_size.
3259 */
3260 else {
3261 new_size += ifp->if_bytes;
Vignesh Babu16a087d2007-06-28 16:46:37 +10003262 if (!is_power_of_2(new_size)) {
Robert P. J. Day40ebd812007-11-23 16:30:51 +11003263 rnew_size = roundup_pow_of_two(new_size);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003264 }
3265 xfs_iext_inline_to_direct(ifp, rnew_size);
3266 }
3267 ifp->if_real_bytes = rnew_size;
3268 ifp->if_bytes = new_size;
3269}
3270
3271/*
3272 * Switch from linear (direct) extent records to inline buffer.
3273 */
3274void
3275xfs_iext_direct_to_inline(
3276 xfs_ifork_t *ifp, /* inode fork pointer */
3277 xfs_extnum_t nextents) /* number of extents in file */
3278{
3279 ASSERT(ifp->if_flags & XFS_IFEXTENTS);
3280 ASSERT(nextents <= XFS_INLINE_EXTS);
3281 /*
3282 * The inline buffer was zeroed when we switched
3283 * from inline to direct extent allocation mode,
3284 * so we don't need to clear it here.
3285 */
3286 memcpy(ifp->if_u2.if_inline_ext, ifp->if_u1.if_extents,
3287 nextents * sizeof(xfs_bmbt_rec_t));
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10003288 kmem_free(ifp->if_u1.if_extents);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003289 ifp->if_u1.if_extents = ifp->if_u2.if_inline_ext;
3290 ifp->if_real_bytes = 0;
3291}
3292
3293/*
3294 * Switch from inline buffer to linear (direct) extent records.
3295 * new_size should already be rounded up to the next power of 2
3296 * by the caller (when appropriate), so use new_size as it is.
3297 * However, since new_size may be rounded up, we can't update
3298 * if_bytes here. It is the caller's responsibility to update
3299 * if_bytes upon return.
3300 */
3301void
3302xfs_iext_inline_to_direct(
3303 xfs_ifork_t *ifp, /* inode fork pointer */
3304 int new_size) /* number of extents in file */
3305{
David Chinner67850732008-08-13 16:02:51 +10003306 ifp->if_u1.if_extents = kmem_alloc(new_size, KM_NOFS);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003307 memset(ifp->if_u1.if_extents, 0, new_size);
3308 if (ifp->if_bytes) {
3309 memcpy(ifp->if_u1.if_extents, ifp->if_u2.if_inline_ext,
3310 ifp->if_bytes);
3311 memset(ifp->if_u2.if_inline_ext, 0, XFS_INLINE_EXTS *
3312 sizeof(xfs_bmbt_rec_t));
3313 }
3314 ifp->if_real_bytes = new_size;
3315}
3316
3317/*
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003318 * Resize an extent indirection array to new_size bytes.
3319 */
Eric Sandeend96f8f82009-07-02 00:09:33 -05003320STATIC void
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003321xfs_iext_realloc_indirect(
3322 xfs_ifork_t *ifp, /* inode fork pointer */
3323 int new_size) /* new indirection array size */
3324{
3325 int nlists; /* number of irec's (ex lists) */
3326 int size; /* current indirection array size */
3327
3328 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
3329 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
3330 size = nlists * sizeof(xfs_ext_irec_t);
3331 ASSERT(ifp->if_real_bytes);
3332 ASSERT((new_size >= 0) && (new_size != size));
3333 if (new_size == 0) {
3334 xfs_iext_destroy(ifp);
3335 } else {
3336 ifp->if_u1.if_ext_irec = (xfs_ext_irec_t *)
3337 kmem_realloc(ifp->if_u1.if_ext_irec,
David Chinner67850732008-08-13 16:02:51 +10003338 new_size, size, KM_NOFS);
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003339 }
3340}
3341
3342/*
3343 * Switch from indirection array to linear (direct) extent allocations.
3344 */
Eric Sandeend96f8f82009-07-02 00:09:33 -05003345STATIC void
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003346xfs_iext_indirect_to_direct(
3347 xfs_ifork_t *ifp) /* inode fork pointer */
3348{
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10003349 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003350 xfs_extnum_t nextents; /* number of extents in file */
3351 int size; /* size of file extents */
3352
3353 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
3354 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
3355 ASSERT(nextents <= XFS_LINEAR_EXTS);
3356 size = nextents * sizeof(xfs_bmbt_rec_t);
3357
Lachlan McIlroy71a8c872008-09-26 12:17:57 +10003358 xfs_iext_irec_compact_pages(ifp);
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003359 ASSERT(ifp->if_real_bytes == XFS_IEXT_BUFSZ);
3360
3361 ep = ifp->if_u1.if_ext_irec->er_extbuf;
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10003362 kmem_free(ifp->if_u1.if_ext_irec);
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003363 ifp->if_flags &= ~XFS_IFEXTIREC;
3364 ifp->if_u1.if_extents = ep;
3365 ifp->if_bytes = size;
3366 if (nextents < XFS_LINEAR_EXTS) {
3367 xfs_iext_realloc_direct(ifp, size);
3368 }
3369}
3370
3371/*
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003372 * Free incore file extents.
3373 */
3374void
3375xfs_iext_destroy(
3376 xfs_ifork_t *ifp) /* inode fork pointer */
3377{
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003378 if (ifp->if_flags & XFS_IFEXTIREC) {
3379 int erp_idx;
3380 int nlists;
3381
3382 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
3383 for (erp_idx = nlists - 1; erp_idx >= 0 ; erp_idx--) {
3384 xfs_iext_irec_remove(ifp, erp_idx);
3385 }
3386 ifp->if_flags &= ~XFS_IFEXTIREC;
3387 } else if (ifp->if_real_bytes) {
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10003388 kmem_free(ifp->if_u1.if_extents);
Mandy Kirkconnell4eea22f2006-03-14 13:29:52 +11003389 } else if (ifp->if_bytes) {
3390 memset(ifp->if_u2.if_inline_ext, 0, XFS_INLINE_EXTS *
3391 sizeof(xfs_bmbt_rec_t));
3392 }
3393 ifp->if_u1.if_extents = NULL;
3394 ifp->if_real_bytes = 0;
3395 ifp->if_bytes = 0;
3396}
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003397
3398/*
Mandy Kirkconnell8867bc92006-03-17 17:25:04 +11003399 * Return a pointer to the extent record for file system block bno.
3400 */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10003401xfs_bmbt_rec_host_t * /* pointer to found extent record */
Mandy Kirkconnell8867bc92006-03-17 17:25:04 +11003402xfs_iext_bno_to_ext(
3403 xfs_ifork_t *ifp, /* inode fork pointer */
3404 xfs_fileoff_t bno, /* block number to search for */
3405 xfs_extnum_t *idxp) /* index of target extent */
3406{
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10003407 xfs_bmbt_rec_host_t *base; /* pointer to first extent */
Mandy Kirkconnell8867bc92006-03-17 17:25:04 +11003408 xfs_filblks_t blockcount = 0; /* number of blocks in extent */
Christoph Hellwiga6f64d42007-08-16 16:23:40 +10003409 xfs_bmbt_rec_host_t *ep = NULL; /* pointer to target extent */
Mandy Kirkconnell8867bc92006-03-17 17:25:04 +11003410 xfs_ext_irec_t *erp = NULL; /* indirection array pointer */
Nathan Scottc41564b2006-03-29 08:55:14 +10003411 int high; /* upper boundary in search */
Mandy Kirkconnell8867bc92006-03-17 17:25:04 +11003412 xfs_extnum_t idx = 0; /* index of target extent */
Nathan Scottc41564b2006-03-29 08:55:14 +10003413 int low; /* lower boundary in search */
Mandy Kirkconnell8867bc92006-03-17 17:25:04 +11003414 xfs_extnum_t nextents; /* number of file extents */
3415 xfs_fileoff_t startoff = 0; /* start offset of extent */
3416
3417 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
3418 if (nextents == 0) {
3419 *idxp = 0;
3420 return NULL;
3421 }
3422 low = 0;
3423 if (ifp->if_flags & XFS_IFEXTIREC) {
3424 /* Find target extent list */
3425 int erp_idx = 0;
3426 erp = xfs_iext_bno_to_irec(ifp, bno, &erp_idx);
3427 base = erp->er_extbuf;
3428 high = erp->er_extcount - 1;
3429 } else {
3430 base = ifp->if_u1.if_extents;
3431 high = nextents - 1;
3432 }
3433 /* Binary search extent records */
3434 while (low <= high) {
3435 idx = (low + high) >> 1;
3436 ep = base + idx;
3437 startoff = xfs_bmbt_get_startoff(ep);
3438 blockcount = xfs_bmbt_get_blockcount(ep);
3439 if (bno < startoff) {
3440 high = idx - 1;
3441 } else if (bno >= startoff + blockcount) {
3442 low = idx + 1;
3443 } else {
3444 /* Convert back to file-based extent index */
3445 if (ifp->if_flags & XFS_IFEXTIREC) {
3446 idx += erp->er_extoff;
3447 }
3448 *idxp = idx;
3449 return ep;
3450 }
3451 }
3452 /* Convert back to file-based extent index */
3453 if (ifp->if_flags & XFS_IFEXTIREC) {
3454 idx += erp->er_extoff;
3455 }
3456 if (bno >= startoff + blockcount) {
3457 if (++idx == nextents) {
3458 ep = NULL;
3459 } else {
3460 ep = xfs_iext_get_ext(ifp, idx);
3461 }
3462 }
3463 *idxp = idx;
3464 return ep;
3465}
3466
3467/*
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003468 * Return a pointer to the indirection array entry containing the
3469 * extent record for filesystem block bno. Store the index of the
3470 * target irec in *erp_idxp.
3471 */
Mandy Kirkconnell8867bc92006-03-17 17:25:04 +11003472xfs_ext_irec_t * /* pointer to found extent record */
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003473xfs_iext_bno_to_irec(
3474 xfs_ifork_t *ifp, /* inode fork pointer */
3475 xfs_fileoff_t bno, /* block number to search for */
3476 int *erp_idxp) /* irec index of target ext list */
3477{
3478 xfs_ext_irec_t *erp = NULL; /* indirection array pointer */
3479 xfs_ext_irec_t *erp_next; /* next indirection array entry */
Mandy Kirkconnell8867bc92006-03-17 17:25:04 +11003480 int erp_idx; /* indirection array index */
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003481 int nlists; /* number of extent irec's (lists) */
3482 int high; /* binary search upper limit */
3483 int low; /* binary search lower limit */
3484
3485 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
3486 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
3487 erp_idx = 0;
3488 low = 0;
3489 high = nlists - 1;
3490 while (low <= high) {
3491 erp_idx = (low + high) >> 1;
3492 erp = &ifp->if_u1.if_ext_irec[erp_idx];
3493 erp_next = erp_idx < nlists - 1 ? erp + 1 : NULL;
3494 if (bno < xfs_bmbt_get_startoff(erp->er_extbuf)) {
3495 high = erp_idx - 1;
3496 } else if (erp_next && bno >=
3497 xfs_bmbt_get_startoff(erp_next->er_extbuf)) {
3498 low = erp_idx + 1;
3499 } else {
3500 break;
3501 }
3502 }
3503 *erp_idxp = erp_idx;
3504 return erp;
3505}
3506
3507/*
3508 * Return a pointer to the indirection array entry containing the
3509 * extent record at file extent index *idxp. Store the index of the
3510 * target irec in *erp_idxp and store the page index of the target
3511 * extent record in *idxp.
3512 */
3513xfs_ext_irec_t *
3514xfs_iext_idx_to_irec(
3515 xfs_ifork_t *ifp, /* inode fork pointer */
3516 xfs_extnum_t *idxp, /* extent index (file -> page) */
3517 int *erp_idxp, /* pointer to target irec */
3518 int realloc) /* new bytes were just added */
3519{
3520 xfs_ext_irec_t *prev; /* pointer to previous irec */
3521 xfs_ext_irec_t *erp = NULL; /* pointer to current irec */
3522 int erp_idx; /* indirection array index */
3523 int nlists; /* number of irec's (ex lists) */
3524 int high; /* binary search upper limit */
3525 int low; /* binary search lower limit */
3526 xfs_extnum_t page_idx = *idxp; /* extent index in target list */
3527
3528 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
Christoph Hellwig87bef182011-05-11 15:04:11 +00003529 ASSERT(page_idx >= 0);
3530 ASSERT(page_idx <= ifp->if_bytes / sizeof(xfs_bmbt_rec_t));
3531 ASSERT(page_idx < ifp->if_bytes / sizeof(xfs_bmbt_rec_t) || realloc);
3532
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003533 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
3534 erp_idx = 0;
3535 low = 0;
3536 high = nlists - 1;
3537
3538 /* Binary search extent irec's */
3539 while (low <= high) {
3540 erp_idx = (low + high) >> 1;
3541 erp = &ifp->if_u1.if_ext_irec[erp_idx];
3542 prev = erp_idx > 0 ? erp - 1 : NULL;
3543 if (page_idx < erp->er_extoff || (page_idx == erp->er_extoff &&
3544 realloc && prev && prev->er_extcount < XFS_LINEAR_EXTS)) {
3545 high = erp_idx - 1;
3546 } else if (page_idx > erp->er_extoff + erp->er_extcount ||
3547 (page_idx == erp->er_extoff + erp->er_extcount &&
3548 !realloc)) {
3549 low = erp_idx + 1;
3550 } else if (page_idx == erp->er_extoff + erp->er_extcount &&
3551 erp->er_extcount == XFS_LINEAR_EXTS) {
3552 ASSERT(realloc);
3553 page_idx = 0;
3554 erp_idx++;
3555 erp = erp_idx < nlists ? erp + 1 : NULL;
3556 break;
3557 } else {
3558 page_idx -= erp->er_extoff;
3559 break;
3560 }
3561 }
3562 *idxp = page_idx;
3563 *erp_idxp = erp_idx;
3564 return(erp);
3565}
3566
3567/*
3568 * Allocate and initialize an indirection array once the space needed
3569 * for incore extents increases above XFS_IEXT_BUFSZ.
3570 */
3571void
3572xfs_iext_irec_init(
3573 xfs_ifork_t *ifp) /* inode fork pointer */
3574{
3575 xfs_ext_irec_t *erp; /* indirection array pointer */
3576 xfs_extnum_t nextents; /* number of extents in file */
3577
3578 ASSERT(!(ifp->if_flags & XFS_IFEXTIREC));
3579 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
3580 ASSERT(nextents <= XFS_LINEAR_EXTS);
3581
David Chinner67850732008-08-13 16:02:51 +10003582 erp = kmem_alloc(sizeof(xfs_ext_irec_t), KM_NOFS);
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003583
3584 if (nextents == 0) {
David Chinner67850732008-08-13 16:02:51 +10003585 ifp->if_u1.if_extents = kmem_alloc(XFS_IEXT_BUFSZ, KM_NOFS);
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003586 } else if (!ifp->if_real_bytes) {
3587 xfs_iext_inline_to_direct(ifp, XFS_IEXT_BUFSZ);
3588 } else if (ifp->if_real_bytes < XFS_IEXT_BUFSZ) {
3589 xfs_iext_realloc_direct(ifp, XFS_IEXT_BUFSZ);
3590 }
3591 erp->er_extbuf = ifp->if_u1.if_extents;
3592 erp->er_extcount = nextents;
3593 erp->er_extoff = 0;
3594
3595 ifp->if_flags |= XFS_IFEXTIREC;
3596 ifp->if_real_bytes = XFS_IEXT_BUFSZ;
3597 ifp->if_bytes = nextents * sizeof(xfs_bmbt_rec_t);
3598 ifp->if_u1.if_ext_irec = erp;
3599
3600 return;
3601}
3602
3603/*
3604 * Allocate and initialize a new entry in the indirection array.
3605 */
3606xfs_ext_irec_t *
3607xfs_iext_irec_new(
3608 xfs_ifork_t *ifp, /* inode fork pointer */
3609 int erp_idx) /* index for new irec */
3610{
3611 xfs_ext_irec_t *erp; /* indirection array pointer */
3612 int i; /* loop counter */
3613 int nlists; /* number of irec's (ex lists) */
3614
3615 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
3616 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
3617
3618 /* Resize indirection array */
3619 xfs_iext_realloc_indirect(ifp, ++nlists *
3620 sizeof(xfs_ext_irec_t));
3621 /*
3622 * Move records down in the array so the
3623 * new page can use erp_idx.
3624 */
3625 erp = ifp->if_u1.if_ext_irec;
3626 for (i = nlists - 1; i > erp_idx; i--) {
3627 memmove(&erp[i], &erp[i-1], sizeof(xfs_ext_irec_t));
3628 }
3629 ASSERT(i == erp_idx);
3630
3631 /* Initialize new extent record */
3632 erp = ifp->if_u1.if_ext_irec;
David Chinner67850732008-08-13 16:02:51 +10003633 erp[erp_idx].er_extbuf = kmem_alloc(XFS_IEXT_BUFSZ, KM_NOFS);
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003634 ifp->if_real_bytes = nlists * XFS_IEXT_BUFSZ;
3635 memset(erp[erp_idx].er_extbuf, 0, XFS_IEXT_BUFSZ);
3636 erp[erp_idx].er_extcount = 0;
3637 erp[erp_idx].er_extoff = erp_idx > 0 ?
3638 erp[erp_idx-1].er_extoff + erp[erp_idx-1].er_extcount : 0;
3639 return (&erp[erp_idx]);
3640}
3641
3642/*
3643 * Remove a record from the indirection array.
3644 */
3645void
3646xfs_iext_irec_remove(
3647 xfs_ifork_t *ifp, /* inode fork pointer */
3648 int erp_idx) /* irec index to remove */
3649{
3650 xfs_ext_irec_t *erp; /* indirection array pointer */
3651 int i; /* loop counter */
3652 int nlists; /* number of irec's (ex lists) */
3653
3654 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
3655 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
3656 erp = &ifp->if_u1.if_ext_irec[erp_idx];
3657 if (erp->er_extbuf) {
3658 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1,
3659 -erp->er_extcount);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10003660 kmem_free(erp->er_extbuf);
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003661 }
3662 /* Compact extent records */
3663 erp = ifp->if_u1.if_ext_irec;
3664 for (i = erp_idx; i < nlists - 1; i++) {
3665 memmove(&erp[i], &erp[i+1], sizeof(xfs_ext_irec_t));
3666 }
3667 /*
3668 * Manually free the last extent record from the indirection
3669 * array. A call to xfs_iext_realloc_indirect() with a size
3670 * of zero would result in a call to xfs_iext_destroy() which
3671 * would in turn call this function again, creating a nasty
3672 * infinite loop.
3673 */
3674 if (--nlists) {
3675 xfs_iext_realloc_indirect(ifp,
3676 nlists * sizeof(xfs_ext_irec_t));
3677 } else {
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10003678 kmem_free(ifp->if_u1.if_ext_irec);
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003679 }
3680 ifp->if_real_bytes = nlists * XFS_IEXT_BUFSZ;
3681}
3682
3683/*
3684 * This is called to clean up large amounts of unused memory allocated
3685 * by the indirection array. Before compacting anything though, verify
3686 * that the indirection array is still needed and switch back to the
3687 * linear extent list (or even the inline buffer) if possible. The
3688 * compaction policy is as follows:
3689 *
3690 * Full Compaction: Extents fit into a single page (or inline buffer)
Lachlan McIlroy71a8c872008-09-26 12:17:57 +10003691 * Partial Compaction: Extents occupy less than 50% of allocated space
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003692 * No Compaction: Extents occupy at least 50% of allocated space
3693 */
3694void
3695xfs_iext_irec_compact(
3696 xfs_ifork_t *ifp) /* inode fork pointer */
3697{
3698 xfs_extnum_t nextents; /* number of extents in file */
3699 int nlists; /* number of irec's (ex lists) */
3700
3701 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
3702 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
3703 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
3704
3705 if (nextents == 0) {
3706 xfs_iext_destroy(ifp);
3707 } else if (nextents <= XFS_INLINE_EXTS) {
3708 xfs_iext_indirect_to_direct(ifp);
3709 xfs_iext_direct_to_inline(ifp, nextents);
3710 } else if (nextents <= XFS_LINEAR_EXTS) {
3711 xfs_iext_indirect_to_direct(ifp);
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003712 } else if (nextents < (nlists * XFS_LINEAR_EXTS) >> 1) {
3713 xfs_iext_irec_compact_pages(ifp);
3714 }
3715}
3716
3717/*
3718 * Combine extents from neighboring extent pages.
3719 */
3720void
3721xfs_iext_irec_compact_pages(
3722 xfs_ifork_t *ifp) /* inode fork pointer */
3723{
3724 xfs_ext_irec_t *erp, *erp_next;/* pointers to irec entries */
3725 int erp_idx = 0; /* indirection array index */
3726 int nlists; /* number of irec's (ex lists) */
3727
3728 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
3729 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
3730 while (erp_idx < nlists - 1) {
3731 erp = &ifp->if_u1.if_ext_irec[erp_idx];
3732 erp_next = erp + 1;
3733 if (erp_next->er_extcount <=
3734 (XFS_LINEAR_EXTS - erp->er_extcount)) {
Lachlan McIlroy71a8c872008-09-26 12:17:57 +10003735 memcpy(&erp->er_extbuf[erp->er_extcount],
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003736 erp_next->er_extbuf, erp_next->er_extcount *
3737 sizeof(xfs_bmbt_rec_t));
3738 erp->er_extcount += erp_next->er_extcount;
3739 /*
3740 * Free page before removing extent record
3741 * so er_extoffs don't get modified in
3742 * xfs_iext_irec_remove.
3743 */
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10003744 kmem_free(erp_next->er_extbuf);
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003745 erp_next->er_extbuf = NULL;
3746 xfs_iext_irec_remove(ifp, erp_idx + 1);
3747 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
3748 } else {
3749 erp_idx++;
3750 }
3751 }
3752}
3753
3754/*
Mandy Kirkconnell0293ce32006-03-14 13:30:23 +11003755 * This is called to update the er_extoff field in the indirection
3756 * array when extents have been added or removed from one of the
3757 * extent lists. erp_idx contains the irec index to begin updating
3758 * at and ext_diff contains the number of extents that were added
3759 * or removed.
3760 */
3761void
3762xfs_iext_irec_update_extoffs(
3763 xfs_ifork_t *ifp, /* inode fork pointer */
3764 int erp_idx, /* irec index to update */
3765 int ext_diff) /* number of new extents */
3766{
3767 int i; /* loop counter */
3768 int nlists; /* number of irec's (ex lists */
3769
3770 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
3771 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
3772 for (i = erp_idx; i < nlists; i++) {
3773 ifp->if_u1.if_ext_irec[i].er_extoff += ext_diff;
3774 }
3775}