2 * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc.
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.
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.
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
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"
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"
38 struct xfs_name xfs_name_dotdot
= { (unsigned char *)"..", 2, XFS_DIR3_FT_DIR
};
41 * Convert inode mode to directory entry filetype
47 switch (mode
& S_IFMT
) {
49 return XFS_DIR3_FT_REG_FILE
;
51 return XFS_DIR3_FT_DIR
;
53 return XFS_DIR3_FT_CHRDEV
;
55 return XFS_DIR3_FT_BLKDEV
;
57 return XFS_DIR3_FT_FIFO
;
59 return XFS_DIR3_FT_SOCK
;
61 return XFS_DIR3_FT_SYMLINK
;
63 return XFS_DIR3_FT_UNKNOWN
;
68 * ASCII case-insensitive (ie. A-Z) support for directories that was
72 xfs_ascii_ci_hashname(
73 struct xfs_name
*name
)
78 for (i
= 0, hash
= 0; i
< name
->len
; i
++)
79 hash
= tolower(name
->name
[i
]) ^ rol32(hash
, 7);
85 xfs_ascii_ci_compname(
86 struct xfs_da_args
*args
,
87 const unsigned char *name
,
90 enum xfs_dacmp result
;
93 if (args
->namelen
!= len
)
94 return XFS_CMP_DIFFERENT
;
96 result
= XFS_CMP_EXACT
;
97 for (i
= 0; i
< len
; i
++) {
98 if (args
->name
[i
] == name
[i
])
100 if (tolower(args
->name
[i
]) != tolower(name
[i
]))
101 return XFS_CMP_DIFFERENT
;
102 result
= XFS_CMP_CASE
;
108 static const struct xfs_nameops xfs_ascii_ci_nameops
= {
109 .hashname
= xfs_ascii_ci_hashname
,
110 .compname
= xfs_ascii_ci_compname
,
115 struct xfs_mount
*mp
)
117 struct xfs_da_geometry
*dageo
;
121 ASSERT(mp
->m_sb
.sb_versionnum
& XFS_SB_VERSION_DIRV2BIT
);
122 ASSERT(xfs_dir2_dirblock_bytes(&mp
->m_sb
) <= XFS_MAX_BLOCKSIZE
);
124 mp
->m_dir_inode_ops
= xfs_dir_get_ops(mp
, NULL
);
125 mp
->m_nondir_inode_ops
= xfs_nondir_get_ops(mp
, NULL
);
127 nodehdr_size
= mp
->m_dir_inode_ops
->node_hdr_size
;
128 mp
->m_dir_geo
= kmem_zalloc(sizeof(struct xfs_da_geometry
),
129 KM_SLEEP
| KM_MAYFAIL
);
130 mp
->m_attr_geo
= kmem_zalloc(sizeof(struct xfs_da_geometry
),
131 KM_SLEEP
| KM_MAYFAIL
);
132 if (!mp
->m_dir_geo
|| !mp
->m_attr_geo
) {
133 kmem_free(mp
->m_dir_geo
);
134 kmem_free(mp
->m_attr_geo
);
138 /* set up directory geometry */
139 dageo
= mp
->m_dir_geo
;
140 dageo
->blklog
= mp
->m_sb
.sb_blocklog
+ mp
->m_sb
.sb_dirblklog
;
141 dageo
->fsblog
= mp
->m_sb
.sb_blocklog
;
142 dageo
->blksize
= xfs_dir2_dirblock_bytes(&mp
->m_sb
);
143 dageo
->fsbcount
= 1 << mp
->m_sb
.sb_dirblklog
;
146 * Now we've set up the block conversion variables, we can calculate the
147 * segment block constants using the geometry structure.
149 dageo
->datablk
= xfs_dir2_byte_to_da(dageo
, XFS_DIR2_DATA_OFFSET
);
150 dageo
->leafblk
= xfs_dir2_byte_to_da(dageo
, XFS_DIR2_LEAF_OFFSET
);
151 dageo
->freeblk
= xfs_dir2_byte_to_da(dageo
, XFS_DIR2_FREE_OFFSET
);
152 dageo
->node_ents
= (dageo
->blksize
- nodehdr_size
) /
153 (uint
)sizeof(xfs_da_node_entry_t
);
154 dageo
->magicpct
= (dageo
->blksize
* 37) / 100;
156 /* set up attribute geometry - single fsb only */
157 dageo
= mp
->m_attr_geo
;
158 dageo
->blklog
= mp
->m_sb
.sb_blocklog
;
159 dageo
->fsblog
= mp
->m_sb
.sb_blocklog
;
160 dageo
->blksize
= 1 << dageo
->blklog
;
162 dageo
->node_ents
= (dageo
->blksize
- nodehdr_size
) /
163 (uint
)sizeof(xfs_da_node_entry_t
);
164 dageo
->magicpct
= (dageo
->blksize
* 37) / 100;
166 if (xfs_sb_version_hasasciici(&mp
->m_sb
))
167 mp
->m_dirnameops
= &xfs_ascii_ci_nameops
;
169 mp
->m_dirnameops
= &xfs_default_nameops
;
176 struct xfs_mount
*mp
)
178 kmem_free(mp
->m_dir_geo
);
179 kmem_free(mp
->m_attr_geo
);
183 * Return 1 if directory contains only "." and "..".
189 xfs_dir2_sf_hdr_t
*sfp
;
191 ASSERT(S_ISDIR(VFS_I(dp
)->i_mode
));
192 if (dp
->i_d
.di_size
== 0) /* might happen during shutdown. */
194 if (dp
->i_d
.di_size
> XFS_IFORK_DSIZE(dp
))
196 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
201 * Validate a given inode number.
204 xfs_dir_ino_validate(
208 bool ino_ok
= xfs_verify_dir_ino(mp
, ino
);
210 if (unlikely(XFS_TEST_ERROR(!ino_ok
, mp
, XFS_ERRTAG_DIR_INO_VALIDATE
))) {
211 xfs_warn(mp
, "Invalid inode number 0x%Lx",
212 (unsigned long long) ino
);
213 XFS_ERROR_REPORT("xfs_dir_ino_validate", XFS_ERRLEVEL_LOW
, mp
);
214 return -EFSCORRUPTED
;
220 * Initialize a directory with its "." and ".." entries.
228 struct xfs_da_args
*args
;
231 ASSERT(S_ISDIR(VFS_I(dp
)->i_mode
));
232 error
= xfs_dir_ino_validate(tp
->t_mountp
, pdp
->i_ino
);
236 args
= kmem_zalloc(sizeof(*args
), KM_SLEEP
| KM_NOFS
);
240 args
->geo
= dp
->i_mount
->m_dir_geo
;
243 error
= xfs_dir2_sf_create(args
, pdp
->i_ino
);
249 * Enter a name in a directory, or check for available space.
250 * If inum is 0, only the available space test is performed.
256 struct xfs_name
*name
,
257 xfs_ino_t inum
, /* new entry inode number */
258 xfs_fsblock_t
*first
, /* bmap's firstblock */
259 struct xfs_defer_ops
*dfops
, /* bmap's freeblock list */
260 xfs_extlen_t total
) /* bmap's total block count */
262 struct xfs_da_args
*args
;
264 int v
; /* type-checking value */
266 ASSERT(S_ISDIR(VFS_I(dp
)->i_mode
));
268 rval
= xfs_dir_ino_validate(tp
->t_mountp
, inum
);
271 XFS_STATS_INC(dp
->i_mount
, xs_dir_create
);
274 args
= kmem_zalloc(sizeof(*args
), KM_SLEEP
| KM_NOFS
);
278 args
->geo
= dp
->i_mount
->m_dir_geo
;
279 args
->name
= name
->name
;
280 args
->namelen
= name
->len
;
281 args
->filetype
= name
->type
;
282 args
->hashval
= dp
->i_mount
->m_dirnameops
->hashname(name
);
283 args
->inumber
= inum
;
285 args
->firstblock
= first
;
288 args
->whichfork
= XFS_DATA_FORK
;
290 args
->op_flags
= XFS_DA_OP_ADDNAME
| XFS_DA_OP_OKNOENT
;
292 args
->op_flags
|= XFS_DA_OP_JUSTCHECK
;
294 if (dp
->i_d
.di_format
== XFS_DINODE_FMT_LOCAL
) {
295 rval
= xfs_dir2_sf_addname(args
);
299 rval
= xfs_dir2_isblock(args
, &v
);
303 rval
= xfs_dir2_block_addname(args
);
307 rval
= xfs_dir2_isleaf(args
, &v
);
311 rval
= xfs_dir2_leaf_addname(args
);
313 rval
= xfs_dir2_node_addname(args
);
321 * If doing a CI lookup and case-insensitive match, dup actual name into
322 * args.value. Return EEXIST for success (ie. name found) or an error.
325 xfs_dir_cilookup_result(
326 struct xfs_da_args
*args
,
327 const unsigned char *name
,
330 if (args
->cmpresult
== XFS_CMP_DIFFERENT
)
332 if (args
->cmpresult
!= XFS_CMP_CASE
||
333 !(args
->op_flags
& XFS_DA_OP_CILOOKUP
))
336 args
->value
= kmem_alloc(len
, KM_NOFS
| KM_MAYFAIL
);
340 memcpy(args
->value
, name
, len
);
341 args
->valuelen
= len
;
346 * Lookup a name in a directory, give back the inode number.
347 * If ci_name is not NULL, returns the actual name in ci_name if it differs
348 * to name, or ci_name->name is set to NULL for an exact match.
355 struct xfs_name
*name
,
356 xfs_ino_t
*inum
, /* out: inode number */
357 struct xfs_name
*ci_name
) /* out: actual name if CI match */
359 struct xfs_da_args
*args
;
361 int v
; /* type-checking value */
364 ASSERT(S_ISDIR(VFS_I(dp
)->i_mode
));
365 XFS_STATS_INC(dp
->i_mount
, xs_dir_lookup
);
368 * We need to use KM_NOFS here so that lockdep will not throw false
369 * positive deadlock warnings on a non-transactional lookup path. It is
370 * safe to recurse into inode recalim in that case, but lockdep can't
371 * easily be taught about it. Hence KM_NOFS avoids having to add more
372 * lockdep Doing this avoids having to add a bunch of lockdep class
373 * annotations into the reclaim path for the ilock.
375 args
= kmem_zalloc(sizeof(*args
), KM_SLEEP
| KM_NOFS
);
376 args
->geo
= dp
->i_mount
->m_dir_geo
;
377 args
->name
= name
->name
;
378 args
->namelen
= name
->len
;
379 args
->filetype
= name
->type
;
380 args
->hashval
= dp
->i_mount
->m_dirnameops
->hashname(name
);
382 args
->whichfork
= XFS_DATA_FORK
;
384 args
->op_flags
= XFS_DA_OP_OKNOENT
;
386 args
->op_flags
|= XFS_DA_OP_CILOOKUP
;
388 lock_mode
= xfs_ilock_data_map_shared(dp
);
389 if (dp
->i_d
.di_format
== XFS_DINODE_FMT_LOCAL
) {
390 rval
= xfs_dir2_sf_lookup(args
);
394 rval
= xfs_dir2_isblock(args
, &v
);
398 rval
= xfs_dir2_block_lookup(args
);
402 rval
= xfs_dir2_isleaf(args
, &v
);
406 rval
= xfs_dir2_leaf_lookup(args
);
408 rval
= xfs_dir2_node_lookup(args
);
414 *inum
= args
->inumber
;
416 ci_name
->name
= args
->value
;
417 ci_name
->len
= args
->valuelen
;
421 xfs_iunlock(dp
, lock_mode
);
427 * Remove an entry from a directory.
433 struct xfs_name
*name
,
435 xfs_fsblock_t
*first
, /* bmap's firstblock */
436 struct xfs_defer_ops
*dfops
, /* bmap's freeblock list */
437 xfs_extlen_t total
) /* bmap's total block count */
439 struct xfs_da_args
*args
;
441 int v
; /* type-checking value */
443 ASSERT(S_ISDIR(VFS_I(dp
)->i_mode
));
444 XFS_STATS_INC(dp
->i_mount
, xs_dir_remove
);
446 args
= kmem_zalloc(sizeof(*args
), KM_SLEEP
| KM_NOFS
);
450 args
->geo
= dp
->i_mount
->m_dir_geo
;
451 args
->name
= name
->name
;
452 args
->namelen
= name
->len
;
453 args
->filetype
= name
->type
;
454 args
->hashval
= dp
->i_mount
->m_dirnameops
->hashname(name
);
457 args
->firstblock
= first
;
460 args
->whichfork
= XFS_DATA_FORK
;
463 if (dp
->i_d
.di_format
== XFS_DINODE_FMT_LOCAL
) {
464 rval
= xfs_dir2_sf_removename(args
);
468 rval
= xfs_dir2_isblock(args
, &v
);
472 rval
= xfs_dir2_block_removename(args
);
476 rval
= xfs_dir2_isleaf(args
, &v
);
480 rval
= xfs_dir2_leaf_removename(args
);
482 rval
= xfs_dir2_node_removename(args
);
489 * Replace the inode number of a directory entry.
495 struct xfs_name
*name
, /* name of entry to replace */
496 xfs_ino_t inum
, /* new inode number */
497 xfs_fsblock_t
*first
, /* bmap's firstblock */
498 struct xfs_defer_ops
*dfops
, /* bmap's freeblock list */
499 xfs_extlen_t total
) /* bmap's total block count */
501 struct xfs_da_args
*args
;
503 int v
; /* type-checking value */
505 ASSERT(S_ISDIR(VFS_I(dp
)->i_mode
));
507 rval
= xfs_dir_ino_validate(tp
->t_mountp
, inum
);
511 args
= kmem_zalloc(sizeof(*args
), KM_SLEEP
| KM_NOFS
);
515 args
->geo
= dp
->i_mount
->m_dir_geo
;
516 args
->name
= name
->name
;
517 args
->namelen
= name
->len
;
518 args
->filetype
= name
->type
;
519 args
->hashval
= dp
->i_mount
->m_dirnameops
->hashname(name
);
520 args
->inumber
= inum
;
522 args
->firstblock
= first
;
525 args
->whichfork
= XFS_DATA_FORK
;
528 if (dp
->i_d
.di_format
== XFS_DINODE_FMT_LOCAL
) {
529 rval
= xfs_dir2_sf_replace(args
);
533 rval
= xfs_dir2_isblock(args
, &v
);
537 rval
= xfs_dir2_block_replace(args
);
541 rval
= xfs_dir2_isleaf(args
, &v
);
545 rval
= xfs_dir2_leaf_replace(args
);
547 rval
= xfs_dir2_node_replace(args
);
554 * See if this entry can be added to the directory without allocating space.
560 struct xfs_name
*name
) /* name of entry to add */
562 return xfs_dir_createname(tp
, dp
, name
, 0, NULL
, NULL
, 0);
570 * Add a block to the directory.
572 * This routine is for data and free blocks, not leaf/node blocks which are
573 * handled by xfs_da_grow_inode.
577 struct xfs_da_args
*args
,
578 int space
, /* v2 dir's space XFS_DIR2_xxx_SPACE */
579 xfs_dir2_db_t
*dbp
) /* out: block number added */
581 struct xfs_inode
*dp
= args
->dp
;
582 struct xfs_mount
*mp
= dp
->i_mount
;
583 xfs_fileoff_t bno
; /* directory offset of new block */
584 int count
; /* count of filesystem blocks */
587 trace_xfs_dir2_grow_inode(args
, space
);
590 * Set lowest possible block in the space requested.
592 bno
= XFS_B_TO_FSBT(mp
, space
* XFS_DIR2_SPACE_SIZE
);
593 count
= args
->geo
->fsbcount
;
595 error
= xfs_da_grow_inode_int(args
, &bno
, count
);
599 *dbp
= xfs_dir2_da_to_db(args
->geo
, (xfs_dablk_t
)bno
);
602 * Update file's size if this is the data space and it grew.
604 if (space
== XFS_DIR2_DATA_SPACE
) {
605 xfs_fsize_t size
; /* directory file (data) size */
607 size
= XFS_FSB_TO_B(mp
, bno
+ count
);
608 if (size
> dp
->i_d
.di_size
) {
609 dp
->i_d
.di_size
= size
;
610 xfs_trans_log_inode(args
->trans
, dp
, XFS_ILOG_CORE
);
617 * See if the directory is a single-block form directory.
621 struct xfs_da_args
*args
,
622 int *vp
) /* out: 1 is block, 0 is not block */
624 xfs_fileoff_t last
; /* last file offset */
627 if ((rval
= xfs_bmap_last_offset(args
->dp
, &last
, XFS_DATA_FORK
)))
629 rval
= XFS_FSB_TO_B(args
->dp
->i_mount
, last
) == args
->geo
->blksize
;
630 if (rval
!= 0 && args
->dp
->i_d
.di_size
!= args
->geo
->blksize
)
631 return -EFSCORRUPTED
;
637 * See if the directory is a single-leaf form directory.
641 struct xfs_da_args
*args
,
642 int *vp
) /* out: 1 is block, 0 is not block */
644 xfs_fileoff_t last
; /* last file offset */
647 if ((rval
= xfs_bmap_last_offset(args
->dp
, &last
, XFS_DATA_FORK
)))
649 *vp
= last
== args
->geo
->leafblk
+ args
->geo
->fsbcount
;
654 * Remove the given block from the directory.
655 * This routine is used for data and free blocks, leaf/node are done
656 * by xfs_da_shrink_inode.
659 xfs_dir2_shrink_inode(
664 xfs_fileoff_t bno
; /* directory file offset */
665 xfs_dablk_t da
; /* directory file offset */
666 int done
; /* bunmap is finished */
672 trace_xfs_dir2_shrink_inode(args
, db
);
677 da
= xfs_dir2_db_to_da(args
->geo
, db
);
679 /* Unmap the fsblock(s). */
680 error
= xfs_bunmapi(tp
, dp
, da
, args
->geo
->fsbcount
, 0, 0,
681 args
->firstblock
, args
->dfops
, &done
);
684 * ENOSPC actually can happen if we're in a removename with no
685 * space reservation, and the resulting block removal would
686 * cause a bmap btree split or conversion from extents to btree.
687 * This can only happen for un-fragmented directory blocks,
688 * since you need to be punching out the middle of an extent.
689 * In this case we need to leave the block in the file, and not
690 * binval it. So the block has to be in a consistent empty
691 * state and appropriately logged. We don't free up the buffer,
692 * the caller can tell it hasn't happened since it got an error
699 * Invalidate the buffer from the transaction.
701 xfs_trans_binval(tp
, bp
);
703 * If it's not a data block, we're done.
705 if (db
>= xfs_dir2_byte_to_db(args
->geo
, XFS_DIR2_LEAF_OFFSET
))
708 * If the block isn't the last one in the directory, we're done.
710 if (dp
->i_d
.di_size
> xfs_dir2_db_off_to_byte(args
->geo
, db
+ 1, 0))
713 if ((error
= xfs_bmap_last_before(tp
, dp
, &bno
, XFS_DATA_FORK
))) {
715 * This can't really happen unless there's kernel corruption.
719 if (db
== args
->geo
->datablk
)
724 * Set the size to the new last block.
726 dp
->i_d
.di_size
= XFS_FSB_TO_B(mp
, bno
);
727 xfs_trans_log_inode(tp
, dp
, XFS_ILOG_CORE
);