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