[XFS] Remove the xfs_icluster structure
[deliverable/linux.git] / fs / xfs / xfs_inode.c
CommitLineData
1da177e4 1/*
3e57ecf6 2 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
7b718769 3 * All Rights Reserved.
1da177e4 4 *
7b718769
NS
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
1da177e4
LT
7 * published by the Free Software Foundation.
8 *
7b718769
NS
9 * 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.
1da177e4 13 *
7b718769
NS
14 * 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
1da177e4 17 */
40ebd81d
RD
18#include <linux/log2.h>
19
1da177e4 20#include "xfs.h"
a844f451 21#include "xfs_fs.h"
1da177e4 22#include "xfs_types.h"
a844f451 23#include "xfs_bit.h"
1da177e4 24#include "xfs_log.h"
a844f451
NS
25#include "xfs_inum.h"
26#include "xfs_imap.h"
1da177e4
LT
27#include "xfs_trans.h"
28#include "xfs_trans_priv.h"
29#include "xfs_sb.h"
30#include "xfs_ag.h"
1da177e4
LT
31#include "xfs_dir2.h"
32#include "xfs_dmapi.h"
33#include "xfs_mount.h"
1da177e4 34#include "xfs_bmap_btree.h"
a844f451 35#include "xfs_alloc_btree.h"
1da177e4 36#include "xfs_ialloc_btree.h"
1da177e4 37#include "xfs_dir2_sf.h"
a844f451 38#include "xfs_attr_sf.h"
1da177e4 39#include "xfs_dinode.h"
1da177e4 40#include "xfs_inode.h"
1da177e4 41#include "xfs_buf_item.h"
a844f451
NS
42#include "xfs_inode_item.h"
43#include "xfs_btree.h"
44#include "xfs_alloc.h"
45#include "xfs_ialloc.h"
46#include "xfs_bmap.h"
1da177e4
LT
47#include "xfs_rw.h"
48#include "xfs_error.h"
1da177e4
LT
49#include "xfs_utils.h"
50#include "xfs_dir2_trace.h"
51#include "xfs_quota.h"
1da177e4 52#include "xfs_acl.h"
2a82b8be 53#include "xfs_filestream.h"
739bfb2a 54#include "xfs_vnodeops.h"
1da177e4 55
1da177e4
LT
56kmem_zone_t *xfs_ifork_zone;
57kmem_zone_t *xfs_inode_zone;
1da177e4
LT
58
59/*
60 * Used in xfs_itruncate(). This is the maximum number of extents
61 * freed from a file in a single transaction.
62 */
63#define XFS_ITRUNC_MAX_EXTENTS 2
64
65STATIC int xfs_iflush_int(xfs_inode_t *, xfs_buf_t *);
66STATIC int xfs_iformat_local(xfs_inode_t *, xfs_dinode_t *, int, int);
67STATIC int xfs_iformat_extents(xfs_inode_t *, xfs_dinode_t *, int);
68STATIC int xfs_iformat_btree(xfs_inode_t *, xfs_dinode_t *, int);
69
1da177e4
LT
70#ifdef DEBUG
71/*
72 * Make sure that the extents in the given memory buffer
73 * are valid.
74 */
75STATIC void
76xfs_validate_extents(
4eea22f0 77 xfs_ifork_t *ifp,
1da177e4 78 int nrecs,
1da177e4
LT
79 xfs_exntfmt_t fmt)
80{
81 xfs_bmbt_irec_t irec;
a6f64d4a 82 xfs_bmbt_rec_host_t rec;
1da177e4
LT
83 int i;
84
85 for (i = 0; i < nrecs; i++) {
a6f64d4a
CH
86 xfs_bmbt_rec_host_t *ep = xfs_iext_get_ext(ifp, i);
87 rec.l0 = get_unaligned(&ep->l0);
88 rec.l1 = get_unaligned(&ep->l1);
89 xfs_bmbt_get_all(&rec, &irec);
1da177e4
LT
90 if (fmt == XFS_EXTFMT_NOSTATE)
91 ASSERT(irec.br_state == XFS_EXT_NORM);
1da177e4
LT
92 }
93}
94#else /* DEBUG */
a6f64d4a 95#define xfs_validate_extents(ifp, nrecs, fmt)
1da177e4
LT
96#endif /* DEBUG */
97
98/*
99 * Check that none of the inode's in the buffer have a next
100 * unlinked field of 0.
101 */
102#if defined(DEBUG)
103void
104xfs_inobp_check(
105 xfs_mount_t *mp,
106 xfs_buf_t *bp)
107{
108 int i;
109 int j;
110 xfs_dinode_t *dip;
111
112 j = mp->m_inode_cluster_size >> mp->m_sb.sb_inodelog;
113
114 for (i = 0; i < j; i++) {
115 dip = (xfs_dinode_t *)xfs_buf_offset(bp,
116 i * mp->m_sb.sb_inodesize);
117 if (!dip->di_next_unlinked) {
118 xfs_fs_cmn_err(CE_ALERT, mp,
119 "Detected a bogus zero next_unlinked field in incore inode buffer 0x%p. About to pop an ASSERT.",
120 bp);
121 ASSERT(dip->di_next_unlinked);
122 }
123 }
124}
125#endif
126
4ae29b43
DC
127/*
128 * Find the buffer associated with the given inode map
129 * We do basic validation checks on the buffer once it has been
130 * retrieved from disk.
131 */
132STATIC int
133xfs_imap_to_bp(
134 xfs_mount_t *mp,
135 xfs_trans_t *tp,
136 xfs_imap_t *imap,
137 xfs_buf_t **bpp,
138 uint buf_flags,
139 uint imap_flags)
140{
141 int error;
142 int i;
143 int ni;
144 xfs_buf_t *bp;
145
146 error = xfs_trans_read_buf(mp, tp, mp->m_ddev_targp, imap->im_blkno,
a3f74ffb 147 (int)imap->im_len, buf_flags, &bp);
4ae29b43 148 if (error) {
a3f74ffb
DC
149 if (error != EAGAIN) {
150 cmn_err(CE_WARN,
151 "xfs_imap_to_bp: xfs_trans_read_buf()returned "
4ae29b43
DC
152 "an error %d on %s. Returning error.",
153 error, mp->m_fsname);
a3f74ffb
DC
154 } else {
155 ASSERT(buf_flags & XFS_BUF_TRYLOCK);
156 }
4ae29b43
DC
157 return error;
158 }
159
160 /*
161 * Validate the magic number and version of every inode in the buffer
162 * (if DEBUG kernel) or the first inode in the buffer, otherwise.
163 */
164#ifdef DEBUG
165 ni = BBTOB(imap->im_len) >> mp->m_sb.sb_inodelog;
166#else /* usual case */
167 ni = 1;
168#endif
169
170 for (i = 0; i < ni; i++) {
171 int di_ok;
172 xfs_dinode_t *dip;
173
174 dip = (xfs_dinode_t *)xfs_buf_offset(bp,
175 (i << mp->m_sb.sb_inodelog));
176 di_ok = be16_to_cpu(dip->di_core.di_magic) == XFS_DINODE_MAGIC &&
177 XFS_DINODE_GOOD_VERSION(dip->di_core.di_version);
178 if (unlikely(XFS_TEST_ERROR(!di_ok, mp,
179 XFS_ERRTAG_ITOBP_INOTOBP,
180 XFS_RANDOM_ITOBP_INOTOBP))) {
181 if (imap_flags & XFS_IMAP_BULKSTAT) {
182 xfs_trans_brelse(tp, bp);
183 return XFS_ERROR(EINVAL);
184 }
185 XFS_CORRUPTION_ERROR("xfs_imap_to_bp",
186 XFS_ERRLEVEL_HIGH, mp, dip);
187#ifdef DEBUG
188 cmn_err(CE_PANIC,
189 "Device %s - bad inode magic/vsn "
190 "daddr %lld #%d (magic=%x)",
191 XFS_BUFTARG_NAME(mp->m_ddev_targp),
192 (unsigned long long)imap->im_blkno, i,
193 be16_to_cpu(dip->di_core.di_magic));
194#endif
195 xfs_trans_brelse(tp, bp);
196 return XFS_ERROR(EFSCORRUPTED);
197 }
198 }
199
200 xfs_inobp_check(mp, bp);
201
202 /*
203 * Mark the buffer as an inode buffer now that it looks good
204 */
205 XFS_BUF_SET_VTYPE(bp, B_FS_INO);
206
207 *bpp = bp;
208 return 0;
209}
210
1da177e4
LT
211/*
212 * This routine is called to map an inode number within a file
213 * system to the buffer containing the on-disk version of the
214 * inode. It returns a pointer to the buffer containing the
215 * on-disk inode in the bpp parameter, and in the dip parameter
216 * it returns a pointer to the on-disk inode within that buffer.
217 *
218 * If a non-zero error is returned, then the contents of bpp and
219 * dipp are undefined.
220 *
221 * Use xfs_imap() to determine the size and location of the
222 * buffer to read from disk.
223 */
ba0f32d4 224STATIC int
1da177e4
LT
225xfs_inotobp(
226 xfs_mount_t *mp,
227 xfs_trans_t *tp,
228 xfs_ino_t ino,
229 xfs_dinode_t **dipp,
230 xfs_buf_t **bpp,
231 int *offset)
232{
1da177e4
LT
233 xfs_imap_t imap;
234 xfs_buf_t *bp;
235 int error;
1da177e4 236
1da177e4
LT
237 imap.im_blkno = 0;
238 error = xfs_imap(mp, tp, ino, &imap, XFS_IMAP_LOOKUP);
4ae29b43 239 if (error)
1da177e4 240 return error;
1da177e4 241
4ae29b43
DC
242 error = xfs_imap_to_bp(mp, tp, &imap, &bp, XFS_BUF_LOCK, 0);
243 if (error)
1da177e4 244 return error;
1da177e4 245
1da177e4
LT
246 *dipp = (xfs_dinode_t *)xfs_buf_offset(bp, imap.im_boffset);
247 *bpp = bp;
248 *offset = imap.im_boffset;
249 return 0;
250}
251
252
253/*
254 * This routine is called to map an inode to the buffer containing
255 * the on-disk version of the inode. It returns a pointer to the
256 * buffer containing the on-disk inode in the bpp parameter, and in
257 * the dip parameter it returns a pointer to the on-disk inode within
258 * that buffer.
259 *
260 * If a non-zero error is returned, then the contents of bpp and
261 * dipp are undefined.
262 *
263 * If the inode is new and has not yet been initialized, use xfs_imap()
264 * to determine the size and location of the buffer to read from disk.
265 * If the inode has already been mapped to its buffer and read in once,
266 * then use the mapping information stored in the inode rather than
267 * calling xfs_imap(). This allows us to avoid the overhead of looking
268 * at the inode btree for small block file systems (see xfs_dilocate()).
269 * We can tell whether the inode has been mapped in before by comparing
270 * its disk block address to 0. Only uninitialized inodes will have
271 * 0 for the disk block address.
272 */
273int
274xfs_itobp(
275 xfs_mount_t *mp,
276 xfs_trans_t *tp,
277 xfs_inode_t *ip,
278 xfs_dinode_t **dipp,
279 xfs_buf_t **bpp,
b12dd342 280 xfs_daddr_t bno,
a3f74ffb
DC
281 uint imap_flags,
282 uint buf_flags)
1da177e4 283{
4d1a2ed3 284 xfs_imap_t imap;
1da177e4
LT
285 xfs_buf_t *bp;
286 int error;
1da177e4
LT
287
288 if (ip->i_blkno == (xfs_daddr_t)0) {
1da177e4 289 imap.im_blkno = bno;
4ae29b43
DC
290 error = xfs_imap(mp, tp, ip->i_ino, &imap,
291 XFS_IMAP_LOOKUP | imap_flags);
292 if (error)
1da177e4 293 return error;
1da177e4 294
1da177e4
LT
295 /*
296 * Fill in the fields in the inode that will be used to
297 * map the inode to its buffer from now on.
298 */
299 ip->i_blkno = imap.im_blkno;
300 ip->i_len = imap.im_len;
301 ip->i_boffset = imap.im_boffset;
302 } else {
303 /*
304 * We've already mapped the inode once, so just use the
305 * mapping that we saved the first time.
306 */
307 imap.im_blkno = ip->i_blkno;
308 imap.im_len = ip->i_len;
309 imap.im_boffset = ip->i_boffset;
310 }
311 ASSERT(bno == 0 || bno == imap.im_blkno);
312
a3f74ffb 313 error = xfs_imap_to_bp(mp, tp, &imap, &bp, buf_flags, imap_flags);
4ae29b43 314 if (error)
1da177e4 315 return error;
1da177e4 316
a3f74ffb
DC
317 if (!bp) {
318 ASSERT(buf_flags & XFS_BUF_TRYLOCK);
319 ASSERT(tp == NULL);
320 *bpp = NULL;
321 return EAGAIN;
322 }
323
1da177e4
LT
324 *dipp = (xfs_dinode_t *)xfs_buf_offset(bp, imap.im_boffset);
325 *bpp = bp;
326 return 0;
327}
328
329/*
330 * Move inode type and inode format specific information from the
331 * on-disk inode to the in-core inode. For fifos, devs, and sockets
332 * this means set if_rdev to the proper value. For files, directories,
333 * and symlinks this means to bring in the in-line data or extent
334 * pointers. For a file in B-tree format, only the root is immediately
335 * brought in-core. The rest will be in-lined in if_extents when it
336 * is first referenced (see xfs_iread_extents()).
337 */
338STATIC int
339xfs_iformat(
340 xfs_inode_t *ip,
341 xfs_dinode_t *dip)
342{
343 xfs_attr_shortform_t *atp;
344 int size;
345 int error;
346 xfs_fsize_t di_size;
347 ip->i_df.if_ext_max =
348 XFS_IFORK_DSIZE(ip) / (uint)sizeof(xfs_bmbt_rec_t);
349 error = 0;
350
347d1c01
CH
351 if (unlikely(be32_to_cpu(dip->di_core.di_nextents) +
352 be16_to_cpu(dip->di_core.di_anextents) >
353 be64_to_cpu(dip->di_core.di_nblocks))) {
3762ec6b
NS
354 xfs_fs_repair_cmn_err(CE_WARN, ip->i_mount,
355 "corrupt dinode %Lu, extent total = %d, nblocks = %Lu.",
1da177e4 356 (unsigned long long)ip->i_ino,
347d1c01
CH
357 (int)(be32_to_cpu(dip->di_core.di_nextents) +
358 be16_to_cpu(dip->di_core.di_anextents)),
1da177e4 359 (unsigned long long)
347d1c01 360 be64_to_cpu(dip->di_core.di_nblocks));
1da177e4
LT
361 XFS_CORRUPTION_ERROR("xfs_iformat(1)", XFS_ERRLEVEL_LOW,
362 ip->i_mount, dip);
363 return XFS_ERROR(EFSCORRUPTED);
364 }
365
347d1c01 366 if (unlikely(dip->di_core.di_forkoff > ip->i_mount->m_sb.sb_inodesize)) {
3762ec6b
NS
367 xfs_fs_repair_cmn_err(CE_WARN, ip->i_mount,
368 "corrupt dinode %Lu, forkoff = 0x%x.",
1da177e4 369 (unsigned long long)ip->i_ino,
347d1c01 370 dip->di_core.di_forkoff);
1da177e4
LT
371 XFS_CORRUPTION_ERROR("xfs_iformat(2)", XFS_ERRLEVEL_LOW,
372 ip->i_mount, dip);
373 return XFS_ERROR(EFSCORRUPTED);
374 }
375
376 switch (ip->i_d.di_mode & S_IFMT) {
377 case S_IFIFO:
378 case S_IFCHR:
379 case S_IFBLK:
380 case S_IFSOCK:
347d1c01 381 if (unlikely(dip->di_core.di_format != XFS_DINODE_FMT_DEV)) {
1da177e4
LT
382 XFS_CORRUPTION_ERROR("xfs_iformat(3)", XFS_ERRLEVEL_LOW,
383 ip->i_mount, dip);
384 return XFS_ERROR(EFSCORRUPTED);
385 }
386 ip->i_d.di_size = 0;
ba87ea69 387 ip->i_size = 0;
347d1c01 388 ip->i_df.if_u2.if_rdev = be32_to_cpu(dip->di_u.di_dev);
1da177e4
LT
389 break;
390
391 case S_IFREG:
392 case S_IFLNK:
393 case S_IFDIR:
347d1c01 394 switch (dip->di_core.di_format) {
1da177e4
LT
395 case XFS_DINODE_FMT_LOCAL:
396 /*
397 * no local regular files yet
398 */
347d1c01 399 if (unlikely((be16_to_cpu(dip->di_core.di_mode) & S_IFMT) == S_IFREG)) {
3762ec6b
NS
400 xfs_fs_repair_cmn_err(CE_WARN, ip->i_mount,
401 "corrupt inode %Lu "
402 "(local format for regular file).",
1da177e4
LT
403 (unsigned long long) ip->i_ino);
404 XFS_CORRUPTION_ERROR("xfs_iformat(4)",
405 XFS_ERRLEVEL_LOW,
406 ip->i_mount, dip);
407 return XFS_ERROR(EFSCORRUPTED);
408 }
409
347d1c01 410 di_size = be64_to_cpu(dip->di_core.di_size);
1da177e4 411 if (unlikely(di_size > XFS_DFORK_DSIZE(dip, ip->i_mount))) {
3762ec6b
NS
412 xfs_fs_repair_cmn_err(CE_WARN, ip->i_mount,
413 "corrupt inode %Lu "
414 "(bad size %Ld for local inode).",
1da177e4
LT
415 (unsigned long long) ip->i_ino,
416 (long long) di_size);
417 XFS_CORRUPTION_ERROR("xfs_iformat(5)",
418 XFS_ERRLEVEL_LOW,
419 ip->i_mount, dip);
420 return XFS_ERROR(EFSCORRUPTED);
421 }
422
423 size = (int)di_size;
424 error = xfs_iformat_local(ip, dip, XFS_DATA_FORK, size);
425 break;
426 case XFS_DINODE_FMT_EXTENTS:
427 error = xfs_iformat_extents(ip, dip, XFS_DATA_FORK);
428 break;
429 case XFS_DINODE_FMT_BTREE:
430 error = xfs_iformat_btree(ip, dip, XFS_DATA_FORK);
431 break;
432 default:
433 XFS_ERROR_REPORT("xfs_iformat(6)", XFS_ERRLEVEL_LOW,
434 ip->i_mount);
435 return XFS_ERROR(EFSCORRUPTED);
436 }
437 break;
438
439 default:
440 XFS_ERROR_REPORT("xfs_iformat(7)", XFS_ERRLEVEL_LOW, ip->i_mount);
441 return XFS_ERROR(EFSCORRUPTED);
442 }
443 if (error) {
444 return error;
445 }
446 if (!XFS_DFORK_Q(dip))
447 return 0;
448 ASSERT(ip->i_afp == NULL);
449 ip->i_afp = kmem_zone_zalloc(xfs_ifork_zone, KM_SLEEP);
450 ip->i_afp->if_ext_max =
451 XFS_IFORK_ASIZE(ip) / (uint)sizeof(xfs_bmbt_rec_t);
347d1c01 452 switch (dip->di_core.di_aformat) {
1da177e4
LT
453 case XFS_DINODE_FMT_LOCAL:
454 atp = (xfs_attr_shortform_t *)XFS_DFORK_APTR(dip);
3b244aa8 455 size = be16_to_cpu(atp->hdr.totsize);
1da177e4
LT
456 error = xfs_iformat_local(ip, dip, XFS_ATTR_FORK, size);
457 break;
458 case XFS_DINODE_FMT_EXTENTS:
459 error = xfs_iformat_extents(ip, dip, XFS_ATTR_FORK);
460 break;
461 case XFS_DINODE_FMT_BTREE:
462 error = xfs_iformat_btree(ip, dip, XFS_ATTR_FORK);
463 break;
464 default:
465 error = XFS_ERROR(EFSCORRUPTED);
466 break;
467 }
468 if (error) {
469 kmem_zone_free(xfs_ifork_zone, ip->i_afp);
470 ip->i_afp = NULL;
471 xfs_idestroy_fork(ip, XFS_DATA_FORK);
472 }
473 return error;
474}
475
476/*
477 * The file is in-lined in the on-disk inode.
478 * If it fits into if_inline_data, then copy
479 * it there, otherwise allocate a buffer for it
480 * and copy the data there. Either way, set
481 * if_data to point at the data.
482 * If we allocate a buffer for the data, make
483 * sure that its size is a multiple of 4 and
484 * record the real size in i_real_bytes.
485 */
486STATIC int
487xfs_iformat_local(
488 xfs_inode_t *ip,
489 xfs_dinode_t *dip,
490 int whichfork,
491 int size)
492{
493 xfs_ifork_t *ifp;
494 int real_size;
495
496 /*
497 * If the size is unreasonable, then something
498 * is wrong and we just bail out rather than crash in
499 * kmem_alloc() or memcpy() below.
500 */
501 if (unlikely(size > XFS_DFORK_SIZE(dip, ip->i_mount, whichfork))) {
3762ec6b
NS
502 xfs_fs_repair_cmn_err(CE_WARN, ip->i_mount,
503 "corrupt inode %Lu "
504 "(bad size %d for local fork, size = %d).",
1da177e4
LT
505 (unsigned long long) ip->i_ino, size,
506 XFS_DFORK_SIZE(dip, ip->i_mount, whichfork));
507 XFS_CORRUPTION_ERROR("xfs_iformat_local", XFS_ERRLEVEL_LOW,
508 ip->i_mount, dip);
509 return XFS_ERROR(EFSCORRUPTED);
510 }
511 ifp = XFS_IFORK_PTR(ip, whichfork);
512 real_size = 0;
513 if (size == 0)
514 ifp->if_u1.if_data = NULL;
515 else if (size <= sizeof(ifp->if_u2.if_inline_data))
516 ifp->if_u1.if_data = ifp->if_u2.if_inline_data;
517 else {
518 real_size = roundup(size, 4);
519 ifp->if_u1.if_data = kmem_alloc(real_size, KM_SLEEP);
520 }
521 ifp->if_bytes = size;
522 ifp->if_real_bytes = real_size;
523 if (size)
524 memcpy(ifp->if_u1.if_data, XFS_DFORK_PTR(dip, whichfork), size);
525 ifp->if_flags &= ~XFS_IFEXTENTS;
526 ifp->if_flags |= XFS_IFINLINE;
527 return 0;
528}
529
530/*
531 * The file consists of a set of extents all
532 * of which fit into the on-disk inode.
533 * If there are few enough extents to fit into
534 * the if_inline_ext, then copy them there.
535 * Otherwise allocate a buffer for them and copy
536 * them into it. Either way, set if_extents
537 * to point at the extents.
538 */
539STATIC int
540xfs_iformat_extents(
541 xfs_inode_t *ip,
542 xfs_dinode_t *dip,
543 int whichfork)
544{
a6f64d4a 545 xfs_bmbt_rec_t *dp;
1da177e4
LT
546 xfs_ifork_t *ifp;
547 int nex;
1da177e4
LT
548 int size;
549 int i;
550
551 ifp = XFS_IFORK_PTR(ip, whichfork);
552 nex = XFS_DFORK_NEXTENTS(dip, whichfork);
553 size = nex * (uint)sizeof(xfs_bmbt_rec_t);
554
555 /*
556 * If the number of extents is unreasonable, then something
557 * is wrong and we just bail out rather than crash in
558 * kmem_alloc() or memcpy() below.
559 */
560 if (unlikely(size < 0 || size > XFS_DFORK_SIZE(dip, ip->i_mount, whichfork))) {
3762ec6b
NS
561 xfs_fs_repair_cmn_err(CE_WARN, ip->i_mount,
562 "corrupt inode %Lu ((a)extents = %d).",
1da177e4
LT
563 (unsigned long long) ip->i_ino, nex);
564 XFS_CORRUPTION_ERROR("xfs_iformat_extents(1)", XFS_ERRLEVEL_LOW,
565 ip->i_mount, dip);
566 return XFS_ERROR(EFSCORRUPTED);
567 }
568
4eea22f0 569 ifp->if_real_bytes = 0;
1da177e4
LT
570 if (nex == 0)
571 ifp->if_u1.if_extents = NULL;
572 else if (nex <= XFS_INLINE_EXTS)
573 ifp->if_u1.if_extents = ifp->if_u2.if_inline_ext;
4eea22f0
MK
574 else
575 xfs_iext_add(ifp, 0, nex);
576
1da177e4 577 ifp->if_bytes = size;
1da177e4
LT
578 if (size) {
579 dp = (xfs_bmbt_rec_t *) XFS_DFORK_PTR(dip, whichfork);
a6f64d4a 580 xfs_validate_extents(ifp, nex, XFS_EXTFMT_INODE(ip));
4eea22f0 581 for (i = 0; i < nex; i++, dp++) {
a6f64d4a 582 xfs_bmbt_rec_host_t *ep = xfs_iext_get_ext(ifp, i);
cd8b0a97
CH
583 ep->l0 = be64_to_cpu(get_unaligned(&dp->l0));
584 ep->l1 = be64_to_cpu(get_unaligned(&dp->l1));
1da177e4 585 }
3a59c94c 586 XFS_BMAP_TRACE_EXLIST(ip, nex, whichfork);
1da177e4
LT
587 if (whichfork != XFS_DATA_FORK ||
588 XFS_EXTFMT_INODE(ip) == XFS_EXTFMT_NOSTATE)
589 if (unlikely(xfs_check_nostate_extents(
4eea22f0 590 ifp, 0, nex))) {
1da177e4
LT
591 XFS_ERROR_REPORT("xfs_iformat_extents(2)",
592 XFS_ERRLEVEL_LOW,
593 ip->i_mount);
594 return XFS_ERROR(EFSCORRUPTED);
595 }
596 }
597 ifp->if_flags |= XFS_IFEXTENTS;
598 return 0;
599}
600
601/*
602 * The file has too many extents to fit into
603 * the inode, so they are in B-tree format.
604 * Allocate a buffer for the root of the B-tree
605 * and copy the root into it. The i_extents
606 * field will remain NULL until all of the
607 * extents are read in (when they are needed).
608 */
609STATIC int
610xfs_iformat_btree(
611 xfs_inode_t *ip,
612 xfs_dinode_t *dip,
613 int whichfork)
614{
615 xfs_bmdr_block_t *dfp;
616 xfs_ifork_t *ifp;
617 /* REFERENCED */
618 int nrecs;
619 int size;
620
621 ifp = XFS_IFORK_PTR(ip, whichfork);
622 dfp = (xfs_bmdr_block_t *)XFS_DFORK_PTR(dip, whichfork);
623 size = XFS_BMAP_BROOT_SPACE(dfp);
624 nrecs = XFS_BMAP_BROOT_NUMRECS(dfp);
625
626 /*
627 * blow out if -- fork has less extents than can fit in
628 * fork (fork shouldn't be a btree format), root btree
629 * block has more records than can fit into the fork,
630 * or the number of extents is greater than the number of
631 * blocks.
632 */
633 if (unlikely(XFS_IFORK_NEXTENTS(ip, whichfork) <= ifp->if_ext_max
634 || XFS_BMDR_SPACE_CALC(nrecs) >
635 XFS_DFORK_SIZE(dip, ip->i_mount, whichfork)
636 || XFS_IFORK_NEXTENTS(ip, whichfork) > ip->i_d.di_nblocks)) {
3762ec6b
NS
637 xfs_fs_repair_cmn_err(CE_WARN, ip->i_mount,
638 "corrupt inode %Lu (btree).",
1da177e4
LT
639 (unsigned long long) ip->i_ino);
640 XFS_ERROR_REPORT("xfs_iformat_btree", XFS_ERRLEVEL_LOW,
641 ip->i_mount);
642 return XFS_ERROR(EFSCORRUPTED);
643 }
644
645 ifp->if_broot_bytes = size;
646 ifp->if_broot = kmem_alloc(size, KM_SLEEP);
647 ASSERT(ifp->if_broot != NULL);
648 /*
649 * Copy and convert from the on-disk structure
650 * to the in-memory structure.
651 */
652 xfs_bmdr_to_bmbt(dfp, XFS_DFORK_SIZE(dip, ip->i_mount, whichfork),
653 ifp->if_broot, size);
654 ifp->if_flags &= ~XFS_IFEXTENTS;
655 ifp->if_flags |= XFS_IFBROOT;
656
657 return 0;
658}
659
1da177e4 660void
347d1c01
CH
661xfs_dinode_from_disk(
662 xfs_icdinode_t *to,
663 xfs_dinode_core_t *from)
1da177e4 664{
347d1c01
CH
665 to->di_magic = be16_to_cpu(from->di_magic);
666 to->di_mode = be16_to_cpu(from->di_mode);
667 to->di_version = from ->di_version;
668 to->di_format = from->di_format;
669 to->di_onlink = be16_to_cpu(from->di_onlink);
670 to->di_uid = be32_to_cpu(from->di_uid);
671 to->di_gid = be32_to_cpu(from->di_gid);
672 to->di_nlink = be32_to_cpu(from->di_nlink);
673 to->di_projid = be16_to_cpu(from->di_projid);
674 memcpy(to->di_pad, from->di_pad, sizeof(to->di_pad));
675 to->di_flushiter = be16_to_cpu(from->di_flushiter);
676 to->di_atime.t_sec = be32_to_cpu(from->di_atime.t_sec);
677 to->di_atime.t_nsec = be32_to_cpu(from->di_atime.t_nsec);
678 to->di_mtime.t_sec = be32_to_cpu(from->di_mtime.t_sec);
679 to->di_mtime.t_nsec = be32_to_cpu(from->di_mtime.t_nsec);
680 to->di_ctime.t_sec = be32_to_cpu(from->di_ctime.t_sec);
681 to->di_ctime.t_nsec = be32_to_cpu(from->di_ctime.t_nsec);
682 to->di_size = be64_to_cpu(from->di_size);
683 to->di_nblocks = be64_to_cpu(from->di_nblocks);
684 to->di_extsize = be32_to_cpu(from->di_extsize);
685 to->di_nextents = be32_to_cpu(from->di_nextents);
686 to->di_anextents = be16_to_cpu(from->di_anextents);
687 to->di_forkoff = from->di_forkoff;
688 to->di_aformat = from->di_aformat;
689 to->di_dmevmask = be32_to_cpu(from->di_dmevmask);
690 to->di_dmstate = be16_to_cpu(from->di_dmstate);
691 to->di_flags = be16_to_cpu(from->di_flags);
692 to->di_gen = be32_to_cpu(from->di_gen);
693}
694
695void
696xfs_dinode_to_disk(
697 xfs_dinode_core_t *to,
698 xfs_icdinode_t *from)
699{
700 to->di_magic = cpu_to_be16(from->di_magic);
701 to->di_mode = cpu_to_be16(from->di_mode);
702 to->di_version = from ->di_version;
703 to->di_format = from->di_format;
704 to->di_onlink = cpu_to_be16(from->di_onlink);
705 to->di_uid = cpu_to_be32(from->di_uid);
706 to->di_gid = cpu_to_be32(from->di_gid);
707 to->di_nlink = cpu_to_be32(from->di_nlink);
708 to->di_projid = cpu_to_be16(from->di_projid);
709 memcpy(to->di_pad, from->di_pad, sizeof(to->di_pad));
710 to->di_flushiter = cpu_to_be16(from->di_flushiter);
711 to->di_atime.t_sec = cpu_to_be32(from->di_atime.t_sec);
712 to->di_atime.t_nsec = cpu_to_be32(from->di_atime.t_nsec);
713 to->di_mtime.t_sec = cpu_to_be32(from->di_mtime.t_sec);
714 to->di_mtime.t_nsec = cpu_to_be32(from->di_mtime.t_nsec);
715 to->di_ctime.t_sec = cpu_to_be32(from->di_ctime.t_sec);
716 to->di_ctime.t_nsec = cpu_to_be32(from->di_ctime.t_nsec);
717 to->di_size = cpu_to_be64(from->di_size);
718 to->di_nblocks = cpu_to_be64(from->di_nblocks);
719 to->di_extsize = cpu_to_be32(from->di_extsize);
720 to->di_nextents = cpu_to_be32(from->di_nextents);
721 to->di_anextents = cpu_to_be16(from->di_anextents);
722 to->di_forkoff = from->di_forkoff;
723 to->di_aformat = from->di_aformat;
724 to->di_dmevmask = cpu_to_be32(from->di_dmevmask);
725 to->di_dmstate = cpu_to_be16(from->di_dmstate);
726 to->di_flags = cpu_to_be16(from->di_flags);
727 to->di_gen = cpu_to_be32(from->di_gen);
1da177e4
LT
728}
729
730STATIC uint
731_xfs_dic2xflags(
1da177e4
LT
732 __uint16_t di_flags)
733{
734 uint flags = 0;
735
736 if (di_flags & XFS_DIFLAG_ANY) {
737 if (di_flags & XFS_DIFLAG_REALTIME)
738 flags |= XFS_XFLAG_REALTIME;
739 if (di_flags & XFS_DIFLAG_PREALLOC)
740 flags |= XFS_XFLAG_PREALLOC;
741 if (di_flags & XFS_DIFLAG_IMMUTABLE)
742 flags |= XFS_XFLAG_IMMUTABLE;
743 if (di_flags & XFS_DIFLAG_APPEND)
744 flags |= XFS_XFLAG_APPEND;
745 if (di_flags & XFS_DIFLAG_SYNC)
746 flags |= XFS_XFLAG_SYNC;
747 if (di_flags & XFS_DIFLAG_NOATIME)
748 flags |= XFS_XFLAG_NOATIME;
749 if (di_flags & XFS_DIFLAG_NODUMP)
750 flags |= XFS_XFLAG_NODUMP;
751 if (di_flags & XFS_DIFLAG_RTINHERIT)
752 flags |= XFS_XFLAG_RTINHERIT;
753 if (di_flags & XFS_DIFLAG_PROJINHERIT)
754 flags |= XFS_XFLAG_PROJINHERIT;
755 if (di_flags & XFS_DIFLAG_NOSYMLINKS)
756 flags |= XFS_XFLAG_NOSYMLINKS;
dd9f438e
NS
757 if (di_flags & XFS_DIFLAG_EXTSIZE)
758 flags |= XFS_XFLAG_EXTSIZE;
759 if (di_flags & XFS_DIFLAG_EXTSZINHERIT)
760 flags |= XFS_XFLAG_EXTSZINHERIT;
d3446eac
BN
761 if (di_flags & XFS_DIFLAG_NODEFRAG)
762 flags |= XFS_XFLAG_NODEFRAG;
2a82b8be
DC
763 if (di_flags & XFS_DIFLAG_FILESTREAM)
764 flags |= XFS_XFLAG_FILESTREAM;
1da177e4
LT
765 }
766
767 return flags;
768}
769
770uint
771xfs_ip2xflags(
772 xfs_inode_t *ip)
773{
347d1c01 774 xfs_icdinode_t *dic = &ip->i_d;
1da177e4 775
a916e2bd 776 return _xfs_dic2xflags(dic->di_flags) |
45ba598e 777 (XFS_IFORK_Q(ip) ? XFS_XFLAG_HASATTR : 0);
1da177e4
LT
778}
779
780uint
781xfs_dic2xflags(
45ba598e 782 xfs_dinode_t *dip)
1da177e4 783{
45ba598e
CH
784 xfs_dinode_core_t *dic = &dip->di_core;
785
347d1c01 786 return _xfs_dic2xflags(be16_to_cpu(dic->di_flags)) |
45ba598e 787 (XFS_DFORK_Q(dip) ? XFS_XFLAG_HASATTR : 0);
1da177e4
LT
788}
789
790/*
791 * Given a mount structure and an inode number, return a pointer
c41564b5 792 * to a newly allocated in-core inode corresponding to the given
1da177e4
LT
793 * inode number.
794 *
795 * Initialize the inode's attributes and extent pointers if it
796 * already has them (it will not if the inode has no links).
797 */
798int
799xfs_iread(
800 xfs_mount_t *mp,
801 xfs_trans_t *tp,
802 xfs_ino_t ino,
803 xfs_inode_t **ipp,
745b1f47
NS
804 xfs_daddr_t bno,
805 uint imap_flags)
1da177e4
LT
806{
807 xfs_buf_t *bp;
808 xfs_dinode_t *dip;
809 xfs_inode_t *ip;
810 int error;
811
812 ASSERT(xfs_inode_zone != NULL);
813
814 ip = kmem_zone_zalloc(xfs_inode_zone, KM_SLEEP);
815 ip->i_ino = ino;
816 ip->i_mount = mp;
b677c210 817 atomic_set(&ip->i_iocount, 0);
f273ab84 818 spin_lock_init(&ip->i_flags_lock);
1da177e4
LT
819
820 /*
821 * Get pointer's to the on-disk inode and the buffer containing it.
822 * If the inode number refers to a block outside the file system
823 * then xfs_itobp() will return NULL. In this case we should
824 * return NULL as well. Set i_blkno to 0 so that xfs_itobp() will
825 * know that this is a new incore inode.
826 */
a3f74ffb 827 error = xfs_itobp(mp, tp, ip, &dip, &bp, bno, imap_flags, XFS_BUF_LOCK);
b12dd342 828 if (error) {
1da177e4
LT
829 kmem_zone_free(xfs_inode_zone, ip);
830 return error;
831 }
832
833 /*
834 * Initialize inode's trace buffers.
835 * Do this before xfs_iformat in case it adds entries.
836 */
cf441eeb
LM
837#ifdef XFS_INODE_TRACE
838 ip->i_trace = ktrace_alloc(INODE_TRACE_SIZE, KM_SLEEP);
1543d79c 839#endif
1da177e4
LT
840#ifdef XFS_BMAP_TRACE
841 ip->i_xtrace = ktrace_alloc(XFS_BMAP_KTRACE_SIZE, KM_SLEEP);
842#endif
843#ifdef XFS_BMBT_TRACE
844 ip->i_btrace = ktrace_alloc(XFS_BMBT_KTRACE_SIZE, KM_SLEEP);
845#endif
846#ifdef XFS_RW_TRACE
847 ip->i_rwtrace = ktrace_alloc(XFS_RW_KTRACE_SIZE, KM_SLEEP);
848#endif
849#ifdef XFS_ILOCK_TRACE
850 ip->i_lock_trace = ktrace_alloc(XFS_ILOCK_KTRACE_SIZE, KM_SLEEP);
851#endif
852#ifdef XFS_DIR2_TRACE
853 ip->i_dir_trace = ktrace_alloc(XFS_DIR2_KTRACE_SIZE, KM_SLEEP);
854#endif
855
856 /*
857 * If we got something that isn't an inode it means someone
858 * (nfs or dmi) has a stale handle.
859 */
347d1c01 860 if (be16_to_cpu(dip->di_core.di_magic) != XFS_DINODE_MAGIC) {
1da177e4
LT
861 kmem_zone_free(xfs_inode_zone, ip);
862 xfs_trans_brelse(tp, bp);
863#ifdef DEBUG
864 xfs_fs_cmn_err(CE_ALERT, mp, "xfs_iread: "
865 "dip->di_core.di_magic (0x%x) != "
866 "XFS_DINODE_MAGIC (0x%x)",
347d1c01 867 be16_to_cpu(dip->di_core.di_magic),
1da177e4
LT
868 XFS_DINODE_MAGIC);
869#endif /* DEBUG */
870 return XFS_ERROR(EINVAL);
871 }
872
873 /*
874 * If the on-disk inode is already linked to a directory
875 * entry, copy all of the inode into the in-core inode.
876 * xfs_iformat() handles copying in the inode format
877 * specific information.
878 * Otherwise, just get the truly permanent information.
879 */
880 if (dip->di_core.di_mode) {
347d1c01 881 xfs_dinode_from_disk(&ip->i_d, &dip->di_core);
1da177e4
LT
882 error = xfs_iformat(ip, dip);
883 if (error) {
884 kmem_zone_free(xfs_inode_zone, ip);
885 xfs_trans_brelse(tp, bp);
886#ifdef DEBUG
887 xfs_fs_cmn_err(CE_ALERT, mp, "xfs_iread: "
888 "xfs_iformat() returned error %d",
889 error);
890#endif /* DEBUG */
891 return error;
892 }
893 } else {
347d1c01
CH
894 ip->i_d.di_magic = be16_to_cpu(dip->di_core.di_magic);
895 ip->i_d.di_version = dip->di_core.di_version;
896 ip->i_d.di_gen = be32_to_cpu(dip->di_core.di_gen);
897 ip->i_d.di_flushiter = be16_to_cpu(dip->di_core.di_flushiter);
1da177e4
LT
898 /*
899 * Make sure to pull in the mode here as well in
900 * case the inode is released without being used.
901 * This ensures that xfs_inactive() will see that
902 * the inode is already free and not try to mess
903 * with the uninitialized part of it.
904 */
905 ip->i_d.di_mode = 0;
906 /*
907 * Initialize the per-fork minima and maxima for a new
908 * inode here. xfs_iformat will do it for old inodes.
909 */
910 ip->i_df.if_ext_max =
911 XFS_IFORK_DSIZE(ip) / (uint)sizeof(xfs_bmbt_rec_t);
912 }
913
914 INIT_LIST_HEAD(&ip->i_reclaim);
915
916 /*
917 * The inode format changed when we moved the link count and
918 * made it 32 bits long. If this is an old format inode,
919 * convert it in memory to look like a new one. If it gets
920 * flushed to disk we will convert back before flushing or
921 * logging it. We zero out the new projid field and the old link
922 * count field. We'll handle clearing the pad field (the remains
923 * of the old uuid field) when we actually convert the inode to
924 * the new format. We don't change the version number so that we
925 * can distinguish this from a real new format inode.
926 */
927 if (ip->i_d.di_version == XFS_DINODE_VERSION_1) {
928 ip->i_d.di_nlink = ip->i_d.di_onlink;
929 ip->i_d.di_onlink = 0;
930 ip->i_d.di_projid = 0;
931 }
932
933 ip->i_delayed_blks = 0;
ba87ea69 934 ip->i_size = ip->i_d.di_size;
1da177e4
LT
935
936 /*
937 * Mark the buffer containing the inode as something to keep
938 * around for a while. This helps to keep recently accessed
939 * meta-data in-core longer.
940 */
941 XFS_BUF_SET_REF(bp, XFS_INO_REF);
942
943 /*
944 * Use xfs_trans_brelse() to release the buffer containing the
945 * on-disk inode, because it was acquired with xfs_trans_read_buf()
946 * in xfs_itobp() above. If tp is NULL, this is just a normal
947 * brelse(). If we're within a transaction, then xfs_trans_brelse()
948 * will only release the buffer if it is not dirty within the
949 * transaction. It will be OK to release the buffer in this case,
950 * because inodes on disk are never destroyed and we will be
951 * locking the new in-core inode before putting it in the hash
952 * table where other processes can find it. Thus we don't have
953 * to worry about the inode being changed just because we released
954 * the buffer.
955 */
956 xfs_trans_brelse(tp, bp);
957 *ipp = ip;
958 return 0;
959}
960
961/*
962 * Read in extents from a btree-format inode.
963 * Allocate and fill in if_extents. Real work is done in xfs_bmap.c.
964 */
965int
966xfs_iread_extents(
967 xfs_trans_t *tp,
968 xfs_inode_t *ip,
969 int whichfork)
970{
971 int error;
972 xfs_ifork_t *ifp;
4eea22f0 973 xfs_extnum_t nextents;
1da177e4
LT
974 size_t size;
975
976 if (unlikely(XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)) {
977 XFS_ERROR_REPORT("xfs_iread_extents", XFS_ERRLEVEL_LOW,
978 ip->i_mount);
979 return XFS_ERROR(EFSCORRUPTED);
980 }
4eea22f0
MK
981 nextents = XFS_IFORK_NEXTENTS(ip, whichfork);
982 size = nextents * sizeof(xfs_bmbt_rec_t);
1da177e4 983 ifp = XFS_IFORK_PTR(ip, whichfork);
4eea22f0 984
1da177e4
LT
985 /*
986 * We know that the size is valid (it's checked in iformat_btree)
987 */
1da177e4 988 ifp->if_lastex = NULLEXTNUM;
4eea22f0 989 ifp->if_bytes = ifp->if_real_bytes = 0;
1da177e4 990 ifp->if_flags |= XFS_IFEXTENTS;
4eea22f0 991 xfs_iext_add(ifp, 0, nextents);
1da177e4
LT
992 error = xfs_bmap_read_extents(tp, ip, whichfork);
993 if (error) {
4eea22f0 994 xfs_iext_destroy(ifp);
1da177e4
LT
995 ifp->if_flags &= ~XFS_IFEXTENTS;
996 return error;
997 }
a6f64d4a 998 xfs_validate_extents(ifp, nextents, XFS_EXTFMT_INODE(ip));
1da177e4
LT
999 return 0;
1000}
1001
1002/*
1003 * Allocate an inode on disk and return a copy of its in-core version.
1004 * The in-core inode is locked exclusively. Set mode, nlink, and rdev
1005 * appropriately within the inode. The uid and gid for the inode are
1006 * set according to the contents of the given cred structure.
1007 *
1008 * Use xfs_dialloc() to allocate the on-disk inode. If xfs_dialloc()
1009 * has a free inode available, call xfs_iget()
1010 * to obtain the in-core version of the allocated inode. Finally,
1011 * fill in the inode and log its initial contents. In this case,
1012 * ialloc_context would be set to NULL and call_again set to false.
1013 *
1014 * If xfs_dialloc() does not have an available inode,
1015 * it will replenish its supply by doing an allocation. Since we can
1016 * only do one allocation within a transaction without deadlocks, we
1017 * must commit the current transaction before returning the inode itself.
1018 * In this case, therefore, we will set call_again to true and return.
1019 * The caller should then commit the current transaction, start a new
1020 * transaction, and call xfs_ialloc() again to actually get the inode.
1021 *
1022 * To ensure that some other process does not grab the inode that
1023 * was allocated during the first call to xfs_ialloc(), this routine
1024 * also returns the [locked] bp pointing to the head of the freelist
1025 * as ialloc_context. The caller should hold this buffer across
1026 * the commit and pass it back into this routine on the second call.
b11f94d5
DC
1027 *
1028 * If we are allocating quota inodes, we do not have a parent inode
1029 * to attach to or associate with (i.e. pip == NULL) because they
1030 * are not linked into the directory structure - they are attached
1031 * directly to the superblock - and so have no parent.
1da177e4
LT
1032 */
1033int
1034xfs_ialloc(
1035 xfs_trans_t *tp,
1036 xfs_inode_t *pip,
1037 mode_t mode,
31b084ae 1038 xfs_nlink_t nlink,
1da177e4
LT
1039 xfs_dev_t rdev,
1040 cred_t *cr,
1041 xfs_prid_t prid,
1042 int okalloc,
1043 xfs_buf_t **ialloc_context,
1044 boolean_t *call_again,
1045 xfs_inode_t **ipp)
1046{
1047 xfs_ino_t ino;
1048 xfs_inode_t *ip;
67fcaa73 1049 bhv_vnode_t *vp;
1da177e4
LT
1050 uint flags;
1051 int error;
1052
1053 /*
1054 * Call the space management code to pick
1055 * the on-disk inode to be allocated.
1056 */
b11f94d5 1057 error = xfs_dialloc(tp, pip ? pip->i_ino : 0, mode, okalloc,
1da177e4
LT
1058 ialloc_context, call_again, &ino);
1059 if (error != 0) {
1060 return error;
1061 }
1062 if (*call_again || ino == NULLFSINO) {
1063 *ipp = NULL;
1064 return 0;
1065 }
1066 ASSERT(*ialloc_context == NULL);
1067
1068 /*
1069 * Get the in-core inode with the lock held exclusively.
1070 * This is because we're setting fields here we need
1071 * to prevent others from looking at until we're done.
1072 */
1073 error = xfs_trans_iget(tp->t_mountp, tp, ino,
745b1f47 1074 XFS_IGET_CREATE, XFS_ILOCK_EXCL, &ip);
1da177e4
LT
1075 if (error != 0) {
1076 return error;
1077 }
1078 ASSERT(ip != NULL);
1079
1080 vp = XFS_ITOV(ip);
1da177e4
LT
1081 ip->i_d.di_mode = (__uint16_t)mode;
1082 ip->i_d.di_onlink = 0;
1083 ip->i_d.di_nlink = nlink;
1084 ASSERT(ip->i_d.di_nlink == nlink);
1085 ip->i_d.di_uid = current_fsuid(cr);
1086 ip->i_d.di_gid = current_fsgid(cr);
1087 ip->i_d.di_projid = prid;
1088 memset(&(ip->i_d.di_pad[0]), 0, sizeof(ip->i_d.di_pad));
1089
1090 /*
1091 * If the superblock version is up to where we support new format
1092 * inodes and this is currently an old format inode, then change
1093 * the inode version number now. This way we only do the conversion
1094 * here rather than here and in the flush/logging code.
1095 */
62118709 1096 if (xfs_sb_version_hasnlink(&tp->t_mountp->m_sb) &&
1da177e4
LT
1097 ip->i_d.di_version == XFS_DINODE_VERSION_1) {
1098 ip->i_d.di_version = XFS_DINODE_VERSION_2;
1099 /*
1100 * We've already zeroed the old link count, the projid field,
1101 * and the pad field.
1102 */
1103 }
1104
1105 /*
1106 * Project ids won't be stored on disk if we are using a version 1 inode.
1107 */
2a82b8be 1108 if ((prid != 0) && (ip->i_d.di_version == XFS_DINODE_VERSION_1))
1da177e4
LT
1109 xfs_bump_ino_vers2(tp, ip);
1110
bd186aa9 1111 if (pip && XFS_INHERIT_GID(pip)) {
1da177e4
LT
1112 ip->i_d.di_gid = pip->i_d.di_gid;
1113 if ((pip->i_d.di_mode & S_ISGID) && (mode & S_IFMT) == S_IFDIR) {
1114 ip->i_d.di_mode |= S_ISGID;
1115 }
1116 }
1117
1118 /*
1119 * If the group ID of the new file does not match the effective group
1120 * ID or one of the supplementary group IDs, the S_ISGID bit is cleared
1121 * (and only if the irix_sgid_inherit compatibility variable is set).
1122 */
1123 if ((irix_sgid_inherit) &&
1124 (ip->i_d.di_mode & S_ISGID) &&
1125 (!in_group_p((gid_t)ip->i_d.di_gid))) {
1126 ip->i_d.di_mode &= ~S_ISGID;
1127 }
1128
1129 ip->i_d.di_size = 0;
ba87ea69 1130 ip->i_size = 0;
1da177e4
LT
1131 ip->i_d.di_nextents = 0;
1132 ASSERT(ip->i_d.di_nblocks == 0);
1133 xfs_ichgtime(ip, XFS_ICHGTIME_CHG|XFS_ICHGTIME_ACC|XFS_ICHGTIME_MOD);
1134 /*
1135 * di_gen will have been taken care of in xfs_iread.
1136 */
1137 ip->i_d.di_extsize = 0;
1138 ip->i_d.di_dmevmask = 0;
1139 ip->i_d.di_dmstate = 0;
1140 ip->i_d.di_flags = 0;
1141 flags = XFS_ILOG_CORE;
1142 switch (mode & S_IFMT) {
1143 case S_IFIFO:
1144 case S_IFCHR:
1145 case S_IFBLK:
1146 case S_IFSOCK:
1147 ip->i_d.di_format = XFS_DINODE_FMT_DEV;
1148 ip->i_df.if_u2.if_rdev = rdev;
1149 ip->i_df.if_flags = 0;
1150 flags |= XFS_ILOG_DEV;
1151 break;
1152 case S_IFREG:
b11f94d5 1153 if (pip && xfs_inode_is_filestream(pip)) {
2a82b8be
DC
1154 error = xfs_filestream_associate(pip, ip);
1155 if (error < 0)
1156 return -error;
1157 if (!error)
1158 xfs_iflags_set(ip, XFS_IFILESTREAM);
1159 }
1160 /* fall through */
1da177e4 1161 case S_IFDIR:
b11f94d5 1162 if (pip && (pip->i_d.di_flags & XFS_DIFLAG_ANY)) {
365ca83d
NS
1163 uint di_flags = 0;
1164
1165 if ((mode & S_IFMT) == S_IFDIR) {
1166 if (pip->i_d.di_flags & XFS_DIFLAG_RTINHERIT)
1167 di_flags |= XFS_DIFLAG_RTINHERIT;
dd9f438e
NS
1168 if (pip->i_d.di_flags & XFS_DIFLAG_EXTSZINHERIT) {
1169 di_flags |= XFS_DIFLAG_EXTSZINHERIT;
1170 ip->i_d.di_extsize = pip->i_d.di_extsize;
1171 }
1172 } else if ((mode & S_IFMT) == S_IFREG) {
613d7043 1173 if (pip->i_d.di_flags & XFS_DIFLAG_RTINHERIT)
365ca83d 1174 di_flags |= XFS_DIFLAG_REALTIME;
dd9f438e
NS
1175 if (pip->i_d.di_flags & XFS_DIFLAG_EXTSZINHERIT) {
1176 di_flags |= XFS_DIFLAG_EXTSIZE;
1177 ip->i_d.di_extsize = pip->i_d.di_extsize;
1178 }
1da177e4
LT
1179 }
1180 if ((pip->i_d.di_flags & XFS_DIFLAG_NOATIME) &&
1181 xfs_inherit_noatime)
365ca83d 1182 di_flags |= XFS_DIFLAG_NOATIME;
1da177e4
LT
1183 if ((pip->i_d.di_flags & XFS_DIFLAG_NODUMP) &&
1184 xfs_inherit_nodump)
365ca83d 1185 di_flags |= XFS_DIFLAG_NODUMP;
1da177e4
LT
1186 if ((pip->i_d.di_flags & XFS_DIFLAG_SYNC) &&
1187 xfs_inherit_sync)
365ca83d 1188 di_flags |= XFS_DIFLAG_SYNC;
1da177e4
LT
1189 if ((pip->i_d.di_flags & XFS_DIFLAG_NOSYMLINKS) &&
1190 xfs_inherit_nosymlinks)
365ca83d
NS
1191 di_flags |= XFS_DIFLAG_NOSYMLINKS;
1192 if (pip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT)
1193 di_flags |= XFS_DIFLAG_PROJINHERIT;
d3446eac
BN
1194 if ((pip->i_d.di_flags & XFS_DIFLAG_NODEFRAG) &&
1195 xfs_inherit_nodefrag)
1196 di_flags |= XFS_DIFLAG_NODEFRAG;
2a82b8be
DC
1197 if (pip->i_d.di_flags & XFS_DIFLAG_FILESTREAM)
1198 di_flags |= XFS_DIFLAG_FILESTREAM;
365ca83d 1199 ip->i_d.di_flags |= di_flags;
1da177e4
LT
1200 }
1201 /* FALLTHROUGH */
1202 case S_IFLNK:
1203 ip->i_d.di_format = XFS_DINODE_FMT_EXTENTS;
1204 ip->i_df.if_flags = XFS_IFEXTENTS;
1205 ip->i_df.if_bytes = ip->i_df.if_real_bytes = 0;
1206 ip->i_df.if_u1.if_extents = NULL;
1207 break;
1208 default:
1209 ASSERT(0);
1210 }
1211 /*
1212 * Attribute fork settings for new inode.
1213 */
1214 ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
1215 ip->i_d.di_anextents = 0;
1216
1217 /*
1218 * Log the new values stuffed into the inode.
1219 */
1220 xfs_trans_log_inode(tp, ip, flags);
1221
b83bd138 1222 /* now that we have an i_mode we can setup inode ops and unlock */
745f6919 1223 xfs_initialize_vnode(tp->t_mountp, vp, ip);
1da177e4
LT
1224
1225 *ipp = ip;
1226 return 0;
1227}
1228
1229/*
1230 * Check to make sure that there are no blocks allocated to the
1231 * file beyond the size of the file. We don't check this for
1232 * files with fixed size extents or real time extents, but we
1233 * at least do it for regular files.
1234 */
1235#ifdef DEBUG
1236void
1237xfs_isize_check(
1238 xfs_mount_t *mp,
1239 xfs_inode_t *ip,
1240 xfs_fsize_t isize)
1241{
1242 xfs_fileoff_t map_first;
1243 int nimaps;
1244 xfs_bmbt_irec_t imaps[2];
1245
1246 if ((ip->i_d.di_mode & S_IFMT) != S_IFREG)
1247 return;
1248
71ddabb9
ES
1249 if (XFS_IS_REALTIME_INODE(ip))
1250 return;
1251
1252 if (ip->i_d.di_flags & XFS_DIFLAG_EXTSIZE)
1da177e4
LT
1253 return;
1254
1255 nimaps = 2;
1256 map_first = XFS_B_TO_FSB(mp, (xfs_ufsize_t)isize);
1257 /*
1258 * The filesystem could be shutting down, so bmapi may return
1259 * an error.
1260 */
1261 if (xfs_bmapi(NULL, ip, map_first,
1262 (XFS_B_TO_FSB(mp,
1263 (xfs_ufsize_t)XFS_MAXIOFFSET(mp)) -
1264 map_first),
1265 XFS_BMAPI_ENTIRE, NULL, 0, imaps, &nimaps,
3e57ecf6 1266 NULL, NULL))
1da177e4
LT
1267 return;
1268 ASSERT(nimaps == 1);
1269 ASSERT(imaps[0].br_startblock == HOLESTARTBLOCK);
1270}
1271#endif /* DEBUG */
1272
1273/*
1274 * Calculate the last possible buffered byte in a file. This must
1275 * include data that was buffered beyond the EOF by the write code.
1276 * This also needs to deal with overflowing the xfs_fsize_t type
1277 * which can happen for sizes near the limit.
1278 *
1279 * We also need to take into account any blocks beyond the EOF. It
1280 * may be the case that they were buffered by a write which failed.
1281 * In that case the pages will still be in memory, but the inode size
1282 * will never have been updated.
1283 */
1284xfs_fsize_t
1285xfs_file_last_byte(
1286 xfs_inode_t *ip)
1287{
1288 xfs_mount_t *mp;
1289 xfs_fsize_t last_byte;
1290 xfs_fileoff_t last_block;
1291 xfs_fileoff_t size_last_block;
1292 int error;
1293
1294 ASSERT(ismrlocked(&(ip->i_iolock), MR_UPDATE | MR_ACCESS));
1295
1296 mp = ip->i_mount;
1297 /*
1298 * Only check for blocks beyond the EOF if the extents have
1299 * been read in. This eliminates the need for the inode lock,
1300 * and it also saves us from looking when it really isn't
1301 * necessary.
1302 */
1303 if (ip->i_df.if_flags & XFS_IFEXTENTS) {
1304 error = xfs_bmap_last_offset(NULL, ip, &last_block,
1305 XFS_DATA_FORK);
1306 if (error) {
1307 last_block = 0;
1308 }
1309 } else {
1310 last_block = 0;
1311 }
ba87ea69 1312 size_last_block = XFS_B_TO_FSB(mp, (xfs_ufsize_t)ip->i_size);
1da177e4
LT
1313 last_block = XFS_FILEOFF_MAX(last_block, size_last_block);
1314
1315 last_byte = XFS_FSB_TO_B(mp, last_block);
1316 if (last_byte < 0) {
1317 return XFS_MAXIOFFSET(mp);
1318 }
1319 last_byte += (1 << mp->m_writeio_log);
1320 if (last_byte < 0) {
1321 return XFS_MAXIOFFSET(mp);
1322 }
1323 return last_byte;
1324}
1325
1326#if defined(XFS_RW_TRACE)
1327STATIC void
1328xfs_itrunc_trace(
1329 int tag,
1330 xfs_inode_t *ip,
1331 int flag,
1332 xfs_fsize_t new_size,
1333 xfs_off_t toss_start,
1334 xfs_off_t toss_finish)
1335{
1336 if (ip->i_rwtrace == NULL) {
1337 return;
1338 }
1339
1340 ktrace_enter(ip->i_rwtrace,
1341 (void*)((long)tag),
1342 (void*)ip,
1343 (void*)(unsigned long)((ip->i_d.di_size >> 32) & 0xffffffff),
1344 (void*)(unsigned long)(ip->i_d.di_size & 0xffffffff),
1345 (void*)((long)flag),
1346 (void*)(unsigned long)((new_size >> 32) & 0xffffffff),
1347 (void*)(unsigned long)(new_size & 0xffffffff),
1348 (void*)(unsigned long)((toss_start >> 32) & 0xffffffff),
1349 (void*)(unsigned long)(toss_start & 0xffffffff),
1350 (void*)(unsigned long)((toss_finish >> 32) & 0xffffffff),
1351 (void*)(unsigned long)(toss_finish & 0xffffffff),
1352 (void*)(unsigned long)current_cpu(),
f1fdc848
YL
1353 (void*)(unsigned long)current_pid(),
1354 (void*)NULL,
1355 (void*)NULL,
1356 (void*)NULL);
1da177e4
LT
1357}
1358#else
1359#define xfs_itrunc_trace(tag, ip, flag, new_size, toss_start, toss_finish)
1360#endif
1361
1362/*
1363 * Start the truncation of the file to new_size. The new size
1364 * must be smaller than the current size. This routine will
1365 * clear the buffer and page caches of file data in the removed
1366 * range, and xfs_itruncate_finish() will remove the underlying
1367 * disk blocks.
1368 *
1369 * The inode must have its I/O lock locked EXCLUSIVELY, and it
1370 * must NOT have the inode lock held at all. This is because we're
1371 * calling into the buffer/page cache code and we can't hold the
1372 * inode lock when we do so.
1373 *
38e2299a
DC
1374 * We need to wait for any direct I/Os in flight to complete before we
1375 * proceed with the truncate. This is needed to prevent the extents
1376 * being read or written by the direct I/Os from being removed while the
1377 * I/O is in flight as there is no other method of synchronising
1378 * direct I/O with the truncate operation. Also, because we hold
1379 * the IOLOCK in exclusive mode, we prevent new direct I/Os from being
1380 * started until the truncate completes and drops the lock. Essentially,
1381 * the vn_iowait() call forms an I/O barrier that provides strict ordering
1382 * between direct I/Os and the truncate operation.
1383 *
1da177e4
LT
1384 * The flags parameter can have either the value XFS_ITRUNC_DEFINITE
1385 * or XFS_ITRUNC_MAYBE. The XFS_ITRUNC_MAYBE value should be used
1386 * in the case that the caller is locking things out of order and
1387 * may not be able to call xfs_itruncate_finish() with the inode lock
1388 * held without dropping the I/O lock. If the caller must drop the
1389 * I/O lock before calling xfs_itruncate_finish(), then xfs_itruncate_start()
1390 * must be called again with all the same restrictions as the initial
1391 * call.
1392 */
d3cf2094 1393int
1da177e4
LT
1394xfs_itruncate_start(
1395 xfs_inode_t *ip,
1396 uint flags,
1397 xfs_fsize_t new_size)
1398{
1399 xfs_fsize_t last_byte;
1400 xfs_off_t toss_start;
1401 xfs_mount_t *mp;
67fcaa73 1402 bhv_vnode_t *vp;
d3cf2094 1403 int error = 0;
1da177e4
LT
1404
1405 ASSERT(ismrlocked(&ip->i_iolock, MR_UPDATE) != 0);
ba87ea69 1406 ASSERT((new_size == 0) || (new_size <= ip->i_size));
1da177e4
LT
1407 ASSERT((flags == XFS_ITRUNC_DEFINITE) ||
1408 (flags == XFS_ITRUNC_MAYBE));
1409
1410 mp = ip->i_mount;
1411 vp = XFS_ITOV(ip);
9fa8046f 1412
c734c79b
LM
1413 /* wait for the completion of any pending DIOs */
1414 if (new_size < ip->i_size)
1415 vn_iowait(ip);
1416
1da177e4 1417 /*
67fcaa73 1418 * Call toss_pages or flushinval_pages to get rid of pages
1da177e4 1419 * overlapping the region being removed. We have to use
67fcaa73 1420 * the less efficient flushinval_pages in the case that the
1da177e4
LT
1421 * caller may not be able to finish the truncate without
1422 * dropping the inode's I/O lock. Make sure
1423 * to catch any pages brought in by buffers overlapping
1424 * the EOF by searching out beyond the isize by our
1425 * block size. We round new_size up to a block boundary
1426 * so that we don't toss things on the same block as
1427 * new_size but before it.
1428 *
67fcaa73 1429 * Before calling toss_page or flushinval_pages, make sure to
1da177e4
LT
1430 * call remapf() over the same region if the file is mapped.
1431 * This frees up mapped file references to the pages in the
67fcaa73 1432 * given range and for the flushinval_pages case it ensures
1da177e4
LT
1433 * that we get the latest mapped changes flushed out.
1434 */
1435 toss_start = XFS_B_TO_FSB(mp, (xfs_ufsize_t)new_size);
1436 toss_start = XFS_FSB_TO_B(mp, toss_start);
1437 if (toss_start < 0) {
1438 /*
1439 * The place to start tossing is beyond our maximum
1440 * file size, so there is no way that the data extended
1441 * out there.
1442 */
d3cf2094 1443 return 0;
1da177e4
LT
1444 }
1445 last_byte = xfs_file_last_byte(ip);
1446 xfs_itrunc_trace(XFS_ITRUNC_START, ip, flags, new_size, toss_start,
1447 last_byte);
1448 if (last_byte > toss_start) {
1449 if (flags & XFS_ITRUNC_DEFINITE) {
739bfb2a
CH
1450 xfs_tosspages(ip, toss_start,
1451 -1, FI_REMAPF_LOCKED);
1da177e4 1452 } else {
739bfb2a
CH
1453 error = xfs_flushinval_pages(ip, toss_start,
1454 -1, FI_REMAPF_LOCKED);
1da177e4
LT
1455 }
1456 }
1457
1458#ifdef DEBUG
1459 if (new_size == 0) {
1460 ASSERT(VN_CACHED(vp) == 0);
1461 }
1462#endif
d3cf2094 1463 return error;
1da177e4
LT
1464}
1465
1466/*
1467 * Shrink the file to the given new_size. The new
1468 * size must be smaller than the current size.
1469 * This will free up the underlying blocks
1470 * in the removed range after a call to xfs_itruncate_start()
1471 * or xfs_atruncate_start().
1472 *
1473 * The transaction passed to this routine must have made
1474 * a permanent log reservation of at least XFS_ITRUNCATE_LOG_RES.
1475 * This routine may commit the given transaction and
1476 * start new ones, so make sure everything involved in
1477 * the transaction is tidy before calling here.
1478 * Some transaction will be returned to the caller to be
1479 * committed. The incoming transaction must already include
1480 * the inode, and both inode locks must be held exclusively.
1481 * The inode must also be "held" within the transaction. On
1482 * return the inode will be "held" within the returned transaction.
1483 * This routine does NOT require any disk space to be reserved
1484 * for it within the transaction.
1485 *
1486 * The fork parameter must be either xfs_attr_fork or xfs_data_fork,
1487 * and it indicates the fork which is to be truncated. For the
1488 * attribute fork we only support truncation to size 0.
1489 *
1490 * We use the sync parameter to indicate whether or not the first
1491 * transaction we perform might have to be synchronous. For the attr fork,
1492 * it needs to be so if the unlink of the inode is not yet known to be
1493 * permanent in the log. This keeps us from freeing and reusing the
1494 * blocks of the attribute fork before the unlink of the inode becomes
1495 * permanent.
1496 *
1497 * For the data fork, we normally have to run synchronously if we're
1498 * being called out of the inactive path or we're being called
1499 * out of the create path where we're truncating an existing file.
1500 * Either way, the truncate needs to be sync so blocks don't reappear
1501 * in the file with altered data in case of a crash. wsync filesystems
1502 * can run the first case async because anything that shrinks the inode
1503 * has to run sync so by the time we're called here from inactive, the
1504 * inode size is permanently set to 0.
1505 *
1506 * Calls from the truncate path always need to be sync unless we're
1507 * in a wsync filesystem and the file has already been unlinked.
1508 *
1509 * The caller is responsible for correctly setting the sync parameter.
1510 * It gets too hard for us to guess here which path we're being called
1511 * out of just based on inode state.
1512 */
1513int
1514xfs_itruncate_finish(
1515 xfs_trans_t **tp,
1516 xfs_inode_t *ip,
1517 xfs_fsize_t new_size,
1518 int fork,
1519 int sync)
1520{
1521 xfs_fsblock_t first_block;
1522 xfs_fileoff_t first_unmap_block;
1523 xfs_fileoff_t last_block;
1524 xfs_filblks_t unmap_len=0;
1525 xfs_mount_t *mp;
1526 xfs_trans_t *ntp;
1527 int done;
1528 int committed;
1529 xfs_bmap_free_t free_list;
1530 int error;
1531
1532 ASSERT(ismrlocked(&ip->i_iolock, MR_UPDATE) != 0);
1533 ASSERT(ismrlocked(&ip->i_lock, MR_UPDATE) != 0);
ba87ea69 1534 ASSERT((new_size == 0) || (new_size <= ip->i_size));
1da177e4
LT
1535 ASSERT(*tp != NULL);
1536 ASSERT((*tp)->t_flags & XFS_TRANS_PERM_LOG_RES);
1537 ASSERT(ip->i_transp == *tp);
1538 ASSERT(ip->i_itemp != NULL);
1539 ASSERT(ip->i_itemp->ili_flags & XFS_ILI_HOLD);
1540
1541
1542 ntp = *tp;
1543 mp = (ntp)->t_mountp;
1544 ASSERT(! XFS_NOT_DQATTACHED(mp, ip));
1545
1546 /*
1547 * We only support truncating the entire attribute fork.
1548 */
1549 if (fork == XFS_ATTR_FORK) {
1550 new_size = 0LL;
1551 }
1552 first_unmap_block = XFS_B_TO_FSB(mp, (xfs_ufsize_t)new_size);
1553 xfs_itrunc_trace(XFS_ITRUNC_FINISH1, ip, 0, new_size, 0, 0);
1554 /*
1555 * The first thing we do is set the size to new_size permanently
1556 * on disk. This way we don't have to worry about anyone ever
1557 * being able to look at the data being freed even in the face
1558 * of a crash. What we're getting around here is the case where
1559 * we free a block, it is allocated to another file, it is written
1560 * to, and then we crash. If the new data gets written to the
1561 * file but the log buffers containing the free and reallocation
1562 * don't, then we'd end up with garbage in the blocks being freed.
1563 * As long as we make the new_size permanent before actually
1564 * freeing any blocks it doesn't matter if they get writtten to.
1565 *
1566 * The callers must signal into us whether or not the size
1567 * setting here must be synchronous. There are a few cases
1568 * where it doesn't have to be synchronous. Those cases
1569 * occur if the file is unlinked and we know the unlink is
1570 * permanent or if the blocks being truncated are guaranteed
1571 * to be beyond the inode eof (regardless of the link count)
1572 * and the eof value is permanent. Both of these cases occur
1573 * only on wsync-mounted filesystems. In those cases, we're
1574 * guaranteed that no user will ever see the data in the blocks
1575 * that are being truncated so the truncate can run async.
1576 * In the free beyond eof case, the file may wind up with
1577 * more blocks allocated to it than it needs if we crash
1578 * and that won't get fixed until the next time the file
1579 * is re-opened and closed but that's ok as that shouldn't
1580 * be too many blocks.
1581 *
1582 * However, we can't just make all wsync xactions run async
1583 * because there's one call out of the create path that needs
1584 * to run sync where it's truncating an existing file to size
1585 * 0 whose size is > 0.
1586 *
1587 * It's probably possible to come up with a test in this
1588 * routine that would correctly distinguish all the above
1589 * cases from the values of the function parameters and the
1590 * inode state but for sanity's sake, I've decided to let the
1591 * layers above just tell us. It's simpler to correctly figure
1592 * out in the layer above exactly under what conditions we
1593 * can run async and I think it's easier for others read and
1594 * follow the logic in case something has to be changed.
1595 * cscope is your friend -- rcc.
1596 *
1597 * The attribute fork is much simpler.
1598 *
1599 * For the attribute fork we allow the caller to tell us whether
1600 * the unlink of the inode that led to this call is yet permanent
1601 * in the on disk log. If it is not and we will be freeing extents
1602 * in this inode then we make the first transaction synchronous
1603 * to make sure that the unlink is permanent by the time we free
1604 * the blocks.
1605 */
1606 if (fork == XFS_DATA_FORK) {
1607 if (ip->i_d.di_nextents > 0) {
ba87ea69
LM
1608 /*
1609 * If we are not changing the file size then do
1610 * not update the on-disk file size - we may be
1611 * called from xfs_inactive_free_eofblocks(). If we
1612 * update the on-disk file size and then the system
1613 * crashes before the contents of the file are
1614 * flushed to disk then the files may be full of
1615 * holes (ie NULL files bug).
1616 */
1617 if (ip->i_size != new_size) {
1618 ip->i_d.di_size = new_size;
1619 ip->i_size = new_size;
1620 xfs_trans_log_inode(ntp, ip, XFS_ILOG_CORE);
1621 }
1da177e4
LT
1622 }
1623 } else if (sync) {
1624 ASSERT(!(mp->m_flags & XFS_MOUNT_WSYNC));
1625 if (ip->i_d.di_anextents > 0)
1626 xfs_trans_set_sync(ntp);
1627 }
1628 ASSERT(fork == XFS_DATA_FORK ||
1629 (fork == XFS_ATTR_FORK &&
1630 ((sync && !(mp->m_flags & XFS_MOUNT_WSYNC)) ||
1631 (sync == 0 && (mp->m_flags & XFS_MOUNT_WSYNC)))));
1632
1633 /*
1634 * Since it is possible for space to become allocated beyond
1635 * the end of the file (in a crash where the space is allocated
1636 * but the inode size is not yet updated), simply remove any
1637 * blocks which show up between the new EOF and the maximum
1638 * possible file size. If the first block to be removed is
1639 * beyond the maximum file size (ie it is the same as last_block),
1640 * then there is nothing to do.
1641 */
1642 last_block = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_MAXIOFFSET(mp));
1643 ASSERT(first_unmap_block <= last_block);
1644 done = 0;
1645 if (last_block == first_unmap_block) {
1646 done = 1;
1647 } else {
1648 unmap_len = last_block - first_unmap_block + 1;
1649 }
1650 while (!done) {
1651 /*
1652 * Free up up to XFS_ITRUNC_MAX_EXTENTS. xfs_bunmapi()
1653 * will tell us whether it freed the entire range or
1654 * not. If this is a synchronous mount (wsync),
1655 * then we can tell bunmapi to keep all the
1656 * transactions asynchronous since the unlink
1657 * transaction that made this inode inactive has
1658 * already hit the disk. There's no danger of
1659 * the freed blocks being reused, there being a
1660 * crash, and the reused blocks suddenly reappearing
1661 * in this file with garbage in them once recovery
1662 * runs.
1663 */
1664 XFS_BMAP_INIT(&free_list, &first_block);
541d7d3c 1665 error = xfs_bunmapi(ntp, ip,
3e57ecf6 1666 first_unmap_block, unmap_len,
1da177e4
LT
1667 XFS_BMAPI_AFLAG(fork) |
1668 (sync ? 0 : XFS_BMAPI_ASYNC),
1669 XFS_ITRUNC_MAX_EXTENTS,
3e57ecf6
OW
1670 &first_block, &free_list,
1671 NULL, &done);
1da177e4
LT
1672 if (error) {
1673 /*
1674 * If the bunmapi call encounters an error,
1675 * return to the caller where the transaction
1676 * can be properly aborted. We just need to
1677 * make sure we're not holding any resources
1678 * that we were not when we came in.
1679 */
1680 xfs_bmap_cancel(&free_list);
1681 return error;
1682 }
1683
1684 /*
1685 * Duplicate the transaction that has the permanent
1686 * reservation and commit the old transaction.
1687 */
f7c99b6f 1688 error = xfs_bmap_finish(tp, &free_list, &committed);
1da177e4
LT
1689 ntp = *tp;
1690 if (error) {
1691 /*
1692 * If the bmap finish call encounters an error,
1693 * return to the caller where the transaction
1694 * can be properly aborted. We just need to
1695 * make sure we're not holding any resources
1696 * that we were not when we came in.
1697 *
1698 * Aborting from this point might lose some
1699 * blocks in the file system, but oh well.
1700 */
1701 xfs_bmap_cancel(&free_list);
1702 if (committed) {
1703 /*
1704 * If the passed in transaction committed
1705 * in xfs_bmap_finish(), then we want to
1706 * add the inode to this one before returning.
1707 * This keeps things simple for the higher
1708 * level code, because it always knows that
1709 * the inode is locked and held in the
1710 * transaction that returns to it whether
1711 * errors occur or not. We don't mark the
1712 * inode dirty so that this transaction can
1713 * be easily aborted if possible.
1714 */
1715 xfs_trans_ijoin(ntp, ip,
1716 XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
1717 xfs_trans_ihold(ntp, ip);
1718 }
1719 return error;
1720 }
1721
1722 if (committed) {
1723 /*
1724 * The first xact was committed,
1725 * so add the inode to the new one.
1726 * Mark it dirty so it will be logged
1727 * and moved forward in the log as
1728 * part of every commit.
1729 */
1730 xfs_trans_ijoin(ntp, ip,
1731 XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
1732 xfs_trans_ihold(ntp, ip);
1733 xfs_trans_log_inode(ntp, ip, XFS_ILOG_CORE);
1734 }
1735 ntp = xfs_trans_dup(ntp);
1c72bf90 1736 (void) xfs_trans_commit(*tp, 0);
1da177e4
LT
1737 *tp = ntp;
1738 error = xfs_trans_reserve(ntp, 0, XFS_ITRUNCATE_LOG_RES(mp), 0,
1739 XFS_TRANS_PERM_LOG_RES,
1740 XFS_ITRUNCATE_LOG_COUNT);
1741 /*
1742 * Add the inode being truncated to the next chained
1743 * transaction.
1744 */
1745 xfs_trans_ijoin(ntp, ip, XFS_ILOCK_EXCL | XFS_IOLOCK_EXCL);
1746 xfs_trans_ihold(ntp, ip);
1747 if (error)
1748 return (error);
1749 }
1750 /*
1751 * Only update the size in the case of the data fork, but
1752 * always re-log the inode so that our permanent transaction
1753 * can keep on rolling it forward in the log.
1754 */
1755 if (fork == XFS_DATA_FORK) {
1756 xfs_isize_check(mp, ip, new_size);
ba87ea69
LM
1757 /*
1758 * If we are not changing the file size then do
1759 * not update the on-disk file size - we may be
1760 * called from xfs_inactive_free_eofblocks(). If we
1761 * update the on-disk file size and then the system
1762 * crashes before the contents of the file are
1763 * flushed to disk then the files may be full of
1764 * holes (ie NULL files bug).
1765 */
1766 if (ip->i_size != new_size) {
1767 ip->i_d.di_size = new_size;
1768 ip->i_size = new_size;
1769 }
1da177e4
LT
1770 }
1771 xfs_trans_log_inode(ntp, ip, XFS_ILOG_CORE);
1772 ASSERT((new_size != 0) ||
1773 (fork == XFS_ATTR_FORK) ||
1774 (ip->i_delayed_blks == 0));
1775 ASSERT((new_size != 0) ||
1776 (fork == XFS_ATTR_FORK) ||
1777 (ip->i_d.di_nextents == 0));
1778 xfs_itrunc_trace(XFS_ITRUNC_FINISH2, ip, 0, new_size, 0, 0);
1779 return 0;
1780}
1781
1782
1783/*
1784 * xfs_igrow_start
1785 *
1786 * Do the first part of growing a file: zero any data in the last
1787 * block that is beyond the old EOF. We need to do this before
1788 * the inode is joined to the transaction to modify the i_size.
1789 * That way we can drop the inode lock and call into the buffer
1790 * cache to get the buffer mapping the EOF.
1791 */
1792int
1793xfs_igrow_start(
1794 xfs_inode_t *ip,
1795 xfs_fsize_t new_size,
1796 cred_t *credp)
1797{
1da177e4
LT
1798 ASSERT(ismrlocked(&(ip->i_lock), MR_UPDATE) != 0);
1799 ASSERT(ismrlocked(&(ip->i_iolock), MR_UPDATE) != 0);
ba87ea69 1800 ASSERT(new_size > ip->i_size);
1da177e4 1801
1da177e4
LT
1802 /*
1803 * Zero any pages that may have been created by
1804 * xfs_write_file() beyond the end of the file
1805 * and any blocks between the old and new file sizes.
1806 */
541d7d3c 1807 return xfs_zero_eof(ip, new_size, ip->i_size);
1da177e4
LT
1808}
1809
1810/*
1811 * xfs_igrow_finish
1812 *
1813 * This routine is called to extend the size of a file.
1814 * The inode must have both the iolock and the ilock locked
1815 * for update and it must be a part of the current transaction.
1816 * The xfs_igrow_start() function must have been called previously.
1817 * If the change_flag is not zero, the inode change timestamp will
1818 * be updated.
1819 */
1820void
1821xfs_igrow_finish(
1822 xfs_trans_t *tp,
1823 xfs_inode_t *ip,
1824 xfs_fsize_t new_size,
1825 int change_flag)
1826{
1827 ASSERT(ismrlocked(&(ip->i_lock), MR_UPDATE) != 0);
1828 ASSERT(ismrlocked(&(ip->i_iolock), MR_UPDATE) != 0);
1829 ASSERT(ip->i_transp == tp);
ba87ea69 1830 ASSERT(new_size > ip->i_size);
1da177e4
LT
1831
1832 /*
1833 * Update the file size. Update the inode change timestamp
1834 * if change_flag set.
1835 */
1836 ip->i_d.di_size = new_size;
ba87ea69 1837 ip->i_size = new_size;
1da177e4
LT
1838 if (change_flag)
1839 xfs_ichgtime(ip, XFS_ICHGTIME_CHG);
1840 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1841
1842}
1843
1844
1845/*
1846 * This is called when the inode's link count goes to 0.
1847 * We place the on-disk inode on a list in the AGI. It
1848 * will be pulled from this list when the inode is freed.
1849 */
1850int
1851xfs_iunlink(
1852 xfs_trans_t *tp,
1853 xfs_inode_t *ip)
1854{
1855 xfs_mount_t *mp;
1856 xfs_agi_t *agi;
1857 xfs_dinode_t *dip;
1858 xfs_buf_t *agibp;
1859 xfs_buf_t *ibp;
1860 xfs_agnumber_t agno;
1861 xfs_daddr_t agdaddr;
1862 xfs_agino_t agino;
1863 short bucket_index;
1864 int offset;
1865 int error;
1866 int agi_ok;
1867
1868 ASSERT(ip->i_d.di_nlink == 0);
1869 ASSERT(ip->i_d.di_mode != 0);
1870 ASSERT(ip->i_transp == tp);
1871
1872 mp = tp->t_mountp;
1873
1874 agno = XFS_INO_TO_AGNO(mp, ip->i_ino);
1875 agdaddr = XFS_AG_DADDR(mp, agno, XFS_AGI_DADDR(mp));
1876
1877 /*
1878 * Get the agi buffer first. It ensures lock ordering
1879 * on the list.
1880 */
1881 error = xfs_trans_read_buf(mp, tp, mp->m_ddev_targp, agdaddr,
1882 XFS_FSS_TO_BB(mp, 1), 0, &agibp);
859d7182 1883 if (error)
1da177e4 1884 return error;
859d7182 1885
1da177e4
LT
1886 /*
1887 * Validate the magic number of the agi block.
1888 */
1889 agi = XFS_BUF_TO_AGI(agibp);
1890 agi_ok =
16259e7d
CH
1891 be32_to_cpu(agi->agi_magicnum) == XFS_AGI_MAGIC &&
1892 XFS_AGI_GOOD_VERSION(be32_to_cpu(agi->agi_versionnum));
1da177e4
LT
1893 if (unlikely(XFS_TEST_ERROR(!agi_ok, mp, XFS_ERRTAG_IUNLINK,
1894 XFS_RANDOM_IUNLINK))) {
1895 XFS_CORRUPTION_ERROR("xfs_iunlink", XFS_ERRLEVEL_LOW, mp, agi);
1896 xfs_trans_brelse(tp, agibp);
1897 return XFS_ERROR(EFSCORRUPTED);
1898 }
1899 /*
1900 * Get the index into the agi hash table for the
1901 * list this inode will go on.
1902 */
1903 agino = XFS_INO_TO_AGINO(mp, ip->i_ino);
1904 ASSERT(agino != 0);
1905 bucket_index = agino % XFS_AGI_UNLINKED_BUCKETS;
1906 ASSERT(agi->agi_unlinked[bucket_index]);
16259e7d 1907 ASSERT(be32_to_cpu(agi->agi_unlinked[bucket_index]) != agino);
1da177e4 1908
16259e7d 1909 if (be32_to_cpu(agi->agi_unlinked[bucket_index]) != NULLAGINO) {
1da177e4
LT
1910 /*
1911 * There is already another inode in the bucket we need
1912 * to add ourselves to. Add us at the front of the list.
1913 * Here we put the head pointer into our next pointer,
1914 * and then we fall through to point the head at us.
1915 */
a3f74ffb 1916 error = xfs_itobp(mp, tp, ip, &dip, &ibp, 0, 0, XFS_BUF_LOCK);
c319b58b
VA
1917 if (error)
1918 return error;
1919
347d1c01 1920 ASSERT(be32_to_cpu(dip->di_next_unlinked) == NULLAGINO);
1da177e4
LT
1921 /* both on-disk, don't endian flip twice */
1922 dip->di_next_unlinked = agi->agi_unlinked[bucket_index];
1923 offset = ip->i_boffset +
1924 offsetof(xfs_dinode_t, di_next_unlinked);
1925 xfs_trans_inode_buf(tp, ibp);
1926 xfs_trans_log_buf(tp, ibp, offset,
1927 (offset + sizeof(xfs_agino_t) - 1));
1928 xfs_inobp_check(mp, ibp);
1929 }
1930
1931 /*
1932 * Point the bucket head pointer at the inode being inserted.
1933 */
1934 ASSERT(agino != 0);
16259e7d 1935 agi->agi_unlinked[bucket_index] = cpu_to_be32(agino);
1da177e4
LT
1936 offset = offsetof(xfs_agi_t, agi_unlinked) +
1937 (sizeof(xfs_agino_t) * bucket_index);
1938 xfs_trans_log_buf(tp, agibp, offset,
1939 (offset + sizeof(xfs_agino_t) - 1));
1940 return 0;
1941}
1942
1943/*
1944 * Pull the on-disk inode from the AGI unlinked list.
1945 */
1946STATIC int
1947xfs_iunlink_remove(
1948 xfs_trans_t *tp,
1949 xfs_inode_t *ip)
1950{
1951 xfs_ino_t next_ino;
1952 xfs_mount_t *mp;
1953 xfs_agi_t *agi;
1954 xfs_dinode_t *dip;
1955 xfs_buf_t *agibp;
1956 xfs_buf_t *ibp;
1957 xfs_agnumber_t agno;
1958 xfs_daddr_t agdaddr;
1959 xfs_agino_t agino;
1960 xfs_agino_t next_agino;
1961 xfs_buf_t *last_ibp;
6fdf8ccc 1962 xfs_dinode_t *last_dip = NULL;
1da177e4 1963 short bucket_index;
6fdf8ccc 1964 int offset, last_offset = 0;
1da177e4
LT
1965 int error;
1966 int agi_ok;
1967
1968 /*
1969 * First pull the on-disk inode from the AGI unlinked list.
1970 */
1971 mp = tp->t_mountp;
1972
1973 agno = XFS_INO_TO_AGNO(mp, ip->i_ino);
1974 agdaddr = XFS_AG_DADDR(mp, agno, XFS_AGI_DADDR(mp));
1975
1976 /*
1977 * Get the agi buffer first. It ensures lock ordering
1978 * on the list.
1979 */
1980 error = xfs_trans_read_buf(mp, tp, mp->m_ddev_targp, agdaddr,
1981 XFS_FSS_TO_BB(mp, 1), 0, &agibp);
1982 if (error) {
1983 cmn_err(CE_WARN,
1984 "xfs_iunlink_remove: xfs_trans_read_buf() returned an error %d on %s. Returning error.",
1985 error, mp->m_fsname);
1986 return error;
1987 }
1988 /*
1989 * Validate the magic number of the agi block.
1990 */
1991 agi = XFS_BUF_TO_AGI(agibp);
1992 agi_ok =
16259e7d
CH
1993 be32_to_cpu(agi->agi_magicnum) == XFS_AGI_MAGIC &&
1994 XFS_AGI_GOOD_VERSION(be32_to_cpu(agi->agi_versionnum));
1da177e4
LT
1995 if (unlikely(XFS_TEST_ERROR(!agi_ok, mp, XFS_ERRTAG_IUNLINK_REMOVE,
1996 XFS_RANDOM_IUNLINK_REMOVE))) {
1997 XFS_CORRUPTION_ERROR("xfs_iunlink_remove", XFS_ERRLEVEL_LOW,
1998 mp, agi);
1999 xfs_trans_brelse(tp, agibp);
2000 cmn_err(CE_WARN,
2001 "xfs_iunlink_remove: XFS_TEST_ERROR() returned an error on %s. Returning EFSCORRUPTED.",
2002 mp->m_fsname);
2003 return XFS_ERROR(EFSCORRUPTED);
2004 }
2005 /*
2006 * Get the index into the agi hash table for the
2007 * list this inode will go on.
2008 */
2009 agino = XFS_INO_TO_AGINO(mp, ip->i_ino);
2010 ASSERT(agino != 0);
2011 bucket_index = agino % XFS_AGI_UNLINKED_BUCKETS;
16259e7d 2012 ASSERT(be32_to_cpu(agi->agi_unlinked[bucket_index]) != NULLAGINO);
1da177e4
LT
2013 ASSERT(agi->agi_unlinked[bucket_index]);
2014
16259e7d 2015 if (be32_to_cpu(agi->agi_unlinked[bucket_index]) == agino) {
1da177e4
LT
2016 /*
2017 * We're at the head of the list. Get the inode's
2018 * on-disk buffer to see if there is anyone after us
2019 * on the list. Only modify our next pointer if it
2020 * is not already NULLAGINO. This saves us the overhead
2021 * of dealing with the buffer when there is no need to
2022 * change it.
2023 */
a3f74ffb 2024 error = xfs_itobp(mp, tp, ip, &dip, &ibp, 0, 0, XFS_BUF_LOCK);
1da177e4
LT
2025 if (error) {
2026 cmn_err(CE_WARN,
2027 "xfs_iunlink_remove: xfs_itobp() returned an error %d on %s. Returning error.",
2028 error, mp->m_fsname);
2029 return error;
2030 }
347d1c01 2031 next_agino = be32_to_cpu(dip->di_next_unlinked);
1da177e4
LT
2032 ASSERT(next_agino != 0);
2033 if (next_agino != NULLAGINO) {
347d1c01 2034 dip->di_next_unlinked = cpu_to_be32(NULLAGINO);
1da177e4
LT
2035 offset = ip->i_boffset +
2036 offsetof(xfs_dinode_t, di_next_unlinked);
2037 xfs_trans_inode_buf(tp, ibp);
2038 xfs_trans_log_buf(tp, ibp, offset,
2039 (offset + sizeof(xfs_agino_t) - 1));
2040 xfs_inobp_check(mp, ibp);
2041 } else {
2042 xfs_trans_brelse(tp, ibp);
2043 }
2044 /*
2045 * Point the bucket head pointer at the next inode.
2046 */
2047 ASSERT(next_agino != 0);
2048 ASSERT(next_agino != agino);
16259e7d 2049 agi->agi_unlinked[bucket_index] = cpu_to_be32(next_agino);
1da177e4
LT
2050 offset = offsetof(xfs_agi_t, agi_unlinked) +
2051 (sizeof(xfs_agino_t) * bucket_index);
2052 xfs_trans_log_buf(tp, agibp, offset,
2053 (offset + sizeof(xfs_agino_t) - 1));
2054 } else {
2055 /*
2056 * We need to search the list for the inode being freed.
2057 */
16259e7d 2058 next_agino = be32_to_cpu(agi->agi_unlinked[bucket_index]);
1da177e4
LT
2059 last_ibp = NULL;
2060 while (next_agino != agino) {
2061 /*
2062 * If the last inode wasn't the one pointing to
2063 * us, then release its buffer since we're not
2064 * going to do anything with it.
2065 */
2066 if (last_ibp != NULL) {
2067 xfs_trans_brelse(tp, last_ibp);
2068 }
2069 next_ino = XFS_AGINO_TO_INO(mp, agno, next_agino);
2070 error = xfs_inotobp(mp, tp, next_ino, &last_dip,
2071 &last_ibp, &last_offset);
2072 if (error) {
2073 cmn_err(CE_WARN,
2074 "xfs_iunlink_remove: xfs_inotobp() returned an error %d on %s. Returning error.",
2075 error, mp->m_fsname);
2076 return error;
2077 }
347d1c01 2078 next_agino = be32_to_cpu(last_dip->di_next_unlinked);
1da177e4
LT
2079 ASSERT(next_agino != NULLAGINO);
2080 ASSERT(next_agino != 0);
2081 }
2082 /*
2083 * Now last_ibp points to the buffer previous to us on
2084 * the unlinked list. Pull us from the list.
2085 */
a3f74ffb 2086 error = xfs_itobp(mp, tp, ip, &dip, &ibp, 0, 0, XFS_BUF_LOCK);
1da177e4
LT
2087 if (error) {
2088 cmn_err(CE_WARN,
2089 "xfs_iunlink_remove: xfs_itobp() returned an error %d on %s. Returning error.",
2090 error, mp->m_fsname);
2091 return error;
2092 }
347d1c01 2093 next_agino = be32_to_cpu(dip->di_next_unlinked);
1da177e4
LT
2094 ASSERT(next_agino != 0);
2095 ASSERT(next_agino != agino);
2096 if (next_agino != NULLAGINO) {
347d1c01 2097 dip->di_next_unlinked = cpu_to_be32(NULLAGINO);
1da177e4
LT
2098 offset = ip->i_boffset +
2099 offsetof(xfs_dinode_t, di_next_unlinked);
2100 xfs_trans_inode_buf(tp, ibp);
2101 xfs_trans_log_buf(tp, ibp, offset,
2102 (offset + sizeof(xfs_agino_t) - 1));
2103 xfs_inobp_check(mp, ibp);
2104 } else {
2105 xfs_trans_brelse(tp, ibp);
2106 }
2107 /*
2108 * Point the previous inode on the list to the next inode.
2109 */
347d1c01 2110 last_dip->di_next_unlinked = cpu_to_be32(next_agino);
1da177e4
LT
2111 ASSERT(next_agino != 0);
2112 offset = last_offset + offsetof(xfs_dinode_t, di_next_unlinked);
2113 xfs_trans_inode_buf(tp, last_ibp);
2114 xfs_trans_log_buf(tp, last_ibp, offset,
2115 (offset + sizeof(xfs_agino_t) - 1));
2116 xfs_inobp_check(mp, last_ibp);
2117 }
2118 return 0;
2119}
2120
7989cb8e 2121STATIC_INLINE int xfs_inode_clean(xfs_inode_t *ip)
1da177e4
LT
2122{
2123 return (((ip->i_itemp == NULL) ||
2124 !(ip->i_itemp->ili_format.ilf_fields & XFS_ILOG_ALL)) &&
2125 (ip->i_update_core == 0));
2126}
2127
ba0f32d4 2128STATIC void
1da177e4
LT
2129xfs_ifree_cluster(
2130 xfs_inode_t *free_ip,
2131 xfs_trans_t *tp,
2132 xfs_ino_t inum)
2133{
2134 xfs_mount_t *mp = free_ip->i_mount;
2135 int blks_per_cluster;
2136 int nbufs;
2137 int ninodes;
2138 int i, j, found, pre_flushed;
2139 xfs_daddr_t blkno;
2140 xfs_buf_t *bp;
1da177e4
LT
2141 xfs_inode_t *ip, **ip_found;
2142 xfs_inode_log_item_t *iip;
2143 xfs_log_item_t *lip;
da353b0d 2144 xfs_perag_t *pag = xfs_get_perag(mp, inum);
1da177e4
LT
2145
2146 if (mp->m_sb.sb_blocksize >= XFS_INODE_CLUSTER_SIZE(mp)) {
2147 blks_per_cluster = 1;
2148 ninodes = mp->m_sb.sb_inopblock;
2149 nbufs = XFS_IALLOC_BLOCKS(mp);
2150 } else {
2151 blks_per_cluster = XFS_INODE_CLUSTER_SIZE(mp) /
2152 mp->m_sb.sb_blocksize;
2153 ninodes = blks_per_cluster * mp->m_sb.sb_inopblock;
2154 nbufs = XFS_IALLOC_BLOCKS(mp) / blks_per_cluster;
2155 }
2156
2157 ip_found = kmem_alloc(ninodes * sizeof(xfs_inode_t *), KM_NOFS);
2158
2159 for (j = 0; j < nbufs; j++, inum += ninodes) {
2160 blkno = XFS_AGB_TO_DADDR(mp, XFS_INO_TO_AGNO(mp, inum),
2161 XFS_INO_TO_AGBNO(mp, inum));
2162
2163
2164 /*
2165 * Look for each inode in memory and attempt to lock it,
2166 * we can be racing with flush and tail pushing here.
2167 * any inode we get the locks on, add to an array of
2168 * inode items to process later.
2169 *
2170 * The get the buffer lock, we could beat a flush
2171 * or tail pushing thread to the lock here, in which
2172 * case they will go looking for the inode buffer
2173 * and fail, we need some other form of interlock
2174 * here.
2175 */
2176 found = 0;
2177 for (i = 0; i < ninodes; i++) {
da353b0d
DC
2178 read_lock(&pag->pag_ici_lock);
2179 ip = radix_tree_lookup(&pag->pag_ici_root,
2180 XFS_INO_TO_AGINO(mp, (inum + i)));
1da177e4
LT
2181
2182 /* Inode not in memory or we found it already,
2183 * nothing to do
2184 */
7a18c386 2185 if (!ip || xfs_iflags_test(ip, XFS_ISTALE)) {
da353b0d 2186 read_unlock(&pag->pag_ici_lock);
1da177e4
LT
2187 continue;
2188 }
2189
2190 if (xfs_inode_clean(ip)) {
da353b0d 2191 read_unlock(&pag->pag_ici_lock);
1da177e4
LT
2192 continue;
2193 }
2194
2195 /* If we can get the locks then add it to the
2196 * list, otherwise by the time we get the bp lock
2197 * below it will already be attached to the
2198 * inode buffer.
2199 */
2200
2201 /* This inode will already be locked - by us, lets
2202 * keep it that way.
2203 */
2204
2205 if (ip == free_ip) {
2206 if (xfs_iflock_nowait(ip)) {
7a18c386 2207 xfs_iflags_set(ip, XFS_ISTALE);
1da177e4
LT
2208 if (xfs_inode_clean(ip)) {
2209 xfs_ifunlock(ip);
2210 } else {
2211 ip_found[found++] = ip;
2212 }
2213 }
da353b0d 2214 read_unlock(&pag->pag_ici_lock);
1da177e4
LT
2215 continue;
2216 }
2217
2218 if (xfs_ilock_nowait(ip, XFS_ILOCK_EXCL)) {
2219 if (xfs_iflock_nowait(ip)) {
7a18c386 2220 xfs_iflags_set(ip, XFS_ISTALE);
1da177e4
LT
2221
2222 if (xfs_inode_clean(ip)) {
2223 xfs_ifunlock(ip);
2224 xfs_iunlock(ip, XFS_ILOCK_EXCL);
2225 } else {
2226 ip_found[found++] = ip;
2227 }
2228 } else {
2229 xfs_iunlock(ip, XFS_ILOCK_EXCL);
2230 }
2231 }
da353b0d 2232 read_unlock(&pag->pag_ici_lock);
1da177e4
LT
2233 }
2234
2235 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, blkno,
2236 mp->m_bsize * blks_per_cluster,
2237 XFS_BUF_LOCK);
2238
2239 pre_flushed = 0;
2240 lip = XFS_BUF_FSPRIVATE(bp, xfs_log_item_t *);
2241 while (lip) {
2242 if (lip->li_type == XFS_LI_INODE) {
2243 iip = (xfs_inode_log_item_t *)lip;
2244 ASSERT(iip->ili_logged == 1);
2245 lip->li_cb = (void(*)(xfs_buf_t*,xfs_log_item_t*)) xfs_istale_done;
287f3dad 2246 spin_lock(&mp->m_ail_lock);
1da177e4 2247 iip->ili_flush_lsn = iip->ili_item.li_lsn;
287f3dad 2248 spin_unlock(&mp->m_ail_lock);
e5ffd2bb 2249 xfs_iflags_set(iip->ili_inode, XFS_ISTALE);
1da177e4
LT
2250 pre_flushed++;
2251 }
2252 lip = lip->li_bio_list;
2253 }
2254
2255 for (i = 0; i < found; i++) {
2256 ip = ip_found[i];
2257 iip = ip->i_itemp;
2258
2259 if (!iip) {
2260 ip->i_update_core = 0;
2261 xfs_ifunlock(ip);
2262 xfs_iunlock(ip, XFS_ILOCK_EXCL);
2263 continue;
2264 }
2265
2266 iip->ili_last_fields = iip->ili_format.ilf_fields;
2267 iip->ili_format.ilf_fields = 0;
2268 iip->ili_logged = 1;
287f3dad 2269 spin_lock(&mp->m_ail_lock);
1da177e4 2270 iip->ili_flush_lsn = iip->ili_item.li_lsn;
287f3dad 2271 spin_unlock(&mp->m_ail_lock);
1da177e4
LT
2272
2273 xfs_buf_attach_iodone(bp,
2274 (void(*)(xfs_buf_t*,xfs_log_item_t*))
2275 xfs_istale_done, (xfs_log_item_t *)iip);
2276 if (ip != free_ip) {
2277 xfs_iunlock(ip, XFS_ILOCK_EXCL);
2278 }
2279 }
2280
2281 if (found || pre_flushed)
2282 xfs_trans_stale_inode_buf(tp, bp);
2283 xfs_trans_binval(tp, bp);
2284 }
2285
2286 kmem_free(ip_found, ninodes * sizeof(xfs_inode_t *));
da353b0d 2287 xfs_put_perag(mp, pag);
1da177e4
LT
2288}
2289
2290/*
2291 * This is called to return an inode to the inode free list.
2292 * The inode should already be truncated to 0 length and have
2293 * no pages associated with it. This routine also assumes that
2294 * the inode is already a part of the transaction.
2295 *
2296 * The on-disk copy of the inode will have been added to the list
2297 * of unlinked inodes in the AGI. We need to remove the inode from
2298 * that list atomically with respect to freeing it here.
2299 */
2300int
2301xfs_ifree(
2302 xfs_trans_t *tp,
2303 xfs_inode_t *ip,
2304 xfs_bmap_free_t *flist)
2305{
2306 int error;
2307 int delete;
2308 xfs_ino_t first_ino;
c319b58b
VA
2309 xfs_dinode_t *dip;
2310 xfs_buf_t *ibp;
1da177e4
LT
2311
2312 ASSERT(ismrlocked(&ip->i_lock, MR_UPDATE));
2313 ASSERT(ip->i_transp == tp);
2314 ASSERT(ip->i_d.di_nlink == 0);
2315 ASSERT(ip->i_d.di_nextents == 0);
2316 ASSERT(ip->i_d.di_anextents == 0);
ba87ea69 2317 ASSERT((ip->i_d.di_size == 0 && ip->i_size == 0) ||
1da177e4
LT
2318 ((ip->i_d.di_mode & S_IFMT) != S_IFREG));
2319 ASSERT(ip->i_d.di_nblocks == 0);
2320
2321 /*
2322 * Pull the on-disk inode from the AGI unlinked list.
2323 */
2324 error = xfs_iunlink_remove(tp, ip);
2325 if (error != 0) {
2326 return error;
2327 }
2328
2329 error = xfs_difree(tp, ip->i_ino, flist, &delete, &first_ino);
2330 if (error != 0) {
2331 return error;
2332 }
2333 ip->i_d.di_mode = 0; /* mark incore inode as free */
2334 ip->i_d.di_flags = 0;
2335 ip->i_d.di_dmevmask = 0;
2336 ip->i_d.di_forkoff = 0; /* mark the attr fork not in use */
2337 ip->i_df.if_ext_max =
2338 XFS_IFORK_DSIZE(ip) / (uint)sizeof(xfs_bmbt_rec_t);
2339 ip->i_d.di_format = XFS_DINODE_FMT_EXTENTS;
2340 ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
2341 /*
2342 * Bump the generation count so no one will be confused
2343 * by reincarnations of this inode.
2344 */
2345 ip->i_d.di_gen++;
c319b58b 2346
1da177e4
LT
2347 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
2348
a3f74ffb 2349 error = xfs_itobp(ip->i_mount, tp, ip, &dip, &ibp, 0, 0, XFS_BUF_LOCK);
c319b58b
VA
2350 if (error)
2351 return error;
2352
2353 /*
2354 * Clear the on-disk di_mode. This is to prevent xfs_bulkstat
2355 * from picking up this inode when it is reclaimed (its incore state
2356 * initialzed but not flushed to disk yet). The in-core di_mode is
2357 * already cleared and a corresponding transaction logged.
2358 * The hack here just synchronizes the in-core to on-disk
2359 * di_mode value in advance before the actual inode sync to disk.
2360 * This is OK because the inode is already unlinked and would never
2361 * change its di_mode again for this inode generation.
2362 * This is a temporary hack that would require a proper fix
2363 * in the future.
2364 */
2365 dip->di_core.di_mode = 0;
2366
1da177e4
LT
2367 if (delete) {
2368 xfs_ifree_cluster(ip, tp, first_ino);
2369 }
2370
2371 return 0;
2372}
2373
2374/*
2375 * Reallocate the space for if_broot based on the number of records
2376 * being added or deleted as indicated in rec_diff. Move the records
2377 * and pointers in if_broot to fit the new size. When shrinking this
2378 * will eliminate holes between the records and pointers created by
2379 * the caller. When growing this will create holes to be filled in
2380 * by the caller.
2381 *
2382 * The caller must not request to add more records than would fit in
2383 * the on-disk inode root. If the if_broot is currently NULL, then
2384 * if we adding records one will be allocated. The caller must also
2385 * not request that the number of records go below zero, although
2386 * it can go to zero.
2387 *
2388 * ip -- the inode whose if_broot area is changing
2389 * ext_diff -- the change in the number of records, positive or negative,
2390 * requested for the if_broot array.
2391 */
2392void
2393xfs_iroot_realloc(
2394 xfs_inode_t *ip,
2395 int rec_diff,
2396 int whichfork)
2397{
2398 int cur_max;
2399 xfs_ifork_t *ifp;
2400 xfs_bmbt_block_t *new_broot;
2401 int new_max;
2402 size_t new_size;
2403 char *np;
2404 char *op;
2405
2406 /*
2407 * Handle the degenerate case quietly.
2408 */
2409 if (rec_diff == 0) {
2410 return;
2411 }
2412
2413 ifp = XFS_IFORK_PTR(ip, whichfork);
2414 if (rec_diff > 0) {
2415 /*
2416 * If there wasn't any memory allocated before, just
2417 * allocate it now and get out.
2418 */
2419 if (ifp->if_broot_bytes == 0) {
2420 new_size = (size_t)XFS_BMAP_BROOT_SPACE_CALC(rec_diff);
2421 ifp->if_broot = (xfs_bmbt_block_t*)kmem_alloc(new_size,
2422 KM_SLEEP);
2423 ifp->if_broot_bytes = (int)new_size;
2424 return;
2425 }
2426
2427 /*
2428 * If there is already an existing if_broot, then we need
2429 * to realloc() it and shift the pointers to their new
2430 * location. The records don't change location because
2431 * they are kept butted up against the btree block header.
2432 */
2433 cur_max = XFS_BMAP_BROOT_MAXRECS(ifp->if_broot_bytes);
2434 new_max = cur_max + rec_diff;
2435 new_size = (size_t)XFS_BMAP_BROOT_SPACE_CALC(new_max);
2436 ifp->if_broot = (xfs_bmbt_block_t *)
2437 kmem_realloc(ifp->if_broot,
2438 new_size,
2439 (size_t)XFS_BMAP_BROOT_SPACE_CALC(cur_max), /* old size */
2440 KM_SLEEP);
2441 op = (char *)XFS_BMAP_BROOT_PTR_ADDR(ifp->if_broot, 1,
2442 ifp->if_broot_bytes);
2443 np = (char *)XFS_BMAP_BROOT_PTR_ADDR(ifp->if_broot, 1,
2444 (int)new_size);
2445 ifp->if_broot_bytes = (int)new_size;
2446 ASSERT(ifp->if_broot_bytes <=
2447 XFS_IFORK_SIZE(ip, whichfork) + XFS_BROOT_SIZE_ADJ);
2448 memmove(np, op, cur_max * (uint)sizeof(xfs_dfsbno_t));
2449 return;
2450 }
2451
2452 /*
2453 * rec_diff is less than 0. In this case, we are shrinking the
2454 * if_broot buffer. It must already exist. If we go to zero
2455 * records, just get rid of the root and clear the status bit.
2456 */
2457 ASSERT((ifp->if_broot != NULL) && (ifp->if_broot_bytes > 0));
2458 cur_max = XFS_BMAP_BROOT_MAXRECS(ifp->if_broot_bytes);
2459 new_max = cur_max + rec_diff;
2460 ASSERT(new_max >= 0);
2461 if (new_max > 0)
2462 new_size = (size_t)XFS_BMAP_BROOT_SPACE_CALC(new_max);
2463 else
2464 new_size = 0;
2465 if (new_size > 0) {
2466 new_broot = (xfs_bmbt_block_t *)kmem_alloc(new_size, KM_SLEEP);
2467 /*
2468 * First copy over the btree block header.
2469 */
2470 memcpy(new_broot, ifp->if_broot, sizeof(xfs_bmbt_block_t));
2471 } else {
2472 new_broot = NULL;
2473 ifp->if_flags &= ~XFS_IFBROOT;
2474 }
2475
2476 /*
2477 * Only copy the records and pointers if there are any.
2478 */
2479 if (new_max > 0) {
2480 /*
2481 * First copy the records.
2482 */
2483 op = (char *)XFS_BMAP_BROOT_REC_ADDR(ifp->if_broot, 1,
2484 ifp->if_broot_bytes);
2485 np = (char *)XFS_BMAP_BROOT_REC_ADDR(new_broot, 1,
2486 (int)new_size);
2487 memcpy(np, op, new_max * (uint)sizeof(xfs_bmbt_rec_t));
2488
2489 /*
2490 * Then copy the pointers.
2491 */
2492 op = (char *)XFS_BMAP_BROOT_PTR_ADDR(ifp->if_broot, 1,
2493 ifp->if_broot_bytes);
2494 np = (char *)XFS_BMAP_BROOT_PTR_ADDR(new_broot, 1,
2495 (int)new_size);
2496 memcpy(np, op, new_max * (uint)sizeof(xfs_dfsbno_t));
2497 }
2498 kmem_free(ifp->if_broot, ifp->if_broot_bytes);
2499 ifp->if_broot = new_broot;
2500 ifp->if_broot_bytes = (int)new_size;
2501 ASSERT(ifp->if_broot_bytes <=
2502 XFS_IFORK_SIZE(ip, whichfork) + XFS_BROOT_SIZE_ADJ);
2503 return;
2504}
2505
2506
1da177e4
LT
2507/*
2508 * This is called when the amount of space needed for if_data
2509 * is increased or decreased. The change in size is indicated by
2510 * the number of bytes that need to be added or deleted in the
2511 * byte_diff parameter.
2512 *
2513 * If the amount of space needed has decreased below the size of the
2514 * inline buffer, then switch to using the inline buffer. Otherwise,
2515 * use kmem_realloc() or kmem_alloc() to adjust the size of the buffer
2516 * to what is needed.
2517 *
2518 * ip -- the inode whose if_data area is changing
2519 * byte_diff -- the change in the number of bytes, positive or negative,
2520 * requested for the if_data array.
2521 */
2522void
2523xfs_idata_realloc(
2524 xfs_inode_t *ip,
2525 int byte_diff,
2526 int whichfork)
2527{
2528 xfs_ifork_t *ifp;
2529 int new_size;
2530 int real_size;
2531
2532 if (byte_diff == 0) {
2533 return;
2534 }
2535
2536 ifp = XFS_IFORK_PTR(ip, whichfork);
2537 new_size = (int)ifp->if_bytes + byte_diff;
2538 ASSERT(new_size >= 0);
2539
2540 if (new_size == 0) {
2541 if (ifp->if_u1.if_data != ifp->if_u2.if_inline_data) {
2542 kmem_free(ifp->if_u1.if_data, ifp->if_real_bytes);
2543 }
2544 ifp->if_u1.if_data = NULL;
2545 real_size = 0;
2546 } else if (new_size <= sizeof(ifp->if_u2.if_inline_data)) {
2547 /*
2548 * If the valid extents/data can fit in if_inline_ext/data,
2549 * copy them from the malloc'd vector and free it.
2550 */
2551 if (ifp->if_u1.if_data == NULL) {
2552 ifp->if_u1.if_data = ifp->if_u2.if_inline_data;
2553 } else if (ifp->if_u1.if_data != ifp->if_u2.if_inline_data) {
2554 ASSERT(ifp->if_real_bytes != 0);
2555 memcpy(ifp->if_u2.if_inline_data, ifp->if_u1.if_data,
2556 new_size);
2557 kmem_free(ifp->if_u1.if_data, ifp->if_real_bytes);
2558 ifp->if_u1.if_data = ifp->if_u2.if_inline_data;
2559 }
2560 real_size = 0;
2561 } else {
2562 /*
2563 * Stuck with malloc/realloc.
2564 * For inline data, the underlying buffer must be
2565 * a multiple of 4 bytes in size so that it can be
2566 * logged and stay on word boundaries. We enforce
2567 * that here.
2568 */
2569 real_size = roundup(new_size, 4);
2570 if (ifp->if_u1.if_data == NULL) {
2571 ASSERT(ifp->if_real_bytes == 0);
2572 ifp->if_u1.if_data = kmem_alloc(real_size, KM_SLEEP);
2573 } else if (ifp->if_u1.if_data != ifp->if_u2.if_inline_data) {
2574 /*
2575 * Only do the realloc if the underlying size
2576 * is really changing.
2577 */
2578 if (ifp->if_real_bytes != real_size) {
2579 ifp->if_u1.if_data =
2580 kmem_realloc(ifp->if_u1.if_data,
2581 real_size,
2582 ifp->if_real_bytes,
2583 KM_SLEEP);
2584 }
2585 } else {
2586 ASSERT(ifp->if_real_bytes == 0);
2587 ifp->if_u1.if_data = kmem_alloc(real_size, KM_SLEEP);
2588 memcpy(ifp->if_u1.if_data, ifp->if_u2.if_inline_data,
2589 ifp->if_bytes);
2590 }
2591 }
2592 ifp->if_real_bytes = real_size;
2593 ifp->if_bytes = new_size;
2594 ASSERT(ifp->if_bytes <= XFS_IFORK_SIZE(ip, whichfork));
2595}
2596
2597
2598
2599
2600/*
2601 * Map inode to disk block and offset.
2602 *
2603 * mp -- the mount point structure for the current file system
2604 * tp -- the current transaction
2605 * ino -- the inode number of the inode to be located
2606 * imap -- this structure is filled in with the information necessary
2607 * to retrieve the given inode from disk
2608 * flags -- flags to pass to xfs_dilocate indicating whether or not
2609 * lookups in the inode btree were OK or not
2610 */
2611int
2612xfs_imap(
2613 xfs_mount_t *mp,
2614 xfs_trans_t *tp,
2615 xfs_ino_t ino,
2616 xfs_imap_t *imap,
2617 uint flags)
2618{
2619 xfs_fsblock_t fsbno;
2620 int len;
2621 int off;
2622 int error;
2623
2624 fsbno = imap->im_blkno ?
2625 XFS_DADDR_TO_FSB(mp, imap->im_blkno) : NULLFSBLOCK;
2626 error = xfs_dilocate(mp, tp, ino, &fsbno, &len, &off, flags);
4ae29b43 2627 if (error)
1da177e4 2628 return error;
4ae29b43 2629
1da177e4
LT
2630 imap->im_blkno = XFS_FSB_TO_DADDR(mp, fsbno);
2631 imap->im_len = XFS_FSB_TO_BB(mp, len);
2632 imap->im_agblkno = XFS_FSB_TO_AGBNO(mp, fsbno);
2633 imap->im_ioffset = (ushort)off;
2634 imap->im_boffset = (ushort)(off << mp->m_sb.sb_inodelog);
4ae29b43
DC
2635
2636 /*
2637 * If the inode number maps to a block outside the bounds
2638 * of the file system then return NULL rather than calling
2639 * read_buf and panicing when we get an error from the
2640 * driver.
2641 */
2642 if ((imap->im_blkno + imap->im_len) >
2643 XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks)) {
2644 xfs_fs_cmn_err(CE_ALERT, mp, "xfs_imap: "
2645 "(imap->im_blkno (0x%llx) + imap->im_len (0x%llx)) > "
2646 " XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks) (0x%llx)",
2647 (unsigned long long) imap->im_blkno,
2648 (unsigned long long) imap->im_len,
2649 XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks));
2650 return EINVAL;
2651 }
1da177e4
LT
2652 return 0;
2653}
2654
2655void
2656xfs_idestroy_fork(
2657 xfs_inode_t *ip,
2658 int whichfork)
2659{
2660 xfs_ifork_t *ifp;
2661
2662 ifp = XFS_IFORK_PTR(ip, whichfork);
2663 if (ifp->if_broot != NULL) {
2664 kmem_free(ifp->if_broot, ifp->if_broot_bytes);
2665 ifp->if_broot = NULL;
2666 }
2667
2668 /*
2669 * If the format is local, then we can't have an extents
2670 * array so just look for an inline data array. If we're
2671 * not local then we may or may not have an extents list,
2672 * so check and free it up if we do.
2673 */
2674 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL) {
2675 if ((ifp->if_u1.if_data != ifp->if_u2.if_inline_data) &&
2676 (ifp->if_u1.if_data != NULL)) {
2677 ASSERT(ifp->if_real_bytes != 0);
2678 kmem_free(ifp->if_u1.if_data, ifp->if_real_bytes);
2679 ifp->if_u1.if_data = NULL;
2680 ifp->if_real_bytes = 0;
2681 }
2682 } else if ((ifp->if_flags & XFS_IFEXTENTS) &&
0293ce3a
MK
2683 ((ifp->if_flags & XFS_IFEXTIREC) ||
2684 ((ifp->if_u1.if_extents != NULL) &&
2685 (ifp->if_u1.if_extents != ifp->if_u2.if_inline_ext)))) {
1da177e4 2686 ASSERT(ifp->if_real_bytes != 0);
4eea22f0 2687 xfs_iext_destroy(ifp);
1da177e4
LT
2688 }
2689 ASSERT(ifp->if_u1.if_extents == NULL ||
2690 ifp->if_u1.if_extents == ifp->if_u2.if_inline_ext);
2691 ASSERT(ifp->if_real_bytes == 0);
2692 if (whichfork == XFS_ATTR_FORK) {
2693 kmem_zone_free(xfs_ifork_zone, ip->i_afp);
2694 ip->i_afp = NULL;
2695 }
2696}
2697
2698/*
2699 * This is called free all the memory associated with an inode.
2700 * It must free the inode itself and any buffers allocated for
2701 * if_extents/if_data and if_broot. It must also free the lock
2702 * associated with the inode.
2703 */
2704void
2705xfs_idestroy(
2706 xfs_inode_t *ip)
2707{
1da177e4
LT
2708 switch (ip->i_d.di_mode & S_IFMT) {
2709 case S_IFREG:
2710 case S_IFDIR:
2711 case S_IFLNK:
2712 xfs_idestroy_fork(ip, XFS_DATA_FORK);
2713 break;
2714 }
2715 if (ip->i_afp)
2716 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
2717 mrfree(&ip->i_lock);
2718 mrfree(&ip->i_iolock);
2719 freesema(&ip->i_flock);
1543d79c 2720
cf441eeb 2721#ifdef XFS_INODE_TRACE
1543d79c
CH
2722 ktrace_free(ip->i_trace);
2723#endif
1da177e4
LT
2724#ifdef XFS_BMAP_TRACE
2725 ktrace_free(ip->i_xtrace);
2726#endif
2727#ifdef XFS_BMBT_TRACE
2728 ktrace_free(ip->i_btrace);
2729#endif
2730#ifdef XFS_RW_TRACE
2731 ktrace_free(ip->i_rwtrace);
2732#endif
2733#ifdef XFS_ILOCK_TRACE
2734 ktrace_free(ip->i_lock_trace);
2735#endif
2736#ifdef XFS_DIR2_TRACE
2737 ktrace_free(ip->i_dir_trace);
2738#endif
2739 if (ip->i_itemp) {
f74eaf59
DC
2740 /*
2741 * Only if we are shutting down the fs will we see an
2742 * inode still in the AIL. If it is there, we should remove
2743 * it to prevent a use-after-free from occurring.
2744 */
2745 xfs_mount_t *mp = ip->i_mount;
2746 xfs_log_item_t *lip = &ip->i_itemp->ili_item;
f74eaf59
DC
2747
2748 ASSERT(((lip->li_flags & XFS_LI_IN_AIL) == 0) ||
2749 XFS_FORCED_SHUTDOWN(ip->i_mount));
2750 if (lip->li_flags & XFS_LI_IN_AIL) {
287f3dad 2751 spin_lock(&mp->m_ail_lock);
f74eaf59 2752 if (lip->li_flags & XFS_LI_IN_AIL)
287f3dad 2753 xfs_trans_delete_ail(mp, lip);
f74eaf59 2754 else
287f3dad 2755 spin_unlock(&mp->m_ail_lock);
f74eaf59 2756 }
1da177e4
LT
2757 xfs_inode_item_destroy(ip);
2758 }
2759 kmem_zone_free(xfs_inode_zone, ip);
2760}
2761
2762
2763/*
2764 * Increment the pin count of the given buffer.
2765 * This value is protected by ipinlock spinlock in the mount structure.
2766 */
2767void
2768xfs_ipin(
2769 xfs_inode_t *ip)
2770{
2771 ASSERT(ismrlocked(&ip->i_lock, MR_UPDATE));
2772
2773 atomic_inc(&ip->i_pincount);
2774}
2775
2776/*
2777 * Decrement the pin count of the given inode, and wake up
2778 * anyone in xfs_iwait_unpin() if the count goes to 0. The
c41564b5 2779 * inode must have been previously pinned with a call to xfs_ipin().
1da177e4
LT
2780 */
2781void
2782xfs_iunpin(
2783 xfs_inode_t *ip)
2784{
2785 ASSERT(atomic_read(&ip->i_pincount) > 0);
2786
5d51eff4 2787 if (atomic_dec_and_test(&ip->i_pincount))
1da177e4 2788 wake_up(&ip->i_ipin_wait);
1da177e4
LT
2789}
2790
2791/*
a3f74ffb
DC
2792 * This is called to unpin an inode. It can be directed to wait or to return
2793 * immediately without waiting for the inode to be unpinned. The caller must
2794 * have the inode locked in at least shared mode so that the buffer cannot be
2795 * subsequently pinned once someone is waiting for it to be unpinned.
1da177e4 2796 */
ba0f32d4 2797STATIC void
a3f74ffb
DC
2798__xfs_iunpin_wait(
2799 xfs_inode_t *ip,
2800 int wait)
1da177e4 2801{
a3f74ffb 2802 xfs_inode_log_item_t *iip = ip->i_itemp;
1da177e4
LT
2803
2804 ASSERT(ismrlocked(&ip->i_lock, MR_UPDATE | MR_ACCESS));
a3f74ffb 2805 if (atomic_read(&ip->i_pincount) == 0)
1da177e4 2806 return;
1da177e4 2807
a3f74ffb
DC
2808 /* Give the log a push to start the unpinning I/O */
2809 xfs_log_force(ip->i_mount, (iip && iip->ili_last_lsn) ?
2810 iip->ili_last_lsn : 0, XFS_LOG_FORCE);
2811 if (wait)
2812 wait_event(ip->i_ipin_wait, (atomic_read(&ip->i_pincount) == 0));
2813}
1da177e4 2814
a3f74ffb
DC
2815static inline void
2816xfs_iunpin_wait(
2817 xfs_inode_t *ip)
2818{
2819 __xfs_iunpin_wait(ip, 1);
2820}
1da177e4 2821
a3f74ffb
DC
2822static inline void
2823xfs_iunpin_nowait(
2824 xfs_inode_t *ip)
2825{
2826 __xfs_iunpin_wait(ip, 0);
1da177e4
LT
2827}
2828
2829
2830/*
2831 * xfs_iextents_copy()
2832 *
2833 * This is called to copy the REAL extents (as opposed to the delayed
2834 * allocation extents) from the inode into the given buffer. It
2835 * returns the number of bytes copied into the buffer.
2836 *
2837 * If there are no delayed allocation extents, then we can just
2838 * memcpy() the extents into the buffer. Otherwise, we need to
2839 * examine each extent in turn and skip those which are delayed.
2840 */
2841int
2842xfs_iextents_copy(
2843 xfs_inode_t *ip,
a6f64d4a 2844 xfs_bmbt_rec_t *dp,
1da177e4
LT
2845 int whichfork)
2846{
2847 int copied;
1da177e4
LT
2848 int i;
2849 xfs_ifork_t *ifp;
2850 int nrecs;
2851 xfs_fsblock_t start_block;
2852
2853 ifp = XFS_IFORK_PTR(ip, whichfork);
2854 ASSERT(ismrlocked(&ip->i_lock, MR_UPDATE|MR_ACCESS));
2855 ASSERT(ifp->if_bytes > 0);
2856
2857 nrecs = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
3a59c94c 2858 XFS_BMAP_TRACE_EXLIST(ip, nrecs, whichfork);
1da177e4
LT
2859 ASSERT(nrecs > 0);
2860
2861 /*
2862 * There are some delayed allocation extents in the
2863 * inode, so copy the extents one at a time and skip
2864 * the delayed ones. There must be at least one
2865 * non-delayed extent.
2866 */
1da177e4
LT
2867 copied = 0;
2868 for (i = 0; i < nrecs; i++) {
a6f64d4a 2869 xfs_bmbt_rec_host_t *ep = xfs_iext_get_ext(ifp, i);
1da177e4
LT
2870 start_block = xfs_bmbt_get_startblock(ep);
2871 if (ISNULLSTARTBLOCK(start_block)) {
2872 /*
2873 * It's a delayed allocation extent, so skip it.
2874 */
1da177e4
LT
2875 continue;
2876 }
2877
2878 /* Translate to on disk format */
cd8b0a97
CH
2879 put_unaligned(cpu_to_be64(ep->l0), &dp->l0);
2880 put_unaligned(cpu_to_be64(ep->l1), &dp->l1);
a6f64d4a 2881 dp++;
1da177e4
LT
2882 copied++;
2883 }
2884 ASSERT(copied != 0);
a6f64d4a 2885 xfs_validate_extents(ifp, copied, XFS_EXTFMT_INODE(ip));
1da177e4
LT
2886
2887 return (copied * (uint)sizeof(xfs_bmbt_rec_t));
2888}
2889
2890/*
2891 * Each of the following cases stores data into the same region
2892 * of the on-disk inode, so only one of them can be valid at
2893 * any given time. While it is possible to have conflicting formats
2894 * and log flags, e.g. having XFS_ILOG_?DATA set when the fork is
2895 * in EXTENTS format, this can only happen when the fork has
2896 * changed formats after being modified but before being flushed.
2897 * In these cases, the format always takes precedence, because the
2898 * format indicates the current state of the fork.
2899 */
2900/*ARGSUSED*/
2901STATIC int
2902xfs_iflush_fork(
2903 xfs_inode_t *ip,
2904 xfs_dinode_t *dip,
2905 xfs_inode_log_item_t *iip,
2906 int whichfork,
2907 xfs_buf_t *bp)
2908{
2909 char *cp;
2910 xfs_ifork_t *ifp;
2911 xfs_mount_t *mp;
2912#ifdef XFS_TRANS_DEBUG
2913 int first;
2914#endif
2915 static const short brootflag[2] =
2916 { XFS_ILOG_DBROOT, XFS_ILOG_ABROOT };
2917 static const short dataflag[2] =
2918 { XFS_ILOG_DDATA, XFS_ILOG_ADATA };
2919 static const short extflag[2] =
2920 { XFS_ILOG_DEXT, XFS_ILOG_AEXT };
2921
2922 if (iip == NULL)
2923 return 0;
2924 ifp = XFS_IFORK_PTR(ip, whichfork);
2925 /*
2926 * This can happen if we gave up in iformat in an error path,
2927 * for the attribute fork.
2928 */
2929 if (ifp == NULL) {
2930 ASSERT(whichfork == XFS_ATTR_FORK);
2931 return 0;
2932 }
2933 cp = XFS_DFORK_PTR(dip, whichfork);
2934 mp = ip->i_mount;
2935 switch (XFS_IFORK_FORMAT(ip, whichfork)) {
2936 case XFS_DINODE_FMT_LOCAL:
2937 if ((iip->ili_format.ilf_fields & dataflag[whichfork]) &&
2938 (ifp->if_bytes > 0)) {
2939 ASSERT(ifp->if_u1.if_data != NULL);
2940 ASSERT(ifp->if_bytes <= XFS_IFORK_SIZE(ip, whichfork));
2941 memcpy(cp, ifp->if_u1.if_data, ifp->if_bytes);
2942 }
1da177e4
LT
2943 break;
2944
2945 case XFS_DINODE_FMT_EXTENTS:
2946 ASSERT((ifp->if_flags & XFS_IFEXTENTS) ||
2947 !(iip->ili_format.ilf_fields & extflag[whichfork]));
4eea22f0
MK
2948 ASSERT((xfs_iext_get_ext(ifp, 0) != NULL) ||
2949 (ifp->if_bytes == 0));
2950 ASSERT((xfs_iext_get_ext(ifp, 0) == NULL) ||
2951 (ifp->if_bytes > 0));
1da177e4
LT
2952 if ((iip->ili_format.ilf_fields & extflag[whichfork]) &&
2953 (ifp->if_bytes > 0)) {
2954 ASSERT(XFS_IFORK_NEXTENTS(ip, whichfork) > 0);
2955 (void)xfs_iextents_copy(ip, (xfs_bmbt_rec_t *)cp,
2956 whichfork);
2957 }
2958 break;
2959
2960 case XFS_DINODE_FMT_BTREE:
2961 if ((iip->ili_format.ilf_fields & brootflag[whichfork]) &&
2962 (ifp->if_broot_bytes > 0)) {
2963 ASSERT(ifp->if_broot != NULL);
2964 ASSERT(ifp->if_broot_bytes <=
2965 (XFS_IFORK_SIZE(ip, whichfork) +
2966 XFS_BROOT_SIZE_ADJ));
2967 xfs_bmbt_to_bmdr(ifp->if_broot, ifp->if_broot_bytes,
2968 (xfs_bmdr_block_t *)cp,
2969 XFS_DFORK_SIZE(dip, mp, whichfork));
2970 }
2971 break;
2972
2973 case XFS_DINODE_FMT_DEV:
2974 if (iip->ili_format.ilf_fields & XFS_ILOG_DEV) {
2975 ASSERT(whichfork == XFS_DATA_FORK);
347d1c01 2976 dip->di_u.di_dev = cpu_to_be32(ip->i_df.if_u2.if_rdev);
1da177e4
LT
2977 }
2978 break;
2979
2980 case XFS_DINODE_FMT_UUID:
2981 if (iip->ili_format.ilf_fields & XFS_ILOG_UUID) {
2982 ASSERT(whichfork == XFS_DATA_FORK);
2983 memcpy(&dip->di_u.di_muuid, &ip->i_df.if_u2.if_uuid,
2984 sizeof(uuid_t));
2985 }
2986 break;
2987
2988 default:
2989 ASSERT(0);
2990 break;
2991 }
2992
2993 return 0;
2994}
2995
bad55843
DC
2996STATIC int
2997xfs_iflush_cluster(
2998 xfs_inode_t *ip,
2999 xfs_buf_t *bp)
3000{
3001 xfs_mount_t *mp = ip->i_mount;
3002 xfs_perag_t *pag = xfs_get_perag(mp, ip->i_ino);
3003 unsigned long first_index, mask;
3004 int ilist_size;
3005 xfs_inode_t **ilist;
3006 xfs_inode_t *iq;
3007 xfs_inode_log_item_t *iip;
3008 int nr_found;
3009 int clcount = 0;
3010 int bufwasdelwri;
3011 int i;
3012
3013 ASSERT(pag->pagi_inodeok);
3014 ASSERT(pag->pag_ici_init);
3015
3016 ilist_size = XFS_INODE_CLUSTER_SIZE(mp) * sizeof(xfs_inode_t *);
3017 ilist = kmem_alloc(ilist_size, KM_MAYFAIL);
3018 if (!ilist)
3019 return 0;
3020
3021 mask = ~(((XFS_INODE_CLUSTER_SIZE(mp) >> mp->m_sb.sb_inodelog)) - 1);
3022 first_index = XFS_INO_TO_AGINO(mp, ip->i_ino) & mask;
3023 read_lock(&pag->pag_ici_lock);
3024 /* really need a gang lookup range call here */
3025 nr_found = radix_tree_gang_lookup(&pag->pag_ici_root, (void**)ilist,
3026 first_index,
3027 XFS_INODE_CLUSTER_SIZE(mp));
3028 if (nr_found == 0)
3029 goto out_free;
3030
3031 for (i = 0; i < nr_found; i++) {
3032 iq = ilist[i];
3033 if (iq == ip)
3034 continue;
3035 /* if the inode lies outside this cluster, we're done. */
3036 if ((XFS_INO_TO_AGINO(mp, iq->i_ino) & mask) != first_index)
3037 break;
3038 /*
3039 * Do an un-protected check to see if the inode is dirty and
3040 * is a candidate for flushing. These checks will be repeated
3041 * later after the appropriate locks are acquired.
3042 */
3043 iip = iq->i_itemp;
3044 if ((iq->i_update_core == 0) &&
3045 ((iip == NULL) ||
3046 !(iip->ili_format.ilf_fields & XFS_ILOG_ALL)) &&
3047 xfs_ipincount(iq) == 0) {
3048 continue;
3049 }
3050
3051 /*
3052 * Try to get locks. If any are unavailable or it is pinned,
3053 * then this inode cannot be flushed and is skipped.
3054 */
3055
3056 if (!xfs_ilock_nowait(iq, XFS_ILOCK_SHARED))
3057 continue;
3058 if (!xfs_iflock_nowait(iq)) {
3059 xfs_iunlock(iq, XFS_ILOCK_SHARED);
3060 continue;
3061 }
3062 if (xfs_ipincount(iq)) {
3063 xfs_ifunlock(iq);
3064 xfs_iunlock(iq, XFS_ILOCK_SHARED);
3065 continue;
3066 }
3067
3068 /*
3069 * arriving here means that this inode can be flushed. First
3070 * re-check that it's dirty before flushing.
3071 */
3072 iip = iq->i_itemp;
3073 if ((iq->i_update_core != 0) || ((iip != NULL) &&
3074 (iip->ili_format.ilf_fields & XFS_ILOG_ALL))) {
3075 int error;
3076 error = xfs_iflush_int(iq, bp);
3077 if (error) {
3078 xfs_iunlock(iq, XFS_ILOCK_SHARED);
3079 goto cluster_corrupt_out;
3080 }
3081 clcount++;
3082 } else {
3083 xfs_ifunlock(iq);
3084 }
3085 xfs_iunlock(iq, XFS_ILOCK_SHARED);
3086 }
3087
3088 if (clcount) {
3089 XFS_STATS_INC(xs_icluster_flushcnt);
3090 XFS_STATS_ADD(xs_icluster_flushinode, clcount);
3091 }
3092
3093out_free:
3094 read_unlock(&pag->pag_ici_lock);
3095 kmem_free(ilist, ilist_size);
3096 return 0;
3097
3098
3099cluster_corrupt_out:
3100 /*
3101 * Corruption detected in the clustering loop. Invalidate the
3102 * inode buffer and shut down the filesystem.
3103 */
3104 read_unlock(&pag->pag_ici_lock);
3105 /*
3106 * Clean up the buffer. If it was B_DELWRI, just release it --
3107 * brelse can handle it with no problems. If not, shut down the
3108 * filesystem before releasing the buffer.
3109 */
3110 bufwasdelwri = XFS_BUF_ISDELAYWRITE(bp);
3111 if (bufwasdelwri)
3112 xfs_buf_relse(bp);
3113
3114 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
3115
3116 if (!bufwasdelwri) {
3117 /*
3118 * Just like incore_relse: if we have b_iodone functions,
3119 * mark the buffer as an error and call them. Otherwise
3120 * mark it as stale and brelse.
3121 */
3122 if (XFS_BUF_IODONE_FUNC(bp)) {
3123 XFS_BUF_CLR_BDSTRAT_FUNC(bp);
3124 XFS_BUF_UNDONE(bp);
3125 XFS_BUF_STALE(bp);
3126 XFS_BUF_SHUT(bp);
3127 XFS_BUF_ERROR(bp,EIO);
3128 xfs_biodone(bp);
3129 } else {
3130 XFS_BUF_STALE(bp);
3131 xfs_buf_relse(bp);
3132 }
3133 }
3134
3135 /*
3136 * Unlocks the flush lock
3137 */
3138 xfs_iflush_abort(iq);
3139 kmem_free(ilist, ilist_size);
3140 return XFS_ERROR(EFSCORRUPTED);
3141}
3142
1da177e4
LT
3143/*
3144 * xfs_iflush() will write a modified inode's changes out to the
3145 * inode's on disk home. The caller must have the inode lock held
3146 * in at least shared mode and the inode flush semaphore must be
3147 * held as well. The inode lock will still be held upon return from
3148 * the call and the caller is free to unlock it.
3149 * The inode flush lock will be unlocked when the inode reaches the disk.
3150 * The flags indicate how the inode's buffer should be written out.
3151 */
3152int
3153xfs_iflush(
3154 xfs_inode_t *ip,
3155 uint flags)
3156{
3157 xfs_inode_log_item_t *iip;
3158 xfs_buf_t *bp;
3159 xfs_dinode_t *dip;
3160 xfs_mount_t *mp;
3161 int error;
a3f74ffb 3162 int noblock = (flags == XFS_IFLUSH_ASYNC_NOBLOCK);
bad55843 3163 enum { INT_DELWRI = (1 << 0), INT_ASYNC = (1 << 1) };
1da177e4
LT
3164
3165 XFS_STATS_INC(xs_iflush_count);
3166
3167 ASSERT(ismrlocked(&ip->i_lock, MR_UPDATE|MR_ACCESS));
0d8fee32 3168 ASSERT(issemalocked(&(ip->i_flock)));
1da177e4
LT
3169 ASSERT(ip->i_d.di_format != XFS_DINODE_FMT_BTREE ||
3170 ip->i_d.di_nextents > ip->i_df.if_ext_max);
3171
3172 iip = ip->i_itemp;
3173 mp = ip->i_mount;
3174
3175 /*
3176 * If the inode isn't dirty, then just release the inode
3177 * flush lock and do nothing.
3178 */
3179 if ((ip->i_update_core == 0) &&
3180 ((iip == NULL) || !(iip->ili_format.ilf_fields & XFS_ILOG_ALL))) {
3181 ASSERT((iip != NULL) ?
3182 !(iip->ili_item.li_flags & XFS_LI_IN_AIL) : 1);
3183 xfs_ifunlock(ip);
3184 return 0;
3185 }
3186
3187 /*
a3f74ffb
DC
3188 * We can't flush the inode until it is unpinned, so wait for it if we
3189 * are allowed to block. We know noone new can pin it, because we are
3190 * holding the inode lock shared and you need to hold it exclusively to
3191 * pin the inode.
3192 *
3193 * If we are not allowed to block, force the log out asynchronously so
3194 * that when we come back the inode will be unpinned. If other inodes
3195 * in the same cluster are dirty, they will probably write the inode
3196 * out for us if they occur after the log force completes.
1da177e4 3197 */
a3f74ffb
DC
3198 if (noblock && xfs_ipincount(ip)) {
3199 xfs_iunpin_nowait(ip);
3200 xfs_ifunlock(ip);
3201 return EAGAIN;
3202 }
1da177e4
LT
3203 xfs_iunpin_wait(ip);
3204
3205 /*
3206 * This may have been unpinned because the filesystem is shutting
3207 * down forcibly. If that's the case we must not write this inode
3208 * to disk, because the log record didn't make it to disk!
3209 */
3210 if (XFS_FORCED_SHUTDOWN(mp)) {
3211 ip->i_update_core = 0;
3212 if (iip)
3213 iip->ili_format.ilf_fields = 0;
3214 xfs_ifunlock(ip);
3215 return XFS_ERROR(EIO);
3216 }
3217
1da177e4
LT
3218 /*
3219 * Decide how buffer will be flushed out. This is done before
3220 * the call to xfs_iflush_int because this field is zeroed by it.
3221 */
3222 if (iip != NULL && iip->ili_format.ilf_fields != 0) {
3223 /*
3224 * Flush out the inode buffer according to the directions
3225 * of the caller. In the cases where the caller has given
3226 * us a choice choose the non-delwri case. This is because
3227 * the inode is in the AIL and we need to get it out soon.
3228 */
3229 switch (flags) {
3230 case XFS_IFLUSH_SYNC:
3231 case XFS_IFLUSH_DELWRI_ELSE_SYNC:
3232 flags = 0;
3233 break;
a3f74ffb 3234 case XFS_IFLUSH_ASYNC_NOBLOCK:
1da177e4
LT
3235 case XFS_IFLUSH_ASYNC:
3236 case XFS_IFLUSH_DELWRI_ELSE_ASYNC:
3237 flags = INT_ASYNC;
3238 break;
3239 case XFS_IFLUSH_DELWRI:
3240 flags = INT_DELWRI;
3241 break;
3242 default:
3243 ASSERT(0);
3244 flags = 0;
3245 break;
3246 }
3247 } else {
3248 switch (flags) {
3249 case XFS_IFLUSH_DELWRI_ELSE_SYNC:
3250 case XFS_IFLUSH_DELWRI_ELSE_ASYNC:
3251 case XFS_IFLUSH_DELWRI:
3252 flags = INT_DELWRI;
3253 break;
a3f74ffb 3254 case XFS_IFLUSH_ASYNC_NOBLOCK:
1da177e4
LT
3255 case XFS_IFLUSH_ASYNC:
3256 flags = INT_ASYNC;
3257 break;
3258 case XFS_IFLUSH_SYNC:
3259 flags = 0;
3260 break;
3261 default:
3262 ASSERT(0);
3263 flags = 0;
3264 break;
3265 }
3266 }
3267
a3f74ffb
DC
3268 /*
3269 * Get the buffer containing the on-disk inode.
3270 */
3271 error = xfs_itobp(mp, NULL, ip, &dip, &bp, 0, 0,
3272 noblock ? XFS_BUF_TRYLOCK : XFS_BUF_LOCK);
3273 if (error || !bp) {
3274 xfs_ifunlock(ip);
3275 return error;
3276 }
3277
1da177e4
LT
3278 /*
3279 * First flush out the inode that xfs_iflush was called with.
3280 */
3281 error = xfs_iflush_int(ip, bp);
bad55843 3282 if (error)
1da177e4 3283 goto corrupt_out;
1da177e4 3284
a3f74ffb
DC
3285 /*
3286 * If the buffer is pinned then push on the log now so we won't
3287 * get stuck waiting in the write for too long.
3288 */
3289 if (XFS_BUF_ISPINNED(bp))
3290 xfs_log_force(mp, (xfs_lsn_t)0, XFS_LOG_FORCE);
3291
1da177e4
LT
3292 /*
3293 * inode clustering:
3294 * see if other inodes can be gathered into this write
3295 */
bad55843
DC
3296 error = xfs_iflush_cluster(ip, bp);
3297 if (error)
3298 goto cluster_corrupt_out;
1da177e4 3299
1da177e4
LT
3300 if (flags & INT_DELWRI) {
3301 xfs_bdwrite(mp, bp);
3302 } else if (flags & INT_ASYNC) {
3303 xfs_bawrite(mp, bp);
3304 } else {
3305 error = xfs_bwrite(mp, bp);
3306 }
3307 return error;
3308
3309corrupt_out:
3310 xfs_buf_relse(bp);
7d04a335 3311 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
1da177e4 3312cluster_corrupt_out:
1da177e4
LT
3313 /*
3314 * Unlocks the flush lock
3315 */
bad55843 3316 xfs_iflush_abort(ip);
1da177e4
LT
3317 return XFS_ERROR(EFSCORRUPTED);
3318}
3319
3320
3321STATIC int
3322xfs_iflush_int(
3323 xfs_inode_t *ip,
3324 xfs_buf_t *bp)
3325{
3326 xfs_inode_log_item_t *iip;
3327 xfs_dinode_t *dip;
3328 xfs_mount_t *mp;
3329#ifdef XFS_TRANS_DEBUG
3330 int first;
3331#endif
1da177e4
LT
3332
3333 ASSERT(ismrlocked(&ip->i_lock, MR_UPDATE|MR_ACCESS));
0d8fee32 3334 ASSERT(issemalocked(&(ip->i_flock)));
1da177e4
LT
3335 ASSERT(ip->i_d.di_format != XFS_DINODE_FMT_BTREE ||
3336 ip->i_d.di_nextents > ip->i_df.if_ext_max);
3337
3338 iip = ip->i_itemp;
3339 mp = ip->i_mount;
3340
3341
3342 /*
3343 * If the inode isn't dirty, then just release the inode
3344 * flush lock and do nothing.
3345 */
3346 if ((ip->i_update_core == 0) &&
3347 ((iip == NULL) || !(iip->ili_format.ilf_fields & XFS_ILOG_ALL))) {
3348 xfs_ifunlock(ip);
3349 return 0;
3350 }
3351
3352 /* set *dip = inode's place in the buffer */
3353 dip = (xfs_dinode_t *)xfs_buf_offset(bp, ip->i_boffset);
3354
3355 /*
3356 * Clear i_update_core before copying out the data.
3357 * This is for coordination with our timestamp updates
3358 * that don't hold the inode lock. They will always
3359 * update the timestamps BEFORE setting i_update_core,
3360 * so if we clear i_update_core after they set it we
3361 * are guaranteed to see their updates to the timestamps.
3362 * I believe that this depends on strongly ordered memory
3363 * semantics, but we have that. We use the SYNCHRONIZE
3364 * macro to make sure that the compiler does not reorder
3365 * the i_update_core access below the data copy below.
3366 */
3367 ip->i_update_core = 0;
3368 SYNCHRONIZE();
3369
42fe2b1f
CH
3370 /*
3371 * Make sure to get the latest atime from the Linux inode.
3372 */
3373 xfs_synchronize_atime(ip);
3374
347d1c01 3375 if (XFS_TEST_ERROR(be16_to_cpu(dip->di_core.di_magic) != XFS_DINODE_MAGIC,
1da177e4
LT
3376 mp, XFS_ERRTAG_IFLUSH_1, XFS_RANDOM_IFLUSH_1)) {
3377 xfs_cmn_err(XFS_PTAG_IFLUSH, CE_ALERT, mp,
3378 "xfs_iflush: Bad inode %Lu magic number 0x%x, ptr 0x%p",
347d1c01 3379 ip->i_ino, be16_to_cpu(dip->di_core.di_magic), dip);
1da177e4
LT
3380 goto corrupt_out;
3381 }
3382 if (XFS_TEST_ERROR(ip->i_d.di_magic != XFS_DINODE_MAGIC,
3383 mp, XFS_ERRTAG_IFLUSH_2, XFS_RANDOM_IFLUSH_2)) {
3384 xfs_cmn_err(XFS_PTAG_IFLUSH, CE_ALERT, mp,
3385 "xfs_iflush: Bad inode %Lu, ptr 0x%p, magic number 0x%x",
3386 ip->i_ino, ip, ip->i_d.di_magic);
3387 goto corrupt_out;
3388 }
3389 if ((ip->i_d.di_mode & S_IFMT) == S_IFREG) {
3390 if (XFS_TEST_ERROR(
3391 (ip->i_d.di_format != XFS_DINODE_FMT_EXTENTS) &&
3392 (ip->i_d.di_format != XFS_DINODE_FMT_BTREE),
3393 mp, XFS_ERRTAG_IFLUSH_3, XFS_RANDOM_IFLUSH_3)) {
3394 xfs_cmn_err(XFS_PTAG_IFLUSH, CE_ALERT, mp,
3395 "xfs_iflush: Bad regular inode %Lu, ptr 0x%p",
3396 ip->i_ino, ip);
3397 goto corrupt_out;
3398 }
3399 } else if ((ip->i_d.di_mode & S_IFMT) == S_IFDIR) {
3400 if (XFS_TEST_ERROR(
3401 (ip->i_d.di_format != XFS_DINODE_FMT_EXTENTS) &&
3402 (ip->i_d.di_format != XFS_DINODE_FMT_BTREE) &&
3403 (ip->i_d.di_format != XFS_DINODE_FMT_LOCAL),
3404 mp, XFS_ERRTAG_IFLUSH_4, XFS_RANDOM_IFLUSH_4)) {
3405 xfs_cmn_err(XFS_PTAG_IFLUSH, CE_ALERT, mp,
3406 "xfs_iflush: Bad directory inode %Lu, ptr 0x%p",
3407 ip->i_ino, ip);
3408 goto corrupt_out;
3409 }
3410 }
3411 if (XFS_TEST_ERROR(ip->i_d.di_nextents + ip->i_d.di_anextents >
3412 ip->i_d.di_nblocks, mp, XFS_ERRTAG_IFLUSH_5,
3413 XFS_RANDOM_IFLUSH_5)) {
3414 xfs_cmn_err(XFS_PTAG_IFLUSH, CE_ALERT, mp,
3415 "xfs_iflush: detected corrupt incore inode %Lu, total extents = %d, nblocks = %Ld, ptr 0x%p",
3416 ip->i_ino,
3417 ip->i_d.di_nextents + ip->i_d.di_anextents,
3418 ip->i_d.di_nblocks,
3419 ip);
3420 goto corrupt_out;
3421 }
3422 if (XFS_TEST_ERROR(ip->i_d.di_forkoff > mp->m_sb.sb_inodesize,
3423 mp, XFS_ERRTAG_IFLUSH_6, XFS_RANDOM_IFLUSH_6)) {
3424 xfs_cmn_err(XFS_PTAG_IFLUSH, CE_ALERT, mp,
3425 "xfs_iflush: bad inode %Lu, forkoff 0x%x, ptr 0x%p",
3426 ip->i_ino, ip->i_d.di_forkoff, ip);
3427 goto corrupt_out;
3428 }
3429 /*
3430 * bump the flush iteration count, used to detect flushes which
3431 * postdate a log record during recovery.
3432 */
3433
3434 ip->i_d.di_flushiter++;
3435
3436 /*
3437 * Copy the dirty parts of the inode into the on-disk
3438 * inode. We always copy out the core of the inode,
3439 * because if the inode is dirty at all the core must
3440 * be.
3441 */
347d1c01 3442 xfs_dinode_to_disk(&dip->di_core, &ip->i_d);
1da177e4
LT
3443
3444 /* Wrap, we never let the log put out DI_MAX_FLUSH */
3445 if (ip->i_d.di_flushiter == DI_MAX_FLUSH)
3446 ip->i_d.di_flushiter = 0;
3447
3448 /*
3449 * If this is really an old format inode and the superblock version
3450 * has not been updated to support only new format inodes, then
3451 * convert back to the old inode format. If the superblock version
3452 * has been updated, then make the conversion permanent.
3453 */
3454 ASSERT(ip->i_d.di_version == XFS_DINODE_VERSION_1 ||
62118709 3455 xfs_sb_version_hasnlink(&mp->m_sb));
1da177e4 3456 if (ip->i_d.di_version == XFS_DINODE_VERSION_1) {
62118709 3457 if (!xfs_sb_version_hasnlink(&mp->m_sb)) {
1da177e4
LT
3458 /*
3459 * Convert it back.
3460 */
3461 ASSERT(ip->i_d.di_nlink <= XFS_MAXLINK_1);
347d1c01 3462 dip->di_core.di_onlink = cpu_to_be16(ip->i_d.di_nlink);
1da177e4
LT
3463 } else {
3464 /*
3465 * The superblock version has already been bumped,
3466 * so just make the conversion to the new inode
3467 * format permanent.
3468 */
3469 ip->i_d.di_version = XFS_DINODE_VERSION_2;
347d1c01 3470 dip->di_core.di_version = XFS_DINODE_VERSION_2;
1da177e4
LT
3471 ip->i_d.di_onlink = 0;
3472 dip->di_core.di_onlink = 0;
3473 memset(&(ip->i_d.di_pad[0]), 0, sizeof(ip->i_d.di_pad));
3474 memset(&(dip->di_core.di_pad[0]), 0,
3475 sizeof(dip->di_core.di_pad));
3476 ASSERT(ip->i_d.di_projid == 0);
3477 }
3478 }
3479
3480 if (xfs_iflush_fork(ip, dip, iip, XFS_DATA_FORK, bp) == EFSCORRUPTED) {
3481 goto corrupt_out;
3482 }
3483
3484 if (XFS_IFORK_Q(ip)) {
3485 /*
3486 * The only error from xfs_iflush_fork is on the data fork.
3487 */
3488 (void) xfs_iflush_fork(ip, dip, iip, XFS_ATTR_FORK, bp);
3489 }
3490 xfs_inobp_check(mp, bp);
3491
3492 /*
3493 * We've recorded everything logged in the inode, so we'd
3494 * like to clear the ilf_fields bits so we don't log and
3495 * flush things unnecessarily. However, we can't stop
3496 * logging all this information until the data we've copied
3497 * into the disk buffer is written to disk. If we did we might
3498 * overwrite the copy of the inode in the log with all the
3499 * data after re-logging only part of it, and in the face of
3500 * a crash we wouldn't have all the data we need to recover.
3501 *
3502 * What we do is move the bits to the ili_last_fields field.
3503 * When logging the inode, these bits are moved back to the
3504 * ilf_fields field. In the xfs_iflush_done() routine we
3505 * clear ili_last_fields, since we know that the information
3506 * those bits represent is permanently on disk. As long as
3507 * the flush completes before the inode is logged again, then
3508 * both ilf_fields and ili_last_fields will be cleared.
3509 *
3510 * We can play with the ilf_fields bits here, because the inode
3511 * lock must be held exclusively in order to set bits there
3512 * and the flush lock protects the ili_last_fields bits.
3513 * Set ili_logged so the flush done
3514 * routine can tell whether or not to look in the AIL.
3515 * Also, store the current LSN of the inode so that we can tell
3516 * whether the item has moved in the AIL from xfs_iflush_done().
3517 * In order to read the lsn we need the AIL lock, because
3518 * it is a 64 bit value that cannot be read atomically.
3519 */
3520 if (iip != NULL && iip->ili_format.ilf_fields != 0) {
3521 iip->ili_last_fields = iip->ili_format.ilf_fields;
3522 iip->ili_format.ilf_fields = 0;
3523 iip->ili_logged = 1;
3524
3525 ASSERT(sizeof(xfs_lsn_t) == 8); /* don't lock if it shrinks */
287f3dad 3526 spin_lock(&mp->m_ail_lock);
1da177e4 3527 iip->ili_flush_lsn = iip->ili_item.li_lsn;
287f3dad 3528 spin_unlock(&mp->m_ail_lock);
1da177e4
LT
3529
3530 /*
3531 * Attach the function xfs_iflush_done to the inode's
3532 * buffer. This will remove the inode from the AIL
3533 * and unlock the inode's flush lock when the inode is
3534 * completely written to disk.
3535 */
3536 xfs_buf_attach_iodone(bp, (void(*)(xfs_buf_t*,xfs_log_item_t*))
3537 xfs_iflush_done, (xfs_log_item_t *)iip);
3538
3539 ASSERT(XFS_BUF_FSPRIVATE(bp, void *) != NULL);
3540 ASSERT(XFS_BUF_IODONE_FUNC(bp) != NULL);
3541 } else {
3542 /*
3543 * We're flushing an inode which is not in the AIL and has
3544 * not been logged but has i_update_core set. For this
3545 * case we can use a B_DELWRI flush and immediately drop
3546 * the inode flush lock because we can avoid the whole
3547 * AIL state thing. It's OK to drop the flush lock now,
3548 * because we've already locked the buffer and to do anything
3549 * you really need both.
3550 */
3551 if (iip != NULL) {
3552 ASSERT(iip->ili_logged == 0);
3553 ASSERT(iip->ili_last_fields == 0);
3554 ASSERT((iip->ili_item.li_flags & XFS_LI_IN_AIL) == 0);
3555 }
3556 xfs_ifunlock(ip);
3557 }
3558
3559 return 0;
3560
3561corrupt_out:
3562 return XFS_ERROR(EFSCORRUPTED);
3563}
3564
3565
3566/*
efa80278 3567 * Flush all inactive inodes in mp.
1da177e4 3568 */
efa80278 3569void
1da177e4 3570xfs_iflush_all(
efa80278 3571 xfs_mount_t *mp)
1da177e4 3572{
1da177e4 3573 xfs_inode_t *ip;
67fcaa73 3574 bhv_vnode_t *vp;
1da177e4 3575
efa80278
CH
3576 again:
3577 XFS_MOUNT_ILOCK(mp);
3578 ip = mp->m_inodes;
3579 if (ip == NULL)
3580 goto out;
1da177e4 3581
efa80278
CH
3582 do {
3583 /* Make sure we skip markers inserted by sync */
3584 if (ip->i_mount == NULL) {
3585 ip = ip->i_mnext;
3586 continue;
3587 }
1da177e4 3588
efa80278
CH
3589 vp = XFS_ITOV_NULL(ip);
3590 if (!vp) {
1da177e4 3591 XFS_MOUNT_IUNLOCK(mp);
efa80278
CH
3592 xfs_finish_reclaim(ip, 0, XFS_IFLUSH_ASYNC);
3593 goto again;
3594 }
1da177e4 3595
efa80278 3596 ASSERT(vn_count(vp) == 0);
1da177e4 3597
efa80278
CH
3598 ip = ip->i_mnext;
3599 } while (ip != mp->m_inodes);
3600 out:
1da177e4 3601 XFS_MOUNT_IUNLOCK(mp);
1da177e4
LT
3602}
3603
1da177e4
LT
3604#ifdef XFS_ILOCK_TRACE
3605ktrace_t *xfs_ilock_trace_buf;
3606
3607void
3608xfs_ilock_trace(xfs_inode_t *ip, int lock, unsigned int lockflags, inst_t *ra)
3609{
3610 ktrace_enter(ip->i_lock_trace,
3611 (void *)ip,
3612 (void *)(unsigned long)lock, /* 1 = LOCK, 3=UNLOCK, etc */
3613 (void *)(unsigned long)lockflags, /* XFS_ILOCK_EXCL etc */
3614 (void *)ra, /* caller of ilock */
3615 (void *)(unsigned long)current_cpu(),
3616 (void *)(unsigned long)current_pid(),
3617 NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
3618}
3619#endif
4eea22f0
MK
3620
3621/*
3622 * Return a pointer to the extent record at file index idx.
3623 */
a6f64d4a 3624xfs_bmbt_rec_host_t *
4eea22f0
MK
3625xfs_iext_get_ext(
3626 xfs_ifork_t *ifp, /* inode fork pointer */
3627 xfs_extnum_t idx) /* index of target extent */
3628{
3629 ASSERT(idx >= 0);
0293ce3a
MK
3630 if ((ifp->if_flags & XFS_IFEXTIREC) && (idx == 0)) {
3631 return ifp->if_u1.if_ext_irec->er_extbuf;
3632 } else if (ifp->if_flags & XFS_IFEXTIREC) {
3633 xfs_ext_irec_t *erp; /* irec pointer */
3634 int erp_idx = 0; /* irec index */
3635 xfs_extnum_t page_idx = idx; /* ext index in target list */
3636
3637 erp = xfs_iext_idx_to_irec(ifp, &page_idx, &erp_idx, 0);
3638 return &erp->er_extbuf[page_idx];
3639 } else if (ifp->if_bytes) {
4eea22f0
MK
3640 return &ifp->if_u1.if_extents[idx];
3641 } else {
3642 return NULL;
3643 }
3644}
3645
3646/*
3647 * Insert new item(s) into the extent records for incore inode
3648 * fork 'ifp'. 'count' new items are inserted at index 'idx'.
3649 */
3650void
3651xfs_iext_insert(
3652 xfs_ifork_t *ifp, /* inode fork pointer */
3653 xfs_extnum_t idx, /* starting index of new items */
3654 xfs_extnum_t count, /* number of inserted items */
3655 xfs_bmbt_irec_t *new) /* items to insert */
3656{
4eea22f0
MK
3657 xfs_extnum_t i; /* extent record index */
3658
3659 ASSERT(ifp->if_flags & XFS_IFEXTENTS);
3660 xfs_iext_add(ifp, idx, count);
a6f64d4a
CH
3661 for (i = idx; i < idx + count; i++, new++)
3662 xfs_bmbt_set_all(xfs_iext_get_ext(ifp, i), new);
4eea22f0
MK
3663}
3664
3665/*
3666 * This is called when the amount of space required for incore file
3667 * extents needs to be increased. The ext_diff parameter stores the
3668 * number of new extents being added and the idx parameter contains
3669 * the extent index where the new extents will be added. If the new
3670 * extents are being appended, then we just need to (re)allocate and
3671 * initialize the space. Otherwise, if the new extents are being
3672 * inserted into the middle of the existing entries, a bit more work
3673 * is required to make room for the new extents to be inserted. The
3674 * caller is responsible for filling in the new extent entries upon
3675 * return.
3676 */
3677void
3678xfs_iext_add(
3679 xfs_ifork_t *ifp, /* inode fork pointer */
3680 xfs_extnum_t idx, /* index to begin adding exts */
c41564b5 3681 int ext_diff) /* number of extents to add */
4eea22f0
MK
3682{
3683 int byte_diff; /* new bytes being added */
3684 int new_size; /* size of extents after adding */
3685 xfs_extnum_t nextents; /* number of extents in file */
3686
3687 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
3688 ASSERT((idx >= 0) && (idx <= nextents));
3689 byte_diff = ext_diff * sizeof(xfs_bmbt_rec_t);
3690 new_size = ifp->if_bytes + byte_diff;
3691 /*
3692 * If the new number of extents (nextents + ext_diff)
3693 * fits inside the inode, then continue to use the inline
3694 * extent buffer.
3695 */
3696 if (nextents + ext_diff <= XFS_INLINE_EXTS) {
3697 if (idx < nextents) {
3698 memmove(&ifp->if_u2.if_inline_ext[idx + ext_diff],
3699 &ifp->if_u2.if_inline_ext[idx],
3700 (nextents - idx) * sizeof(xfs_bmbt_rec_t));
3701 memset(&ifp->if_u2.if_inline_ext[idx], 0, byte_diff);
3702 }
3703 ifp->if_u1.if_extents = ifp->if_u2.if_inline_ext;
3704 ifp->if_real_bytes = 0;
0293ce3a 3705 ifp->if_lastex = nextents + ext_diff;
4eea22f0
MK
3706 }
3707 /*
3708 * Otherwise use a linear (direct) extent list.
3709 * If the extents are currently inside the inode,
3710 * xfs_iext_realloc_direct will switch us from
3711 * inline to direct extent allocation mode.
3712 */
0293ce3a 3713 else if (nextents + ext_diff <= XFS_LINEAR_EXTS) {
4eea22f0
MK
3714 xfs_iext_realloc_direct(ifp, new_size);
3715 if (idx < nextents) {
3716 memmove(&ifp->if_u1.if_extents[idx + ext_diff],
3717 &ifp->if_u1.if_extents[idx],
3718 (nextents - idx) * sizeof(xfs_bmbt_rec_t));
3719 memset(&ifp->if_u1.if_extents[idx], 0, byte_diff);
3720 }
3721 }
0293ce3a
MK
3722 /* Indirection array */
3723 else {
3724 xfs_ext_irec_t *erp;
3725 int erp_idx = 0;
3726 int page_idx = idx;
3727
3728 ASSERT(nextents + ext_diff > XFS_LINEAR_EXTS);
3729 if (ifp->if_flags & XFS_IFEXTIREC) {
3730 erp = xfs_iext_idx_to_irec(ifp, &page_idx, &erp_idx, 1);
3731 } else {
3732 xfs_iext_irec_init(ifp);
3733 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
3734 erp = ifp->if_u1.if_ext_irec;
3735 }
3736 /* Extents fit in target extent page */
3737 if (erp && erp->er_extcount + ext_diff <= XFS_LINEAR_EXTS) {
3738 if (page_idx < erp->er_extcount) {
3739 memmove(&erp->er_extbuf[page_idx + ext_diff],
3740 &erp->er_extbuf[page_idx],
3741 (erp->er_extcount - page_idx) *
3742 sizeof(xfs_bmbt_rec_t));
3743 memset(&erp->er_extbuf[page_idx], 0, byte_diff);
3744 }
3745 erp->er_extcount += ext_diff;
3746 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1, ext_diff);
3747 }
3748 /* Insert a new extent page */
3749 else if (erp) {
3750 xfs_iext_add_indirect_multi(ifp,
3751 erp_idx, page_idx, ext_diff);
3752 }
3753 /*
3754 * If extent(s) are being appended to the last page in
3755 * the indirection array and the new extent(s) don't fit
3756 * in the page, then erp is NULL and erp_idx is set to
3757 * the next index needed in the indirection array.
3758 */
3759 else {
3760 int count = ext_diff;
3761
3762 while (count) {
3763 erp = xfs_iext_irec_new(ifp, erp_idx);
3764 erp->er_extcount = count;
3765 count -= MIN(count, (int)XFS_LINEAR_EXTS);
3766 if (count) {
3767 erp_idx++;
3768 }
3769 }
3770 }
3771 }
4eea22f0
MK
3772 ifp->if_bytes = new_size;
3773}
3774
0293ce3a
MK
3775/*
3776 * This is called when incore extents are being added to the indirection
3777 * array and the new extents do not fit in the target extent list. The
3778 * erp_idx parameter contains the irec index for the target extent list
3779 * in the indirection array, and the idx parameter contains the extent
3780 * index within the list. The number of extents being added is stored
3781 * in the count parameter.
3782 *
3783 * |-------| |-------|
3784 * | | | | idx - number of extents before idx
3785 * | idx | | count |
3786 * | | | | count - number of extents being inserted at idx
3787 * |-------| |-------|
3788 * | count | | nex2 | nex2 - number of extents after idx + count
3789 * |-------| |-------|
3790 */
3791void
3792xfs_iext_add_indirect_multi(
3793 xfs_ifork_t *ifp, /* inode fork pointer */
3794 int erp_idx, /* target extent irec index */
3795 xfs_extnum_t idx, /* index within target list */
3796 int count) /* new extents being added */
3797{
3798 int byte_diff; /* new bytes being added */
3799 xfs_ext_irec_t *erp; /* pointer to irec entry */
3800 xfs_extnum_t ext_diff; /* number of extents to add */
3801 xfs_extnum_t ext_cnt; /* new extents still needed */
3802 xfs_extnum_t nex2; /* extents after idx + count */
3803 xfs_bmbt_rec_t *nex2_ep = NULL; /* temp list for nex2 extents */
3804 int nlists; /* number of irec's (lists) */
3805
3806 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
3807 erp = &ifp->if_u1.if_ext_irec[erp_idx];
3808 nex2 = erp->er_extcount - idx;
3809 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
3810
3811 /*
3812 * Save second part of target extent list
3813 * (all extents past */
3814 if (nex2) {
3815 byte_diff = nex2 * sizeof(xfs_bmbt_rec_t);
3816 nex2_ep = (xfs_bmbt_rec_t *) kmem_alloc(byte_diff, KM_SLEEP);
3817 memmove(nex2_ep, &erp->er_extbuf[idx], byte_diff);
3818 erp->er_extcount -= nex2;
3819 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1, -nex2);
3820 memset(&erp->er_extbuf[idx], 0, byte_diff);
3821 }
3822
3823 /*
3824 * Add the new extents to the end of the target
3825 * list, then allocate new irec record(s) and
3826 * extent buffer(s) as needed to store the rest
3827 * of the new extents.
3828 */
3829 ext_cnt = count;
3830 ext_diff = MIN(ext_cnt, (int)XFS_LINEAR_EXTS - erp->er_extcount);
3831 if (ext_diff) {
3832 erp->er_extcount += ext_diff;
3833 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1, ext_diff);
3834 ext_cnt -= ext_diff;
3835 }
3836 while (ext_cnt) {
3837 erp_idx++;
3838 erp = xfs_iext_irec_new(ifp, erp_idx);
3839 ext_diff = MIN(ext_cnt, (int)XFS_LINEAR_EXTS);
3840 erp->er_extcount = ext_diff;
3841 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1, ext_diff);
3842 ext_cnt -= ext_diff;
3843 }
3844
3845 /* Add nex2 extents back to indirection array */
3846 if (nex2) {
3847 xfs_extnum_t ext_avail;
3848 int i;
3849
3850 byte_diff = nex2 * sizeof(xfs_bmbt_rec_t);
3851 ext_avail = XFS_LINEAR_EXTS - erp->er_extcount;
3852 i = 0;
3853 /*
3854 * If nex2 extents fit in the current page, append
3855 * nex2_ep after the new extents.
3856 */
3857 if (nex2 <= ext_avail) {
3858 i = erp->er_extcount;
3859 }
3860 /*
3861 * Otherwise, check if space is available in the
3862 * next page.
3863 */
3864 else if ((erp_idx < nlists - 1) &&
3865 (nex2 <= (ext_avail = XFS_LINEAR_EXTS -
3866 ifp->if_u1.if_ext_irec[erp_idx+1].er_extcount))) {
3867 erp_idx++;
3868 erp++;
3869 /* Create a hole for nex2 extents */
3870 memmove(&erp->er_extbuf[nex2], erp->er_extbuf,
3871 erp->er_extcount * sizeof(xfs_bmbt_rec_t));
3872 }
3873 /*
3874 * Final choice, create a new extent page for
3875 * nex2 extents.
3876 */
3877 else {
3878 erp_idx++;
3879 erp = xfs_iext_irec_new(ifp, erp_idx);
3880 }
3881 memmove(&erp->er_extbuf[i], nex2_ep, byte_diff);
3882 kmem_free(nex2_ep, byte_diff);
3883 erp->er_extcount += nex2;
3884 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1, nex2);
3885 }
3886}
3887
4eea22f0
MK
3888/*
3889 * This is called when the amount of space required for incore file
3890 * extents needs to be decreased. The ext_diff parameter stores the
3891 * number of extents to be removed and the idx parameter contains
3892 * the extent index where the extents will be removed from.
0293ce3a
MK
3893 *
3894 * If the amount of space needed has decreased below the linear
3895 * limit, XFS_IEXT_BUFSZ, then switch to using the contiguous
3896 * extent array. Otherwise, use kmem_realloc() to adjust the
3897 * size to what is needed.
4eea22f0
MK
3898 */
3899void
3900xfs_iext_remove(
3901 xfs_ifork_t *ifp, /* inode fork pointer */
3902 xfs_extnum_t idx, /* index to begin removing exts */
3903 int ext_diff) /* number of extents to remove */
3904{
3905 xfs_extnum_t nextents; /* number of extents in file */
3906 int new_size; /* size of extents after removal */
3907
3908 ASSERT(ext_diff > 0);
3909 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
3910 new_size = (nextents - ext_diff) * sizeof(xfs_bmbt_rec_t);
3911
3912 if (new_size == 0) {
3913 xfs_iext_destroy(ifp);
0293ce3a
MK
3914 } else if (ifp->if_flags & XFS_IFEXTIREC) {
3915 xfs_iext_remove_indirect(ifp, idx, ext_diff);
4eea22f0
MK
3916 } else if (ifp->if_real_bytes) {
3917 xfs_iext_remove_direct(ifp, idx, ext_diff);
3918 } else {
3919 xfs_iext_remove_inline(ifp, idx, ext_diff);
3920 }
3921 ifp->if_bytes = new_size;
3922}
3923
3924/*
3925 * This removes ext_diff extents from the inline buffer, beginning
3926 * at extent index idx.
3927 */
3928void
3929xfs_iext_remove_inline(
3930 xfs_ifork_t *ifp, /* inode fork pointer */
3931 xfs_extnum_t idx, /* index to begin removing exts */
3932 int ext_diff) /* number of extents to remove */
3933{
3934 int nextents; /* number of extents in file */
3935
0293ce3a 3936 ASSERT(!(ifp->if_flags & XFS_IFEXTIREC));
4eea22f0
MK
3937 ASSERT(idx < XFS_INLINE_EXTS);
3938 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
3939 ASSERT(((nextents - ext_diff) > 0) &&
3940 (nextents - ext_diff) < XFS_INLINE_EXTS);
3941
3942 if (idx + ext_diff < nextents) {
3943 memmove(&ifp->if_u2.if_inline_ext[idx],
3944 &ifp->if_u2.if_inline_ext[idx + ext_diff],
3945 (nextents - (idx + ext_diff)) *
3946 sizeof(xfs_bmbt_rec_t));
3947 memset(&ifp->if_u2.if_inline_ext[nextents - ext_diff],
3948 0, ext_diff * sizeof(xfs_bmbt_rec_t));
3949 } else {
3950 memset(&ifp->if_u2.if_inline_ext[idx], 0,
3951 ext_diff * sizeof(xfs_bmbt_rec_t));
3952 }
3953}
3954
3955/*
3956 * This removes ext_diff extents from a linear (direct) extent list,
3957 * beginning at extent index idx. If the extents are being removed
3958 * from the end of the list (ie. truncate) then we just need to re-
3959 * allocate the list to remove the extra space. Otherwise, if the
3960 * extents are being removed from the middle of the existing extent
3961 * entries, then we first need to move the extent records beginning
3962 * at idx + ext_diff up in the list to overwrite the records being
3963 * removed, then remove the extra space via kmem_realloc.
3964 */
3965void
3966xfs_iext_remove_direct(
3967 xfs_ifork_t *ifp, /* inode fork pointer */
3968 xfs_extnum_t idx, /* index to begin removing exts */
3969 int ext_diff) /* number of extents to remove */
3970{
3971 xfs_extnum_t nextents; /* number of extents in file */
3972 int new_size; /* size of extents after removal */
3973
0293ce3a 3974 ASSERT(!(ifp->if_flags & XFS_IFEXTIREC));
4eea22f0
MK
3975 new_size = ifp->if_bytes -
3976 (ext_diff * sizeof(xfs_bmbt_rec_t));
3977 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
3978
3979 if (new_size == 0) {
3980 xfs_iext_destroy(ifp);
3981 return;
3982 }
3983 /* Move extents up in the list (if needed) */
3984 if (idx + ext_diff < nextents) {
3985 memmove(&ifp->if_u1.if_extents[idx],
3986 &ifp->if_u1.if_extents[idx + ext_diff],
3987 (nextents - (idx + ext_diff)) *
3988 sizeof(xfs_bmbt_rec_t));
3989 }
3990 memset(&ifp->if_u1.if_extents[nextents - ext_diff],
3991 0, ext_diff * sizeof(xfs_bmbt_rec_t));
3992 /*
3993 * Reallocate the direct extent list. If the extents
3994 * will fit inside the inode then xfs_iext_realloc_direct
3995 * will switch from direct to inline extent allocation
3996 * mode for us.
3997 */
3998 xfs_iext_realloc_direct(ifp, new_size);
3999 ifp->if_bytes = new_size;
4000}
4001
0293ce3a
MK
4002/*
4003 * This is called when incore extents are being removed from the
4004 * indirection array and the extents being removed span multiple extent
4005 * buffers. The idx parameter contains the file extent index where we
4006 * want to begin removing extents, and the count parameter contains
4007 * how many extents need to be removed.
4008 *
4009 * |-------| |-------|
4010 * | nex1 | | | nex1 - number of extents before idx
4011 * |-------| | count |
4012 * | | | | count - number of extents being removed at idx
4013 * | count | |-------|
4014 * | | | nex2 | nex2 - number of extents after idx + count
4015 * |-------| |-------|
4016 */
4017void
4018xfs_iext_remove_indirect(
4019 xfs_ifork_t *ifp, /* inode fork pointer */
4020 xfs_extnum_t idx, /* index to begin removing extents */
4021 int count) /* number of extents to remove */
4022{
4023 xfs_ext_irec_t *erp; /* indirection array pointer */
4024 int erp_idx = 0; /* indirection array index */
4025 xfs_extnum_t ext_cnt; /* extents left to remove */
4026 xfs_extnum_t ext_diff; /* extents to remove in current list */
4027 xfs_extnum_t nex1; /* number of extents before idx */
4028 xfs_extnum_t nex2; /* extents after idx + count */
c41564b5 4029 int nlists; /* entries in indirection array */
0293ce3a
MK
4030 int page_idx = idx; /* index in target extent list */
4031
4032 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
4033 erp = xfs_iext_idx_to_irec(ifp, &page_idx, &erp_idx, 0);
4034 ASSERT(erp != NULL);
4035 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
4036 nex1 = page_idx;
4037 ext_cnt = count;
4038 while (ext_cnt) {
4039 nex2 = MAX((erp->er_extcount - (nex1 + ext_cnt)), 0);
4040 ext_diff = MIN(ext_cnt, (erp->er_extcount - nex1));
4041 /*
4042 * Check for deletion of entire list;
4043 * xfs_iext_irec_remove() updates extent offsets.
4044 */
4045 if (ext_diff == erp->er_extcount) {
4046 xfs_iext_irec_remove(ifp, erp_idx);
4047 ext_cnt -= ext_diff;
4048 nex1 = 0;
4049 if (ext_cnt) {
4050 ASSERT(erp_idx < ifp->if_real_bytes /
4051 XFS_IEXT_BUFSZ);
4052 erp = &ifp->if_u1.if_ext_irec[erp_idx];
4053 nex1 = 0;
4054 continue;
4055 } else {
4056 break;
4057 }
4058 }
4059 /* Move extents up (if needed) */
4060 if (nex2) {
4061 memmove(&erp->er_extbuf[nex1],
4062 &erp->er_extbuf[nex1 + ext_diff],
4063 nex2 * sizeof(xfs_bmbt_rec_t));
4064 }
4065 /* Zero out rest of page */
4066 memset(&erp->er_extbuf[nex1 + nex2], 0, (XFS_IEXT_BUFSZ -
4067 ((nex1 + nex2) * sizeof(xfs_bmbt_rec_t))));
4068 /* Update remaining counters */
4069 erp->er_extcount -= ext_diff;
4070 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1, -ext_diff);
4071 ext_cnt -= ext_diff;
4072 nex1 = 0;
4073 erp_idx++;
4074 erp++;
4075 }
4076 ifp->if_bytes -= count * sizeof(xfs_bmbt_rec_t);
4077 xfs_iext_irec_compact(ifp);
4078}
4079
4eea22f0
MK
4080/*
4081 * Create, destroy, or resize a linear (direct) block of extents.
4082 */
4083void
4084xfs_iext_realloc_direct(
4085 xfs_ifork_t *ifp, /* inode fork pointer */
4086 int new_size) /* new size of extents */
4087{
4088 int rnew_size; /* real new size of extents */
4089
4090 rnew_size = new_size;
4091
0293ce3a
MK
4092 ASSERT(!(ifp->if_flags & XFS_IFEXTIREC) ||
4093 ((new_size >= 0) && (new_size <= XFS_IEXT_BUFSZ) &&
4094 (new_size != ifp->if_real_bytes)));
4095
4eea22f0
MK
4096 /* Free extent records */
4097 if (new_size == 0) {
4098 xfs_iext_destroy(ifp);
4099 }
4100 /* Resize direct extent list and zero any new bytes */
4101 else if (ifp->if_real_bytes) {
4102 /* Check if extents will fit inside the inode */
4103 if (new_size <= XFS_INLINE_EXTS * sizeof(xfs_bmbt_rec_t)) {
4104 xfs_iext_direct_to_inline(ifp, new_size /
4105 (uint)sizeof(xfs_bmbt_rec_t));
4106 ifp->if_bytes = new_size;
4107 return;
4108 }
16a087d8 4109 if (!is_power_of_2(new_size)){
40ebd81d 4110 rnew_size = roundup_pow_of_two(new_size);
4eea22f0
MK
4111 }
4112 if (rnew_size != ifp->if_real_bytes) {
a6f64d4a 4113 ifp->if_u1.if_extents =
4eea22f0
MK
4114 kmem_realloc(ifp->if_u1.if_extents,
4115 rnew_size,
4116 ifp->if_real_bytes,
4117 KM_SLEEP);
4118 }
4119 if (rnew_size > ifp->if_real_bytes) {
4120 memset(&ifp->if_u1.if_extents[ifp->if_bytes /
4121 (uint)sizeof(xfs_bmbt_rec_t)], 0,
4122 rnew_size - ifp->if_real_bytes);
4123 }
4124 }
4125 /*
4126 * Switch from the inline extent buffer to a direct
4127 * extent list. Be sure to include the inline extent
4128 * bytes in new_size.
4129 */
4130 else {
4131 new_size += ifp->if_bytes;
16a087d8 4132 if (!is_power_of_2(new_size)) {
40ebd81d 4133 rnew_size = roundup_pow_of_two(new_size);
4eea22f0
MK
4134 }
4135 xfs_iext_inline_to_direct(ifp, rnew_size);
4136 }
4137 ifp->if_real_bytes = rnew_size;
4138 ifp->if_bytes = new_size;
4139}
4140
4141/*
4142 * Switch from linear (direct) extent records to inline buffer.
4143 */
4144void
4145xfs_iext_direct_to_inline(
4146 xfs_ifork_t *ifp, /* inode fork pointer */
4147 xfs_extnum_t nextents) /* number of extents in file */
4148{
4149 ASSERT(ifp->if_flags & XFS_IFEXTENTS);
4150 ASSERT(nextents <= XFS_INLINE_EXTS);
4151 /*
4152 * The inline buffer was zeroed when we switched
4153 * from inline to direct extent allocation mode,
4154 * so we don't need to clear it here.
4155 */
4156 memcpy(ifp->if_u2.if_inline_ext, ifp->if_u1.if_extents,
4157 nextents * sizeof(xfs_bmbt_rec_t));
fe6c1e72 4158 kmem_free(ifp->if_u1.if_extents, ifp->if_real_bytes);
4eea22f0
MK
4159 ifp->if_u1.if_extents = ifp->if_u2.if_inline_ext;
4160 ifp->if_real_bytes = 0;
4161}
4162
4163/*
4164 * Switch from inline buffer to linear (direct) extent records.
4165 * new_size should already be rounded up to the next power of 2
4166 * by the caller (when appropriate), so use new_size as it is.
4167 * However, since new_size may be rounded up, we can't update
4168 * if_bytes here. It is the caller's responsibility to update
4169 * if_bytes upon return.
4170 */
4171void
4172xfs_iext_inline_to_direct(
4173 xfs_ifork_t *ifp, /* inode fork pointer */
4174 int new_size) /* number of extents in file */
4175{
a6f64d4a 4176 ifp->if_u1.if_extents = kmem_alloc(new_size, KM_SLEEP);
4eea22f0
MK
4177 memset(ifp->if_u1.if_extents, 0, new_size);
4178 if (ifp->if_bytes) {
4179 memcpy(ifp->if_u1.if_extents, ifp->if_u2.if_inline_ext,
4180 ifp->if_bytes);
4181 memset(ifp->if_u2.if_inline_ext, 0, XFS_INLINE_EXTS *
4182 sizeof(xfs_bmbt_rec_t));
4183 }
4184 ifp->if_real_bytes = new_size;
4185}
4186
0293ce3a
MK
4187/*
4188 * Resize an extent indirection array to new_size bytes.
4189 */
4190void
4191xfs_iext_realloc_indirect(
4192 xfs_ifork_t *ifp, /* inode fork pointer */
4193 int new_size) /* new indirection array size */
4194{
4195 int nlists; /* number of irec's (ex lists) */
4196 int size; /* current indirection array size */
4197
4198 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
4199 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
4200 size = nlists * sizeof(xfs_ext_irec_t);
4201 ASSERT(ifp->if_real_bytes);
4202 ASSERT((new_size >= 0) && (new_size != size));
4203 if (new_size == 0) {
4204 xfs_iext_destroy(ifp);
4205 } else {
4206 ifp->if_u1.if_ext_irec = (xfs_ext_irec_t *)
4207 kmem_realloc(ifp->if_u1.if_ext_irec,
4208 new_size, size, KM_SLEEP);
4209 }
4210}
4211
4212/*
4213 * Switch from indirection array to linear (direct) extent allocations.
4214 */
4215void
4216xfs_iext_indirect_to_direct(
4217 xfs_ifork_t *ifp) /* inode fork pointer */
4218{
a6f64d4a 4219 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
0293ce3a
MK
4220 xfs_extnum_t nextents; /* number of extents in file */
4221 int size; /* size of file extents */
4222
4223 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
4224 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
4225 ASSERT(nextents <= XFS_LINEAR_EXTS);
4226 size = nextents * sizeof(xfs_bmbt_rec_t);
4227
4228 xfs_iext_irec_compact_full(ifp);
4229 ASSERT(ifp->if_real_bytes == XFS_IEXT_BUFSZ);
4230
4231 ep = ifp->if_u1.if_ext_irec->er_extbuf;
4232 kmem_free(ifp->if_u1.if_ext_irec, sizeof(xfs_ext_irec_t));
4233 ifp->if_flags &= ~XFS_IFEXTIREC;
4234 ifp->if_u1.if_extents = ep;
4235 ifp->if_bytes = size;
4236 if (nextents < XFS_LINEAR_EXTS) {
4237 xfs_iext_realloc_direct(ifp, size);
4238 }
4239}
4240
4eea22f0
MK
4241/*
4242 * Free incore file extents.
4243 */
4244void
4245xfs_iext_destroy(
4246 xfs_ifork_t *ifp) /* inode fork pointer */
4247{
0293ce3a
MK
4248 if (ifp->if_flags & XFS_IFEXTIREC) {
4249 int erp_idx;
4250 int nlists;
4251
4252 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
4253 for (erp_idx = nlists - 1; erp_idx >= 0 ; erp_idx--) {
4254 xfs_iext_irec_remove(ifp, erp_idx);
4255 }
4256 ifp->if_flags &= ~XFS_IFEXTIREC;
4257 } else if (ifp->if_real_bytes) {
4eea22f0
MK
4258 kmem_free(ifp->if_u1.if_extents, ifp->if_real_bytes);
4259 } else if (ifp->if_bytes) {
4260 memset(ifp->if_u2.if_inline_ext, 0, XFS_INLINE_EXTS *
4261 sizeof(xfs_bmbt_rec_t));
4262 }
4263 ifp->if_u1.if_extents = NULL;
4264 ifp->if_real_bytes = 0;
4265 ifp->if_bytes = 0;
4266}
0293ce3a 4267
8867bc9b
MK
4268/*
4269 * Return a pointer to the extent record for file system block bno.
4270 */
a6f64d4a 4271xfs_bmbt_rec_host_t * /* pointer to found extent record */
8867bc9b
MK
4272xfs_iext_bno_to_ext(
4273 xfs_ifork_t *ifp, /* inode fork pointer */
4274 xfs_fileoff_t bno, /* block number to search for */
4275 xfs_extnum_t *idxp) /* index of target extent */
4276{
a6f64d4a 4277 xfs_bmbt_rec_host_t *base; /* pointer to first extent */
8867bc9b 4278 xfs_filblks_t blockcount = 0; /* number of blocks in extent */
a6f64d4a 4279 xfs_bmbt_rec_host_t *ep = NULL; /* pointer to target extent */
8867bc9b 4280 xfs_ext_irec_t *erp = NULL; /* indirection array pointer */
c41564b5 4281 int high; /* upper boundary in search */
8867bc9b 4282 xfs_extnum_t idx = 0; /* index of target extent */
c41564b5 4283 int low; /* lower boundary in search */
8867bc9b
MK
4284 xfs_extnum_t nextents; /* number of file extents */
4285 xfs_fileoff_t startoff = 0; /* start offset of extent */
4286
4287 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
4288 if (nextents == 0) {
4289 *idxp = 0;
4290 return NULL;
4291 }
4292 low = 0;
4293 if (ifp->if_flags & XFS_IFEXTIREC) {
4294 /* Find target extent list */
4295 int erp_idx = 0;
4296 erp = xfs_iext_bno_to_irec(ifp, bno, &erp_idx);
4297 base = erp->er_extbuf;
4298 high = erp->er_extcount - 1;
4299 } else {
4300 base = ifp->if_u1.if_extents;
4301 high = nextents - 1;
4302 }
4303 /* Binary search extent records */
4304 while (low <= high) {
4305 idx = (low + high) >> 1;
4306 ep = base + idx;
4307 startoff = xfs_bmbt_get_startoff(ep);
4308 blockcount = xfs_bmbt_get_blockcount(ep);
4309 if (bno < startoff) {
4310 high = idx - 1;
4311 } else if (bno >= startoff + blockcount) {
4312 low = idx + 1;
4313 } else {
4314 /* Convert back to file-based extent index */
4315 if (ifp->if_flags & XFS_IFEXTIREC) {
4316 idx += erp->er_extoff;
4317 }
4318 *idxp = idx;
4319 return ep;
4320 }
4321 }
4322 /* Convert back to file-based extent index */
4323 if (ifp->if_flags & XFS_IFEXTIREC) {
4324 idx += erp->er_extoff;
4325 }
4326 if (bno >= startoff + blockcount) {
4327 if (++idx == nextents) {
4328 ep = NULL;
4329 } else {
4330 ep = xfs_iext_get_ext(ifp, idx);
4331 }
4332 }
4333 *idxp = idx;
4334 return ep;
4335}
4336
0293ce3a
MK
4337/*
4338 * Return a pointer to the indirection array entry containing the
4339 * extent record for filesystem block bno. Store the index of the
4340 * target irec in *erp_idxp.
4341 */
8867bc9b 4342xfs_ext_irec_t * /* pointer to found extent record */
0293ce3a
MK
4343xfs_iext_bno_to_irec(
4344 xfs_ifork_t *ifp, /* inode fork pointer */
4345 xfs_fileoff_t bno, /* block number to search for */
4346 int *erp_idxp) /* irec index of target ext list */
4347{
4348 xfs_ext_irec_t *erp = NULL; /* indirection array pointer */
4349 xfs_ext_irec_t *erp_next; /* next indirection array entry */
8867bc9b 4350 int erp_idx; /* indirection array index */
0293ce3a
MK
4351 int nlists; /* number of extent irec's (lists) */
4352 int high; /* binary search upper limit */
4353 int low; /* binary search lower limit */
4354
4355 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
4356 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
4357 erp_idx = 0;
4358 low = 0;
4359 high = nlists - 1;
4360 while (low <= high) {
4361 erp_idx = (low + high) >> 1;
4362 erp = &ifp->if_u1.if_ext_irec[erp_idx];
4363 erp_next = erp_idx < nlists - 1 ? erp + 1 : NULL;
4364 if (bno < xfs_bmbt_get_startoff(erp->er_extbuf)) {
4365 high = erp_idx - 1;
4366 } else if (erp_next && bno >=
4367 xfs_bmbt_get_startoff(erp_next->er_extbuf)) {
4368 low = erp_idx + 1;
4369 } else {
4370 break;
4371 }
4372 }
4373 *erp_idxp = erp_idx;
4374 return erp;
4375}
4376
4377/*
4378 * Return a pointer to the indirection array entry containing the
4379 * extent record at file extent index *idxp. Store the index of the
4380 * target irec in *erp_idxp and store the page index of the target
4381 * extent record in *idxp.
4382 */
4383xfs_ext_irec_t *
4384xfs_iext_idx_to_irec(
4385 xfs_ifork_t *ifp, /* inode fork pointer */
4386 xfs_extnum_t *idxp, /* extent index (file -> page) */
4387 int *erp_idxp, /* pointer to target irec */
4388 int realloc) /* new bytes were just added */
4389{
4390 xfs_ext_irec_t *prev; /* pointer to previous irec */
4391 xfs_ext_irec_t *erp = NULL; /* pointer to current irec */
4392 int erp_idx; /* indirection array index */
4393 int nlists; /* number of irec's (ex lists) */
4394 int high; /* binary search upper limit */
4395 int low; /* binary search lower limit */
4396 xfs_extnum_t page_idx = *idxp; /* extent index in target list */
4397
4398 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
4399 ASSERT(page_idx >= 0 && page_idx <=
4400 ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t));
4401 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
4402 erp_idx = 0;
4403 low = 0;
4404 high = nlists - 1;
4405
4406 /* Binary search extent irec's */
4407 while (low <= high) {
4408 erp_idx = (low + high) >> 1;
4409 erp = &ifp->if_u1.if_ext_irec[erp_idx];
4410 prev = erp_idx > 0 ? erp - 1 : NULL;
4411 if (page_idx < erp->er_extoff || (page_idx == erp->er_extoff &&
4412 realloc && prev && prev->er_extcount < XFS_LINEAR_EXTS)) {
4413 high = erp_idx - 1;
4414 } else if (page_idx > erp->er_extoff + erp->er_extcount ||
4415 (page_idx == erp->er_extoff + erp->er_extcount &&
4416 !realloc)) {
4417 low = erp_idx + 1;
4418 } else if (page_idx == erp->er_extoff + erp->er_extcount &&
4419 erp->er_extcount == XFS_LINEAR_EXTS) {
4420 ASSERT(realloc);
4421 page_idx = 0;
4422 erp_idx++;
4423 erp = erp_idx < nlists ? erp + 1 : NULL;
4424 break;
4425 } else {
4426 page_idx -= erp->er_extoff;
4427 break;
4428 }
4429 }
4430 *idxp = page_idx;
4431 *erp_idxp = erp_idx;
4432 return(erp);
4433}
4434
4435/*
4436 * Allocate and initialize an indirection array once the space needed
4437 * for incore extents increases above XFS_IEXT_BUFSZ.
4438 */
4439void
4440xfs_iext_irec_init(
4441 xfs_ifork_t *ifp) /* inode fork pointer */
4442{
4443 xfs_ext_irec_t *erp; /* indirection array pointer */
4444 xfs_extnum_t nextents; /* number of extents in file */
4445
4446 ASSERT(!(ifp->if_flags & XFS_IFEXTIREC));
4447 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
4448 ASSERT(nextents <= XFS_LINEAR_EXTS);
4449
4450 erp = (xfs_ext_irec_t *)
4451 kmem_alloc(sizeof(xfs_ext_irec_t), KM_SLEEP);
4452
4453 if (nextents == 0) {
a6f64d4a 4454 ifp->if_u1.if_extents = kmem_alloc(XFS_IEXT_BUFSZ, KM_SLEEP);
0293ce3a
MK
4455 } else if (!ifp->if_real_bytes) {
4456 xfs_iext_inline_to_direct(ifp, XFS_IEXT_BUFSZ);
4457 } else if (ifp->if_real_bytes < XFS_IEXT_BUFSZ) {
4458 xfs_iext_realloc_direct(ifp, XFS_IEXT_BUFSZ);
4459 }
4460 erp->er_extbuf = ifp->if_u1.if_extents;
4461 erp->er_extcount = nextents;
4462 erp->er_extoff = 0;
4463
4464 ifp->if_flags |= XFS_IFEXTIREC;
4465 ifp->if_real_bytes = XFS_IEXT_BUFSZ;
4466 ifp->if_bytes = nextents * sizeof(xfs_bmbt_rec_t);
4467 ifp->if_u1.if_ext_irec = erp;
4468
4469 return;
4470}
4471
4472/*
4473 * Allocate and initialize a new entry in the indirection array.
4474 */
4475xfs_ext_irec_t *
4476xfs_iext_irec_new(
4477 xfs_ifork_t *ifp, /* inode fork pointer */
4478 int erp_idx) /* index for new irec */
4479{
4480 xfs_ext_irec_t *erp; /* indirection array pointer */
4481 int i; /* loop counter */
4482 int nlists; /* number of irec's (ex lists) */
4483
4484 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
4485 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
4486
4487 /* Resize indirection array */
4488 xfs_iext_realloc_indirect(ifp, ++nlists *
4489 sizeof(xfs_ext_irec_t));
4490 /*
4491 * Move records down in the array so the
4492 * new page can use erp_idx.
4493 */
4494 erp = ifp->if_u1.if_ext_irec;
4495 for (i = nlists - 1; i > erp_idx; i--) {
4496 memmove(&erp[i], &erp[i-1], sizeof(xfs_ext_irec_t));
4497 }
4498 ASSERT(i == erp_idx);
4499
4500 /* Initialize new extent record */
4501 erp = ifp->if_u1.if_ext_irec;
a6f64d4a 4502 erp[erp_idx].er_extbuf = kmem_alloc(XFS_IEXT_BUFSZ, KM_SLEEP);
0293ce3a
MK
4503 ifp->if_real_bytes = nlists * XFS_IEXT_BUFSZ;
4504 memset(erp[erp_idx].er_extbuf, 0, XFS_IEXT_BUFSZ);
4505 erp[erp_idx].er_extcount = 0;
4506 erp[erp_idx].er_extoff = erp_idx > 0 ?
4507 erp[erp_idx-1].er_extoff + erp[erp_idx-1].er_extcount : 0;
4508 return (&erp[erp_idx]);
4509}
4510
4511/*
4512 * Remove a record from the indirection array.
4513 */
4514void
4515xfs_iext_irec_remove(
4516 xfs_ifork_t *ifp, /* inode fork pointer */
4517 int erp_idx) /* irec index to remove */
4518{
4519 xfs_ext_irec_t *erp; /* indirection array pointer */
4520 int i; /* loop counter */
4521 int nlists; /* number of irec's (ex lists) */
4522
4523 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
4524 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
4525 erp = &ifp->if_u1.if_ext_irec[erp_idx];
4526 if (erp->er_extbuf) {
4527 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1,
4528 -erp->er_extcount);
4529 kmem_free(erp->er_extbuf, XFS_IEXT_BUFSZ);
4530 }
4531 /* Compact extent records */
4532 erp = ifp->if_u1.if_ext_irec;
4533 for (i = erp_idx; i < nlists - 1; i++) {
4534 memmove(&erp[i], &erp[i+1], sizeof(xfs_ext_irec_t));
4535 }
4536 /*
4537 * Manually free the last extent record from the indirection
4538 * array. A call to xfs_iext_realloc_indirect() with a size
4539 * of zero would result in a call to xfs_iext_destroy() which
4540 * would in turn call this function again, creating a nasty
4541 * infinite loop.
4542 */
4543 if (--nlists) {
4544 xfs_iext_realloc_indirect(ifp,
4545 nlists * sizeof(xfs_ext_irec_t));
4546 } else {
4547 kmem_free(ifp->if_u1.if_ext_irec,
4548 sizeof(xfs_ext_irec_t));
4549 }
4550 ifp->if_real_bytes = nlists * XFS_IEXT_BUFSZ;
4551}
4552
4553/*
4554 * This is called to clean up large amounts of unused memory allocated
4555 * by the indirection array. Before compacting anything though, verify
4556 * that the indirection array is still needed and switch back to the
4557 * linear extent list (or even the inline buffer) if possible. The
4558 * compaction policy is as follows:
4559 *
4560 * Full Compaction: Extents fit into a single page (or inline buffer)
4561 * Full Compaction: Extents occupy less than 10% of allocated space
4562 * Partial Compaction: Extents occupy > 10% and < 50% of allocated space
4563 * No Compaction: Extents occupy at least 50% of allocated space
4564 */
4565void
4566xfs_iext_irec_compact(
4567 xfs_ifork_t *ifp) /* inode fork pointer */
4568{
4569 xfs_extnum_t nextents; /* number of extents in file */
4570 int nlists; /* number of irec's (ex lists) */
4571
4572 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
4573 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
4574 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
4575
4576 if (nextents == 0) {
4577 xfs_iext_destroy(ifp);
4578 } else if (nextents <= XFS_INLINE_EXTS) {
4579 xfs_iext_indirect_to_direct(ifp);
4580 xfs_iext_direct_to_inline(ifp, nextents);
4581 } else if (nextents <= XFS_LINEAR_EXTS) {
4582 xfs_iext_indirect_to_direct(ifp);
4583 } else if (nextents < (nlists * XFS_LINEAR_EXTS) >> 3) {
4584 xfs_iext_irec_compact_full(ifp);
4585 } else if (nextents < (nlists * XFS_LINEAR_EXTS) >> 1) {
4586 xfs_iext_irec_compact_pages(ifp);
4587 }
4588}
4589
4590/*
4591 * Combine extents from neighboring extent pages.
4592 */
4593void
4594xfs_iext_irec_compact_pages(
4595 xfs_ifork_t *ifp) /* inode fork pointer */
4596{
4597 xfs_ext_irec_t *erp, *erp_next;/* pointers to irec entries */
4598 int erp_idx = 0; /* indirection array index */
4599 int nlists; /* number of irec's (ex lists) */
4600
4601 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
4602 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
4603 while (erp_idx < nlists - 1) {
4604 erp = &ifp->if_u1.if_ext_irec[erp_idx];
4605 erp_next = erp + 1;
4606 if (erp_next->er_extcount <=
4607 (XFS_LINEAR_EXTS - erp->er_extcount)) {
4608 memmove(&erp->er_extbuf[erp->er_extcount],
4609 erp_next->er_extbuf, erp_next->er_extcount *
4610 sizeof(xfs_bmbt_rec_t));
4611 erp->er_extcount += erp_next->er_extcount;
4612 /*
4613 * Free page before removing extent record
4614 * so er_extoffs don't get modified in
4615 * xfs_iext_irec_remove.
4616 */
4617 kmem_free(erp_next->er_extbuf, XFS_IEXT_BUFSZ);
4618 erp_next->er_extbuf = NULL;
4619 xfs_iext_irec_remove(ifp, erp_idx + 1);
4620 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
4621 } else {
4622 erp_idx++;
4623 }
4624 }
4625}
4626
4627/*
4628 * Fully compact the extent records managed by the indirection array.
4629 */
4630void
4631xfs_iext_irec_compact_full(
4632 xfs_ifork_t *ifp) /* inode fork pointer */
4633{
a6f64d4a 4634 xfs_bmbt_rec_host_t *ep, *ep_next; /* extent record pointers */
0293ce3a
MK
4635 xfs_ext_irec_t *erp, *erp_next; /* extent irec pointers */
4636 int erp_idx = 0; /* extent irec index */
4637 int ext_avail; /* empty entries in ex list */
4638 int ext_diff; /* number of exts to add */
4639 int nlists; /* number of irec's (ex lists) */
4640
4641 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
4642 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
4643 erp = ifp->if_u1.if_ext_irec;
4644 ep = &erp->er_extbuf[erp->er_extcount];
4645 erp_next = erp + 1;
4646 ep_next = erp_next->er_extbuf;
4647 while (erp_idx < nlists - 1) {
4648 ext_avail = XFS_LINEAR_EXTS - erp->er_extcount;
4649 ext_diff = MIN(ext_avail, erp_next->er_extcount);
4650 memcpy(ep, ep_next, ext_diff * sizeof(xfs_bmbt_rec_t));
4651 erp->er_extcount += ext_diff;
4652 erp_next->er_extcount -= ext_diff;
4653 /* Remove next page */
4654 if (erp_next->er_extcount == 0) {
4655 /*
4656 * Free page before removing extent record
4657 * so er_extoffs don't get modified in
4658 * xfs_iext_irec_remove.
4659 */
4660 kmem_free(erp_next->er_extbuf,
4661 erp_next->er_extcount * sizeof(xfs_bmbt_rec_t));
4662 erp_next->er_extbuf = NULL;
4663 xfs_iext_irec_remove(ifp, erp_idx + 1);
4664 erp = &ifp->if_u1.if_ext_irec[erp_idx];
4665 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
4666 /* Update next page */
4667 } else {
4668 /* Move rest of page up to become next new page */
4669 memmove(erp_next->er_extbuf, ep_next,
4670 erp_next->er_extcount * sizeof(xfs_bmbt_rec_t));
4671 ep_next = erp_next->er_extbuf;
4672 memset(&ep_next[erp_next->er_extcount], 0,
4673 (XFS_LINEAR_EXTS - erp_next->er_extcount) *
4674 sizeof(xfs_bmbt_rec_t));
4675 }
4676 if (erp->er_extcount == XFS_LINEAR_EXTS) {
4677 erp_idx++;
4678 if (erp_idx < nlists)
4679 erp = &ifp->if_u1.if_ext_irec[erp_idx];
4680 else
4681 break;
4682 }
4683 ep = &erp->er_extbuf[erp->er_extcount];
4684 erp_next = erp + 1;
4685 ep_next = erp_next->er_extbuf;
4686 }
4687}
4688
4689/*
4690 * This is called to update the er_extoff field in the indirection
4691 * array when extents have been added or removed from one of the
4692 * extent lists. erp_idx contains the irec index to begin updating
4693 * at and ext_diff contains the number of extents that were added
4694 * or removed.
4695 */
4696void
4697xfs_iext_irec_update_extoffs(
4698 xfs_ifork_t *ifp, /* inode fork pointer */
4699 int erp_idx, /* irec index to update */
4700 int ext_diff) /* number of new extents */
4701{
4702 int i; /* loop counter */
4703 int nlists; /* number of irec's (ex lists */
4704
4705 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
4706 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
4707 for (i = erp_idx; i < nlists; i++) {
4708 ifp->if_u1.if_ext_irec[i].er_extoff += ext_diff;
4709 }
4710}
This page took 0.574499 seconds and 5 git commands to generate.