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_dmapi.h"
28 #include "xfs_mount.h"
29 #include "xfs_da_btree.h"
30 #include "xfs_bmap_btree.h"
31 #include "xfs_dir2_sf.h"
32 #include "xfs_attr_sf.h"
33 #include "xfs_dinode.h"
34 #include "xfs_inode.h"
35 #include "xfs_inode_item.h"
36 #include "xfs_error.h"
37 #include "xfs_dir2_data.h"
38 #include "xfs_dir2_leaf.h"
39 #include "xfs_dir2_block.h"
40 #include "xfs_trace.h"
43 * Prototypes for internal functions.
45 static void xfs_dir2_sf_addname_easy(xfs_da_args_t
*args
,
46 xfs_dir2_sf_entry_t
*sfep
,
47 xfs_dir2_data_aoff_t offset
,
49 static void xfs_dir2_sf_addname_hard(xfs_da_args_t
*args
, int objchange
,
51 static int xfs_dir2_sf_addname_pick(xfs_da_args_t
*args
, int objchange
,
52 xfs_dir2_sf_entry_t
**sfepp
,
53 xfs_dir2_data_aoff_t
*offsetp
);
55 static void xfs_dir2_sf_check(xfs_da_args_t
*args
);
57 #define xfs_dir2_sf_check(args)
60 static void xfs_dir2_sf_toino4(xfs_da_args_t
*args
);
61 static void xfs_dir2_sf_toino8(xfs_da_args_t
*args
);
62 #endif /* XFS_BIG_INUMS */
65 * Given a block directory (dp/block), calculate its size as a shortform (sf)
66 * directory and a header for the sf directory, if it will fit it the
67 * space currently present in the inode. If it won't fit, the output
68 * size is too big (but not accurate).
70 int /* size for sf form */
71 xfs_dir2_block_sfsize(
72 xfs_inode_t
*dp
, /* incore inode pointer */
73 xfs_dir2_block_t
*block
, /* block directory data */
74 xfs_dir2_sf_hdr_t
*sfhp
) /* output: header for sf form */
76 xfs_dir2_dataptr_t addr
; /* data entry address */
77 xfs_dir2_leaf_entry_t
*blp
; /* leaf area of the block */
78 xfs_dir2_block_tail_t
*btp
; /* tail area of the block */
79 int count
; /* shortform entry count */
80 xfs_dir2_data_entry_t
*dep
; /* data entry in the block */
81 int i
; /* block entry index */
82 int i8count
; /* count of big-inode entries */
83 int isdot
; /* entry is "." */
84 int isdotdot
; /* entry is ".." */
85 xfs_mount_t
*mp
; /* mount structure pointer */
86 int namelen
; /* total name bytes */
87 xfs_ino_t parent
= 0; /* parent inode number */
88 int size
=0; /* total computed size */
92 count
= i8count
= namelen
= 0;
93 btp
= xfs_dir2_block_tail_p(mp
, block
);
94 blp
= xfs_dir2_block_leaf_p(btp
);
97 * Iterate over the block's data entries by using the leaf pointers.
99 for (i
= 0; i
< be32_to_cpu(btp
->count
); i
++) {
100 if ((addr
= be32_to_cpu(blp
[i
].address
)) == XFS_DIR2_NULL_DATAPTR
)
103 * Calculate the pointer to the entry at hand.
105 dep
= (xfs_dir2_data_entry_t
*)
106 ((char *)block
+ xfs_dir2_dataptr_to_off(mp
, addr
));
108 * Detect . and .., so we can special-case them.
109 * . is not included in sf directories.
110 * .. is included by just the parent inode number.
112 isdot
= dep
->namelen
== 1 && dep
->name
[0] == '.';
115 dep
->name
[0] == '.' && dep
->name
[1] == '.';
118 i8count
+= be64_to_cpu(dep
->inumber
) > XFS_DIR2_MAX_SHORT_INUM
;
120 if (!isdot
&& !isdotdot
) {
122 namelen
+= dep
->namelen
;
124 parent
= be64_to_cpu(dep
->inumber
);
126 * Calculate the new size, see if we should give up yet.
128 size
= xfs_dir2_sf_hdr_size(i8count
) + /* header */
129 count
+ /* namelen */
130 count
* (uint
)sizeof(xfs_dir2_sf_off_t
) + /* offset */
132 (i8count
? /* inumber */
133 (uint
)sizeof(xfs_dir2_ino8_t
) * count
:
134 (uint
)sizeof(xfs_dir2_ino4_t
) * count
);
135 if (size
> XFS_IFORK_DSIZE(dp
))
136 return size
; /* size value is a failure */
139 * Create the output header, if it worked.
142 sfhp
->i8count
= i8count
;
143 xfs_dir2_sf_put_inumber((xfs_dir2_sf_t
*)sfhp
, &parent
, &sfhp
->parent
);
148 * Convert a block format directory to shortform.
149 * Caller has already checked that it will fit, and built us a header.
152 xfs_dir2_block_to_sf(
153 xfs_da_args_t
*args
, /* operation arguments */
154 xfs_dabuf_t
*bp
, /* block buffer */
155 int size
, /* shortform directory size */
156 xfs_dir2_sf_hdr_t
*sfhp
) /* shortform directory hdr */
158 xfs_dir2_block_t
*block
; /* block structure */
159 xfs_dir2_block_tail_t
*btp
; /* block tail pointer */
160 xfs_dir2_data_entry_t
*dep
; /* data entry pointer */
161 xfs_inode_t
*dp
; /* incore directory inode */
162 xfs_dir2_data_unused_t
*dup
; /* unused data pointer */
163 char *endptr
; /* end of data entries */
164 int error
; /* error return value */
165 int logflags
; /* inode logging flags */
166 xfs_mount_t
*mp
; /* filesystem mount point */
167 char *ptr
; /* current data pointer */
168 xfs_dir2_sf_entry_t
*sfep
; /* shortform entry */
169 xfs_dir2_sf_t
*sfp
; /* shortform structure */
172 trace_xfs_dir2_block_to_sf(args
);
178 * Make a copy of the block data, so we can shrink the inode
179 * and add local data.
181 block
= kmem_alloc(mp
->m_dirblksize
, KM_SLEEP
);
182 memcpy(block
, bp
->data
, mp
->m_dirblksize
);
183 logflags
= XFS_ILOG_CORE
;
184 if ((error
= xfs_dir2_shrink_inode(args
, mp
->m_dirdatablk
, bp
))) {
185 ASSERT(error
!= ENOSPC
);
189 * The buffer is now unconditionally gone, whether
190 * xfs_dir2_shrink_inode worked or not.
192 * Convert the inode to local format.
194 dp
->i_df
.if_flags
&= ~XFS_IFEXTENTS
;
195 dp
->i_df
.if_flags
|= XFS_IFINLINE
;
196 dp
->i_d
.di_format
= XFS_DINODE_FMT_LOCAL
;
197 ASSERT(dp
->i_df
.if_bytes
== 0);
198 xfs_idata_realloc(dp
, size
, XFS_DATA_FORK
);
199 logflags
|= XFS_ILOG_DDATA
;
201 * Copy the header into the newly allocate local space.
203 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
204 memcpy(sfp
, sfhp
, xfs_dir2_sf_hdr_size(sfhp
->i8count
));
205 dp
->i_d
.di_size
= size
;
207 * Set up to loop over the block's entries.
209 btp
= xfs_dir2_block_tail_p(mp
, block
);
210 ptr
= (char *)block
->u
;
211 endptr
= (char *)xfs_dir2_block_leaf_p(btp
);
212 sfep
= xfs_dir2_sf_firstentry(sfp
);
214 * Loop over the active and unused entries.
215 * Stop when we reach the leaf/tail portion of the block.
217 while (ptr
< endptr
) {
219 * If it's unused, just skip over it.
221 dup
= (xfs_dir2_data_unused_t
*)ptr
;
222 if (be16_to_cpu(dup
->freetag
) == XFS_DIR2_DATA_FREE_TAG
) {
223 ptr
+= be16_to_cpu(dup
->length
);
226 dep
= (xfs_dir2_data_entry_t
*)ptr
;
230 if (dep
->namelen
== 1 && dep
->name
[0] == '.')
231 ASSERT(be64_to_cpu(dep
->inumber
) == dp
->i_ino
);
233 * Skip .., but make sure the inode number is right.
235 else if (dep
->namelen
== 2 &&
236 dep
->name
[0] == '.' && dep
->name
[1] == '.')
237 ASSERT(be64_to_cpu(dep
->inumber
) ==
238 xfs_dir2_sf_get_inumber(sfp
, &sfp
->hdr
.parent
));
240 * Normal entry, copy it into shortform.
243 sfep
->namelen
= dep
->namelen
;
244 xfs_dir2_sf_put_offset(sfep
,
245 (xfs_dir2_data_aoff_t
)
246 ((char *)dep
- (char *)block
));
247 memcpy(sfep
->name
, dep
->name
, dep
->namelen
);
248 temp
= be64_to_cpu(dep
->inumber
);
249 xfs_dir2_sf_put_inumber(sfp
, &temp
,
250 xfs_dir2_sf_inumberp(sfep
));
251 sfep
= xfs_dir2_sf_nextentry(sfp
, sfep
);
253 ptr
+= xfs_dir2_data_entsize(dep
->namelen
);
255 ASSERT((char *)sfep
- (char *)sfp
== size
);
256 xfs_dir2_sf_check(args
);
258 xfs_trans_log_inode(args
->trans
, dp
, logflags
);
264 * Add a name to a shortform directory.
265 * There are two algorithms, "easy" and "hard" which we decide on
266 * before changing anything.
267 * Convert to block form if necessary, if the new entry won't fit.
271 xfs_da_args_t
*args
) /* operation arguments */
273 int add_entsize
; /* size of the new entry */
274 xfs_inode_t
*dp
; /* incore directory inode */
275 int error
; /* error return value */
276 int incr_isize
; /* total change in size */
277 int new_isize
; /* di_size after adding name */
278 int objchange
; /* changing to 8-byte inodes */
279 xfs_dir2_data_aoff_t offset
= 0; /* offset for new entry */
280 int old_isize
; /* di_size before adding name */
281 int pick
; /* which algorithm to use */
282 xfs_dir2_sf_t
*sfp
; /* shortform structure */
283 xfs_dir2_sf_entry_t
*sfep
= NULL
; /* shortform entry */
285 trace_xfs_dir2_sf_addname(args
);
287 ASSERT(xfs_dir2_sf_lookup(args
) == ENOENT
);
289 ASSERT(dp
->i_df
.if_flags
& XFS_IFINLINE
);
291 * Make sure the shortform value has some of its header.
293 if (dp
->i_d
.di_size
< offsetof(xfs_dir2_sf_hdr_t
, parent
)) {
294 ASSERT(XFS_FORCED_SHUTDOWN(dp
->i_mount
));
295 return XFS_ERROR(EIO
);
297 ASSERT(dp
->i_df
.if_bytes
== dp
->i_d
.di_size
);
298 ASSERT(dp
->i_df
.if_u1
.if_data
!= NULL
);
299 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
300 ASSERT(dp
->i_d
.di_size
>= xfs_dir2_sf_hdr_size(sfp
->hdr
.i8count
));
302 * Compute entry (and change in) size.
304 add_entsize
= xfs_dir2_sf_entsize_byname(sfp
, args
->namelen
);
305 incr_isize
= add_entsize
;
309 * Do we have to change to 8 byte inodes?
311 if (args
->inumber
> XFS_DIR2_MAX_SHORT_INUM
&& sfp
->hdr
.i8count
== 0) {
313 * Yes, adjust the entry size and the total size.
316 (uint
)sizeof(xfs_dir2_ino8_t
) -
317 (uint
)sizeof(xfs_dir2_ino4_t
);
319 (sfp
->hdr
.count
+ 2) *
320 ((uint
)sizeof(xfs_dir2_ino8_t
) -
321 (uint
)sizeof(xfs_dir2_ino4_t
));
325 old_isize
= (int)dp
->i_d
.di_size
;
326 new_isize
= old_isize
+ incr_isize
;
328 * Won't fit as shortform any more (due to size),
329 * or the pick routine says it won't (due to offset values).
331 if (new_isize
> XFS_IFORK_DSIZE(dp
) ||
333 xfs_dir2_sf_addname_pick(args
, objchange
, &sfep
, &offset
)) == 0) {
335 * Just checking or no space reservation, it doesn't fit.
337 if ((args
->op_flags
& XFS_DA_OP_JUSTCHECK
) || args
->total
== 0)
338 return XFS_ERROR(ENOSPC
);
340 * Convert to block form then add the name.
342 error
= xfs_dir2_sf_to_block(args
);
345 return xfs_dir2_block_addname(args
);
348 * Just checking, it fits.
350 if (args
->op_flags
& XFS_DA_OP_JUSTCHECK
)
353 * Do it the easy way - just add it at the end.
356 xfs_dir2_sf_addname_easy(args
, sfep
, offset
, new_isize
);
358 * Do it the hard way - look for a place to insert the new entry.
359 * Convert to 8 byte inode numbers first if necessary.
365 xfs_dir2_sf_toino8(args
);
367 xfs_dir2_sf_addname_hard(args
, objchange
, new_isize
);
369 xfs_trans_log_inode(args
->trans
, dp
, XFS_ILOG_CORE
| XFS_ILOG_DDATA
);
374 * Add the new entry the "easy" way.
375 * This is copying the old directory and adding the new entry at the end.
376 * Since it's sorted by "offset" we need room after the last offset
377 * that's already there, and then room to convert to a block directory.
378 * This is already checked by the pick routine.
381 xfs_dir2_sf_addname_easy(
382 xfs_da_args_t
*args
, /* operation arguments */
383 xfs_dir2_sf_entry_t
*sfep
, /* pointer to new entry */
384 xfs_dir2_data_aoff_t offset
, /* offset to use for new ent */
385 int new_isize
) /* new directory size */
387 int byteoff
; /* byte offset in sf dir */
388 xfs_inode_t
*dp
; /* incore directory inode */
389 xfs_dir2_sf_t
*sfp
; /* shortform structure */
393 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
394 byteoff
= (int)((char *)sfep
- (char *)sfp
);
396 * Grow the in-inode space.
398 xfs_idata_realloc(dp
, xfs_dir2_sf_entsize_byname(sfp
, args
->namelen
),
401 * Need to set up again due to realloc of the inode data.
403 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
404 sfep
= (xfs_dir2_sf_entry_t
*)((char *)sfp
+ byteoff
);
406 * Fill in the new entry.
408 sfep
->namelen
= args
->namelen
;
409 xfs_dir2_sf_put_offset(sfep
, offset
);
410 memcpy(sfep
->name
, args
->name
, sfep
->namelen
);
411 xfs_dir2_sf_put_inumber(sfp
, &args
->inumber
,
412 xfs_dir2_sf_inumberp(sfep
));
414 * Update the header and inode.
418 if (args
->inumber
> XFS_DIR2_MAX_SHORT_INUM
)
421 dp
->i_d
.di_size
= new_isize
;
422 xfs_dir2_sf_check(args
);
426 * Add the new entry the "hard" way.
427 * The caller has already converted to 8 byte inode numbers if necessary,
428 * in which case we need to leave the i8count at 1.
429 * Find a hole that the new entry will fit into, and copy
430 * the first part of the entries, the new entry, and the last part of
435 xfs_dir2_sf_addname_hard(
436 xfs_da_args_t
*args
, /* operation arguments */
437 int objchange
, /* changing inode number size */
438 int new_isize
) /* new directory size */
440 int add_datasize
; /* data size need for new ent */
441 char *buf
; /* buffer for old */
442 xfs_inode_t
*dp
; /* incore directory inode */
443 int eof
; /* reached end of old dir */
444 int nbytes
; /* temp for byte copies */
445 xfs_dir2_data_aoff_t new_offset
; /* next offset value */
446 xfs_dir2_data_aoff_t offset
; /* current offset value */
447 int old_isize
; /* previous di_size */
448 xfs_dir2_sf_entry_t
*oldsfep
; /* entry in original dir */
449 xfs_dir2_sf_t
*oldsfp
; /* original shortform dir */
450 xfs_dir2_sf_entry_t
*sfep
; /* entry in new dir */
451 xfs_dir2_sf_t
*sfp
; /* new shortform dir */
454 * Copy the old directory to the stack buffer.
458 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
459 old_isize
= (int)dp
->i_d
.di_size
;
460 buf
= kmem_alloc(old_isize
, KM_SLEEP
);
461 oldsfp
= (xfs_dir2_sf_t
*)buf
;
462 memcpy(oldsfp
, sfp
, old_isize
);
464 * Loop over the old directory finding the place we're going
465 * to insert the new entry.
466 * If it's going to end up at the end then oldsfep will point there.
468 for (offset
= XFS_DIR2_DATA_FIRST_OFFSET
,
469 oldsfep
= xfs_dir2_sf_firstentry(oldsfp
),
470 add_datasize
= xfs_dir2_data_entsize(args
->namelen
),
471 eof
= (char *)oldsfep
== &buf
[old_isize
];
473 offset
= new_offset
+ xfs_dir2_data_entsize(oldsfep
->namelen
),
474 oldsfep
= xfs_dir2_sf_nextentry(oldsfp
, oldsfep
),
475 eof
= (char *)oldsfep
== &buf
[old_isize
]) {
476 new_offset
= xfs_dir2_sf_get_offset(oldsfep
);
477 if (offset
+ add_datasize
<= new_offset
)
481 * Get rid of the old directory, then allocate space for
482 * the new one. We do this so xfs_idata_realloc won't copy
485 xfs_idata_realloc(dp
, -old_isize
, XFS_DATA_FORK
);
486 xfs_idata_realloc(dp
, new_isize
, XFS_DATA_FORK
);
488 * Reset the pointer since the buffer was reallocated.
490 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
492 * Copy the first part of the directory, including the header.
494 nbytes
= (int)((char *)oldsfep
- (char *)oldsfp
);
495 memcpy(sfp
, oldsfp
, nbytes
);
496 sfep
= (xfs_dir2_sf_entry_t
*)((char *)sfp
+ nbytes
);
498 * Fill in the new entry, and update the header counts.
500 sfep
->namelen
= args
->namelen
;
501 xfs_dir2_sf_put_offset(sfep
, offset
);
502 memcpy(sfep
->name
, args
->name
, sfep
->namelen
);
503 xfs_dir2_sf_put_inumber(sfp
, &args
->inumber
,
504 xfs_dir2_sf_inumberp(sfep
));
507 if (args
->inumber
> XFS_DIR2_MAX_SHORT_INUM
&& !objchange
)
511 * If there's more left to copy, do that.
514 sfep
= xfs_dir2_sf_nextentry(sfp
, sfep
);
515 memcpy(sfep
, oldsfep
, old_isize
- nbytes
);
518 dp
->i_d
.di_size
= new_isize
;
519 xfs_dir2_sf_check(args
);
523 * Decide if the new entry will fit at all.
524 * If it will fit, pick between adding the new entry to the end (easy)
525 * or somewhere else (hard).
526 * Return 0 (won't fit), 1 (easy), 2 (hard).
529 static int /* pick result */
530 xfs_dir2_sf_addname_pick(
531 xfs_da_args_t
*args
, /* operation arguments */
532 int objchange
, /* inode # size changes */
533 xfs_dir2_sf_entry_t
**sfepp
, /* out(1): new entry ptr */
534 xfs_dir2_data_aoff_t
*offsetp
) /* out(1): new offset */
536 xfs_inode_t
*dp
; /* incore directory inode */
537 int holefit
; /* found hole it will fit in */
538 int i
; /* entry number */
539 xfs_mount_t
*mp
; /* filesystem mount point */
540 xfs_dir2_data_aoff_t offset
; /* data block offset */
541 xfs_dir2_sf_entry_t
*sfep
; /* shortform entry */
542 xfs_dir2_sf_t
*sfp
; /* shortform structure */
543 int size
; /* entry's data size */
544 int used
; /* data bytes used */
549 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
550 size
= xfs_dir2_data_entsize(args
->namelen
);
551 offset
= XFS_DIR2_DATA_FIRST_OFFSET
;
552 sfep
= xfs_dir2_sf_firstentry(sfp
);
555 * Loop over sf entries.
556 * Keep track of data offset and whether we've seen a place
557 * to insert the new entry.
559 for (i
= 0; i
< sfp
->hdr
.count
; i
++) {
561 holefit
= offset
+ size
<= xfs_dir2_sf_get_offset(sfep
);
562 offset
= xfs_dir2_sf_get_offset(sfep
) +
563 xfs_dir2_data_entsize(sfep
->namelen
);
564 sfep
= xfs_dir2_sf_nextentry(sfp
, sfep
);
567 * Calculate data bytes used excluding the new entry, if this
568 * was a data block (block form directory).
571 (sfp
->hdr
.count
+ 3) * (uint
)sizeof(xfs_dir2_leaf_entry_t
) +
572 (uint
)sizeof(xfs_dir2_block_tail_t
);
574 * If it won't fit in a block form then we can't insert it,
575 * we'll go back, convert to block, then try the insert and convert
578 if (used
+ (holefit
? 0 : size
) > mp
->m_dirblksize
)
581 * If changing the inode number size, do it the hard way.
588 ASSERT(objchange
== 0);
591 * If it won't fit at the end then do it the hard way (use the hole).
593 if (used
+ size
> mp
->m_dirblksize
)
596 * Do it the easy way.
605 * Check consistency of shortform directory, assert if bad.
609 xfs_da_args_t
*args
) /* operation arguments */
611 xfs_inode_t
*dp
; /* incore directory inode */
612 int i
; /* entry number */
613 int i8count
; /* number of big inode#s */
614 xfs_ino_t ino
; /* entry inode number */
615 int offset
; /* data offset */
616 xfs_dir2_sf_entry_t
*sfep
; /* shortform dir entry */
617 xfs_dir2_sf_t
*sfp
; /* shortform structure */
621 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
622 offset
= XFS_DIR2_DATA_FIRST_OFFSET
;
623 ino
= xfs_dir2_sf_get_inumber(sfp
, &sfp
->hdr
.parent
);
624 i8count
= ino
> XFS_DIR2_MAX_SHORT_INUM
;
626 for (i
= 0, sfep
= xfs_dir2_sf_firstentry(sfp
);
628 i
++, sfep
= xfs_dir2_sf_nextentry(sfp
, sfep
)) {
629 ASSERT(xfs_dir2_sf_get_offset(sfep
) >= offset
);
630 ino
= xfs_dir2_sf_get_inumber(sfp
, xfs_dir2_sf_inumberp(sfep
));
631 i8count
+= ino
> XFS_DIR2_MAX_SHORT_INUM
;
633 xfs_dir2_sf_get_offset(sfep
) +
634 xfs_dir2_data_entsize(sfep
->namelen
);
636 ASSERT(i8count
== sfp
->hdr
.i8count
);
637 ASSERT(XFS_BIG_INUMS
|| i8count
== 0);
638 ASSERT((char *)sfep
- (char *)sfp
== dp
->i_d
.di_size
);
640 (sfp
->hdr
.count
+ 2) * (uint
)sizeof(xfs_dir2_leaf_entry_t
) +
641 (uint
)sizeof(xfs_dir2_block_tail_t
) <=
642 dp
->i_mount
->m_dirblksize
);
647 * Create a new (shortform) directory.
649 int /* error, always 0 */
651 xfs_da_args_t
*args
, /* operation arguments */
652 xfs_ino_t pino
) /* parent inode number */
654 xfs_inode_t
*dp
; /* incore directory inode */
655 int i8count
; /* parent inode is an 8-byte number */
656 xfs_dir2_sf_t
*sfp
; /* shortform structure */
657 int size
; /* directory size */
659 trace_xfs_dir2_sf_create(args
);
664 ASSERT(dp
->i_d
.di_size
== 0);
666 * If it's currently a zero-length extent file,
667 * convert it to local format.
669 if (dp
->i_d
.di_format
== XFS_DINODE_FMT_EXTENTS
) {
670 dp
->i_df
.if_flags
&= ~XFS_IFEXTENTS
; /* just in case */
671 dp
->i_d
.di_format
= XFS_DINODE_FMT_LOCAL
;
672 xfs_trans_log_inode(args
->trans
, dp
, XFS_ILOG_CORE
);
673 dp
->i_df
.if_flags
|= XFS_IFINLINE
;
675 ASSERT(dp
->i_df
.if_flags
& XFS_IFINLINE
);
676 ASSERT(dp
->i_df
.if_bytes
== 0);
677 i8count
= pino
> XFS_DIR2_MAX_SHORT_INUM
;
678 size
= xfs_dir2_sf_hdr_size(i8count
);
680 * Make a buffer for the data.
682 xfs_idata_realloc(dp
, size
, XFS_DATA_FORK
);
684 * Fill in the header,
686 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
687 sfp
->hdr
.i8count
= i8count
;
689 * Now can put in the inode number, since i8count is set.
691 xfs_dir2_sf_put_inumber(sfp
, &pino
, &sfp
->hdr
.parent
);
693 dp
->i_d
.di_size
= size
;
694 xfs_dir2_sf_check(args
);
695 xfs_trans_log_inode(args
->trans
, dp
, XFS_ILOG_CORE
| XFS_ILOG_DDATA
);
700 xfs_dir2_sf_getdents(
701 xfs_inode_t
*dp
, /* incore directory inode */
706 int i
; /* shortform entry number */
707 xfs_mount_t
*mp
; /* filesystem mount point */
708 xfs_dir2_dataptr_t off
; /* current entry's offset */
709 xfs_dir2_sf_entry_t
*sfep
; /* shortform directory entry */
710 xfs_dir2_sf_t
*sfp
; /* shortform structure */
711 xfs_dir2_dataptr_t dot_offset
;
712 xfs_dir2_dataptr_t dotdot_offset
;
717 ASSERT(dp
->i_df
.if_flags
& XFS_IFINLINE
);
719 * Give up if the directory is way too short.
721 if (dp
->i_d
.di_size
< offsetof(xfs_dir2_sf_hdr_t
, parent
)) {
722 ASSERT(XFS_FORCED_SHUTDOWN(mp
));
723 return XFS_ERROR(EIO
);
726 ASSERT(dp
->i_df
.if_bytes
== dp
->i_d
.di_size
);
727 ASSERT(dp
->i_df
.if_u1
.if_data
!= NULL
);
729 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
731 ASSERT(dp
->i_d
.di_size
>= xfs_dir2_sf_hdr_size(sfp
->hdr
.i8count
));
734 * If the block number in the offset is out of range, we're done.
736 if (xfs_dir2_dataptr_to_db(mp
, *offset
) > mp
->m_dirdatablk
)
740 * Precalculate offsets for . and .. as we will always need them.
742 * XXX(hch): the second argument is sometimes 0 and sometimes
745 dot_offset
= xfs_dir2_db_off_to_dataptr(mp
, mp
->m_dirdatablk
,
746 XFS_DIR2_DATA_DOT_OFFSET
);
747 dotdot_offset
= xfs_dir2_db_off_to_dataptr(mp
, mp
->m_dirdatablk
,
748 XFS_DIR2_DATA_DOTDOT_OFFSET
);
751 * Put . entry unless we're starting past it.
753 if (*offset
<= dot_offset
) {
754 if (filldir(dirent
, ".", 1, dot_offset
& 0x7fffffff, dp
->i_ino
, DT_DIR
)) {
755 *offset
= dot_offset
& 0x7fffffff;
761 * Put .. entry unless we're starting past it.
763 if (*offset
<= dotdot_offset
) {
764 ino
= xfs_dir2_sf_get_inumber(sfp
, &sfp
->hdr
.parent
);
765 if (filldir(dirent
, "..", 2, dotdot_offset
& 0x7fffffff, ino
, DT_DIR
)) {
766 *offset
= dotdot_offset
& 0x7fffffff;
772 * Loop while there are more entries and put'ing works.
774 sfep
= xfs_dir2_sf_firstentry(sfp
);
775 for (i
= 0; i
< sfp
->hdr
.count
; i
++) {
776 off
= xfs_dir2_db_off_to_dataptr(mp
, mp
->m_dirdatablk
,
777 xfs_dir2_sf_get_offset(sfep
));
780 sfep
= xfs_dir2_sf_nextentry(sfp
, sfep
);
784 ino
= xfs_dir2_sf_get_inumber(sfp
, xfs_dir2_sf_inumberp(sfep
));
785 if (filldir(dirent
, (char *)sfep
->name
, sfep
->namelen
,
786 off
& 0x7fffffff, ino
, DT_UNKNOWN
)) {
787 *offset
= off
& 0x7fffffff;
790 sfep
= xfs_dir2_sf_nextentry(sfp
, sfep
);
793 *offset
= xfs_dir2_db_off_to_dataptr(mp
, mp
->m_dirdatablk
+ 1, 0) &
799 * Lookup an entry in a shortform directory.
800 * Returns EEXIST if found, ENOENT if not found.
804 xfs_da_args_t
*args
) /* operation arguments */
806 xfs_inode_t
*dp
; /* incore directory inode */
807 int i
; /* entry index */
809 xfs_dir2_sf_entry_t
*sfep
; /* shortform directory entry */
810 xfs_dir2_sf_t
*sfp
; /* shortform structure */
811 enum xfs_dacmp cmp
; /* comparison result */
812 xfs_dir2_sf_entry_t
*ci_sfep
; /* case-insens. entry */
814 trace_xfs_dir2_sf_lookup(args
);
816 xfs_dir2_sf_check(args
);
819 ASSERT(dp
->i_df
.if_flags
& XFS_IFINLINE
);
821 * Bail out if the directory is way too short.
823 if (dp
->i_d
.di_size
< offsetof(xfs_dir2_sf_hdr_t
, parent
)) {
824 ASSERT(XFS_FORCED_SHUTDOWN(dp
->i_mount
));
825 return XFS_ERROR(EIO
);
827 ASSERT(dp
->i_df
.if_bytes
== dp
->i_d
.di_size
);
828 ASSERT(dp
->i_df
.if_u1
.if_data
!= NULL
);
829 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
830 ASSERT(dp
->i_d
.di_size
>= xfs_dir2_sf_hdr_size(sfp
->hdr
.i8count
));
834 if (args
->namelen
== 1 && args
->name
[0] == '.') {
835 args
->inumber
= dp
->i_ino
;
836 args
->cmpresult
= XFS_CMP_EXACT
;
837 return XFS_ERROR(EEXIST
);
840 * Special case for ..
842 if (args
->namelen
== 2 &&
843 args
->name
[0] == '.' && args
->name
[1] == '.') {
844 args
->inumber
= xfs_dir2_sf_get_inumber(sfp
, &sfp
->hdr
.parent
);
845 args
->cmpresult
= XFS_CMP_EXACT
;
846 return XFS_ERROR(EEXIST
);
849 * Loop over all the entries trying to match ours.
852 for (i
= 0, sfep
= xfs_dir2_sf_firstentry(sfp
); i
< sfp
->hdr
.count
;
853 i
++, sfep
= xfs_dir2_sf_nextentry(sfp
, sfep
)) {
855 * Compare name and if it's an exact match, return the inode
856 * number. If it's the first case-insensitive match, store the
857 * inode number and continue looking for an exact match.
859 cmp
= dp
->i_mount
->m_dirnameops
->compname(args
, sfep
->name
,
861 if (cmp
!= XFS_CMP_DIFFERENT
&& cmp
!= args
->cmpresult
) {
862 args
->cmpresult
= cmp
;
863 args
->inumber
= xfs_dir2_sf_get_inumber(sfp
,
864 xfs_dir2_sf_inumberp(sfep
));
865 if (cmp
== XFS_CMP_EXACT
)
866 return XFS_ERROR(EEXIST
);
870 ASSERT(args
->op_flags
& XFS_DA_OP_OKNOENT
);
872 * Here, we can only be doing a lookup (not a rename or replace).
873 * If a case-insensitive match was not found, return ENOENT.
876 return XFS_ERROR(ENOENT
);
877 /* otherwise process the CI match as required by the caller */
878 error
= xfs_dir_cilookup_result(args
, ci_sfep
->name
, ci_sfep
->namelen
);
879 return XFS_ERROR(error
);
883 * Remove an entry from a shortform directory.
886 xfs_dir2_sf_removename(
889 int byteoff
; /* offset of removed entry */
890 xfs_inode_t
*dp
; /* incore directory inode */
891 int entsize
; /* this entry's size */
892 int i
; /* shortform entry index */
893 int newsize
; /* new inode size */
894 int oldsize
; /* old inode size */
895 xfs_dir2_sf_entry_t
*sfep
; /* shortform directory entry */
896 xfs_dir2_sf_t
*sfp
; /* shortform structure */
898 trace_xfs_dir2_sf_removename(args
);
902 ASSERT(dp
->i_df
.if_flags
& XFS_IFINLINE
);
903 oldsize
= (int)dp
->i_d
.di_size
;
905 * Bail out if the directory is way too short.
907 if (oldsize
< offsetof(xfs_dir2_sf_hdr_t
, parent
)) {
908 ASSERT(XFS_FORCED_SHUTDOWN(dp
->i_mount
));
909 return XFS_ERROR(EIO
);
911 ASSERT(dp
->i_df
.if_bytes
== oldsize
);
912 ASSERT(dp
->i_df
.if_u1
.if_data
!= NULL
);
913 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
914 ASSERT(oldsize
>= xfs_dir2_sf_hdr_size(sfp
->hdr
.i8count
));
916 * Loop over the old directory entries.
917 * Find the one we're deleting.
919 for (i
= 0, sfep
= xfs_dir2_sf_firstentry(sfp
); i
< sfp
->hdr
.count
;
920 i
++, sfep
= xfs_dir2_sf_nextentry(sfp
, sfep
)) {
921 if (xfs_da_compname(args
, sfep
->name
, sfep
->namelen
) ==
923 ASSERT(xfs_dir2_sf_get_inumber(sfp
,
924 xfs_dir2_sf_inumberp(sfep
)) ==
932 if (i
== sfp
->hdr
.count
)
933 return XFS_ERROR(ENOENT
);
937 byteoff
= (int)((char *)sfep
- (char *)sfp
);
938 entsize
= xfs_dir2_sf_entsize_byname(sfp
, args
->namelen
);
939 newsize
= oldsize
- entsize
;
941 * Copy the part if any after the removed entry, sliding it down.
943 if (byteoff
+ entsize
< oldsize
)
944 memmove((char *)sfp
+ byteoff
, (char *)sfp
+ byteoff
+ entsize
,
945 oldsize
- (byteoff
+ entsize
));
947 * Fix up the header and file size.
950 dp
->i_d
.di_size
= newsize
;
952 * Reallocate, making it smaller.
954 xfs_idata_realloc(dp
, newsize
- oldsize
, XFS_DATA_FORK
);
955 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
958 * Are we changing inode number size?
960 if (args
->inumber
> XFS_DIR2_MAX_SHORT_INUM
) {
961 if (sfp
->hdr
.i8count
== 1)
962 xfs_dir2_sf_toino4(args
);
967 xfs_dir2_sf_check(args
);
968 xfs_trans_log_inode(args
->trans
, dp
, XFS_ILOG_CORE
| XFS_ILOG_DDATA
);
973 * Replace the inode number of an entry in a shortform directory.
977 xfs_da_args_t
*args
) /* operation arguments */
979 xfs_inode_t
*dp
; /* incore directory inode */
980 int i
; /* entry index */
981 #if XFS_BIG_INUMS || defined(DEBUG)
982 xfs_ino_t ino
=0; /* entry old inode number */
985 int i8elevated
; /* sf_toino8 set i8count=1 */
987 xfs_dir2_sf_entry_t
*sfep
; /* shortform directory entry */
988 xfs_dir2_sf_t
*sfp
; /* shortform structure */
990 trace_xfs_dir2_sf_replace(args
);
994 ASSERT(dp
->i_df
.if_flags
& XFS_IFINLINE
);
996 * Bail out if the shortform directory is way too small.
998 if (dp
->i_d
.di_size
< offsetof(xfs_dir2_sf_hdr_t
, parent
)) {
999 ASSERT(XFS_FORCED_SHUTDOWN(dp
->i_mount
));
1000 return XFS_ERROR(EIO
);
1002 ASSERT(dp
->i_df
.if_bytes
== dp
->i_d
.di_size
);
1003 ASSERT(dp
->i_df
.if_u1
.if_data
!= NULL
);
1004 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
1005 ASSERT(dp
->i_d
.di_size
>= xfs_dir2_sf_hdr_size(sfp
->hdr
.i8count
));
1008 * New inode number is large, and need to convert to 8-byte inodes.
1010 if (args
->inumber
> XFS_DIR2_MAX_SHORT_INUM
&& sfp
->hdr
.i8count
== 0) {
1011 int error
; /* error return value */
1012 int newsize
; /* new inode size */
1016 (sfp
->hdr
.count
+ 1) *
1017 ((uint
)sizeof(xfs_dir2_ino8_t
) -
1018 (uint
)sizeof(xfs_dir2_ino4_t
));
1020 * Won't fit as shortform, convert to block then do replace.
1022 if (newsize
> XFS_IFORK_DSIZE(dp
)) {
1023 error
= xfs_dir2_sf_to_block(args
);
1027 return xfs_dir2_block_replace(args
);
1030 * Still fits, convert to 8-byte now.
1032 xfs_dir2_sf_toino8(args
);
1034 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
1038 ASSERT(args
->namelen
!= 1 || args
->name
[0] != '.');
1040 * Replace ..'s entry.
1042 if (args
->namelen
== 2 &&
1043 args
->name
[0] == '.' && args
->name
[1] == '.') {
1044 #if XFS_BIG_INUMS || defined(DEBUG)
1045 ino
= xfs_dir2_sf_get_inumber(sfp
, &sfp
->hdr
.parent
);
1046 ASSERT(args
->inumber
!= ino
);
1048 xfs_dir2_sf_put_inumber(sfp
, &args
->inumber
, &sfp
->hdr
.parent
);
1051 * Normal entry, look for the name.
1054 for (i
= 0, sfep
= xfs_dir2_sf_firstentry(sfp
);
1056 i
++, sfep
= xfs_dir2_sf_nextentry(sfp
, sfep
)) {
1057 if (xfs_da_compname(args
, sfep
->name
, sfep
->namelen
) ==
1059 #if XFS_BIG_INUMS || defined(DEBUG)
1060 ino
= xfs_dir2_sf_get_inumber(sfp
,
1061 xfs_dir2_sf_inumberp(sfep
));
1062 ASSERT(args
->inumber
!= ino
);
1064 xfs_dir2_sf_put_inumber(sfp
, &args
->inumber
,
1065 xfs_dir2_sf_inumberp(sfep
));
1072 if (i
== sfp
->hdr
.count
) {
1073 ASSERT(args
->op_flags
& XFS_DA_OP_OKNOENT
);
1076 xfs_dir2_sf_toino4(args
);
1078 return XFS_ERROR(ENOENT
);
1083 * See if the old number was large, the new number is small.
1085 if (ino
> XFS_DIR2_MAX_SHORT_INUM
&&
1086 args
->inumber
<= XFS_DIR2_MAX_SHORT_INUM
) {
1088 * And the old count was one, so need to convert to small.
1090 if (sfp
->hdr
.i8count
== 1)
1091 xfs_dir2_sf_toino4(args
);
1096 * See if the old number was small, the new number is large.
1098 if (ino
<= XFS_DIR2_MAX_SHORT_INUM
&&
1099 args
->inumber
> XFS_DIR2_MAX_SHORT_INUM
) {
1101 * add to the i8count unless we just converted to 8-byte
1102 * inodes (which does an implied i8count = 1)
1104 ASSERT(sfp
->hdr
.i8count
!= 0);
1109 xfs_dir2_sf_check(args
);
1110 xfs_trans_log_inode(args
->trans
, dp
, XFS_ILOG_DDATA
);
1116 * Convert from 8-byte inode numbers to 4-byte inode numbers.
1117 * The last 8-byte inode number is gone, but the count is still 1.
1121 xfs_da_args_t
*args
) /* operation arguments */
1123 char *buf
; /* old dir's buffer */
1124 xfs_inode_t
*dp
; /* incore directory inode */
1125 int i
; /* entry index */
1126 xfs_ino_t ino
; /* entry inode number */
1127 int newsize
; /* new inode size */
1128 xfs_dir2_sf_entry_t
*oldsfep
; /* old sf entry */
1129 xfs_dir2_sf_t
*oldsfp
; /* old sf directory */
1130 int oldsize
; /* old inode size */
1131 xfs_dir2_sf_entry_t
*sfep
; /* new sf entry */
1132 xfs_dir2_sf_t
*sfp
; /* new sf directory */
1134 trace_xfs_dir2_sf_toino4(args
);
1139 * Copy the old directory to the buffer.
1140 * Then nuke it from the inode, and add the new buffer to the inode.
1141 * Don't want xfs_idata_realloc copying the data here.
1143 oldsize
= dp
->i_df
.if_bytes
;
1144 buf
= kmem_alloc(oldsize
, KM_SLEEP
);
1145 oldsfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
1146 ASSERT(oldsfp
->hdr
.i8count
== 1);
1147 memcpy(buf
, oldsfp
, oldsize
);
1149 * Compute the new inode size.
1153 (oldsfp
->hdr
.count
+ 1) *
1154 ((uint
)sizeof(xfs_dir2_ino8_t
) - (uint
)sizeof(xfs_dir2_ino4_t
));
1155 xfs_idata_realloc(dp
, -oldsize
, XFS_DATA_FORK
);
1156 xfs_idata_realloc(dp
, newsize
, XFS_DATA_FORK
);
1158 * Reset our pointers, the data has moved.
1160 oldsfp
= (xfs_dir2_sf_t
*)buf
;
1161 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
1163 * Fill in the new header.
1165 sfp
->hdr
.count
= oldsfp
->hdr
.count
;
1166 sfp
->hdr
.i8count
= 0;
1167 ino
= xfs_dir2_sf_get_inumber(oldsfp
, &oldsfp
->hdr
.parent
);
1168 xfs_dir2_sf_put_inumber(sfp
, &ino
, &sfp
->hdr
.parent
);
1170 * Copy the entries field by field.
1172 for (i
= 0, sfep
= xfs_dir2_sf_firstentry(sfp
),
1173 oldsfep
= xfs_dir2_sf_firstentry(oldsfp
);
1175 i
++, sfep
= xfs_dir2_sf_nextentry(sfp
, sfep
),
1176 oldsfep
= xfs_dir2_sf_nextentry(oldsfp
, oldsfep
)) {
1177 sfep
->namelen
= oldsfep
->namelen
;
1178 sfep
->offset
= oldsfep
->offset
;
1179 memcpy(sfep
->name
, oldsfep
->name
, sfep
->namelen
);
1180 ino
= xfs_dir2_sf_get_inumber(oldsfp
,
1181 xfs_dir2_sf_inumberp(oldsfep
));
1182 xfs_dir2_sf_put_inumber(sfp
, &ino
, xfs_dir2_sf_inumberp(sfep
));
1185 * Clean up the inode.
1188 dp
->i_d
.di_size
= newsize
;
1189 xfs_trans_log_inode(args
->trans
, dp
, XFS_ILOG_CORE
| XFS_ILOG_DDATA
);
1193 * Convert from 4-byte inode numbers to 8-byte inode numbers.
1194 * The new 8-byte inode number is not there yet, we leave with the
1195 * count 1 but no corresponding entry.
1199 xfs_da_args_t
*args
) /* operation arguments */
1201 char *buf
; /* old dir's buffer */
1202 xfs_inode_t
*dp
; /* incore directory inode */
1203 int i
; /* entry index */
1204 xfs_ino_t ino
; /* entry inode number */
1205 int newsize
; /* new inode size */
1206 xfs_dir2_sf_entry_t
*oldsfep
; /* old sf entry */
1207 xfs_dir2_sf_t
*oldsfp
; /* old sf directory */
1208 int oldsize
; /* old inode size */
1209 xfs_dir2_sf_entry_t
*sfep
; /* new sf entry */
1210 xfs_dir2_sf_t
*sfp
; /* new sf directory */
1212 trace_xfs_dir2_sf_toino8(args
);
1217 * Copy the old directory to the buffer.
1218 * Then nuke it from the inode, and add the new buffer to the inode.
1219 * Don't want xfs_idata_realloc copying the data here.
1221 oldsize
= dp
->i_df
.if_bytes
;
1222 buf
= kmem_alloc(oldsize
, KM_SLEEP
);
1223 oldsfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
1224 ASSERT(oldsfp
->hdr
.i8count
== 0);
1225 memcpy(buf
, oldsfp
, oldsize
);
1227 * Compute the new inode size.
1231 (oldsfp
->hdr
.count
+ 1) *
1232 ((uint
)sizeof(xfs_dir2_ino8_t
) - (uint
)sizeof(xfs_dir2_ino4_t
));
1233 xfs_idata_realloc(dp
, -oldsize
, XFS_DATA_FORK
);
1234 xfs_idata_realloc(dp
, newsize
, XFS_DATA_FORK
);
1236 * Reset our pointers, the data has moved.
1238 oldsfp
= (xfs_dir2_sf_t
*)buf
;
1239 sfp
= (xfs_dir2_sf_t
*)dp
->i_df
.if_u1
.if_data
;
1241 * Fill in the new header.
1243 sfp
->hdr
.count
= oldsfp
->hdr
.count
;
1244 sfp
->hdr
.i8count
= 1;
1245 ino
= xfs_dir2_sf_get_inumber(oldsfp
, &oldsfp
->hdr
.parent
);
1246 xfs_dir2_sf_put_inumber(sfp
, &ino
, &sfp
->hdr
.parent
);
1248 * Copy the entries field by field.
1250 for (i
= 0, sfep
= xfs_dir2_sf_firstentry(sfp
),
1251 oldsfep
= xfs_dir2_sf_firstentry(oldsfp
);
1253 i
++, sfep
= xfs_dir2_sf_nextentry(sfp
, sfep
),
1254 oldsfep
= xfs_dir2_sf_nextentry(oldsfp
, oldsfep
)) {
1255 sfep
->namelen
= oldsfep
->namelen
;
1256 sfep
->offset
= oldsfep
->offset
;
1257 memcpy(sfep
->name
, oldsfep
->name
, sfep
->namelen
);
1258 ino
= xfs_dir2_sf_get_inumber(oldsfp
,
1259 xfs_dir2_sf_inumberp(oldsfep
));
1260 xfs_dir2_sf_put_inumber(sfp
, &ino
, xfs_dir2_sf_inumberp(sfep
));
1263 * Clean up the inode.
1266 dp
->i_d
.di_size
= newsize
;
1267 xfs_trans_log_inode(args
->trans
, dp
, XFS_ILOG_CORE
| XFS_ILOG_DDATA
);
1269 #endif /* XFS_BIG_INUMS */