2 * Copyright (c) 2000-2001 Silicon Graphics, Inc. All Rights Reserved.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of version 2 of the GNU General Public License as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it would be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12 * Further, this software is distributed without any warranty that it is
13 * free of the rightful claim of any third person regarding infringement
14 * or the like. Any license provided herein, whether implied or
15 * otherwise, applies only to this software file. Patent licenses, if
16 * any, provided herein do not apply to combinations of this program with
17 * other software, or any other product whatsoever.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write the Free Software Foundation, Inc., 59
21 * Temple Place - Suite 330, Boston MA 02111-1307, USA.
23 * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
24 * Mountain View, CA 94043, or:
28 * For further information regarding this notice, see:
30 * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
34 * XFS v2 directory implmentation.
35 * Top-level and utility routines.
40 #include "xfs_macros.h"
41 #include "xfs_types.h"
44 #include "xfs_trans.h"
49 #include "xfs_dmapi.h"
50 #include "xfs_mount.h"
51 #include "xfs_alloc_btree.h"
52 #include "xfs_bmap_btree.h"
53 #include "xfs_attr_sf.h"
54 #include "xfs_dir_sf.h"
55 #include "xfs_dir2_sf.h"
56 #include "xfs_dinode.h"
57 #include "xfs_inode_item.h"
58 #include "xfs_inode.h"
60 #include "xfs_da_btree.h"
61 #include "xfs_dir_leaf.h"
62 #include "xfs_dir2_data.h"
63 #include "xfs_dir2_leaf.h"
64 #include "xfs_dir2_block.h"
65 #include "xfs_dir2_node.h"
66 #include "xfs_dir2_trace.h"
67 #include "xfs_error.h"
71 * Declarations for interface routines.
73 static void xfs_dir2_mount(xfs_mount_t
*mp
);
74 static int xfs_dir2_isempty(xfs_inode_t
*dp
);
75 static int xfs_dir2_init(xfs_trans_t
*tp
, xfs_inode_t
*dp
,
77 static int xfs_dir2_createname(xfs_trans_t
*tp
, xfs_inode_t
*dp
,
78 char *name
, int namelen
, xfs_ino_t inum
,
80 xfs_bmap_free_t
*flist
, xfs_extlen_t total
);
81 static int xfs_dir2_lookup(xfs_trans_t
*tp
, xfs_inode_t
*dp
, char *name
,
82 int namelen
, xfs_ino_t
*inum
);
83 static int xfs_dir2_removename(xfs_trans_t
*tp
, xfs_inode_t
*dp
,
84 char *name
, int namelen
, xfs_ino_t ino
,
86 xfs_bmap_free_t
*flist
, xfs_extlen_t total
);
87 static int xfs_dir2_getdents(xfs_trans_t
*tp
, xfs_inode_t
*dp
, uio_t
*uio
,
89 static int xfs_dir2_replace(xfs_trans_t
*tp
, xfs_inode_t
*dp
, char *name
,
90 int namelen
, xfs_ino_t inum
,
91 xfs_fsblock_t
*first
, xfs_bmap_free_t
*flist
,
93 static int xfs_dir2_canenter(xfs_trans_t
*tp
, xfs_inode_t
*dp
, char *name
,
95 static int xfs_dir2_shortform_validate_ondisk(xfs_mount_t
*mp
,
99 * Utility routine declarations.
101 static int xfs_dir2_put_dirent64_direct(xfs_dir2_put_args_t
*pa
);
102 static int xfs_dir2_put_dirent64_uio(xfs_dir2_put_args_t
*pa
);
105 * Directory operations vector.
107 xfs_dirops_t xfsv2_dirops
= {
108 .xd_mount
= xfs_dir2_mount
,
109 .xd_isempty
= xfs_dir2_isempty
,
110 .xd_init
= xfs_dir2_init
,
111 .xd_createname
= xfs_dir2_createname
,
112 .xd_lookup
= xfs_dir2_lookup
,
113 .xd_removename
= xfs_dir2_removename
,
114 .xd_getdents
= xfs_dir2_getdents
,
115 .xd_replace
= xfs_dir2_replace
,
116 .xd_canenter
= xfs_dir2_canenter
,
117 .xd_shortform_validate_ondisk
= xfs_dir2_shortform_validate_ondisk
,
118 .xd_shortform_to_single
= xfs_dir2_sf_to_block
,
122 * Interface routines.
126 * Initialize directory-related fields in the mount structure.
130 xfs_mount_t
*mp
) /* filesystem mount point */
132 mp
->m_dirversion
= 2;
133 ASSERT((1 << (mp
->m_sb
.sb_blocklog
+ mp
->m_sb
.sb_dirblklog
)) <=
135 mp
->m_dirblksize
= 1 << (mp
->m_sb
.sb_blocklog
+ mp
->m_sb
.sb_dirblklog
);
136 mp
->m_dirblkfsbs
= 1 << mp
->m_sb
.sb_dirblklog
;
137 mp
->m_dirdatablk
= XFS_DIR2_DB_TO_DA(mp
, XFS_DIR2_DATA_FIRSTDB(mp
));
138 mp
->m_dirleafblk
= XFS_DIR2_DB_TO_DA(mp
, XFS_DIR2_LEAF_FIRSTDB(mp
));
139 mp
->m_dirfreeblk
= XFS_DIR2_DB_TO_DA(mp
, XFS_DIR2_FREE_FIRSTDB(mp
));
140 mp
->m_attr_node_ents
=
141 (mp
->m_sb
.sb_blocksize
- (uint
)sizeof(xfs_da_node_hdr_t
)) /
142 (uint
)sizeof(xfs_da_node_entry_t
);
143 mp
->m_dir_node_ents
=
144 (mp
->m_dirblksize
- (uint
)sizeof(xfs_da_node_hdr_t
)) /
145 (uint
)sizeof(xfs_da_node_entry_t
);
146 mp
->m_dir_magicpct
= (mp
->m_dirblksize
* 37) / 100;
150 * Return 1 if directory contains only "." and "..".
152 static int /* return code */
154 xfs_inode_t
*dp
) /* incore inode structure */
156 xfs_dir2_sf_t
*sfp
; /* shortform directory structure */
158 ASSERT((dp
->i_d
.di_mode
& S_IFMT
) == S_IFDIR
);
160 * Might happen during shutdown.
162 if (dp
->i_d
.di_size
== 0) {
165 if (dp
->i_d
.di_size
> XFS_IFORK_DSIZE(dp
))
167 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
168 return !sfp
->hdr
.count
;
172 * Initialize a directory with its "." and ".." entries.
174 static int /* error */
176 xfs_trans_t
*tp
, /* transaction pointer */
177 xfs_inode_t
*dp
, /* incore directory inode */
178 xfs_inode_t
*pdp
) /* incore parent directory inode */
180 xfs_da_args_t args
; /* operation arguments */
181 int error
; /* error return value */
183 memset((char *)&args
, 0, sizeof(args
));
186 ASSERT((dp
->i_d
.di_mode
& S_IFMT
) == S_IFDIR
);
187 if ((error
= xfs_dir_ino_validate(tp
->t_mountp
, pdp
->i_ino
))) {
190 return xfs_dir2_sf_create(&args
, pdp
->i_ino
);
194 Enter a name in a directory.
196 static int /* error */
198 xfs_trans_t
*tp
, /* transaction pointer */
199 xfs_inode_t
*dp
, /* incore directory inode */
200 char *name
, /* new entry name */
201 int namelen
, /* new entry name length */
202 xfs_ino_t inum
, /* new entry inode number */
203 xfs_fsblock_t
*first
, /* bmap's firstblock */
204 xfs_bmap_free_t
*flist
, /* bmap's freeblock list */
205 xfs_extlen_t total
) /* bmap's total block count */
207 xfs_da_args_t args
; /* operation arguments */
208 int rval
; /* return value */
209 int v
; /* type-checking value */
211 ASSERT((dp
->i_d
.di_mode
& S_IFMT
) == S_IFDIR
);
212 if ((rval
= xfs_dir_ino_validate(tp
->t_mountp
, inum
))) {
215 XFS_STATS_INC(xs_dir_create
);
217 * Fill in the arg structure for this request.
220 args
.namelen
= namelen
;
221 args
.hashval
= xfs_da_hashname(name
, namelen
);
224 args
.firstblock
= first
;
227 args
.whichfork
= XFS_DATA_FORK
;
230 args
.addname
= args
.oknoent
= 1;
232 * Decide on what work routines to call based on the inode size.
234 if (dp
->i_d
.di_format
== XFS_DINODE_FMT_LOCAL
)
235 rval
= xfs_dir2_sf_addname(&args
);
236 else if ((rval
= xfs_dir2_isblock(tp
, dp
, &v
))) {
239 rval
= xfs_dir2_block_addname(&args
);
240 else if ((rval
= xfs_dir2_isleaf(tp
, dp
, &v
))) {
243 rval
= xfs_dir2_leaf_addname(&args
);
245 rval
= xfs_dir2_node_addname(&args
);
250 * Lookup a name in a directory, give back the inode number.
252 static int /* error */
254 xfs_trans_t
*tp
, /* transaction pointer */
255 xfs_inode_t
*dp
, /* incore directory inode */
256 char *name
, /* lookup name */
257 int namelen
, /* lookup name length */
258 xfs_ino_t
*inum
) /* out: inode number */
260 xfs_da_args_t args
; /* operation arguments */
261 int rval
; /* return value */
262 int v
; /* type-checking value */
264 ASSERT((dp
->i_d
.di_mode
& S_IFMT
) == S_IFDIR
);
265 XFS_STATS_INC(xs_dir_lookup
);
268 * Fill in the arg structure for this request.
271 args
.namelen
= namelen
;
272 args
.hashval
= xfs_da_hashname(name
, namelen
);
275 args
.firstblock
= NULL
;
278 args
.whichfork
= XFS_DATA_FORK
;
280 args
.justcheck
= args
.addname
= 0;
283 * Decide on what work routines to call based on the inode size.
285 if (dp
->i_d
.di_format
== XFS_DINODE_FMT_LOCAL
)
286 rval
= xfs_dir2_sf_lookup(&args
);
287 else if ((rval
= xfs_dir2_isblock(tp
, dp
, &v
))) {
290 rval
= xfs_dir2_block_lookup(&args
);
291 else if ((rval
= xfs_dir2_isleaf(tp
, dp
, &v
))) {
294 rval
= xfs_dir2_leaf_lookup(&args
);
296 rval
= xfs_dir2_node_lookup(&args
);
300 *inum
= args
.inumber
;
305 * Remove an entry from a directory.
307 static int /* error */
309 xfs_trans_t
*tp
, /* transaction pointer */
310 xfs_inode_t
*dp
, /* incore directory inode */
311 char *name
, /* name of entry to remove */
312 int namelen
, /* name length of entry to remove */
313 xfs_ino_t ino
, /* inode number of entry to remove */
314 xfs_fsblock_t
*first
, /* bmap's firstblock */
315 xfs_bmap_free_t
*flist
, /* bmap's freeblock list */
316 xfs_extlen_t total
) /* bmap's total block count */
318 xfs_da_args_t args
; /* operation arguments */
319 int rval
; /* return value */
320 int v
; /* type-checking value */
322 ASSERT((dp
->i_d
.di_mode
& S_IFMT
) == S_IFDIR
);
323 XFS_STATS_INC(xs_dir_remove
);
325 * Fill in the arg structure for this request.
328 args
.namelen
= namelen
;
329 args
.hashval
= xfs_da_hashname(name
, namelen
);
332 args
.firstblock
= first
;
335 args
.whichfork
= XFS_DATA_FORK
;
337 args
.justcheck
= args
.addname
= args
.oknoent
= 0;
339 * Decide on what work routines to call based on the inode size.
341 if (dp
->i_d
.di_format
== XFS_DINODE_FMT_LOCAL
)
342 rval
= xfs_dir2_sf_removename(&args
);
343 else if ((rval
= xfs_dir2_isblock(tp
, dp
, &v
))) {
346 rval
= xfs_dir2_block_removename(&args
);
347 else if ((rval
= xfs_dir2_isleaf(tp
, dp
, &v
))) {
350 rval
= xfs_dir2_leaf_removename(&args
);
352 rval
= xfs_dir2_node_removename(&args
);
359 static int /* error */
361 xfs_trans_t
*tp
, /* transaction pointer */
362 xfs_inode_t
*dp
, /* incore directory inode */
363 uio_t
*uio
, /* caller's buffer control */
364 int *eofp
) /* out: eof reached */
366 int alignment
; /* alignment required for ABI */
367 xfs_dirent_t
*dbp
; /* malloc'ed buffer */
368 xfs_dir2_put_t put
; /* entry formatting routine */
369 int rval
; /* return value */
370 int v
; /* type-checking value */
372 ASSERT((dp
->i_d
.di_mode
& S_IFMT
) == S_IFDIR
);
373 XFS_STATS_INC(xs_dir_getdents
);
375 * If our caller has given us a single contiguous aligned memory buffer,
376 * just work directly within that buffer. If it's in user memory,
377 * lock it down first.
379 alignment
= sizeof(xfs_off_t
) - 1;
380 if ((uio
->uio_iovcnt
== 1) &&
381 (((__psint_t
)uio
->uio_iov
[0].iov_base
& alignment
) == 0) &&
382 ((uio
->uio_iov
[0].iov_len
& alignment
) == 0)) {
384 put
= xfs_dir2_put_dirent64_direct
;
386 dbp
= kmem_alloc(sizeof(*dbp
) + MAXNAMELEN
, KM_SLEEP
);
387 put
= xfs_dir2_put_dirent64_uio
;
392 * Decide on what work routines to call based on the inode size.
394 if (dp
->i_d
.di_format
== XFS_DINODE_FMT_LOCAL
)
395 rval
= xfs_dir2_sf_getdents(dp
, uio
, eofp
, dbp
, put
);
396 else if ((rval
= xfs_dir2_isblock(tp
, dp
, &v
))) {
399 rval
= xfs_dir2_block_getdents(tp
, dp
, uio
, eofp
, dbp
, put
);
401 rval
= xfs_dir2_leaf_getdents(tp
, dp
, uio
, eofp
, dbp
, put
);
403 kmem_free(dbp
, sizeof(*dbp
) + MAXNAMELEN
);
408 * Replace the inode number of a directory entry.
410 static int /* error */
412 xfs_trans_t
*tp
, /* transaction pointer */
413 xfs_inode_t
*dp
, /* incore directory inode */
414 char *name
, /* name of entry to replace */
415 int namelen
, /* name length of entry to replace */
416 xfs_ino_t inum
, /* new inode number */
417 xfs_fsblock_t
*first
, /* bmap's firstblock */
418 xfs_bmap_free_t
*flist
, /* bmap's freeblock list */
419 xfs_extlen_t total
) /* bmap's total block count */
421 xfs_da_args_t args
; /* operation arguments */
422 int rval
; /* return value */
423 int v
; /* type-checking value */
425 ASSERT((dp
->i_d
.di_mode
& S_IFMT
) == S_IFDIR
);
427 if ((rval
= xfs_dir_ino_validate(tp
->t_mountp
, inum
))) {
431 * Fill in the arg structure for this request.
434 args
.namelen
= namelen
;
435 args
.hashval
= xfs_da_hashname(name
, namelen
);
438 args
.firstblock
= first
;
441 args
.whichfork
= XFS_DATA_FORK
;
443 args
.justcheck
= args
.addname
= args
.oknoent
= 0;
445 * Decide on what work routines to call based on the inode size.
447 if (dp
->i_d
.di_format
== XFS_DINODE_FMT_LOCAL
)
448 rval
= xfs_dir2_sf_replace(&args
);
449 else if ((rval
= xfs_dir2_isblock(tp
, dp
, &v
))) {
452 rval
= xfs_dir2_block_replace(&args
);
453 else if ((rval
= xfs_dir2_isleaf(tp
, dp
, &v
))) {
456 rval
= xfs_dir2_leaf_replace(&args
);
458 rval
= xfs_dir2_node_replace(&args
);
463 * See if this entry can be added to the directory without allocating space.
465 static int /* error */
467 xfs_trans_t
*tp
, /* transaction pointer */
468 xfs_inode_t
*dp
, /* incore directory inode */
469 char *name
, /* name of entry to add */
470 int namelen
) /* name length of entry to add */
472 xfs_da_args_t args
; /* operation arguments */
473 int rval
; /* return value */
474 int v
; /* type-checking value */
476 ASSERT((dp
->i_d
.di_mode
& S_IFMT
) == S_IFDIR
);
478 * Fill in the arg structure for this request.
481 args
.namelen
= namelen
;
482 args
.hashval
= xfs_da_hashname(name
, namelen
);
485 args
.firstblock
= NULL
;
488 args
.whichfork
= XFS_DATA_FORK
;
490 args
.justcheck
= args
.addname
= args
.oknoent
= 1;
492 * Decide on what work routines to call based on the inode size.
494 if (dp
->i_d
.di_format
== XFS_DINODE_FMT_LOCAL
)
495 rval
= xfs_dir2_sf_addname(&args
);
496 else if ((rval
= xfs_dir2_isblock(tp
, dp
, &v
))) {
499 rval
= xfs_dir2_block_addname(&args
);
500 else if ((rval
= xfs_dir2_isleaf(tp
, dp
, &v
))) {
503 rval
= xfs_dir2_leaf_addname(&args
);
505 rval
= xfs_dir2_node_addname(&args
);
510 * Dummy routine for shortform inode validation.
511 * Can't really do this.
514 static int /* error */
515 xfs_dir2_shortform_validate_ondisk(
516 xfs_mount_t
*mp
, /* filesystem mount point */
517 xfs_dinode_t
*dip
) /* ondisk inode */
527 * Add a block to the directory.
528 * This routine is for data and free blocks, not leaf/node blocks
529 * which are handled by xfs_da_grow_inode.
533 xfs_da_args_t
*args
, /* operation arguments */
534 int space
, /* v2 dir's space XFS_DIR2_xxx_SPACE */
535 xfs_dir2_db_t
*dbp
) /* out: block number added */
537 xfs_fileoff_t bno
; /* directory offset of new block */
538 int count
; /* count of filesystem blocks */
539 xfs_inode_t
*dp
; /* incore directory inode */
540 int error
; /* error return value */
541 int got
; /* blocks actually mapped */
542 int i
; /* temp mapping index */
543 xfs_bmbt_irec_t map
; /* single structure for bmap */
544 int mapi
; /* mapping index */
545 xfs_bmbt_irec_t
*mapp
; /* bmap mapping structure(s) */
546 xfs_mount_t
*mp
; /* filesystem mount point */
547 int nmap
; /* number of bmap entries */
548 xfs_trans_t
*tp
; /* transaction pointer */
550 xfs_dir2_trace_args_s("grow_inode", args
, space
);
555 * Set lowest possible block in the space requested.
557 bno
= XFS_B_TO_FSBT(mp
, space
* XFS_DIR2_SPACE_SIZE
);
558 count
= mp
->m_dirblkfsbs
;
560 * Find the first hole for our block.
562 if ((error
= xfs_bmap_first_unused(tp
, dp
, count
, &bno
, XFS_DATA_FORK
))) {
566 ASSERT(args
->firstblock
!= NULL
);
568 * Try mapping the new block contiguously (one extent).
570 if ((error
= xfs_bmapi(tp
, dp
, bno
, count
,
571 XFS_BMAPI_WRITE
|XFS_BMAPI_METADATA
|XFS_BMAPI_CONTIG
,
572 args
->firstblock
, args
->total
, &map
, &nmap
,
585 * Didn't work and this is a multiple-fsb directory block.
586 * Try again with contiguous flag turned on.
588 else if (nmap
== 0 && count
> 1) {
589 xfs_fileoff_t b
; /* current file offset */
592 * Space for maximum number of mappings.
594 mapp
= kmem_alloc(sizeof(*mapp
) * count
, KM_SLEEP
);
596 * Iterate until we get to the end of our block.
598 for (b
= bno
, mapi
= 0; b
< bno
+ count
; ) {
599 int c
; /* current fsb count */
602 * Can't map more than MAX_NMAP at once.
604 nmap
= MIN(XFS_BMAP_MAX_NMAP
, count
);
605 c
= (int)(bno
+ count
- b
);
606 if ((error
= xfs_bmapi(tp
, dp
, b
, c
,
607 XFS_BMAPI_WRITE
|XFS_BMAPI_METADATA
,
608 args
->firstblock
, args
->total
,
609 &mapp
[mapi
], &nmap
, args
->flist
))) {
610 kmem_free(mapp
, sizeof(*mapp
) * count
);
616 * Add this bunch into our table, go to the next offset.
619 b
= mapp
[mapi
- 1].br_startoff
+
620 mapp
[mapi
- 1].br_blockcount
;
631 * See how many fsb's we got.
633 for (i
= 0, got
= 0; i
< mapi
; i
++)
634 got
+= mapp
[i
].br_blockcount
;
636 * Didn't get enough fsb's, or the first/last block's are wrong.
638 if (got
!= count
|| mapp
[0].br_startoff
!= bno
||
639 mapp
[mapi
- 1].br_startoff
+ mapp
[mapi
- 1].br_blockcount
!=
642 kmem_free(mapp
, sizeof(*mapp
) * count
);
643 return XFS_ERROR(ENOSPC
);
646 * Done with the temporary mapping table.
649 kmem_free(mapp
, sizeof(*mapp
) * count
);
650 *dbp
= XFS_DIR2_DA_TO_DB(mp
, (xfs_dablk_t
)bno
);
652 * Update file's size if this is the data space and it grew.
654 if (space
== XFS_DIR2_DATA_SPACE
) {
655 xfs_fsize_t size
; /* directory file (data) size */
657 size
= XFS_FSB_TO_B(mp
, bno
+ count
);
658 if (size
> dp
->i_d
.di_size
) {
659 dp
->i_d
.di_size
= size
;
660 xfs_trans_log_inode(tp
, dp
, XFS_ILOG_CORE
);
667 * See if the directory is a single-block form directory.
671 xfs_trans_t
*tp
, /* transaction pointer */
672 xfs_inode_t
*dp
, /* incore directory inode */
673 int *vp
) /* out: 1 is block, 0 is not block */
675 xfs_fileoff_t last
; /* last file offset */
676 xfs_mount_t
*mp
; /* filesystem mount point */
677 int rval
; /* return value */
680 if ((rval
= xfs_bmap_last_offset(tp
, dp
, &last
, XFS_DATA_FORK
))) {
683 rval
= XFS_FSB_TO_B(mp
, last
) == mp
->m_dirblksize
;
684 ASSERT(rval
== 0 || dp
->i_d
.di_size
== mp
->m_dirblksize
);
690 * See if the directory is a single-leaf form directory.
694 xfs_trans_t
*tp
, /* transaction pointer */
695 xfs_inode_t
*dp
, /* incore directory inode */
696 int *vp
) /* out: 1 is leaf, 0 is not leaf */
698 xfs_fileoff_t last
; /* last file offset */
699 xfs_mount_t
*mp
; /* filesystem mount point */
700 int rval
; /* return value */
703 if ((rval
= xfs_bmap_last_offset(tp
, dp
, &last
, XFS_DATA_FORK
))) {
706 *vp
= last
== mp
->m_dirleafblk
+ (1 << mp
->m_sb
.sb_dirblklog
);
711 * Getdents put routine for 64-bit ABI, direct form.
713 static int /* error */
714 xfs_dir2_put_dirent64_direct(
715 xfs_dir2_put_args_t
*pa
) /* argument bundle */
717 xfs_dirent_t
*idbp
; /* dirent pointer */
718 iovec_t
*iovp
; /* io vector */
719 int namelen
; /* entry name length */
720 int reclen
; /* entry total length */
721 uio_t
*uio
; /* I/O control */
723 namelen
= pa
->namelen
;
724 reclen
= DIRENTSIZE(namelen
);
727 * Won't fit in the remaining space.
729 if (reclen
> uio
->uio_resid
) {
734 idbp
= (xfs_dirent_t
*)iovp
->iov_base
;
735 iovp
->iov_base
= (char *)idbp
+ reclen
;
736 iovp
->iov_len
-= reclen
;
737 uio
->uio_resid
-= reclen
;
738 idbp
->d_reclen
= reclen
;
739 idbp
->d_ino
= pa
->ino
;
740 idbp
->d_off
= pa
->cook
;
741 idbp
->d_name
[namelen
] = '\0';
743 memcpy(idbp
->d_name
, pa
->name
, namelen
);
748 * Getdents put routine for 64-bit ABI, uio form.
750 static int /* error */
751 xfs_dir2_put_dirent64_uio(
752 xfs_dir2_put_args_t
*pa
) /* argument bundle */
754 xfs_dirent_t
*idbp
; /* dirent pointer */
755 int namelen
; /* entry name length */
756 int reclen
; /* entry total length */
757 int rval
; /* return value */
758 uio_t
*uio
; /* I/O control */
760 namelen
= pa
->namelen
;
761 reclen
= DIRENTSIZE(namelen
);
764 * Won't fit in the remaining space.
766 if (reclen
> uio
->uio_resid
) {
771 idbp
->d_reclen
= reclen
;
772 idbp
->d_ino
= pa
->ino
;
773 idbp
->d_off
= pa
->cook
;
774 idbp
->d_name
[namelen
] = '\0';
775 memcpy(idbp
->d_name
, pa
->name
, namelen
);
776 rval
= uio_read((caddr_t
)idbp
, reclen
, uio
);
777 pa
->done
= (rval
== 0);
782 * Remove the given block from the directory.
783 * This routine is used for data and free blocks, leaf/node are done
784 * by xfs_da_shrink_inode.
787 xfs_dir2_shrink_inode(
788 xfs_da_args_t
*args
, /* operation arguments */
789 xfs_dir2_db_t db
, /* directory block number */
790 xfs_dabuf_t
*bp
) /* block's buffer */
792 xfs_fileoff_t bno
; /* directory file offset */
793 xfs_dablk_t da
; /* directory file offset */
794 int done
; /* bunmap is finished */
795 xfs_inode_t
*dp
; /* incore directory inode */
796 int error
; /* error return value */
797 xfs_mount_t
*mp
; /* filesystem mount point */
798 xfs_trans_t
*tp
; /* transaction pointer */
800 xfs_dir2_trace_args_db("shrink_inode", args
, db
, bp
);
804 da
= XFS_DIR2_DB_TO_DA(mp
, db
);
806 * Unmap the fsblock(s).
808 if ((error
= xfs_bunmapi(tp
, dp
, da
, mp
->m_dirblkfsbs
,
809 XFS_BMAPI_METADATA
, 0, args
->firstblock
, args
->flist
,
812 * ENOSPC actually can happen if we're in a removename with
813 * no space reservation, and the resulting block removal
814 * would cause a bmap btree split or conversion from extents
815 * to btree. This can only happen for un-fragmented
816 * directory blocks, since you need to be punching out
817 * the middle of an extent.
818 * In this case we need to leave the block in the file,
820 * So the block has to be in a consistent empty state
821 * and appropriately logged.
822 * We don't free up the buffer, the caller can tell it
823 * hasn't happened since it got an error back.
829 * Invalidate the buffer from the transaction.
831 xfs_da_binval(tp
, bp
);
833 * If it's not a data block, we're done.
835 if (db
>= XFS_DIR2_LEAF_FIRSTDB(mp
))
838 * If the block isn't the last one in the directory, we're done.
840 if (dp
->i_d
.di_size
> XFS_DIR2_DB_OFF_TO_BYTE(mp
, db
+ 1, 0))
843 if ((error
= xfs_bmap_last_before(tp
, dp
, &bno
, XFS_DATA_FORK
))) {
845 * This can't really happen unless there's kernel corruption.
849 if (db
== mp
->m_dirdatablk
)
854 * Set the size to the new last block.
856 dp
->i_d
.di_size
= XFS_FSB_TO_B(mp
, bno
);
857 xfs_trans_log_inode(tp
, dp
, XFS_ILOG_CORE
);