1 /* 2 * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc. 3 * All Rights Reserved. 4 * 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 7 * published by the Free Software Foundation. 8 * 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. 13 * 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 17 */ 18 #include "xfs.h" 19 #include "xfs_fs.h" 20 #include "xfs_format.h" 21 #include "xfs_log_format.h" 22 #include "xfs_trans_resv.h" 23 #include "xfs_mount.h" 24 #include "xfs_defer.h" 25 #include "xfs_da_format.h" 26 #include "xfs_da_btree.h" 27 #include "xfs_inode.h" 28 #include "xfs_trans.h" 29 #include "xfs_inode_item.h" 30 #include "xfs_bmap.h" 31 #include "xfs_dir2.h" 32 #include "xfs_dir2_priv.h" 33 #include "xfs_ialloc.h" 34 #include "xfs_errortag.h" 35 #include "xfs_error.h" 36 #include "xfs_trace.h" 37 38 struct xfs_name xfs_name_dotdot = { (unsigned char *)"..", 2, XFS_DIR3_FT_DIR }; 39 40 /* 41 * Convert inode mode to directory entry filetype 42 */ 43 unsigned char 44 xfs_mode_to_ftype( 45 int mode) 46 { 47 switch (mode & S_IFMT) { 48 case S_IFREG: 49 return XFS_DIR3_FT_REG_FILE; 50 case S_IFDIR: 51 return XFS_DIR3_FT_DIR; 52 case S_IFCHR: 53 return XFS_DIR3_FT_CHRDEV; 54 case S_IFBLK: 55 return XFS_DIR3_FT_BLKDEV; 56 case S_IFIFO: 57 return XFS_DIR3_FT_FIFO; 58 case S_IFSOCK: 59 return XFS_DIR3_FT_SOCK; 60 case S_IFLNK: 61 return XFS_DIR3_FT_SYMLINK; 62 default: 63 return XFS_DIR3_FT_UNKNOWN; 64 } 65 } 66 67 /* 68 * ASCII case-insensitive (ie. A-Z) support for directories that was 69 * used in IRIX. 70 */ 71 STATIC xfs_dahash_t 72 xfs_ascii_ci_hashname( 73 struct xfs_name *name) 74 { 75 xfs_dahash_t hash; 76 int i; 77 78 for (i = 0, hash = 0; i < name->len; i++) 79 hash = tolower(name->name[i]) ^ rol32(hash, 7); 80 81 return hash; 82 } 83 84 STATIC enum xfs_dacmp 85 xfs_ascii_ci_compname( 86 struct xfs_da_args *args, 87 const unsigned char *name, 88 int len) 89 { 90 enum xfs_dacmp result; 91 int i; 92 93 if (args->namelen != len) 94 return XFS_CMP_DIFFERENT; 95 96 result = XFS_CMP_EXACT; 97 for (i = 0; i < len; i++) { 98 if (args->name[i] == name[i]) 99 continue; 100 if (tolower(args->name[i]) != tolower(name[i])) 101 return XFS_CMP_DIFFERENT; 102 result = XFS_CMP_CASE; 103 } 104 105 return result; 106 } 107 108 static const struct xfs_nameops xfs_ascii_ci_nameops = { 109 .hashname = xfs_ascii_ci_hashname, 110 .compname = xfs_ascii_ci_compname, 111 }; 112 113 int 114 xfs_da_mount( 115 struct xfs_mount *mp) 116 { 117 struct xfs_da_geometry *dageo; 118 int nodehdr_size; 119 120 121 ASSERT(mp->m_sb.sb_versionnum & XFS_SB_VERSION_DIRV2BIT); 122 ASSERT((1 << (mp->m_sb.sb_blocklog + mp->m_sb.sb_dirblklog)) <= 123 XFS_MAX_BLOCKSIZE); 124 125 mp->m_dir_inode_ops = xfs_dir_get_ops(mp, NULL); 126 mp->m_nondir_inode_ops = xfs_nondir_get_ops(mp, NULL); 127 128 nodehdr_size = mp->m_dir_inode_ops->node_hdr_size; 129 mp->m_dir_geo = kmem_zalloc(sizeof(struct xfs_da_geometry), 130 KM_SLEEP | KM_MAYFAIL); 131 mp->m_attr_geo = kmem_zalloc(sizeof(struct xfs_da_geometry), 132 KM_SLEEP | KM_MAYFAIL); 133 if (!mp->m_dir_geo || !mp->m_attr_geo) { 134 kmem_free(mp->m_dir_geo); 135 kmem_free(mp->m_attr_geo); 136 return -ENOMEM; 137 } 138 139 /* set up directory geometry */ 140 dageo = mp->m_dir_geo; 141 dageo->blklog = mp->m_sb.sb_blocklog + mp->m_sb.sb_dirblklog; 142 dageo->fsblog = mp->m_sb.sb_blocklog; 143 dageo->blksize = 1 << dageo->blklog; 144 dageo->fsbcount = 1 << mp->m_sb.sb_dirblklog; 145 146 /* 147 * Now we've set up the block conversion variables, we can calculate the 148 * segment block constants using the geometry structure. 149 */ 150 dageo->datablk = xfs_dir2_byte_to_da(dageo, XFS_DIR2_DATA_OFFSET); 151 dageo->leafblk = xfs_dir2_byte_to_da(dageo, XFS_DIR2_LEAF_OFFSET); 152 dageo->freeblk = xfs_dir2_byte_to_da(dageo, XFS_DIR2_FREE_OFFSET); 153 dageo->node_ents = (dageo->blksize - nodehdr_size) / 154 (uint)sizeof(xfs_da_node_entry_t); 155 dageo->magicpct = (dageo->blksize * 37) / 100; 156 157 /* set up attribute geometry - single fsb only */ 158 dageo = mp->m_attr_geo; 159 dageo->blklog = mp->m_sb.sb_blocklog; 160 dageo->fsblog = mp->m_sb.sb_blocklog; 161 dageo->blksize = 1 << dageo->blklog; 162 dageo->fsbcount = 1; 163 dageo->node_ents = (dageo->blksize - nodehdr_size) / 164 (uint)sizeof(xfs_da_node_entry_t); 165 dageo->magicpct = (dageo->blksize * 37) / 100; 166 167 if (xfs_sb_version_hasasciici(&mp->m_sb)) 168 mp->m_dirnameops = &xfs_ascii_ci_nameops; 169 else 170 mp->m_dirnameops = &xfs_default_nameops; 171 172 return 0; 173 } 174 175 void 176 xfs_da_unmount( 177 struct xfs_mount *mp) 178 { 179 kmem_free(mp->m_dir_geo); 180 kmem_free(mp->m_attr_geo); 181 } 182 183 /* 184 * Return 1 if directory contains only "." and "..". 185 */ 186 int 187 xfs_dir_isempty( 188 xfs_inode_t *dp) 189 { 190 xfs_dir2_sf_hdr_t *sfp; 191 192 ASSERT(S_ISDIR(VFS_I(dp)->i_mode)); 193 if (dp->i_d.di_size == 0) /* might happen during shutdown. */ 194 return 1; 195 if (dp->i_d.di_size > XFS_IFORK_DSIZE(dp)) 196 return 0; 197 sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data; 198 return !sfp->count; 199 } 200 201 /* 202 * Validate a given inode number. 203 */ 204 int 205 xfs_dir_ino_validate( 206 xfs_mount_t *mp, 207 xfs_ino_t ino) 208 { 209 bool ino_ok = xfs_verify_dir_ino(mp, ino); 210 211 if (unlikely(XFS_TEST_ERROR(!ino_ok, mp, XFS_ERRTAG_DIR_INO_VALIDATE))) { 212 xfs_warn(mp, "Invalid inode number 0x%Lx", 213 (unsigned long long) ino); 214 XFS_ERROR_REPORT("xfs_dir_ino_validate", XFS_ERRLEVEL_LOW, mp); 215 return -EFSCORRUPTED; 216 } 217 return 0; 218 } 219 220 /* 221 * Initialize a directory with its "." and ".." entries. 222 */ 223 int 224 xfs_dir_init( 225 xfs_trans_t *tp, 226 xfs_inode_t *dp, 227 xfs_inode_t *pdp) 228 { 229 struct xfs_da_args *args; 230 int error; 231 232 ASSERT(S_ISDIR(VFS_I(dp)->i_mode)); 233 error = xfs_dir_ino_validate(tp->t_mountp, pdp->i_ino); 234 if (error) 235 return error; 236 237 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS); 238 if (!args) 239 return -ENOMEM; 240 241 args->geo = dp->i_mount->m_dir_geo; 242 args->dp = dp; 243 args->trans = tp; 244 error = xfs_dir2_sf_create(args, pdp->i_ino); 245 kmem_free(args); 246 return error; 247 } 248 249 /* 250 * Enter a name in a directory, or check for available space. 251 * If inum is 0, only the available space test is performed. 252 */ 253 int 254 xfs_dir_createname( 255 xfs_trans_t *tp, 256 xfs_inode_t *dp, 257 struct xfs_name *name, 258 xfs_ino_t inum, /* new entry inode number */ 259 xfs_fsblock_t *first, /* bmap's firstblock */ 260 struct xfs_defer_ops *dfops, /* bmap's freeblock list */ 261 xfs_extlen_t total) /* bmap's total block count */ 262 { 263 struct xfs_da_args *args; 264 int rval; 265 int v; /* type-checking value */ 266 267 ASSERT(S_ISDIR(VFS_I(dp)->i_mode)); 268 if (inum) { 269 rval = xfs_dir_ino_validate(tp->t_mountp, inum); 270 if (rval) 271 return rval; 272 XFS_STATS_INC(dp->i_mount, xs_dir_create); 273 } 274 275 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS); 276 if (!args) 277 return -ENOMEM; 278 279 args->geo = dp->i_mount->m_dir_geo; 280 args->name = name->name; 281 args->namelen = name->len; 282 args->filetype = name->type; 283 args->hashval = dp->i_mount->m_dirnameops->hashname(name); 284 args->inumber = inum; 285 args->dp = dp; 286 args->firstblock = first; 287 args->dfops = dfops; 288 args->total = total; 289 args->whichfork = XFS_DATA_FORK; 290 args->trans = tp; 291 args->op_flags = XFS_DA_OP_ADDNAME | XFS_DA_OP_OKNOENT; 292 if (!inum) 293 args->op_flags |= XFS_DA_OP_JUSTCHECK; 294 295 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) { 296 rval = xfs_dir2_sf_addname(args); 297 goto out_free; 298 } 299 300 rval = xfs_dir2_isblock(args, &v); 301 if (rval) 302 goto out_free; 303 if (v) { 304 rval = xfs_dir2_block_addname(args); 305 goto out_free; 306 } 307 308 rval = xfs_dir2_isleaf(args, &v); 309 if (rval) 310 goto out_free; 311 if (v) 312 rval = xfs_dir2_leaf_addname(args); 313 else 314 rval = xfs_dir2_node_addname(args); 315 316 out_free: 317 kmem_free(args); 318 return rval; 319 } 320 321 /* 322 * If doing a CI lookup and case-insensitive match, dup actual name into 323 * args.value. Return EEXIST for success (ie. name found) or an error. 324 */ 325 int 326 xfs_dir_cilookup_result( 327 struct xfs_da_args *args, 328 const unsigned char *name, 329 int len) 330 { 331 if (args->cmpresult == XFS_CMP_DIFFERENT) 332 return -ENOENT; 333 if (args->cmpresult != XFS_CMP_CASE || 334 !(args->op_flags & XFS_DA_OP_CILOOKUP)) 335 return -EEXIST; 336 337 args->value = kmem_alloc(len, KM_NOFS | KM_MAYFAIL); 338 if (!args->value) 339 return -ENOMEM; 340 341 memcpy(args->value, name, len); 342 args->valuelen = len; 343 return -EEXIST; 344 } 345 346 /* 347 * Lookup a name in a directory, give back the inode number. 348 * If ci_name is not NULL, returns the actual name in ci_name if it differs 349 * to name, or ci_name->name is set to NULL for an exact match. 350 */ 351 352 int 353 xfs_dir_lookup( 354 xfs_trans_t *tp, 355 xfs_inode_t *dp, 356 struct xfs_name *name, 357 xfs_ino_t *inum, /* out: inode number */ 358 struct xfs_name *ci_name) /* out: actual name if CI match */ 359 { 360 struct xfs_da_args *args; 361 int rval; 362 int v; /* type-checking value */ 363 int lock_mode; 364 365 ASSERT(S_ISDIR(VFS_I(dp)->i_mode)); 366 XFS_STATS_INC(dp->i_mount, xs_dir_lookup); 367 368 /* 369 * We need to use KM_NOFS here so that lockdep will not throw false 370 * positive deadlock warnings on a non-transactional lookup path. It is 371 * safe to recurse into inode recalim in that case, but lockdep can't 372 * easily be taught about it. Hence KM_NOFS avoids having to add more 373 * lockdep Doing this avoids having to add a bunch of lockdep class 374 * annotations into the reclaim path for the ilock. 375 */ 376 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS); 377 args->geo = dp->i_mount->m_dir_geo; 378 args->name = name->name; 379 args->namelen = name->len; 380 args->filetype = name->type; 381 args->hashval = dp->i_mount->m_dirnameops->hashname(name); 382 args->dp = dp; 383 args->whichfork = XFS_DATA_FORK; 384 args->trans = tp; 385 args->op_flags = XFS_DA_OP_OKNOENT; 386 if (ci_name) 387 args->op_flags |= XFS_DA_OP_CILOOKUP; 388 389 lock_mode = xfs_ilock_data_map_shared(dp); 390 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) { 391 rval = xfs_dir2_sf_lookup(args); 392 goto out_check_rval; 393 } 394 395 rval = xfs_dir2_isblock(args, &v); 396 if (rval) 397 goto out_free; 398 if (v) { 399 rval = xfs_dir2_block_lookup(args); 400 goto out_check_rval; 401 } 402 403 rval = xfs_dir2_isleaf(args, &v); 404 if (rval) 405 goto out_free; 406 if (v) 407 rval = xfs_dir2_leaf_lookup(args); 408 else 409 rval = xfs_dir2_node_lookup(args); 410 411 out_check_rval: 412 if (rval == -EEXIST) 413 rval = 0; 414 if (!rval) { 415 *inum = args->inumber; 416 if (ci_name) { 417 ci_name->name = args->value; 418 ci_name->len = args->valuelen; 419 } 420 } 421 out_free: 422 xfs_iunlock(dp, lock_mode); 423 kmem_free(args); 424 return rval; 425 } 426 427 /* 428 * Remove an entry from a directory. 429 */ 430 int 431 xfs_dir_removename( 432 xfs_trans_t *tp, 433 xfs_inode_t *dp, 434 struct xfs_name *name, 435 xfs_ino_t ino, 436 xfs_fsblock_t *first, /* bmap's firstblock */ 437 struct xfs_defer_ops *dfops, /* bmap's freeblock list */ 438 xfs_extlen_t total) /* bmap's total block count */ 439 { 440 struct xfs_da_args *args; 441 int rval; 442 int v; /* type-checking value */ 443 444 ASSERT(S_ISDIR(VFS_I(dp)->i_mode)); 445 XFS_STATS_INC(dp->i_mount, xs_dir_remove); 446 447 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS); 448 if (!args) 449 return -ENOMEM; 450 451 args->geo = dp->i_mount->m_dir_geo; 452 args->name = name->name; 453 args->namelen = name->len; 454 args->filetype = name->type; 455 args->hashval = dp->i_mount->m_dirnameops->hashname(name); 456 args->inumber = ino; 457 args->dp = dp; 458 args->firstblock = first; 459 args->dfops = dfops; 460 args->total = total; 461 args->whichfork = XFS_DATA_FORK; 462 args->trans = tp; 463 464 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) { 465 rval = xfs_dir2_sf_removename(args); 466 goto out_free; 467 } 468 469 rval = xfs_dir2_isblock(args, &v); 470 if (rval) 471 goto out_free; 472 if (v) { 473 rval = xfs_dir2_block_removename(args); 474 goto out_free; 475 } 476 477 rval = xfs_dir2_isleaf(args, &v); 478 if (rval) 479 goto out_free; 480 if (v) 481 rval = xfs_dir2_leaf_removename(args); 482 else 483 rval = xfs_dir2_node_removename(args); 484 out_free: 485 kmem_free(args); 486 return rval; 487 } 488 489 /* 490 * Replace the inode number of a directory entry. 491 */ 492 int 493 xfs_dir_replace( 494 xfs_trans_t *tp, 495 xfs_inode_t *dp, 496 struct xfs_name *name, /* name of entry to replace */ 497 xfs_ino_t inum, /* new inode number */ 498 xfs_fsblock_t *first, /* bmap's firstblock */ 499 struct xfs_defer_ops *dfops, /* bmap's freeblock list */ 500 xfs_extlen_t total) /* bmap's total block count */ 501 { 502 struct xfs_da_args *args; 503 int rval; 504 int v; /* type-checking value */ 505 506 ASSERT(S_ISDIR(VFS_I(dp)->i_mode)); 507 508 rval = xfs_dir_ino_validate(tp->t_mountp, inum); 509 if (rval) 510 return rval; 511 512 args = kmem_zalloc(sizeof(*args), KM_SLEEP | KM_NOFS); 513 if (!args) 514 return -ENOMEM; 515 516 args->geo = dp->i_mount->m_dir_geo; 517 args->name = name->name; 518 args->namelen = name->len; 519 args->filetype = name->type; 520 args->hashval = dp->i_mount->m_dirnameops->hashname(name); 521 args->inumber = inum; 522 args->dp = dp; 523 args->firstblock = first; 524 args->dfops = dfops; 525 args->total = total; 526 args->whichfork = XFS_DATA_FORK; 527 args->trans = tp; 528 529 if (dp->i_d.di_format == XFS_DINODE_FMT_LOCAL) { 530 rval = xfs_dir2_sf_replace(args); 531 goto out_free; 532 } 533 534 rval = xfs_dir2_isblock(args, &v); 535 if (rval) 536 goto out_free; 537 if (v) { 538 rval = xfs_dir2_block_replace(args); 539 goto out_free; 540 } 541 542 rval = xfs_dir2_isleaf(args, &v); 543 if (rval) 544 goto out_free; 545 if (v) 546 rval = xfs_dir2_leaf_replace(args); 547 else 548 rval = xfs_dir2_node_replace(args); 549 out_free: 550 kmem_free(args); 551 return rval; 552 } 553 554 /* 555 * See if this entry can be added to the directory without allocating space. 556 */ 557 int 558 xfs_dir_canenter( 559 xfs_trans_t *tp, 560 xfs_inode_t *dp, 561 struct xfs_name *name) /* name of entry to add */ 562 { 563 return xfs_dir_createname(tp, dp, name, 0, NULL, NULL, 0); 564 } 565 566 /* 567 * Utility routines. 568 */ 569 570 /* 571 * Add a block to the directory. 572 * 573 * This routine is for data and free blocks, not leaf/node blocks which are 574 * handled by xfs_da_grow_inode. 575 */ 576 int 577 xfs_dir2_grow_inode( 578 struct xfs_da_args *args, 579 int space, /* v2 dir's space XFS_DIR2_xxx_SPACE */ 580 xfs_dir2_db_t *dbp) /* out: block number added */ 581 { 582 struct xfs_inode *dp = args->dp; 583 struct xfs_mount *mp = dp->i_mount; 584 xfs_fileoff_t bno; /* directory offset of new block */ 585 int count; /* count of filesystem blocks */ 586 int error; 587 588 trace_xfs_dir2_grow_inode(args, space); 589 590 /* 591 * Set lowest possible block in the space requested. 592 */ 593 bno = XFS_B_TO_FSBT(mp, space * XFS_DIR2_SPACE_SIZE); 594 count = args->geo->fsbcount; 595 596 error = xfs_da_grow_inode_int(args, &bno, count); 597 if (error) 598 return error; 599 600 *dbp = xfs_dir2_da_to_db(args->geo, (xfs_dablk_t)bno); 601 602 /* 603 * Update file's size if this is the data space and it grew. 604 */ 605 if (space == XFS_DIR2_DATA_SPACE) { 606 xfs_fsize_t size; /* directory file (data) size */ 607 608 size = XFS_FSB_TO_B(mp, bno + count); 609 if (size > dp->i_d.di_size) { 610 dp->i_d.di_size = size; 611 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE); 612 } 613 } 614 return 0; 615 } 616 617 /* 618 * See if the directory is a single-block form directory. 619 */ 620 int 621 xfs_dir2_isblock( 622 struct xfs_da_args *args, 623 int *vp) /* out: 1 is block, 0 is not block */ 624 { 625 xfs_fileoff_t last; /* last file offset */ 626 int rval; 627 628 if ((rval = xfs_bmap_last_offset(args->dp, &last, XFS_DATA_FORK))) 629 return rval; 630 rval = XFS_FSB_TO_B(args->dp->i_mount, last) == args->geo->blksize; 631 if (rval != 0 && args->dp->i_d.di_size != args->geo->blksize) 632 return -EFSCORRUPTED; 633 *vp = rval; 634 return 0; 635 } 636 637 /* 638 * See if the directory is a single-leaf form directory. 639 */ 640 int 641 xfs_dir2_isleaf( 642 struct xfs_da_args *args, 643 int *vp) /* out: 1 is block, 0 is not block */ 644 { 645 xfs_fileoff_t last; /* last file offset */ 646 int rval; 647 648 if ((rval = xfs_bmap_last_offset(args->dp, &last, XFS_DATA_FORK))) 649 return rval; 650 *vp = last == args->geo->leafblk + args->geo->fsbcount; 651 return 0; 652 } 653 654 /* 655 * Remove the given block from the directory. 656 * This routine is used for data and free blocks, leaf/node are done 657 * by xfs_da_shrink_inode. 658 */ 659 int 660 xfs_dir2_shrink_inode( 661 xfs_da_args_t *args, 662 xfs_dir2_db_t db, 663 struct xfs_buf *bp) 664 { 665 xfs_fileoff_t bno; /* directory file offset */ 666 xfs_dablk_t da; /* directory file offset */ 667 int done; /* bunmap is finished */ 668 xfs_inode_t *dp; 669 int error; 670 xfs_mount_t *mp; 671 xfs_trans_t *tp; 672 673 trace_xfs_dir2_shrink_inode(args, db); 674 675 dp = args->dp; 676 mp = dp->i_mount; 677 tp = args->trans; 678 da = xfs_dir2_db_to_da(args->geo, db); 679 680 /* Unmap the fsblock(s). */ 681 error = xfs_bunmapi(tp, dp, da, args->geo->fsbcount, 0, 0, 682 args->firstblock, args->dfops, &done); 683 if (error) { 684 /* 685 * ENOSPC actually can happen if we're in a removename with no 686 * space reservation, and the resulting block removal would 687 * cause a bmap btree split or conversion from extents to btree. 688 * This can only happen for un-fragmented directory blocks, 689 * since you need to be punching out the middle of an extent. 690 * In this case we need to leave the block in the file, and not 691 * binval it. So the block has to be in a consistent empty 692 * state and appropriately logged. We don't free up the buffer, 693 * the caller can tell it hasn't happened since it got an error 694 * back. 695 */ 696 return error; 697 } 698 ASSERT(done); 699 /* 700 * Invalidate the buffer from the transaction. 701 */ 702 xfs_trans_binval(tp, bp); 703 /* 704 * If it's not a data block, we're done. 705 */ 706 if (db >= xfs_dir2_byte_to_db(args->geo, XFS_DIR2_LEAF_OFFSET)) 707 return 0; 708 /* 709 * If the block isn't the last one in the directory, we're done. 710 */ 711 if (dp->i_d.di_size > xfs_dir2_db_off_to_byte(args->geo, db + 1, 0)) 712 return 0; 713 bno = da; 714 if ((error = xfs_bmap_last_before(tp, dp, &bno, XFS_DATA_FORK))) { 715 /* 716 * This can't really happen unless there's kernel corruption. 717 */ 718 return error; 719 } 720 if (db == args->geo->datablk) 721 ASSERT(bno == 0); 722 else 723 ASSERT(bno > 0); 724 /* 725 * Set the size to the new last block. 726 */ 727 dp->i_d.di_size = XFS_FSB_TO_B(mp, bno); 728 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE); 729 return 0; 730 } 731