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