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"
26 #include "xfs_mount.h"
27 #include "xfs_da_format.h"
28 #include "xfs_da_btree.h"
29 #include "xfs_inode.h"
30 #include "xfs_trans.h"
31 #include "xfs_inode_item.h"
34 #include "xfs_dir2_priv.h"
35 #include "xfs_error.h"
36 #include "xfs_trace.h"
37 #include "xfs_dinode.h"
39 struct xfs_name xfs_name_dotdot
= { (unsigned char *)"..", 2, XFS_DIR3_FT_DIR
};
43 * ASCII case-insensitive (ie. A-Z) support for directories that was
47 xfs_ascii_ci_hashname(
48 struct xfs_name
*name
)
53 for (i
= 0, hash
= 0; i
< name
->len
; i
++)
54 hash
= tolower(name
->name
[i
]) ^ rol32(hash
, 7);
60 xfs_ascii_ci_compname(
61 struct xfs_da_args
*args
,
62 const unsigned char *name
,
65 enum xfs_dacmp result
;
68 if (args
->namelen
!= len
)
69 return XFS_CMP_DIFFERENT
;
71 result
= XFS_CMP_EXACT
;
72 for (i
= 0; i
< len
; i
++) {
73 if (args
->name
[i
] == name
[i
])
75 if (tolower(args
->name
[i
]) != tolower(name
[i
]))
76 return XFS_CMP_DIFFERENT
;
77 result
= XFS_CMP_CASE
;
83 static struct xfs_nameops xfs_ascii_ci_nameops
= {
84 .hashname
= xfs_ascii_ci_hashname
,
85 .compname
= xfs_ascii_ci_compname
,
95 ASSERT(xfs_sb_version_hasdirv2(&mp
->m_sb
));
96 ASSERT((1 << (mp
->m_sb
.sb_blocklog
+ mp
->m_sb
.sb_dirblklog
)) <=
99 mp
->m_dir_inode_ops
= xfs_dir_get_ops(mp
, NULL
);
100 mp
->m_nondir_inode_ops
= xfs_nondir_get_ops(mp
, NULL
);
102 mp
->m_dirblksize
= 1 << (mp
->m_sb
.sb_blocklog
+ mp
->m_sb
.sb_dirblklog
);
103 mp
->m_dirblkfsbs
= 1 << mp
->m_sb
.sb_dirblklog
;
104 mp
->m_dirdatablk
= xfs_dir2_db_to_da(mp
, XFS_DIR2_DATA_FIRSTDB(mp
));
105 mp
->m_dirleafblk
= xfs_dir2_db_to_da(mp
, XFS_DIR2_LEAF_FIRSTDB(mp
));
106 mp
->m_dirfreeblk
= xfs_dir2_db_to_da(mp
, XFS_DIR2_FREE_FIRSTDB(mp
));
108 nodehdr_size
= mp
->m_dir_inode_ops
->node_hdr_size
;
109 mp
->m_attr_node_ents
= (mp
->m_sb
.sb_blocksize
- nodehdr_size
) /
110 (uint
)sizeof(xfs_da_node_entry_t
);
111 mp
->m_dir_node_ents
= (mp
->m_dirblksize
- nodehdr_size
) /
112 (uint
)sizeof(xfs_da_node_entry_t
);
114 mp
->m_dir_magicpct
= (mp
->m_dirblksize
* 37) / 100;
115 if (xfs_sb_version_hasasciici(&mp
->m_sb
))
116 mp
->m_dirnameops
= &xfs_ascii_ci_nameops
;
118 mp
->m_dirnameops
= &xfs_default_nameops
;
123 * Return 1 if directory contains only "." and "..".
129 xfs_dir2_sf_hdr_t
*sfp
;
131 ASSERT(S_ISDIR(dp
->i_d
.di_mode
));
132 if (dp
->i_d
.di_size
== 0) /* might happen during shutdown. */
134 if (dp
->i_d
.di_size
> XFS_IFORK_DSIZE(dp
))
136 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
141 * Validate a given inode number.
144 xfs_dir_ino_validate(
148 xfs_agblock_t agblkno
;
154 agno
= XFS_INO_TO_AGNO(mp
, ino
);
155 agblkno
= XFS_INO_TO_AGBNO(mp
, ino
);
156 ioff
= XFS_INO_TO_OFFSET(mp
, ino
);
157 agino
= XFS_OFFBNO_TO_AGINO(mp
, agblkno
, ioff
);
159 agno
< mp
->m_sb
.sb_agcount
&&
160 agblkno
< mp
->m_sb
.sb_agblocks
&&
162 ioff
< (1 << mp
->m_sb
.sb_inopblog
) &&
163 XFS_AGINO_TO_INO(mp
, agno
, agino
) == ino
;
164 if (unlikely(XFS_TEST_ERROR(!ino_ok
, mp
, XFS_ERRTAG_DIR_INO_VALIDATE
,
165 XFS_RANDOM_DIR_INO_VALIDATE
))) {
166 xfs_warn(mp
, "Invalid inode number 0x%Lx",
167 (unsigned long long) ino
);
168 XFS_ERROR_REPORT("xfs_dir_ino_validate", XFS_ERRLEVEL_LOW
, mp
);
169 return XFS_ERROR(EFSCORRUPTED
);
175 * Initialize a directory with its "." and ".." entries.
186 memset((char *)&args
, 0, sizeof(args
));
189 ASSERT(S_ISDIR(dp
->i_d
.di_mode
));
190 if ((error
= xfs_dir_ino_validate(tp
->t_mountp
, pdp
->i_ino
)))
192 return xfs_dir2_sf_create(&args
, pdp
->i_ino
);
196 Enter a name in a directory.
202 struct xfs_name
*name
,
203 xfs_ino_t inum
, /* new entry inode number */
204 xfs_fsblock_t
*first
, /* bmap's firstblock */
205 xfs_bmap_free_t
*flist
, /* bmap's freeblock list */
206 xfs_extlen_t total
) /* bmap's total block count */
210 int v
; /* type-checking value */
212 ASSERT(S_ISDIR(dp
->i_d
.di_mode
));
213 if ((rval
= xfs_dir_ino_validate(tp
->t_mountp
, inum
)))
215 XFS_STATS_INC(xs_dir_create
);
217 memset(&args
, 0, sizeof(xfs_da_args_t
));
218 args
.name
= name
->name
;
219 args
.namelen
= name
->len
;
220 args
.filetype
= name
->type
;
221 args
.hashval
= dp
->i_mount
->m_dirnameops
->hashname(name
);
224 args
.firstblock
= first
;
227 args
.whichfork
= XFS_DATA_FORK
;
229 args
.op_flags
= XFS_DA_OP_ADDNAME
| XFS_DA_OP_OKNOENT
;
231 if (dp
->i_d
.di_format
== XFS_DINODE_FMT_LOCAL
)
232 rval
= xfs_dir2_sf_addname(&args
);
233 else if ((rval
= xfs_dir2_isblock(tp
, dp
, &v
)))
236 rval
= xfs_dir2_block_addname(&args
);
237 else if ((rval
= xfs_dir2_isleaf(tp
, dp
, &v
)))
240 rval
= xfs_dir2_leaf_addname(&args
);
242 rval
= xfs_dir2_node_addname(&args
);
247 * If doing a CI lookup and case-insensitive match, dup actual name into
248 * args.value. Return EEXIST for success (ie. name found) or an error.
251 xfs_dir_cilookup_result(
252 struct xfs_da_args
*args
,
253 const unsigned char *name
,
256 if (args
->cmpresult
== XFS_CMP_DIFFERENT
)
258 if (args
->cmpresult
!= XFS_CMP_CASE
||
259 !(args
->op_flags
& XFS_DA_OP_CILOOKUP
))
262 args
->value
= kmem_alloc(len
, KM_NOFS
| KM_MAYFAIL
);
266 memcpy(args
->value
, name
, len
);
267 args
->valuelen
= len
;
272 * Lookup a name in a directory, give back the inode number.
273 * If ci_name is not NULL, returns the actual name in ci_name if it differs
274 * to name, or ci_name->name is set to NULL for an exact match.
281 struct xfs_name
*name
,
282 xfs_ino_t
*inum
, /* out: inode number */
283 struct xfs_name
*ci_name
) /* out: actual name if CI match */
287 int v
; /* type-checking value */
289 ASSERT(S_ISDIR(dp
->i_d
.di_mode
));
290 XFS_STATS_INC(xs_dir_lookup
);
292 memset(&args
, 0, sizeof(xfs_da_args_t
));
293 args
.name
= name
->name
;
294 args
.namelen
= name
->len
;
295 args
.filetype
= name
->type
;
296 args
.hashval
= dp
->i_mount
->m_dirnameops
->hashname(name
);
298 args
.whichfork
= XFS_DATA_FORK
;
300 args
.op_flags
= XFS_DA_OP_OKNOENT
;
302 args
.op_flags
|= XFS_DA_OP_CILOOKUP
;
304 if (dp
->i_d
.di_format
== XFS_DINODE_FMT_LOCAL
)
305 rval
= xfs_dir2_sf_lookup(&args
);
306 else if ((rval
= xfs_dir2_isblock(tp
, dp
, &v
)))
309 rval
= xfs_dir2_block_lookup(&args
);
310 else if ((rval
= xfs_dir2_isleaf(tp
, dp
, &v
)))
313 rval
= xfs_dir2_leaf_lookup(&args
);
315 rval
= xfs_dir2_node_lookup(&args
);
319 *inum
= args
.inumber
;
321 ci_name
->name
= args
.value
;
322 ci_name
->len
= args
.valuelen
;
329 * Remove an entry from a directory.
335 struct xfs_name
*name
,
337 xfs_fsblock_t
*first
, /* bmap's firstblock */
338 xfs_bmap_free_t
*flist
, /* bmap's freeblock list */
339 xfs_extlen_t total
) /* bmap's total block count */
343 int v
; /* type-checking value */
345 ASSERT(S_ISDIR(dp
->i_d
.di_mode
));
346 XFS_STATS_INC(xs_dir_remove
);
348 memset(&args
, 0, sizeof(xfs_da_args_t
));
349 args
.name
= name
->name
;
350 args
.namelen
= name
->len
;
351 args
.filetype
= name
->type
;
352 args
.hashval
= dp
->i_mount
->m_dirnameops
->hashname(name
);
355 args
.firstblock
= first
;
358 args
.whichfork
= XFS_DATA_FORK
;
361 if (dp
->i_d
.di_format
== XFS_DINODE_FMT_LOCAL
)
362 rval
= xfs_dir2_sf_removename(&args
);
363 else if ((rval
= xfs_dir2_isblock(tp
, dp
, &v
)))
366 rval
= xfs_dir2_block_removename(&args
);
367 else if ((rval
= xfs_dir2_isleaf(tp
, dp
, &v
)))
370 rval
= xfs_dir2_leaf_removename(&args
);
372 rval
= xfs_dir2_node_removename(&args
);
377 * Replace the inode number of a directory entry.
383 struct xfs_name
*name
, /* name of entry to replace */
384 xfs_ino_t inum
, /* new inode number */
385 xfs_fsblock_t
*first
, /* bmap's firstblock */
386 xfs_bmap_free_t
*flist
, /* bmap's freeblock list */
387 xfs_extlen_t total
) /* bmap's total block count */
391 int v
; /* type-checking value */
393 ASSERT(S_ISDIR(dp
->i_d
.di_mode
));
395 if ((rval
= xfs_dir_ino_validate(tp
->t_mountp
, inum
)))
398 memset(&args
, 0, sizeof(xfs_da_args_t
));
399 args
.name
= name
->name
;
400 args
.namelen
= name
->len
;
401 args
.filetype
= name
->type
;
402 args
.hashval
= dp
->i_mount
->m_dirnameops
->hashname(name
);
405 args
.firstblock
= first
;
408 args
.whichfork
= XFS_DATA_FORK
;
411 if (dp
->i_d
.di_format
== XFS_DINODE_FMT_LOCAL
)
412 rval
= xfs_dir2_sf_replace(&args
);
413 else if ((rval
= xfs_dir2_isblock(tp
, dp
, &v
)))
416 rval
= xfs_dir2_block_replace(&args
);
417 else if ((rval
= xfs_dir2_isleaf(tp
, dp
, &v
)))
420 rval
= xfs_dir2_leaf_replace(&args
);
422 rval
= xfs_dir2_node_replace(&args
);
427 * See if this entry can be added to the directory without allocating space.
428 * First checks that the caller couldn't reserve enough space (resblks = 0).
434 struct xfs_name
*name
, /* name of entry to add */
439 int v
; /* type-checking value */
444 ASSERT(S_ISDIR(dp
->i_d
.di_mode
));
446 memset(&args
, 0, sizeof(xfs_da_args_t
));
447 args
.name
= name
->name
;
448 args
.namelen
= name
->len
;
449 args
.filetype
= name
->type
;
450 args
.hashval
= dp
->i_mount
->m_dirnameops
->hashname(name
);
452 args
.whichfork
= XFS_DATA_FORK
;
454 args
.op_flags
= XFS_DA_OP_JUSTCHECK
| XFS_DA_OP_ADDNAME
|
457 if (dp
->i_d
.di_format
== XFS_DINODE_FMT_LOCAL
)
458 rval
= xfs_dir2_sf_addname(&args
);
459 else if ((rval
= xfs_dir2_isblock(tp
, dp
, &v
)))
462 rval
= xfs_dir2_block_addname(&args
);
463 else if ((rval
= xfs_dir2_isleaf(tp
, dp
, &v
)))
466 rval
= xfs_dir2_leaf_addname(&args
);
468 rval
= xfs_dir2_node_addname(&args
);
477 * Add a block to the directory.
479 * This routine is for data and free blocks, not leaf/node blocks which are
480 * handled by xfs_da_grow_inode.
484 struct xfs_da_args
*args
,
485 int space
, /* v2 dir's space XFS_DIR2_xxx_SPACE */
486 xfs_dir2_db_t
*dbp
) /* out: block number added */
488 struct xfs_inode
*dp
= args
->dp
;
489 struct xfs_mount
*mp
= dp
->i_mount
;
490 xfs_fileoff_t bno
; /* directory offset of new block */
491 int count
; /* count of filesystem blocks */
494 trace_xfs_dir2_grow_inode(args
, space
);
497 * Set lowest possible block in the space requested.
499 bno
= XFS_B_TO_FSBT(mp
, space
* XFS_DIR2_SPACE_SIZE
);
500 count
= mp
->m_dirblkfsbs
;
502 error
= xfs_da_grow_inode_int(args
, &bno
, count
);
506 *dbp
= xfs_dir2_da_to_db(mp
, (xfs_dablk_t
)bno
);
509 * Update file's size if this is the data space and it grew.
511 if (space
== XFS_DIR2_DATA_SPACE
) {
512 xfs_fsize_t size
; /* directory file (data) size */
514 size
= XFS_FSB_TO_B(mp
, bno
+ count
);
515 if (size
> dp
->i_d
.di_size
) {
516 dp
->i_d
.di_size
= size
;
517 xfs_trans_log_inode(args
->trans
, dp
, XFS_ILOG_CORE
);
524 * See if the directory is a single-block form directory.
530 int *vp
) /* out: 1 is block, 0 is not block */
532 xfs_fileoff_t last
; /* last file offset */
537 if ((rval
= xfs_bmap_last_offset(tp
, dp
, &last
, XFS_DATA_FORK
)))
539 rval
= XFS_FSB_TO_B(mp
, last
) == mp
->m_dirblksize
;
540 ASSERT(rval
== 0 || dp
->i_d
.di_size
== mp
->m_dirblksize
);
546 * See if the directory is a single-leaf form directory.
552 int *vp
) /* out: 1 is leaf, 0 is not leaf */
554 xfs_fileoff_t last
; /* last file offset */
559 if ((rval
= xfs_bmap_last_offset(tp
, dp
, &last
, XFS_DATA_FORK
)))
561 *vp
= last
== mp
->m_dirleafblk
+ (1 << mp
->m_sb
.sb_dirblklog
);
566 * Remove the given block from the directory.
567 * This routine is used for data and free blocks, leaf/node are done
568 * by xfs_da_shrink_inode.
571 xfs_dir2_shrink_inode(
576 xfs_fileoff_t bno
; /* directory file offset */
577 xfs_dablk_t da
; /* directory file offset */
578 int done
; /* bunmap is finished */
584 trace_xfs_dir2_shrink_inode(args
, db
);
589 da
= xfs_dir2_db_to_da(mp
, db
);
591 * Unmap the fsblock(s).
593 if ((error
= xfs_bunmapi(tp
, dp
, da
, mp
->m_dirblkfsbs
,
594 XFS_BMAPI_METADATA
, 0, args
->firstblock
, args
->flist
,
597 * ENOSPC actually can happen if we're in a removename with
598 * no space reservation, and the resulting block removal
599 * would cause a bmap btree split or conversion from extents
600 * to btree. This can only happen for un-fragmented
601 * directory blocks, since you need to be punching out
602 * the middle of an extent.
603 * In this case we need to leave the block in the file,
605 * So the block has to be in a consistent empty state
606 * and appropriately logged.
607 * We don't free up the buffer, the caller can tell it
608 * hasn't happened since it got an error back.
614 * Invalidate the buffer from the transaction.
616 xfs_trans_binval(tp
, bp
);
618 * If it's not a data block, we're done.
620 if (db
>= XFS_DIR2_LEAF_FIRSTDB(mp
))
623 * If the block isn't the last one in the directory, we're done.
625 if (dp
->i_d
.di_size
> xfs_dir2_db_off_to_byte(mp
, db
+ 1, 0))
628 if ((error
= xfs_bmap_last_before(tp
, dp
, &bno
, XFS_DATA_FORK
))) {
630 * This can't really happen unless there's kernel corruption.
634 if (db
== mp
->m_dirdatablk
)
639 * Set the size to the new last block.
641 dp
->i_d
.di_size
= XFS_FSB_TO_B(mp
, bno
);
642 xfs_trans_log_inode(tp
, dp
, XFS_ILOG_CORE
);