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"
22 #include "xfs_trans.h"
25 #include "xfs_mount.h"
26 #include "xfs_da_btree.h"
27 #include "xfs_bmap_btree.h"
28 #include "xfs_dinode.h"
29 #include "xfs_inode.h"
30 #include "xfs_inode_item.h"
31 #include "xfs_error.h"
32 #include "xfs_dir2_format.h"
34 #include "xfs_dir2_priv.h"
35 #include "xfs_trace.h"
38 * Prototypes for internal functions.
40 static void xfs_dir2_sf_addname_easy(xfs_da_args_t
*args
,
41 xfs_dir2_sf_entry_t
*sfep
,
42 xfs_dir2_data_aoff_t offset
,
44 static void xfs_dir2_sf_addname_hard(xfs_da_args_t
*args
, int objchange
,
46 static int xfs_dir2_sf_addname_pick(xfs_da_args_t
*args
, int objchange
,
47 xfs_dir2_sf_entry_t
**sfepp
,
48 xfs_dir2_data_aoff_t
*offsetp
);
50 static void xfs_dir2_sf_check(xfs_da_args_t
*args
);
52 #define xfs_dir2_sf_check(args)
55 static void xfs_dir2_sf_toino4(xfs_da_args_t
*args
);
56 static void xfs_dir2_sf_toino8(xfs_da_args_t
*args
);
57 #endif /* XFS_BIG_INUMS */
60 * Inode numbers in short-form directories can come in two versions,
61 * either 4 bytes or 8 bytes wide. These helpers deal with the
62 * two forms transparently by looking at the headers i8count field.
64 * For 64-bit inode number the most significant byte must be zero.
68 struct xfs_dir2_sf_hdr
*hdr
,
69 xfs_dir2_inou_t
*from
)
72 return get_unaligned_be64(&from
->i8
.i
) & 0x00ffffffffffffffULL
;
74 return get_unaligned_be32(&from
->i4
.i
);
79 struct xfs_dir2_sf_hdr
*hdr
,
83 ASSERT((ino
& 0xff00000000000000ULL
) == 0);
86 put_unaligned_be64(ino
, &to
->i8
.i
);
88 put_unaligned_be32(ino
, &to
->i4
.i
);
92 xfs_dir2_sf_get_parent_ino(
93 struct xfs_dir2_sf_hdr
*hdr
)
95 return xfs_dir2_sf_get_ino(hdr
, &hdr
->parent
);
99 xfs_dir2_sf_put_parent_ino(
100 struct xfs_dir2_sf_hdr
*hdr
,
103 xfs_dir2_sf_put_ino(hdr
, &hdr
->parent
, ino
);
107 * In short-form directory entries the inode numbers are stored at variable
108 * offset behind the entry name. If the entry stores a filetype value, then it
109 * sits between the name and the inode number. Hence the inode numbers may only
110 * be accessed through the helpers below.
112 static xfs_dir2_inou_t
*
114 struct xfs_mount
*mp
,
115 struct xfs_dir2_sf_entry
*sfep
)
117 __uint8_t
*ptr
= &sfep
->name
[sfep
->namelen
];
118 if (xfs_sb_version_hasftype(&mp
->m_sb
))
120 return (xfs_dir2_inou_t
*)ptr
;
124 xfs_dir3_sfe_get_ino(
125 struct xfs_mount
*mp
,
126 struct xfs_dir2_sf_hdr
*hdr
,
127 struct xfs_dir2_sf_entry
*sfep
)
129 return xfs_dir2_sf_get_ino(hdr
, xfs_dir3_sfe_inop(mp
, sfep
));
133 xfs_dir3_sfe_put_ino(
134 struct xfs_mount
*mp
,
135 struct xfs_dir2_sf_hdr
*hdr
,
136 struct xfs_dir2_sf_entry
*sfep
,
139 xfs_dir2_sf_put_ino(hdr
, xfs_dir3_sfe_inop(mp
, sfep
), ino
);
143 * Given a block directory (dp/block), calculate its size as a shortform (sf)
144 * directory and a header for the sf directory, if it will fit it the
145 * space currently present in the inode. If it won't fit, the output
146 * size is too big (but not accurate).
148 int /* size for sf form */
149 xfs_dir2_block_sfsize(
150 xfs_inode_t
*dp
, /* incore inode pointer */
151 xfs_dir2_data_hdr_t
*hdr
, /* block directory data */
152 xfs_dir2_sf_hdr_t
*sfhp
) /* output: header for sf form */
154 xfs_dir2_dataptr_t addr
; /* data entry address */
155 xfs_dir2_leaf_entry_t
*blp
; /* leaf area of the block */
156 xfs_dir2_block_tail_t
*btp
; /* tail area of the block */
157 int count
; /* shortform entry count */
158 xfs_dir2_data_entry_t
*dep
; /* data entry in the block */
159 int i
; /* block entry index */
160 int i8count
; /* count of big-inode entries */
161 int isdot
; /* entry is "." */
162 int isdotdot
; /* entry is ".." */
163 xfs_mount_t
*mp
; /* mount structure pointer */
164 int namelen
; /* total name bytes */
165 xfs_ino_t parent
= 0; /* parent inode number */
166 int size
=0; /* total computed size */
172 * if there is a filetype field, add the extra byte to the namelen
173 * for each entry that we see.
175 has_ftype
= xfs_sb_version_hasftype(&mp
->m_sb
) ? 1 : 0;
177 count
= i8count
= namelen
= 0;
178 btp
= xfs_dir2_block_tail_p(mp
, hdr
);
179 blp
= xfs_dir2_block_leaf_p(btp
);
182 * Iterate over the block's data entries by using the leaf pointers.
184 for (i
= 0; i
< be32_to_cpu(btp
->count
); i
++) {
185 if ((addr
= be32_to_cpu(blp
[i
].address
)) == XFS_DIR2_NULL_DATAPTR
)
188 * Calculate the pointer to the entry at hand.
190 dep
= (xfs_dir2_data_entry_t
*)
191 ((char *)hdr
+ xfs_dir2_dataptr_to_off(mp
, addr
));
193 * Detect . and .., so we can special-case them.
194 * . is not included in sf directories.
195 * .. is included by just the parent inode number.
197 isdot
= dep
->namelen
== 1 && dep
->name
[0] == '.';
200 dep
->name
[0] == '.' && dep
->name
[1] == '.';
203 i8count
+= be64_to_cpu(dep
->inumber
) > XFS_DIR2_MAX_SHORT_INUM
;
205 /* take into account the file type field */
206 if (!isdot
&& !isdotdot
) {
208 namelen
+= dep
->namelen
+ has_ftype
;
210 parent
= be64_to_cpu(dep
->inumber
);
212 * Calculate the new size, see if we should give up yet.
214 size
= xfs_dir2_sf_hdr_size(i8count
) + /* header */
215 count
+ /* namelen */
216 count
* (uint
)sizeof(xfs_dir2_sf_off_t
) + /* offset */
218 (i8count
? /* inumber */
219 (uint
)sizeof(xfs_dir2_ino8_t
) * count
:
220 (uint
)sizeof(xfs_dir2_ino4_t
) * count
);
221 if (size
> XFS_IFORK_DSIZE(dp
))
222 return size
; /* size value is a failure */
225 * Create the output header, if it worked.
228 sfhp
->i8count
= i8count
;
229 xfs_dir2_sf_put_parent_ino(sfhp
, parent
);
234 * Convert a block format directory to shortform.
235 * Caller has already checked that it will fit, and built us a header.
238 xfs_dir2_block_to_sf(
239 xfs_da_args_t
*args
, /* operation arguments */
241 int size
, /* shortform directory size */
242 xfs_dir2_sf_hdr_t
*sfhp
) /* shortform directory hdr */
244 xfs_dir2_data_hdr_t
*hdr
; /* block header */
245 xfs_dir2_block_tail_t
*btp
; /* block tail pointer */
246 xfs_dir2_data_entry_t
*dep
; /* data entry pointer */
247 xfs_inode_t
*dp
; /* incore directory inode */
248 xfs_dir2_data_unused_t
*dup
; /* unused data pointer */
249 char *endptr
; /* end of data entries */
250 int error
; /* error return value */
251 int logflags
; /* inode logging flags */
252 xfs_mount_t
*mp
; /* filesystem mount point */
253 char *ptr
; /* current data pointer */
254 xfs_dir2_sf_entry_t
*sfep
; /* shortform entry */
255 xfs_dir2_sf_hdr_t
*sfp
; /* shortform directory header */
257 trace_xfs_dir2_block_to_sf(args
);
263 * Make a copy of the block data, so we can shrink the inode
264 * and add local data.
266 hdr
= kmem_alloc(mp
->m_dirblksize
, KM_SLEEP
);
267 memcpy(hdr
, bp
->b_addr
, mp
->m_dirblksize
);
268 logflags
= XFS_ILOG_CORE
;
269 if ((error
= xfs_dir2_shrink_inode(args
, mp
->m_dirdatablk
, bp
))) {
270 ASSERT(error
!= ENOSPC
);
275 * The buffer is now unconditionally gone, whether
276 * xfs_dir2_shrink_inode worked or not.
278 * Convert the inode to local format.
280 dp
->i_df
.if_flags
&= ~XFS_IFEXTENTS
;
281 dp
->i_df
.if_flags
|= XFS_IFINLINE
;
282 dp
->i_d
.di_format
= XFS_DINODE_FMT_LOCAL
;
283 ASSERT(dp
->i_df
.if_bytes
== 0);
284 xfs_idata_realloc(dp
, size
, XFS_DATA_FORK
);
285 logflags
|= XFS_ILOG_DDATA
;
287 * Copy the header into the newly allocate local space.
289 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
290 memcpy(sfp
, sfhp
, xfs_dir2_sf_hdr_size(sfhp
->i8count
));
291 dp
->i_d
.di_size
= size
;
293 * Set up to loop over the block's entries.
295 btp
= xfs_dir2_block_tail_p(mp
, hdr
);
296 ptr
= (char *)xfs_dir3_data_entry_p(hdr
);
297 endptr
= (char *)xfs_dir2_block_leaf_p(btp
);
298 sfep
= xfs_dir2_sf_firstentry(sfp
);
300 * Loop over the active and unused entries.
301 * Stop when we reach the leaf/tail portion of the block.
303 while (ptr
< endptr
) {
305 * If it's unused, just skip over it.
307 dup
= (xfs_dir2_data_unused_t
*)ptr
;
308 if (be16_to_cpu(dup
->freetag
) == XFS_DIR2_DATA_FREE_TAG
) {
309 ptr
+= be16_to_cpu(dup
->length
);
312 dep
= (xfs_dir2_data_entry_t
*)ptr
;
316 if (dep
->namelen
== 1 && dep
->name
[0] == '.')
317 ASSERT(be64_to_cpu(dep
->inumber
) == dp
->i_ino
);
319 * Skip .., but make sure the inode number is right.
321 else if (dep
->namelen
== 2 &&
322 dep
->name
[0] == '.' && dep
->name
[1] == '.')
323 ASSERT(be64_to_cpu(dep
->inumber
) ==
324 xfs_dir2_sf_get_parent_ino(sfp
));
326 * Normal entry, copy it into shortform.
329 sfep
->namelen
= dep
->namelen
;
330 xfs_dir2_sf_put_offset(sfep
,
331 (xfs_dir2_data_aoff_t
)
332 ((char *)dep
- (char *)hdr
));
333 memcpy(sfep
->name
, dep
->name
, dep
->namelen
);
334 xfs_dir3_sfe_put_ino(mp
, sfp
, sfep
,
335 be64_to_cpu(dep
->inumber
));
336 xfs_dir3_sfe_put_ftype(mp
, sfp
, sfep
,
337 xfs_dir3_dirent_get_ftype(mp
, dep
));
339 sfep
= xfs_dir3_sf_nextentry(mp
, sfp
, sfep
);
341 ptr
+= xfs_dir3_data_entsize(mp
, dep
->namelen
);
343 ASSERT((char *)sfep
- (char *)sfp
== size
);
344 xfs_dir2_sf_check(args
);
346 xfs_trans_log_inode(args
->trans
, dp
, logflags
);
352 * Add a name to a shortform directory.
353 * There are two algorithms, "easy" and "hard" which we decide on
354 * before changing anything.
355 * Convert to block form if necessary, if the new entry won't fit.
359 xfs_da_args_t
*args
) /* operation arguments */
361 int add_entsize
; /* size of the new entry */
362 xfs_inode_t
*dp
; /* incore directory inode */
363 int error
; /* error return value */
364 int incr_isize
; /* total change in size */
365 int new_isize
; /* di_size after adding name */
366 int objchange
; /* changing to 8-byte inodes */
367 xfs_dir2_data_aoff_t offset
= 0; /* offset for new entry */
368 int old_isize
; /* di_size before adding name */
369 int pick
; /* which algorithm to use */
370 xfs_dir2_sf_hdr_t
*sfp
; /* shortform structure */
371 xfs_dir2_sf_entry_t
*sfep
= NULL
; /* shortform entry */
373 trace_xfs_dir2_sf_addname(args
);
375 ASSERT(xfs_dir2_sf_lookup(args
) == ENOENT
);
377 ASSERT(dp
->i_df
.if_flags
& XFS_IFINLINE
);
379 * Make sure the shortform value has some of its header.
381 if (dp
->i_d
.di_size
< offsetof(xfs_dir2_sf_hdr_t
, parent
)) {
382 ASSERT(XFS_FORCED_SHUTDOWN(dp
->i_mount
));
383 return XFS_ERROR(EIO
);
385 ASSERT(dp
->i_df
.if_bytes
== dp
->i_d
.di_size
);
386 ASSERT(dp
->i_df
.if_u1
.if_data
!= NULL
);
387 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
388 ASSERT(dp
->i_d
.di_size
>= xfs_dir2_sf_hdr_size(sfp
->i8count
));
390 * Compute entry (and change in) size.
392 add_entsize
= xfs_dir3_sf_entsize(dp
->i_mount
, sfp
, args
->namelen
);
393 incr_isize
= add_entsize
;
397 * Do we have to change to 8 byte inodes?
399 if (args
->inumber
> XFS_DIR2_MAX_SHORT_INUM
&& sfp
->i8count
== 0) {
401 * Yes, adjust the entry size and the total size.
404 (uint
)sizeof(xfs_dir2_ino8_t
) -
405 (uint
)sizeof(xfs_dir2_ino4_t
);
408 ((uint
)sizeof(xfs_dir2_ino8_t
) -
409 (uint
)sizeof(xfs_dir2_ino4_t
));
413 old_isize
= (int)dp
->i_d
.di_size
;
414 new_isize
= old_isize
+ incr_isize
;
416 * Won't fit as shortform any more (due to size),
417 * or the pick routine says it won't (due to offset values).
419 if (new_isize
> XFS_IFORK_DSIZE(dp
) ||
421 xfs_dir2_sf_addname_pick(args
, objchange
, &sfep
, &offset
)) == 0) {
423 * Just checking or no space reservation, it doesn't fit.
425 if ((args
->op_flags
& XFS_DA_OP_JUSTCHECK
) || args
->total
== 0)
426 return XFS_ERROR(ENOSPC
);
428 * Convert to block form then add the name.
430 error
= xfs_dir2_sf_to_block(args
);
433 return xfs_dir2_block_addname(args
);
436 * Just checking, it fits.
438 if (args
->op_flags
& XFS_DA_OP_JUSTCHECK
)
441 * Do it the easy way - just add it at the end.
444 xfs_dir2_sf_addname_easy(args
, sfep
, offset
, new_isize
);
446 * Do it the hard way - look for a place to insert the new entry.
447 * Convert to 8 byte inode numbers first if necessary.
453 xfs_dir2_sf_toino8(args
);
455 xfs_dir2_sf_addname_hard(args
, objchange
, new_isize
);
457 xfs_trans_log_inode(args
->trans
, dp
, XFS_ILOG_CORE
| XFS_ILOG_DDATA
);
462 * Add the new entry the "easy" way.
463 * This is copying the old directory and adding the new entry at the end.
464 * Since it's sorted by "offset" we need room after the last offset
465 * that's already there, and then room to convert to a block directory.
466 * This is already checked by the pick routine.
469 xfs_dir2_sf_addname_easy(
470 xfs_da_args_t
*args
, /* operation arguments */
471 xfs_dir2_sf_entry_t
*sfep
, /* pointer to new entry */
472 xfs_dir2_data_aoff_t offset
, /* offset to use for new ent */
473 int new_isize
) /* new directory size */
475 int byteoff
; /* byte offset in sf dir */
476 xfs_inode_t
*dp
; /* incore directory inode */
477 xfs_dir2_sf_hdr_t
*sfp
; /* shortform structure */
481 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
482 byteoff
= (int)((char *)sfep
- (char *)sfp
);
484 * Grow the in-inode space.
486 xfs_idata_realloc(dp
,
487 xfs_dir3_sf_entsize(dp
->i_mount
, sfp
, args
->namelen
),
490 * Need to set up again due to realloc of the inode data.
492 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
493 sfep
= (xfs_dir2_sf_entry_t
*)((char *)sfp
+ byteoff
);
495 * Fill in the new entry.
497 sfep
->namelen
= args
->namelen
;
498 xfs_dir2_sf_put_offset(sfep
, offset
);
499 memcpy(sfep
->name
, args
->name
, sfep
->namelen
);
500 xfs_dir3_sfe_put_ino(dp
->i_mount
, sfp
, sfep
, args
->inumber
);
501 xfs_dir3_sfe_put_ftype(dp
->i_mount
, sfp
, sfep
, args
->filetype
);
504 * Update the header and inode.
508 if (args
->inumber
> XFS_DIR2_MAX_SHORT_INUM
)
511 dp
->i_d
.di_size
= new_isize
;
512 xfs_dir2_sf_check(args
);
516 * Add the new entry the "hard" way.
517 * The caller has already converted to 8 byte inode numbers if necessary,
518 * in which case we need to leave the i8count at 1.
519 * Find a hole that the new entry will fit into, and copy
520 * the first part of the entries, the new entry, and the last part of
525 xfs_dir2_sf_addname_hard(
526 xfs_da_args_t
*args
, /* operation arguments */
527 int objchange
, /* changing inode number size */
528 int new_isize
) /* new directory size */
530 int add_datasize
; /* data size need for new ent */
531 char *buf
; /* buffer for old */
532 xfs_inode_t
*dp
; /* incore directory inode */
533 int eof
; /* reached end of old dir */
534 int nbytes
; /* temp for byte copies */
535 xfs_dir2_data_aoff_t new_offset
; /* next offset value */
536 xfs_dir2_data_aoff_t offset
; /* current offset value */
537 int old_isize
; /* previous di_size */
538 xfs_dir2_sf_entry_t
*oldsfep
; /* entry in original dir */
539 xfs_dir2_sf_hdr_t
*oldsfp
; /* original shortform dir */
540 xfs_dir2_sf_entry_t
*sfep
; /* entry in new dir */
541 xfs_dir2_sf_hdr_t
*sfp
; /* new shortform dir */
542 struct xfs_mount
*mp
;
545 * Copy the old directory to the stack buffer.
550 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
551 old_isize
= (int)dp
->i_d
.di_size
;
552 buf
= kmem_alloc(old_isize
, KM_SLEEP
);
553 oldsfp
= (xfs_dir2_sf_hdr_t
*)buf
;
554 memcpy(oldsfp
, sfp
, old_isize
);
556 * Loop over the old directory finding the place we're going
557 * to insert the new entry.
558 * If it's going to end up at the end then oldsfep will point there.
560 for (offset
= xfs_dir3_data_first_offset(mp
),
561 oldsfep
= xfs_dir2_sf_firstentry(oldsfp
),
562 add_datasize
= xfs_dir3_data_entsize(mp
, args
->namelen
),
563 eof
= (char *)oldsfep
== &buf
[old_isize
];
565 offset
= new_offset
+ xfs_dir3_data_entsize(mp
, oldsfep
->namelen
),
566 oldsfep
= xfs_dir3_sf_nextentry(mp
, oldsfp
, oldsfep
),
567 eof
= (char *)oldsfep
== &buf
[old_isize
]) {
568 new_offset
= xfs_dir2_sf_get_offset(oldsfep
);
569 if (offset
+ add_datasize
<= new_offset
)
573 * Get rid of the old directory, then allocate space for
574 * the new one. We do this so xfs_idata_realloc won't copy
577 xfs_idata_realloc(dp
, -old_isize
, XFS_DATA_FORK
);
578 xfs_idata_realloc(dp
, new_isize
, XFS_DATA_FORK
);
580 * Reset the pointer since the buffer was reallocated.
582 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
584 * Copy the first part of the directory, including the header.
586 nbytes
= (int)((char *)oldsfep
- (char *)oldsfp
);
587 memcpy(sfp
, oldsfp
, nbytes
);
588 sfep
= (xfs_dir2_sf_entry_t
*)((char *)sfp
+ nbytes
);
590 * Fill in the new entry, and update the header counts.
592 sfep
->namelen
= args
->namelen
;
593 xfs_dir2_sf_put_offset(sfep
, offset
);
594 memcpy(sfep
->name
, args
->name
, sfep
->namelen
);
595 xfs_dir3_sfe_put_ino(mp
, sfp
, sfep
, args
->inumber
);
596 xfs_dir3_sfe_put_ftype(mp
, sfp
, sfep
, args
->filetype
);
599 if (args
->inumber
> XFS_DIR2_MAX_SHORT_INUM
&& !objchange
)
603 * If there's more left to copy, do that.
606 sfep
= xfs_dir3_sf_nextentry(mp
, sfp
, sfep
);
607 memcpy(sfep
, oldsfep
, old_isize
- nbytes
);
610 dp
->i_d
.di_size
= new_isize
;
611 xfs_dir2_sf_check(args
);
615 * Decide if the new entry will fit at all.
616 * If it will fit, pick between adding the new entry to the end (easy)
617 * or somewhere else (hard).
618 * Return 0 (won't fit), 1 (easy), 2 (hard).
621 static int /* pick result */
622 xfs_dir2_sf_addname_pick(
623 xfs_da_args_t
*args
, /* operation arguments */
624 int objchange
, /* inode # size changes */
625 xfs_dir2_sf_entry_t
**sfepp
, /* out(1): new entry ptr */
626 xfs_dir2_data_aoff_t
*offsetp
) /* out(1): new offset */
628 xfs_inode_t
*dp
; /* incore directory inode */
629 int holefit
; /* found hole it will fit in */
630 int i
; /* entry number */
631 xfs_mount_t
*mp
; /* filesystem mount point */
632 xfs_dir2_data_aoff_t offset
; /* data block offset */
633 xfs_dir2_sf_entry_t
*sfep
; /* shortform entry */
634 xfs_dir2_sf_hdr_t
*sfp
; /* shortform structure */
635 int size
; /* entry's data size */
636 int used
; /* data bytes used */
641 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
642 size
= xfs_dir3_data_entsize(mp
, args
->namelen
);
643 offset
= xfs_dir3_data_first_offset(mp
);
644 sfep
= xfs_dir2_sf_firstentry(sfp
);
647 * Loop over sf entries.
648 * Keep track of data offset and whether we've seen a place
649 * to insert the new entry.
651 for (i
= 0; i
< sfp
->count
; i
++) {
653 holefit
= offset
+ size
<= xfs_dir2_sf_get_offset(sfep
);
654 offset
= xfs_dir2_sf_get_offset(sfep
) +
655 xfs_dir3_data_entsize(mp
, sfep
->namelen
);
656 sfep
= xfs_dir3_sf_nextentry(mp
, sfp
, sfep
);
659 * Calculate data bytes used excluding the new entry, if this
660 * was a data block (block form directory).
663 (sfp
->count
+ 3) * (uint
)sizeof(xfs_dir2_leaf_entry_t
) +
664 (uint
)sizeof(xfs_dir2_block_tail_t
);
666 * If it won't fit in a block form then we can't insert it,
667 * we'll go back, convert to block, then try the insert and convert
670 if (used
+ (holefit
? 0 : size
) > mp
->m_dirblksize
)
673 * If changing the inode number size, do it the hard way.
680 ASSERT(objchange
== 0);
683 * If it won't fit at the end then do it the hard way (use the hole).
685 if (used
+ size
> mp
->m_dirblksize
)
688 * Do it the easy way.
697 * Check consistency of shortform directory, assert if bad.
701 xfs_da_args_t
*args
) /* operation arguments */
703 xfs_inode_t
*dp
; /* incore directory inode */
704 int i
; /* entry number */
705 int i8count
; /* number of big inode#s */
706 xfs_ino_t ino
; /* entry inode number */
707 int offset
; /* data offset */
708 xfs_dir2_sf_entry_t
*sfep
; /* shortform dir entry */
709 xfs_dir2_sf_hdr_t
*sfp
; /* shortform structure */
710 struct xfs_mount
*mp
;
715 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
716 offset
= xfs_dir3_data_first_offset(mp
);
717 ino
= xfs_dir2_sf_get_parent_ino(sfp
);
718 i8count
= ino
> XFS_DIR2_MAX_SHORT_INUM
;
720 for (i
= 0, sfep
= xfs_dir2_sf_firstentry(sfp
);
722 i
++, sfep
= xfs_dir3_sf_nextentry(mp
, sfp
, sfep
)) {
723 ASSERT(xfs_dir2_sf_get_offset(sfep
) >= offset
);
724 ino
= xfs_dir3_sfe_get_ino(mp
, sfp
, sfep
);
725 i8count
+= ino
> XFS_DIR2_MAX_SHORT_INUM
;
727 xfs_dir2_sf_get_offset(sfep
) +
728 xfs_dir3_data_entsize(mp
, sfep
->namelen
);
729 ASSERT(xfs_dir3_sfe_get_ftype(mp
, sfp
, sfep
) <
732 ASSERT(i8count
== sfp
->i8count
);
733 ASSERT(XFS_BIG_INUMS
|| i8count
== 0);
734 ASSERT((char *)sfep
- (char *)sfp
== dp
->i_d
.di_size
);
736 (sfp
->count
+ 2) * (uint
)sizeof(xfs_dir2_leaf_entry_t
) +
737 (uint
)sizeof(xfs_dir2_block_tail_t
) <= mp
->m_dirblksize
);
742 * Create a new (shortform) directory.
744 int /* error, always 0 */
746 xfs_da_args_t
*args
, /* operation arguments */
747 xfs_ino_t pino
) /* parent inode number */
749 xfs_inode_t
*dp
; /* incore directory inode */
750 int i8count
; /* parent inode is an 8-byte number */
751 xfs_dir2_sf_hdr_t
*sfp
; /* shortform structure */
752 int size
; /* directory size */
754 trace_xfs_dir2_sf_create(args
);
759 ASSERT(dp
->i_d
.di_size
== 0);
761 * If it's currently a zero-length extent file,
762 * convert it to local format.
764 if (dp
->i_d
.di_format
== XFS_DINODE_FMT_EXTENTS
) {
765 dp
->i_df
.if_flags
&= ~XFS_IFEXTENTS
; /* just in case */
766 dp
->i_d
.di_format
= XFS_DINODE_FMT_LOCAL
;
767 xfs_trans_log_inode(args
->trans
, dp
, XFS_ILOG_CORE
);
768 dp
->i_df
.if_flags
|= XFS_IFINLINE
;
770 ASSERT(dp
->i_df
.if_flags
& XFS_IFINLINE
);
771 ASSERT(dp
->i_df
.if_bytes
== 0);
772 i8count
= pino
> XFS_DIR2_MAX_SHORT_INUM
;
773 size
= xfs_dir2_sf_hdr_size(i8count
);
775 * Make a buffer for the data.
777 xfs_idata_realloc(dp
, size
, XFS_DATA_FORK
);
779 * Fill in the header,
781 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
782 sfp
->i8count
= i8count
;
784 * Now can put in the inode number, since i8count is set.
786 xfs_dir2_sf_put_parent_ino(sfp
, pino
);
788 dp
->i_d
.di_size
= size
;
789 xfs_dir2_sf_check(args
);
790 xfs_trans_log_inode(args
->trans
, dp
, XFS_ILOG_CORE
| XFS_ILOG_DDATA
);
795 * Lookup an entry in a shortform directory.
796 * Returns EEXIST if found, ENOENT if not found.
800 xfs_da_args_t
*args
) /* operation arguments */
802 xfs_inode_t
*dp
; /* incore directory inode */
803 int i
; /* entry index */
805 xfs_dir2_sf_entry_t
*sfep
; /* shortform directory entry */
806 xfs_dir2_sf_hdr_t
*sfp
; /* shortform structure */
807 enum xfs_dacmp cmp
; /* comparison result */
808 xfs_dir2_sf_entry_t
*ci_sfep
; /* case-insens. entry */
810 trace_xfs_dir2_sf_lookup(args
);
812 xfs_dir2_sf_check(args
);
815 ASSERT(dp
->i_df
.if_flags
& XFS_IFINLINE
);
817 * Bail out if the directory is way too short.
819 if (dp
->i_d
.di_size
< offsetof(xfs_dir2_sf_hdr_t
, parent
)) {
820 ASSERT(XFS_FORCED_SHUTDOWN(dp
->i_mount
));
821 return XFS_ERROR(EIO
);
823 ASSERT(dp
->i_df
.if_bytes
== dp
->i_d
.di_size
);
824 ASSERT(dp
->i_df
.if_u1
.if_data
!= NULL
);
825 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
826 ASSERT(dp
->i_d
.di_size
>= xfs_dir2_sf_hdr_size(sfp
->i8count
));
830 if (args
->namelen
== 1 && args
->name
[0] == '.') {
831 args
->inumber
= dp
->i_ino
;
832 args
->cmpresult
= XFS_CMP_EXACT
;
833 args
->filetype
= XFS_DIR3_FT_DIR
;
834 return XFS_ERROR(EEXIST
);
837 * Special case for ..
839 if (args
->namelen
== 2 &&
840 args
->name
[0] == '.' && args
->name
[1] == '.') {
841 args
->inumber
= xfs_dir2_sf_get_parent_ino(sfp
);
842 args
->cmpresult
= XFS_CMP_EXACT
;
843 args
->filetype
= XFS_DIR3_FT_DIR
;
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
->count
;
851 i
++, sfep
= xfs_dir3_sf_nextentry(dp
->i_mount
, 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_dir3_sfe_get_ino(dp
->i_mount
,
863 args
->filetype
= xfs_dir3_sfe_get_ftype(dp
->i_mount
,
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_hdr_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_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
914 ASSERT(oldsize
>= xfs_dir2_sf_hdr_size(sfp
->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
->count
;
920 i
++, sfep
= xfs_dir3_sf_nextentry(dp
->i_mount
, sfp
, sfep
)) {
921 if (xfs_da_compname(args
, sfep
->name
, sfep
->namelen
) ==
923 ASSERT(xfs_dir3_sfe_get_ino(dp
->i_mount
, sfp
, sfep
) ==
932 return XFS_ERROR(ENOENT
);
936 byteoff
= (int)((char *)sfep
- (char *)sfp
);
937 entsize
= xfs_dir3_sf_entsize(dp
->i_mount
, sfp
, args
->namelen
);
938 newsize
= oldsize
- entsize
;
940 * Copy the part if any after the removed entry, sliding it down.
942 if (byteoff
+ entsize
< oldsize
)
943 memmove((char *)sfp
+ byteoff
, (char *)sfp
+ byteoff
+ entsize
,
944 oldsize
- (byteoff
+ entsize
));
946 * Fix up the header and file size.
949 dp
->i_d
.di_size
= newsize
;
951 * Reallocate, making it smaller.
953 xfs_idata_realloc(dp
, newsize
- oldsize
, XFS_DATA_FORK
);
954 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
957 * Are we changing inode number size?
959 if (args
->inumber
> XFS_DIR2_MAX_SHORT_INUM
) {
960 if (sfp
->i8count
== 1)
961 xfs_dir2_sf_toino4(args
);
966 xfs_dir2_sf_check(args
);
967 xfs_trans_log_inode(args
->trans
, dp
, XFS_ILOG_CORE
| XFS_ILOG_DDATA
);
972 * Replace the inode number of an entry in a shortform directory.
976 xfs_da_args_t
*args
) /* operation arguments */
978 xfs_inode_t
*dp
; /* incore directory inode */
979 int i
; /* entry index */
980 #if XFS_BIG_INUMS || defined(DEBUG)
981 xfs_ino_t ino
=0; /* entry old inode number */
984 int i8elevated
; /* sf_toino8 set i8count=1 */
986 xfs_dir2_sf_entry_t
*sfep
; /* shortform directory entry */
987 xfs_dir2_sf_hdr_t
*sfp
; /* shortform structure */
989 trace_xfs_dir2_sf_replace(args
);
993 ASSERT(dp
->i_df
.if_flags
& XFS_IFINLINE
);
995 * Bail out if the shortform directory is way too small.
997 if (dp
->i_d
.di_size
< offsetof(xfs_dir2_sf_hdr_t
, parent
)) {
998 ASSERT(XFS_FORCED_SHUTDOWN(dp
->i_mount
));
999 return XFS_ERROR(EIO
);
1001 ASSERT(dp
->i_df
.if_bytes
== dp
->i_d
.di_size
);
1002 ASSERT(dp
->i_df
.if_u1
.if_data
!= NULL
);
1003 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
1004 ASSERT(dp
->i_d
.di_size
>= xfs_dir2_sf_hdr_size(sfp
->i8count
));
1007 * New inode number is large, and need to convert to 8-byte inodes.
1009 if (args
->inumber
> XFS_DIR2_MAX_SHORT_INUM
&& sfp
->i8count
== 0) {
1010 int error
; /* error return value */
1011 int newsize
; /* new inode size */
1016 ((uint
)sizeof(xfs_dir2_ino8_t
) -
1017 (uint
)sizeof(xfs_dir2_ino4_t
));
1019 * Won't fit as shortform, convert to block then do replace.
1021 if (newsize
> XFS_IFORK_DSIZE(dp
)) {
1022 error
= xfs_dir2_sf_to_block(args
);
1026 return xfs_dir2_block_replace(args
);
1029 * Still fits, convert to 8-byte now.
1031 xfs_dir2_sf_toino8(args
);
1033 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
1037 ASSERT(args
->namelen
!= 1 || args
->name
[0] != '.');
1039 * Replace ..'s entry.
1041 if (args
->namelen
== 2 &&
1042 args
->name
[0] == '.' && args
->name
[1] == '.') {
1043 #if XFS_BIG_INUMS || defined(DEBUG)
1044 ino
= xfs_dir2_sf_get_parent_ino(sfp
);
1045 ASSERT(args
->inumber
!= ino
);
1047 xfs_dir2_sf_put_parent_ino(sfp
, args
->inumber
);
1050 * Normal entry, look for the name.
1053 for (i
= 0, sfep
= xfs_dir2_sf_firstentry(sfp
); i
< sfp
->count
;
1054 i
++, sfep
= xfs_dir3_sf_nextentry(dp
->i_mount
, sfp
, sfep
)) {
1055 if (xfs_da_compname(args
, sfep
->name
, sfep
->namelen
) ==
1057 #if XFS_BIG_INUMS || defined(DEBUG)
1058 ino
= xfs_dir3_sfe_get_ino(dp
->i_mount
,
1060 ASSERT(args
->inumber
!= ino
);
1062 xfs_dir3_sfe_put_ino(dp
->i_mount
, sfp
, sfep
,
1064 xfs_dir3_sfe_put_ftype(dp
->i_mount
, sfp
, sfep
,
1072 if (i
== sfp
->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
->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
->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 int newsize
; /* new inode size */
1127 xfs_dir2_sf_entry_t
*oldsfep
; /* old sf entry */
1128 xfs_dir2_sf_hdr_t
*oldsfp
; /* old sf directory */
1129 int oldsize
; /* old inode size */
1130 xfs_dir2_sf_entry_t
*sfep
; /* new sf entry */
1131 xfs_dir2_sf_hdr_t
*sfp
; /* new sf directory */
1132 struct xfs_mount
*mp
;
1134 trace_xfs_dir2_sf_toino4(args
);
1140 * Copy the old directory to the buffer.
1141 * Then nuke it from the inode, and add the new buffer to the inode.
1142 * Don't want xfs_idata_realloc copying the data here.
1144 oldsize
= dp
->i_df
.if_bytes
;
1145 buf
= kmem_alloc(oldsize
, KM_SLEEP
);
1146 oldsfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
1147 ASSERT(oldsfp
->i8count
== 1);
1148 memcpy(buf
, oldsfp
, oldsize
);
1150 * Compute the new inode size.
1154 (oldsfp
->count
+ 1) *
1155 ((uint
)sizeof(xfs_dir2_ino8_t
) - (uint
)sizeof(xfs_dir2_ino4_t
));
1156 xfs_idata_realloc(dp
, -oldsize
, XFS_DATA_FORK
);
1157 xfs_idata_realloc(dp
, newsize
, XFS_DATA_FORK
);
1159 * Reset our pointers, the data has moved.
1161 oldsfp
= (xfs_dir2_sf_hdr_t
*)buf
;
1162 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
1164 * Fill in the new header.
1166 sfp
->count
= oldsfp
->count
;
1168 xfs_dir2_sf_put_parent_ino(sfp
, xfs_dir2_sf_get_parent_ino(oldsfp
));
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_dir3_sf_nextentry(mp
, sfp
, sfep
),
1176 oldsfep
= xfs_dir3_sf_nextentry(mp
, oldsfp
, oldsfep
)) {
1177 sfep
->namelen
= oldsfep
->namelen
;
1178 sfep
->offset
= oldsfep
->offset
;
1179 memcpy(sfep
->name
, oldsfep
->name
, sfep
->namelen
);
1180 xfs_dir3_sfe_put_ino(mp
, sfp
, sfep
,
1181 xfs_dir3_sfe_get_ino(mp
, oldsfp
, oldsfep
));
1182 xfs_dir3_sfe_put_ftype(mp
, sfp
, sfep
,
1183 xfs_dir3_sfe_get_ftype(mp
, oldsfp
, oldsfep
));
1186 * Clean up the inode.
1189 dp
->i_d
.di_size
= newsize
;
1190 xfs_trans_log_inode(args
->trans
, dp
, XFS_ILOG_CORE
| XFS_ILOG_DDATA
);
1194 * Convert from 4-byte inode numbers to 8-byte inode numbers.
1195 * The new 8-byte inode number is not there yet, we leave with the
1196 * count 1 but no corresponding entry.
1200 xfs_da_args_t
*args
) /* operation arguments */
1202 char *buf
; /* old dir's buffer */
1203 xfs_inode_t
*dp
; /* incore directory inode */
1204 int i
; /* entry index */
1205 int newsize
; /* new inode size */
1206 xfs_dir2_sf_entry_t
*oldsfep
; /* old sf entry */
1207 xfs_dir2_sf_hdr_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_hdr_t
*sfp
; /* new sf directory */
1211 struct xfs_mount
*mp
;
1213 trace_xfs_dir2_sf_toino8(args
);
1219 * Copy the old directory to the buffer.
1220 * Then nuke it from the inode, and add the new buffer to the inode.
1221 * Don't want xfs_idata_realloc copying the data here.
1223 oldsize
= dp
->i_df
.if_bytes
;
1224 buf
= kmem_alloc(oldsize
, KM_SLEEP
);
1225 oldsfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
1226 ASSERT(oldsfp
->i8count
== 0);
1227 memcpy(buf
, oldsfp
, oldsize
);
1229 * Compute the new inode size.
1233 (oldsfp
->count
+ 1) *
1234 ((uint
)sizeof(xfs_dir2_ino8_t
) - (uint
)sizeof(xfs_dir2_ino4_t
));
1235 xfs_idata_realloc(dp
, -oldsize
, XFS_DATA_FORK
);
1236 xfs_idata_realloc(dp
, newsize
, XFS_DATA_FORK
);
1238 * Reset our pointers, the data has moved.
1240 oldsfp
= (xfs_dir2_sf_hdr_t
*)buf
;
1241 sfp
= (xfs_dir2_sf_hdr_t
*)dp
->i_df
.if_u1
.if_data
;
1243 * Fill in the new header.
1245 sfp
->count
= oldsfp
->count
;
1247 xfs_dir2_sf_put_parent_ino(sfp
, xfs_dir2_sf_get_parent_ino(oldsfp
));
1249 * Copy the entries field by field.
1251 for (i
= 0, sfep
= xfs_dir2_sf_firstentry(sfp
),
1252 oldsfep
= xfs_dir2_sf_firstentry(oldsfp
);
1254 i
++, sfep
= xfs_dir3_sf_nextentry(mp
, sfp
, sfep
),
1255 oldsfep
= xfs_dir3_sf_nextentry(mp
, oldsfp
, oldsfep
)) {
1256 sfep
->namelen
= oldsfep
->namelen
;
1257 sfep
->offset
= oldsfep
->offset
;
1258 memcpy(sfep
->name
, oldsfep
->name
, sfep
->namelen
);
1259 xfs_dir3_sfe_put_ino(mp
, sfp
, sfep
,
1260 xfs_dir3_sfe_get_ino(mp
, oldsfp
, oldsfep
));
1261 xfs_dir3_sfe_put_ftype(mp
, sfp
, sfep
,
1262 xfs_dir3_sfe_get_ftype(mp
, oldsfp
, oldsfep
));
1265 * Clean up the inode.
1268 dp
->i_d
.di_size
= newsize
;
1269 xfs_trans_log_inode(args
->trans
, dp
, XFS_ILOG_CORE
| XFS_ILOG_DDATA
);
1271 #endif /* XFS_BIG_INUMS */