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