2 * Copyright (c) 2000-2003,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_types.h"
23 #include "xfs_trans.h"
27 #include "xfs_mount.h"
28 #include "xfs_da_btree.h"
29 #include "xfs_bmap_btree.h"
30 #include "xfs_dir2_sf.h"
31 #include "xfs_dinode.h"
32 #include "xfs_inode.h"
33 #include "xfs_inode_item.h"
34 #include "xfs_error.h"
35 #include "xfs_dir2_data.h"
36 #include "xfs_dir2_leaf.h"
37 #include "xfs_dir2_block.h"
38 #include "xfs_trace.h"
41 * Prototypes for internal functions.
43 static void xfs_dir2_sf_addname_easy(xfs_da_args_t
*args
,
44 xfs_dir2_sf_entry_t
*sfep
,
45 xfs_dir2_data_aoff_t offset
,
47 static void xfs_dir2_sf_addname_hard(xfs_da_args_t
*args
, int objchange
,
49 static int xfs_dir2_sf_addname_pick(xfs_da_args_t
*args
, int objchange
,
50 xfs_dir2_sf_entry_t
**sfepp
,
51 xfs_dir2_data_aoff_t
*offsetp
);
53 static void xfs_dir2_sf_check(xfs_da_args_t
*args
);
55 #define xfs_dir2_sf_check(args)
58 static void xfs_dir2_sf_toino4(xfs_da_args_t
*args
);
59 static void xfs_dir2_sf_toino8(xfs_da_args_t
*args
);
60 #endif /* XFS_BIG_INUMS */
63 * Given a block directory (dp/block), calculate its size as a shortform (sf)
64 * directory and a header for the sf directory, if it will fit it the
65 * space currently present in the inode. If it won't fit, the output
66 * size is too big (but not accurate).
68 int /* size for sf form */
69 xfs_dir2_block_sfsize(
70 xfs_inode_t
*dp
, /* incore inode pointer */
71 xfs_dir2_block_t
*block
, /* block directory data */
72 xfs_dir2_sf_hdr_t
*sfhp
) /* output: header for sf form */
74 xfs_dir2_dataptr_t addr
; /* data entry address */
75 xfs_dir2_leaf_entry_t
*blp
; /* leaf area of the block */
76 xfs_dir2_block_tail_t
*btp
; /* tail area of the block */
77 int count
; /* shortform entry count */
78 xfs_dir2_data_entry_t
*dep
; /* data entry in the block */
79 int i
; /* block entry index */
80 int i8count
; /* count of big-inode entries */
81 int isdot
; /* entry is "." */
82 int isdotdot
; /* entry is ".." */
83 xfs_mount_t
*mp
; /* mount structure pointer */
84 int namelen
; /* total name bytes */
85 xfs_ino_t parent
= 0; /* parent inode number */
86 int size
=0; /* total computed size */
90 count
= i8count
= namelen
= 0;
91 btp
= xfs_dir2_block_tail_p(mp
, block
);
92 blp
= xfs_dir2_block_leaf_p(btp
);
95 * Iterate over the block's data entries by using the leaf pointers.
97 for (i
= 0; i
< be32_to_cpu(btp
->count
); i
++) {
98 if ((addr
= be32_to_cpu(blp
[i
].address
)) == XFS_DIR2_NULL_DATAPTR
)
101 * Calculate the pointer to the entry at hand.
103 dep
= (xfs_dir2_data_entry_t
*)
104 ((char *)block
+ xfs_dir2_dataptr_to_off(mp
, addr
));
106 * Detect . and .., so we can special-case them.
107 * . is not included in sf directories.
108 * .. is included by just the parent inode number.
110 isdot
= dep
->namelen
== 1 && dep
->name
[0] == '.';
113 dep
->name
[0] == '.' && dep
->name
[1] == '.';
116 i8count
+= be64_to_cpu(dep
->inumber
) > XFS_DIR2_MAX_SHORT_INUM
;
118 if (!isdot
&& !isdotdot
) {
120 namelen
+= dep
->namelen
;
122 parent
= be64_to_cpu(dep
->inumber
);
124 * Calculate the new size, see if we should give up yet.
126 size
= xfs_dir2_sf_hdr_size(i8count
) + /* header */
127 count
+ /* namelen */
128 count
* (uint
)sizeof(xfs_dir2_sf_off_t
) + /* offset */
130 (i8count
? /* inumber */
131 (uint
)sizeof(xfs_dir2_ino8_t
) * count
:
132 (uint
)sizeof(xfs_dir2_ino4_t
) * count
);
133 if (size
> XFS_IFORK_DSIZE(dp
))
134 return size
; /* size value is a failure */
137 * Create the output header, if it worked.
140 sfhp
->i8count
= i8count
;
141 xfs_dir2_sf_put_inumber((xfs_dir2_sf_t
*)sfhp
, &parent
, &sfhp
->parent
);
146 * Convert a block format directory to shortform.
147 * Caller has already checked that it will fit, and built us a header.
150 xfs_dir2_block_to_sf(
151 xfs_da_args_t
*args
, /* operation arguments */
152 xfs_dabuf_t
*bp
, /* block buffer */
153 int size
, /* shortform directory size */
154 xfs_dir2_sf_hdr_t
*sfhp
) /* shortform directory hdr */
156 xfs_dir2_block_t
*block
; /* block structure */
157 xfs_dir2_block_tail_t
*btp
; /* block tail pointer */
158 xfs_dir2_data_entry_t
*dep
; /* data entry pointer */
159 xfs_inode_t
*dp
; /* incore directory inode */
160 xfs_dir2_data_unused_t
*dup
; /* unused data pointer */
161 char *endptr
; /* end of data entries */
162 int error
; /* error return value */
163 int logflags
; /* inode logging flags */
164 xfs_mount_t
*mp
; /* filesystem mount point */
165 char *ptr
; /* current data pointer */
166 xfs_dir2_sf_entry_t
*sfep
; /* shortform entry */
167 xfs_dir2_sf_t
*sfp
; /* shortform structure */
170 trace_xfs_dir2_block_to_sf(args
);
176 * Make a copy of the block data, so we can shrink the inode
177 * and add local data.
179 block
= kmem_alloc(mp
->m_dirblksize
, KM_SLEEP
);
180 memcpy(block
, bp
->data
, mp
->m_dirblksize
);
181 logflags
= XFS_ILOG_CORE
;
182 if ((error
= xfs_dir2_shrink_inode(args
, mp
->m_dirdatablk
, bp
))) {
183 ASSERT(error
!= ENOSPC
);
187 * The buffer is now unconditionally gone, whether
188 * xfs_dir2_shrink_inode worked or not.
190 * Convert the inode to local format.
192 dp
->i_df
.if_flags
&= ~XFS_IFEXTENTS
;
193 dp
->i_df
.if_flags
|= XFS_IFINLINE
;
194 dp
->i_d
.di_format
= XFS_DINODE_FMT_LOCAL
;
195 ASSERT(dp
->i_df
.if_bytes
== 0);
196 xfs_idata_realloc(dp
, size
, XFS_DATA_FORK
);
197 logflags
|= XFS_ILOG_DDATA
;
199 * Copy the header into the newly allocate local space.
201 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
202 memcpy(sfp
, sfhp
, xfs_dir2_sf_hdr_size(sfhp
->i8count
));
203 dp
->i_d
.di_size
= size
;
205 * Set up to loop over the block's entries.
207 btp
= xfs_dir2_block_tail_p(mp
, block
);
208 ptr
= (char *)block
->u
;
209 endptr
= (char *)xfs_dir2_block_leaf_p(btp
);
210 sfep
= xfs_dir2_sf_firstentry(sfp
);
212 * Loop over the active and unused entries.
213 * Stop when we reach the leaf/tail portion of the block.
215 while (ptr
< endptr
) {
217 * If it's unused, just skip over it.
219 dup
= (xfs_dir2_data_unused_t
*)ptr
;
220 if (be16_to_cpu(dup
->freetag
) == XFS_DIR2_DATA_FREE_TAG
) {
221 ptr
+= be16_to_cpu(dup
->length
);
224 dep
= (xfs_dir2_data_entry_t
*)ptr
;
228 if (dep
->namelen
== 1 && dep
->name
[0] == '.')
229 ASSERT(be64_to_cpu(dep
->inumber
) == dp
->i_ino
);
231 * Skip .., but make sure the inode number is right.
233 else if (dep
->namelen
== 2 &&
234 dep
->name
[0] == '.' && dep
->name
[1] == '.')
235 ASSERT(be64_to_cpu(dep
->inumber
) ==
236 xfs_dir2_sf_get_inumber(sfp
, &sfp
->hdr
.parent
));
238 * Normal entry, copy it into shortform.
241 sfep
->namelen
= dep
->namelen
;
242 xfs_dir2_sf_put_offset(sfep
,
243 (xfs_dir2_data_aoff_t
)
244 ((char *)dep
- (char *)block
));
245 memcpy(sfep
->name
, dep
->name
, dep
->namelen
);
246 temp
= be64_to_cpu(dep
->inumber
);
247 xfs_dir2_sf_put_inumber(sfp
, &temp
,
248 xfs_dir2_sf_inumberp(sfep
));
249 sfep
= xfs_dir2_sf_nextentry(sfp
, sfep
);
251 ptr
+= xfs_dir2_data_entsize(dep
->namelen
);
253 ASSERT((char *)sfep
- (char *)sfp
== size
);
254 xfs_dir2_sf_check(args
);
256 xfs_trans_log_inode(args
->trans
, dp
, logflags
);
262 * Add a name to a shortform directory.
263 * There are two algorithms, "easy" and "hard" which we decide on
264 * before changing anything.
265 * Convert to block form if necessary, if the new entry won't fit.
269 xfs_da_args_t
*args
) /* operation arguments */
271 int add_entsize
; /* size of the new entry */
272 xfs_inode_t
*dp
; /* incore directory inode */
273 int error
; /* error return value */
274 int incr_isize
; /* total change in size */
275 int new_isize
; /* di_size after adding name */
276 int objchange
; /* changing to 8-byte inodes */
277 xfs_dir2_data_aoff_t offset
= 0; /* offset for new entry */
278 int old_isize
; /* di_size before adding name */
279 int pick
; /* which algorithm to use */
280 xfs_dir2_sf_t
*sfp
; /* shortform structure */
281 xfs_dir2_sf_entry_t
*sfep
= NULL
; /* shortform entry */
283 trace_xfs_dir2_sf_addname(args
);
285 ASSERT(xfs_dir2_sf_lookup(args
) == ENOENT
);
287 ASSERT(dp
->i_df
.if_flags
& XFS_IFINLINE
);
289 * Make sure the shortform value has some of its header.
291 if (dp
->i_d
.di_size
< offsetof(xfs_dir2_sf_hdr_t
, parent
)) {
292 ASSERT(XFS_FORCED_SHUTDOWN(dp
->i_mount
));
293 return XFS_ERROR(EIO
);
295 ASSERT(dp
->i_df
.if_bytes
== dp
->i_d
.di_size
);
296 ASSERT(dp
->i_df
.if_u1
.if_data
!= NULL
);
297 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
298 ASSERT(dp
->i_d
.di_size
>= xfs_dir2_sf_hdr_size(sfp
->hdr
.i8count
));
300 * Compute entry (and change in) size.
302 add_entsize
= xfs_dir2_sf_entsize_byname(sfp
, args
->namelen
);
303 incr_isize
= add_entsize
;
307 * Do we have to change to 8 byte inodes?
309 if (args
->inumber
> XFS_DIR2_MAX_SHORT_INUM
&& sfp
->hdr
.i8count
== 0) {
311 * Yes, adjust the entry size and the total size.
314 (uint
)sizeof(xfs_dir2_ino8_t
) -
315 (uint
)sizeof(xfs_dir2_ino4_t
);
317 (sfp
->hdr
.count
+ 2) *
318 ((uint
)sizeof(xfs_dir2_ino8_t
) -
319 (uint
)sizeof(xfs_dir2_ino4_t
));
323 old_isize
= (int)dp
->i_d
.di_size
;
324 new_isize
= old_isize
+ incr_isize
;
326 * Won't fit as shortform any more (due to size),
327 * or the pick routine says it won't (due to offset values).
329 if (new_isize
> XFS_IFORK_DSIZE(dp
) ||
331 xfs_dir2_sf_addname_pick(args
, objchange
, &sfep
, &offset
)) == 0) {
333 * Just checking or no space reservation, it doesn't fit.
335 if ((args
->op_flags
& XFS_DA_OP_JUSTCHECK
) || args
->total
== 0)
336 return XFS_ERROR(ENOSPC
);
338 * Convert to block form then add the name.
340 error
= xfs_dir2_sf_to_block(args
);
343 return xfs_dir2_block_addname(args
);
346 * Just checking, it fits.
348 if (args
->op_flags
& XFS_DA_OP_JUSTCHECK
)
351 * Do it the easy way - just add it at the end.
354 xfs_dir2_sf_addname_easy(args
, sfep
, offset
, new_isize
);
356 * Do it the hard way - look for a place to insert the new entry.
357 * Convert to 8 byte inode numbers first if necessary.
363 xfs_dir2_sf_toino8(args
);
365 xfs_dir2_sf_addname_hard(args
, objchange
, new_isize
);
367 xfs_trans_log_inode(args
->trans
, dp
, XFS_ILOG_CORE
| XFS_ILOG_DDATA
);
372 * Add the new entry the "easy" way.
373 * This is copying the old directory and adding the new entry at the end.
374 * Since it's sorted by "offset" we need room after the last offset
375 * that's already there, and then room to convert to a block directory.
376 * This is already checked by the pick routine.
379 xfs_dir2_sf_addname_easy(
380 xfs_da_args_t
*args
, /* operation arguments */
381 xfs_dir2_sf_entry_t
*sfep
, /* pointer to new entry */
382 xfs_dir2_data_aoff_t offset
, /* offset to use for new ent */
383 int new_isize
) /* new directory size */
385 int byteoff
; /* byte offset in sf dir */
386 xfs_inode_t
*dp
; /* incore directory inode */
387 xfs_dir2_sf_t
*sfp
; /* shortform structure */
391 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
392 byteoff
= (int)((char *)sfep
- (char *)sfp
);
394 * Grow the in-inode space.
396 xfs_idata_realloc(dp
, xfs_dir2_sf_entsize_byname(sfp
, args
->namelen
),
399 * Need to set up again due to realloc of the inode data.
401 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
402 sfep
= (xfs_dir2_sf_entry_t
*)((char *)sfp
+ byteoff
);
404 * Fill in the new entry.
406 sfep
->namelen
= args
->namelen
;
407 xfs_dir2_sf_put_offset(sfep
, offset
);
408 memcpy(sfep
->name
, args
->name
, sfep
->namelen
);
409 xfs_dir2_sf_put_inumber(sfp
, &args
->inumber
,
410 xfs_dir2_sf_inumberp(sfep
));
412 * Update the header and inode.
416 if (args
->inumber
> XFS_DIR2_MAX_SHORT_INUM
)
419 dp
->i_d
.di_size
= new_isize
;
420 xfs_dir2_sf_check(args
);
424 * Add the new entry the "hard" way.
425 * The caller has already converted to 8 byte inode numbers if necessary,
426 * in which case we need to leave the i8count at 1.
427 * Find a hole that the new entry will fit into, and copy
428 * the first part of the entries, the new entry, and the last part of
433 xfs_dir2_sf_addname_hard(
434 xfs_da_args_t
*args
, /* operation arguments */
435 int objchange
, /* changing inode number size */
436 int new_isize
) /* new directory size */
438 int add_datasize
; /* data size need for new ent */
439 char *buf
; /* buffer for old */
440 xfs_inode_t
*dp
; /* incore directory inode */
441 int eof
; /* reached end of old dir */
442 int nbytes
; /* temp for byte copies */
443 xfs_dir2_data_aoff_t new_offset
; /* next offset value */
444 xfs_dir2_data_aoff_t offset
; /* current offset value */
445 int old_isize
; /* previous di_size */
446 xfs_dir2_sf_entry_t
*oldsfep
; /* entry in original dir */
447 xfs_dir2_sf_t
*oldsfp
; /* original shortform dir */
448 xfs_dir2_sf_entry_t
*sfep
; /* entry in new dir */
449 xfs_dir2_sf_t
*sfp
; /* new shortform dir */
452 * Copy the old directory to the stack buffer.
456 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
457 old_isize
= (int)dp
->i_d
.di_size
;
458 buf
= kmem_alloc(old_isize
, KM_SLEEP
);
459 oldsfp
= (xfs_dir2_sf_t
*)buf
;
460 memcpy(oldsfp
, sfp
, old_isize
);
462 * Loop over the old directory finding the place we're going
463 * to insert the new entry.
464 * If it's going to end up at the end then oldsfep will point there.
466 for (offset
= XFS_DIR2_DATA_FIRST_OFFSET
,
467 oldsfep
= xfs_dir2_sf_firstentry(oldsfp
),
468 add_datasize
= xfs_dir2_data_entsize(args
->namelen
),
469 eof
= (char *)oldsfep
== &buf
[old_isize
];
471 offset
= new_offset
+ xfs_dir2_data_entsize(oldsfep
->namelen
),
472 oldsfep
= xfs_dir2_sf_nextentry(oldsfp
, oldsfep
),
473 eof
= (char *)oldsfep
== &buf
[old_isize
]) {
474 new_offset
= xfs_dir2_sf_get_offset(oldsfep
);
475 if (offset
+ add_datasize
<= new_offset
)
479 * Get rid of the old directory, then allocate space for
480 * the new one. We do this so xfs_idata_realloc won't copy
483 xfs_idata_realloc(dp
, -old_isize
, XFS_DATA_FORK
);
484 xfs_idata_realloc(dp
, new_isize
, XFS_DATA_FORK
);
486 * Reset the pointer since the buffer was reallocated.
488 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
490 * Copy the first part of the directory, including the header.
492 nbytes
= (int)((char *)oldsfep
- (char *)oldsfp
);
493 memcpy(sfp
, oldsfp
, nbytes
);
494 sfep
= (xfs_dir2_sf_entry_t
*)((char *)sfp
+ nbytes
);
496 * Fill in the new entry, and update the header counts.
498 sfep
->namelen
= args
->namelen
;
499 xfs_dir2_sf_put_offset(sfep
, offset
);
500 memcpy(sfep
->name
, args
->name
, sfep
->namelen
);
501 xfs_dir2_sf_put_inumber(sfp
, &args
->inumber
,
502 xfs_dir2_sf_inumberp(sfep
));
505 if (args
->inumber
> XFS_DIR2_MAX_SHORT_INUM
&& !objchange
)
509 * If there's more left to copy, do that.
512 sfep
= xfs_dir2_sf_nextentry(sfp
, sfep
);
513 memcpy(sfep
, oldsfep
, old_isize
- nbytes
);
516 dp
->i_d
.di_size
= new_isize
;
517 xfs_dir2_sf_check(args
);
521 * Decide if the new entry will fit at all.
522 * If it will fit, pick between adding the new entry to the end (easy)
523 * or somewhere else (hard).
524 * Return 0 (won't fit), 1 (easy), 2 (hard).
527 static int /* pick result */
528 xfs_dir2_sf_addname_pick(
529 xfs_da_args_t
*args
, /* operation arguments */
530 int objchange
, /* inode # size changes */
531 xfs_dir2_sf_entry_t
**sfepp
, /* out(1): new entry ptr */
532 xfs_dir2_data_aoff_t
*offsetp
) /* out(1): new offset */
534 xfs_inode_t
*dp
; /* incore directory inode */
535 int holefit
; /* found hole it will fit in */
536 int i
; /* entry number */
537 xfs_mount_t
*mp
; /* filesystem mount point */
538 xfs_dir2_data_aoff_t offset
; /* data block offset */
539 xfs_dir2_sf_entry_t
*sfep
; /* shortform entry */
540 xfs_dir2_sf_t
*sfp
; /* shortform structure */
541 int size
; /* entry's data size */
542 int used
; /* data bytes used */
547 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
548 size
= xfs_dir2_data_entsize(args
->namelen
);
549 offset
= XFS_DIR2_DATA_FIRST_OFFSET
;
550 sfep
= xfs_dir2_sf_firstentry(sfp
);
553 * Loop over sf entries.
554 * Keep track of data offset and whether we've seen a place
555 * to insert the new entry.
557 for (i
= 0; i
< sfp
->hdr
.count
; i
++) {
559 holefit
= offset
+ size
<= xfs_dir2_sf_get_offset(sfep
);
560 offset
= xfs_dir2_sf_get_offset(sfep
) +
561 xfs_dir2_data_entsize(sfep
->namelen
);
562 sfep
= xfs_dir2_sf_nextentry(sfp
, sfep
);
565 * Calculate data bytes used excluding the new entry, if this
566 * was a data block (block form directory).
569 (sfp
->hdr
.count
+ 3) * (uint
)sizeof(xfs_dir2_leaf_entry_t
) +
570 (uint
)sizeof(xfs_dir2_block_tail_t
);
572 * If it won't fit in a block form then we can't insert it,
573 * we'll go back, convert to block, then try the insert and convert
576 if (used
+ (holefit
? 0 : size
) > mp
->m_dirblksize
)
579 * If changing the inode number size, do it the hard way.
586 ASSERT(objchange
== 0);
589 * If it won't fit at the end then do it the hard way (use the hole).
591 if (used
+ size
> mp
->m_dirblksize
)
594 * Do it the easy way.
603 * Check consistency of shortform directory, assert if bad.
607 xfs_da_args_t
*args
) /* operation arguments */
609 xfs_inode_t
*dp
; /* incore directory inode */
610 int i
; /* entry number */
611 int i8count
; /* number of big inode#s */
612 xfs_ino_t ino
; /* entry inode number */
613 int offset
; /* data offset */
614 xfs_dir2_sf_entry_t
*sfep
; /* shortform dir entry */
615 xfs_dir2_sf_t
*sfp
; /* shortform structure */
619 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
620 offset
= XFS_DIR2_DATA_FIRST_OFFSET
;
621 ino
= xfs_dir2_sf_get_inumber(sfp
, &sfp
->hdr
.parent
);
622 i8count
= ino
> XFS_DIR2_MAX_SHORT_INUM
;
624 for (i
= 0, sfep
= xfs_dir2_sf_firstentry(sfp
);
626 i
++, sfep
= xfs_dir2_sf_nextentry(sfp
, sfep
)) {
627 ASSERT(xfs_dir2_sf_get_offset(sfep
) >= offset
);
628 ino
= xfs_dir2_sf_get_inumber(sfp
, xfs_dir2_sf_inumberp(sfep
));
629 i8count
+= ino
> XFS_DIR2_MAX_SHORT_INUM
;
631 xfs_dir2_sf_get_offset(sfep
) +
632 xfs_dir2_data_entsize(sfep
->namelen
);
634 ASSERT(i8count
== sfp
->hdr
.i8count
);
635 ASSERT(XFS_BIG_INUMS
|| i8count
== 0);
636 ASSERT((char *)sfep
- (char *)sfp
== dp
->i_d
.di_size
);
638 (sfp
->hdr
.count
+ 2) * (uint
)sizeof(xfs_dir2_leaf_entry_t
) +
639 (uint
)sizeof(xfs_dir2_block_tail_t
) <=
640 dp
->i_mount
->m_dirblksize
);
645 * Create a new (shortform) directory.
647 int /* error, always 0 */
649 xfs_da_args_t
*args
, /* operation arguments */
650 xfs_ino_t pino
) /* parent inode number */
652 xfs_inode_t
*dp
; /* incore directory inode */
653 int i8count
; /* parent inode is an 8-byte number */
654 xfs_dir2_sf_t
*sfp
; /* shortform structure */
655 int size
; /* directory size */
657 trace_xfs_dir2_sf_create(args
);
662 ASSERT(dp
->i_d
.di_size
== 0);
664 * If it's currently a zero-length extent file,
665 * convert it to local format.
667 if (dp
->i_d
.di_format
== XFS_DINODE_FMT_EXTENTS
) {
668 dp
->i_df
.if_flags
&= ~XFS_IFEXTENTS
; /* just in case */
669 dp
->i_d
.di_format
= XFS_DINODE_FMT_LOCAL
;
670 xfs_trans_log_inode(args
->trans
, dp
, XFS_ILOG_CORE
);
671 dp
->i_df
.if_flags
|= XFS_IFINLINE
;
673 ASSERT(dp
->i_df
.if_flags
& XFS_IFINLINE
);
674 ASSERT(dp
->i_df
.if_bytes
== 0);
675 i8count
= pino
> XFS_DIR2_MAX_SHORT_INUM
;
676 size
= xfs_dir2_sf_hdr_size(i8count
);
678 * Make a buffer for the data.
680 xfs_idata_realloc(dp
, size
, XFS_DATA_FORK
);
682 * Fill in the header,
684 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
685 sfp
->hdr
.i8count
= i8count
;
687 * Now can put in the inode number, since i8count is set.
689 xfs_dir2_sf_put_inumber(sfp
, &pino
, &sfp
->hdr
.parent
);
691 dp
->i_d
.di_size
= size
;
692 xfs_dir2_sf_check(args
);
693 xfs_trans_log_inode(args
->trans
, dp
, XFS_ILOG_CORE
| XFS_ILOG_DDATA
);
698 xfs_dir2_sf_getdents(
699 xfs_inode_t
*dp
, /* incore directory inode */
704 int i
; /* shortform entry number */
705 xfs_mount_t
*mp
; /* filesystem mount point */
706 xfs_dir2_dataptr_t off
; /* current entry's offset */
707 xfs_dir2_sf_entry_t
*sfep
; /* shortform directory entry */
708 xfs_dir2_sf_t
*sfp
; /* shortform structure */
709 xfs_dir2_dataptr_t dot_offset
;
710 xfs_dir2_dataptr_t dotdot_offset
;
715 ASSERT(dp
->i_df
.if_flags
& XFS_IFINLINE
);
717 * Give up if the directory is way too short.
719 if (dp
->i_d
.di_size
< offsetof(xfs_dir2_sf_hdr_t
, parent
)) {
720 ASSERT(XFS_FORCED_SHUTDOWN(mp
));
721 return XFS_ERROR(EIO
);
724 ASSERT(dp
->i_df
.if_bytes
== dp
->i_d
.di_size
);
725 ASSERT(dp
->i_df
.if_u1
.if_data
!= NULL
);
727 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
729 ASSERT(dp
->i_d
.di_size
>= xfs_dir2_sf_hdr_size(sfp
->hdr
.i8count
));
732 * If the block number in the offset is out of range, we're done.
734 if (xfs_dir2_dataptr_to_db(mp
, *offset
) > mp
->m_dirdatablk
)
738 * Precalculate offsets for . and .. as we will always need them.
740 * XXX(hch): the second argument is sometimes 0 and sometimes
743 dot_offset
= xfs_dir2_db_off_to_dataptr(mp
, mp
->m_dirdatablk
,
744 XFS_DIR2_DATA_DOT_OFFSET
);
745 dotdot_offset
= xfs_dir2_db_off_to_dataptr(mp
, mp
->m_dirdatablk
,
746 XFS_DIR2_DATA_DOTDOT_OFFSET
);
749 * Put . entry unless we're starting past it.
751 if (*offset
<= dot_offset
) {
752 if (filldir(dirent
, ".", 1, dot_offset
& 0x7fffffff, dp
->i_ino
, DT_DIR
)) {
753 *offset
= dot_offset
& 0x7fffffff;
759 * Put .. entry unless we're starting past it.
761 if (*offset
<= dotdot_offset
) {
762 ino
= xfs_dir2_sf_get_inumber(sfp
, &sfp
->hdr
.parent
);
763 if (filldir(dirent
, "..", 2, dotdot_offset
& 0x7fffffff, ino
, DT_DIR
)) {
764 *offset
= dotdot_offset
& 0x7fffffff;
770 * Loop while there are more entries and put'ing works.
772 sfep
= xfs_dir2_sf_firstentry(sfp
);
773 for (i
= 0; i
< sfp
->hdr
.count
; i
++) {
774 off
= xfs_dir2_db_off_to_dataptr(mp
, mp
->m_dirdatablk
,
775 xfs_dir2_sf_get_offset(sfep
));
778 sfep
= xfs_dir2_sf_nextentry(sfp
, sfep
);
782 ino
= xfs_dir2_sf_get_inumber(sfp
, xfs_dir2_sf_inumberp(sfep
));
783 if (filldir(dirent
, (char *)sfep
->name
, sfep
->namelen
,
784 off
& 0x7fffffff, ino
, DT_UNKNOWN
)) {
785 *offset
= off
& 0x7fffffff;
788 sfep
= xfs_dir2_sf_nextentry(sfp
, sfep
);
791 *offset
= xfs_dir2_db_off_to_dataptr(mp
, mp
->m_dirdatablk
+ 1, 0) &
797 * Lookup an entry in a shortform directory.
798 * Returns EEXIST if found, ENOENT if not found.
802 xfs_da_args_t
*args
) /* operation arguments */
804 xfs_inode_t
*dp
; /* incore directory inode */
805 int i
; /* entry index */
807 xfs_dir2_sf_entry_t
*sfep
; /* shortform directory entry */
808 xfs_dir2_sf_t
*sfp
; /* shortform structure */
809 enum xfs_dacmp cmp
; /* comparison result */
810 xfs_dir2_sf_entry_t
*ci_sfep
; /* case-insens. entry */
812 trace_xfs_dir2_sf_lookup(args
);
814 xfs_dir2_sf_check(args
);
817 ASSERT(dp
->i_df
.if_flags
& XFS_IFINLINE
);
819 * Bail out if the directory is way too short.
821 if (dp
->i_d
.di_size
< offsetof(xfs_dir2_sf_hdr_t
, parent
)) {
822 ASSERT(XFS_FORCED_SHUTDOWN(dp
->i_mount
));
823 return XFS_ERROR(EIO
);
825 ASSERT(dp
->i_df
.if_bytes
== dp
->i_d
.di_size
);
826 ASSERT(dp
->i_df
.if_u1
.if_data
!= NULL
);
827 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
828 ASSERT(dp
->i_d
.di_size
>= xfs_dir2_sf_hdr_size(sfp
->hdr
.i8count
));
832 if (args
->namelen
== 1 && args
->name
[0] == '.') {
833 args
->inumber
= dp
->i_ino
;
834 args
->cmpresult
= XFS_CMP_EXACT
;
835 return XFS_ERROR(EEXIST
);
838 * Special case for ..
840 if (args
->namelen
== 2 &&
841 args
->name
[0] == '.' && args
->name
[1] == '.') {
842 args
->inumber
= xfs_dir2_sf_get_inumber(sfp
, &sfp
->hdr
.parent
);
843 args
->cmpresult
= XFS_CMP_EXACT
;
844 return XFS_ERROR(EEXIST
);
847 * Loop over all the entries trying to match ours.
850 for (i
= 0, sfep
= xfs_dir2_sf_firstentry(sfp
); i
< sfp
->hdr
.count
;
851 i
++, sfep
= xfs_dir2_sf_nextentry(sfp
, sfep
)) {
853 * Compare name and if it's an exact match, return the inode
854 * number. If it's the first case-insensitive match, store the
855 * inode number and continue looking for an exact match.
857 cmp
= dp
->i_mount
->m_dirnameops
->compname(args
, sfep
->name
,
859 if (cmp
!= XFS_CMP_DIFFERENT
&& cmp
!= args
->cmpresult
) {
860 args
->cmpresult
= cmp
;
861 args
->inumber
= xfs_dir2_sf_get_inumber(sfp
,
862 xfs_dir2_sf_inumberp(sfep
));
863 if (cmp
== XFS_CMP_EXACT
)
864 return XFS_ERROR(EEXIST
);
868 ASSERT(args
->op_flags
& XFS_DA_OP_OKNOENT
);
870 * Here, we can only be doing a lookup (not a rename or replace).
871 * If a case-insensitive match was not found, return ENOENT.
874 return XFS_ERROR(ENOENT
);
875 /* otherwise process the CI match as required by the caller */
876 error
= xfs_dir_cilookup_result(args
, ci_sfep
->name
, ci_sfep
->namelen
);
877 return XFS_ERROR(error
);
881 * Remove an entry from a shortform directory.
884 xfs_dir2_sf_removename(
887 int byteoff
; /* offset of removed entry */
888 xfs_inode_t
*dp
; /* incore directory inode */
889 int entsize
; /* this entry's size */
890 int i
; /* shortform entry index */
891 int newsize
; /* new inode size */
892 int oldsize
; /* old inode size */
893 xfs_dir2_sf_entry_t
*sfep
; /* shortform directory entry */
894 xfs_dir2_sf_t
*sfp
; /* shortform structure */
896 trace_xfs_dir2_sf_removename(args
);
900 ASSERT(dp
->i_df
.if_flags
& XFS_IFINLINE
);
901 oldsize
= (int)dp
->i_d
.di_size
;
903 * Bail out if the directory is way too short.
905 if (oldsize
< offsetof(xfs_dir2_sf_hdr_t
, parent
)) {
906 ASSERT(XFS_FORCED_SHUTDOWN(dp
->i_mount
));
907 return XFS_ERROR(EIO
);
909 ASSERT(dp
->i_df
.if_bytes
== oldsize
);
910 ASSERT(dp
->i_df
.if_u1
.if_data
!= NULL
);
911 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
912 ASSERT(oldsize
>= xfs_dir2_sf_hdr_size(sfp
->hdr
.i8count
));
914 * Loop over the old directory entries.
915 * Find the one we're deleting.
917 for (i
= 0, sfep
= xfs_dir2_sf_firstentry(sfp
); i
< sfp
->hdr
.count
;
918 i
++, sfep
= xfs_dir2_sf_nextentry(sfp
, sfep
)) {
919 if (xfs_da_compname(args
, sfep
->name
, sfep
->namelen
) ==
921 ASSERT(xfs_dir2_sf_get_inumber(sfp
,
922 xfs_dir2_sf_inumberp(sfep
)) ==
930 if (i
== sfp
->hdr
.count
)
931 return XFS_ERROR(ENOENT
);
935 byteoff
= (int)((char *)sfep
- (char *)sfp
);
936 entsize
= xfs_dir2_sf_entsize_byname(sfp
, args
->namelen
);
937 newsize
= oldsize
- entsize
;
939 * Copy the part if any after the removed entry, sliding it down.
941 if (byteoff
+ entsize
< oldsize
)
942 memmove((char *)sfp
+ byteoff
, (char *)sfp
+ byteoff
+ entsize
,
943 oldsize
- (byteoff
+ entsize
));
945 * Fix up the header and file size.
948 dp
->i_d
.di_size
= newsize
;
950 * Reallocate, making it smaller.
952 xfs_idata_realloc(dp
, newsize
- oldsize
, XFS_DATA_FORK
);
953 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
956 * Are we changing inode number size?
958 if (args
->inumber
> XFS_DIR2_MAX_SHORT_INUM
) {
959 if (sfp
->hdr
.i8count
== 1)
960 xfs_dir2_sf_toino4(args
);
965 xfs_dir2_sf_check(args
);
966 xfs_trans_log_inode(args
->trans
, dp
, XFS_ILOG_CORE
| XFS_ILOG_DDATA
);
971 * Replace the inode number of an entry in a shortform directory.
975 xfs_da_args_t
*args
) /* operation arguments */
977 xfs_inode_t
*dp
; /* incore directory inode */
978 int i
; /* entry index */
979 #if XFS_BIG_INUMS || defined(DEBUG)
980 xfs_ino_t ino
=0; /* entry old inode number */
983 int i8elevated
; /* sf_toino8 set i8count=1 */
985 xfs_dir2_sf_entry_t
*sfep
; /* shortform directory entry */
986 xfs_dir2_sf_t
*sfp
; /* shortform structure */
988 trace_xfs_dir2_sf_replace(args
);
992 ASSERT(dp
->i_df
.if_flags
& XFS_IFINLINE
);
994 * Bail out if the shortform directory is way too small.
996 if (dp
->i_d
.di_size
< offsetof(xfs_dir2_sf_hdr_t
, parent
)) {
997 ASSERT(XFS_FORCED_SHUTDOWN(dp
->i_mount
));
998 return XFS_ERROR(EIO
);
1000 ASSERT(dp
->i_df
.if_bytes
== dp
->i_d
.di_size
);
1001 ASSERT(dp
->i_df
.if_u1
.if_data
!= NULL
);
1002 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
1003 ASSERT(dp
->i_d
.di_size
>= xfs_dir2_sf_hdr_size(sfp
->hdr
.i8count
));
1006 * New inode number is large, and need to convert to 8-byte inodes.
1008 if (args
->inumber
> XFS_DIR2_MAX_SHORT_INUM
&& sfp
->hdr
.i8count
== 0) {
1009 int error
; /* error return value */
1010 int newsize
; /* new inode size */
1014 (sfp
->hdr
.count
+ 1) *
1015 ((uint
)sizeof(xfs_dir2_ino8_t
) -
1016 (uint
)sizeof(xfs_dir2_ino4_t
));
1018 * Won't fit as shortform, convert to block then do replace.
1020 if (newsize
> XFS_IFORK_DSIZE(dp
)) {
1021 error
= xfs_dir2_sf_to_block(args
);
1025 return xfs_dir2_block_replace(args
);
1028 * Still fits, convert to 8-byte now.
1030 xfs_dir2_sf_toino8(args
);
1032 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
1036 ASSERT(args
->namelen
!= 1 || args
->name
[0] != '.');
1038 * Replace ..'s entry.
1040 if (args
->namelen
== 2 &&
1041 args
->name
[0] == '.' && args
->name
[1] == '.') {
1042 #if XFS_BIG_INUMS || defined(DEBUG)
1043 ino
= xfs_dir2_sf_get_inumber(sfp
, &sfp
->hdr
.parent
);
1044 ASSERT(args
->inumber
!= ino
);
1046 xfs_dir2_sf_put_inumber(sfp
, &args
->inumber
, &sfp
->hdr
.parent
);
1049 * Normal entry, look for the name.
1052 for (i
= 0, sfep
= xfs_dir2_sf_firstentry(sfp
);
1054 i
++, sfep
= xfs_dir2_sf_nextentry(sfp
, sfep
)) {
1055 if (xfs_da_compname(args
, sfep
->name
, sfep
->namelen
) ==
1057 #if XFS_BIG_INUMS || defined(DEBUG)
1058 ino
= xfs_dir2_sf_get_inumber(sfp
,
1059 xfs_dir2_sf_inumberp(sfep
));
1060 ASSERT(args
->inumber
!= ino
);
1062 xfs_dir2_sf_put_inumber(sfp
, &args
->inumber
,
1063 xfs_dir2_sf_inumberp(sfep
));
1070 if (i
== sfp
->hdr
.count
) {
1071 ASSERT(args
->op_flags
& XFS_DA_OP_OKNOENT
);
1074 xfs_dir2_sf_toino4(args
);
1076 return XFS_ERROR(ENOENT
);
1081 * See if the old number was large, the new number is small.
1083 if (ino
> XFS_DIR2_MAX_SHORT_INUM
&&
1084 args
->inumber
<= XFS_DIR2_MAX_SHORT_INUM
) {
1086 * And the old count was one, so need to convert to small.
1088 if (sfp
->hdr
.i8count
== 1)
1089 xfs_dir2_sf_toino4(args
);
1094 * See if the old number was small, the new number is large.
1096 if (ino
<= XFS_DIR2_MAX_SHORT_INUM
&&
1097 args
->inumber
> XFS_DIR2_MAX_SHORT_INUM
) {
1099 * add to the i8count unless we just converted to 8-byte
1100 * inodes (which does an implied i8count = 1)
1102 ASSERT(sfp
->hdr
.i8count
!= 0);
1107 xfs_dir2_sf_check(args
);
1108 xfs_trans_log_inode(args
->trans
, dp
, XFS_ILOG_DDATA
);
1114 * Convert from 8-byte inode numbers to 4-byte inode numbers.
1115 * The last 8-byte inode number is gone, but the count is still 1.
1119 xfs_da_args_t
*args
) /* operation arguments */
1121 char *buf
; /* old dir's buffer */
1122 xfs_inode_t
*dp
; /* incore directory inode */
1123 int i
; /* entry index */
1124 xfs_ino_t ino
; /* entry inode number */
1125 int newsize
; /* new inode size */
1126 xfs_dir2_sf_entry_t
*oldsfep
; /* old sf entry */
1127 xfs_dir2_sf_t
*oldsfp
; /* old sf directory */
1128 int oldsize
; /* old inode size */
1129 xfs_dir2_sf_entry_t
*sfep
; /* new sf entry */
1130 xfs_dir2_sf_t
*sfp
; /* new sf directory */
1132 trace_xfs_dir2_sf_toino4(args
);
1137 * Copy the old directory to the buffer.
1138 * Then nuke it from the inode, and add the new buffer to the inode.
1139 * Don't want xfs_idata_realloc copying the data here.
1141 oldsize
= dp
->i_df
.if_bytes
;
1142 buf
= kmem_alloc(oldsize
, KM_SLEEP
);
1143 oldsfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
1144 ASSERT(oldsfp
->hdr
.i8count
== 1);
1145 memcpy(buf
, oldsfp
, oldsize
);
1147 * Compute the new inode size.
1151 (oldsfp
->hdr
.count
+ 1) *
1152 ((uint
)sizeof(xfs_dir2_ino8_t
) - (uint
)sizeof(xfs_dir2_ino4_t
));
1153 xfs_idata_realloc(dp
, -oldsize
, XFS_DATA_FORK
);
1154 xfs_idata_realloc(dp
, newsize
, XFS_DATA_FORK
);
1156 * Reset our pointers, the data has moved.
1158 oldsfp
= (xfs_dir2_sf_t
*)buf
;
1159 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
1161 * Fill in the new header.
1163 sfp
->hdr
.count
= oldsfp
->hdr
.count
;
1164 sfp
->hdr
.i8count
= 0;
1165 ino
= xfs_dir2_sf_get_inumber(oldsfp
, &oldsfp
->hdr
.parent
);
1166 xfs_dir2_sf_put_inumber(sfp
, &ino
, &sfp
->hdr
.parent
);
1168 * Copy the entries field by field.
1170 for (i
= 0, sfep
= xfs_dir2_sf_firstentry(sfp
),
1171 oldsfep
= xfs_dir2_sf_firstentry(oldsfp
);
1173 i
++, sfep
= xfs_dir2_sf_nextentry(sfp
, sfep
),
1174 oldsfep
= xfs_dir2_sf_nextentry(oldsfp
, oldsfep
)) {
1175 sfep
->namelen
= oldsfep
->namelen
;
1176 sfep
->offset
= oldsfep
->offset
;
1177 memcpy(sfep
->name
, oldsfep
->name
, sfep
->namelen
);
1178 ino
= xfs_dir2_sf_get_inumber(oldsfp
,
1179 xfs_dir2_sf_inumberp(oldsfep
));
1180 xfs_dir2_sf_put_inumber(sfp
, &ino
, xfs_dir2_sf_inumberp(sfep
));
1183 * Clean up the inode.
1186 dp
->i_d
.di_size
= newsize
;
1187 xfs_trans_log_inode(args
->trans
, dp
, XFS_ILOG_CORE
| XFS_ILOG_DDATA
);
1191 * Convert from 4-byte inode numbers to 8-byte inode numbers.
1192 * The new 8-byte inode number is not there yet, we leave with the
1193 * count 1 but no corresponding entry.
1197 xfs_da_args_t
*args
) /* operation arguments */
1199 char *buf
; /* old dir's buffer */
1200 xfs_inode_t
*dp
; /* incore directory inode */
1201 int i
; /* entry index */
1202 xfs_ino_t ino
; /* entry inode number */
1203 int newsize
; /* new inode size */
1204 xfs_dir2_sf_entry_t
*oldsfep
; /* old sf entry */
1205 xfs_dir2_sf_t
*oldsfp
; /* old sf directory */
1206 int oldsize
; /* old inode size */
1207 xfs_dir2_sf_entry_t
*sfep
; /* new sf entry */
1208 xfs_dir2_sf_t
*sfp
; /* new sf directory */
1210 trace_xfs_dir2_sf_toino8(args
);
1215 * Copy the old directory to the buffer.
1216 * Then nuke it from the inode, and add the new buffer to the inode.
1217 * Don't want xfs_idata_realloc copying the data here.
1219 oldsize
= dp
->i_df
.if_bytes
;
1220 buf
= kmem_alloc(oldsize
, KM_SLEEP
);
1221 oldsfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
1222 ASSERT(oldsfp
->hdr
.i8count
== 0);
1223 memcpy(buf
, oldsfp
, oldsize
);
1225 * Compute the new inode size.
1229 (oldsfp
->hdr
.count
+ 1) *
1230 ((uint
)sizeof(xfs_dir2_ino8_t
) - (uint
)sizeof(xfs_dir2_ino4_t
));
1231 xfs_idata_realloc(dp
, -oldsize
, XFS_DATA_FORK
);
1232 xfs_idata_realloc(dp
, newsize
, XFS_DATA_FORK
);
1234 * Reset our pointers, the data has moved.
1236 oldsfp
= (xfs_dir2_sf_t
*)buf
;
1237 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
1239 * Fill in the new header.
1241 sfp
->hdr
.count
= oldsfp
->hdr
.count
;
1242 sfp
->hdr
.i8count
= 1;
1243 ino
= xfs_dir2_sf_get_inumber(oldsfp
, &oldsfp
->hdr
.parent
);
1244 xfs_dir2_sf_put_inumber(sfp
, &ino
, &sfp
->hdr
.parent
);
1246 * Copy the entries field by field.
1248 for (i
= 0, sfep
= xfs_dir2_sf_firstentry(sfp
),
1249 oldsfep
= xfs_dir2_sf_firstentry(oldsfp
);
1251 i
++, sfep
= xfs_dir2_sf_nextentry(sfp
, sfep
),
1252 oldsfep
= xfs_dir2_sf_nextentry(oldsfp
, oldsfep
)) {
1253 sfep
->namelen
= oldsfep
->namelen
;
1254 sfep
->offset
= oldsfep
->offset
;
1255 memcpy(sfep
->name
, oldsfep
->name
, sfep
->namelen
);
1256 ino
= xfs_dir2_sf_get_inumber(oldsfp
,
1257 xfs_dir2_sf_inumberp(oldsfep
));
1258 xfs_dir2_sf_put_inumber(sfp
, &ino
, xfs_dir2_sf_inumberp(sfep
));
1261 * Clean up the inode.
1264 dp
->i_d
.di_size
= newsize
;
1265 xfs_trans_log_inode(args
->trans
, dp
, XFS_ILOG_CORE
| XFS_ILOG_DDATA
);
1267 #endif /* XFS_BIG_INUMS */