]> rtime.felk.cvut.cz Git - linux-imx.git/blob - fs/xfs/xfs_dir2_sf.c
drm/radeon: only save UVD bo when we have open handles
[linux-imx.git] / fs / xfs / xfs_dir2_sf.c
1 /*
2  * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
3  * All Rights Reserved.
4  *
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.
8  *
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.
13  *
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
17  */
18 #include "xfs.h"
19 #include "xfs_fs.h"
20 #include "xfs_types.h"
21 #include "xfs_log.h"
22 #include "xfs_trans.h"
23 #include "xfs_sb.h"
24 #include "xfs_ag.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.h"
33 #include "xfs_dir2_format.h"
34 #include "xfs_dir2_priv.h"
35 #include "xfs_trace.h"
36
37 /*
38  * Prototypes for internal functions.
39  */
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,
43                                      int new_isize);
44 static void xfs_dir2_sf_addname_hard(xfs_da_args_t *args, int objchange,
45                                      int new_isize);
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);
49 #ifdef DEBUG
50 static void xfs_dir2_sf_check(xfs_da_args_t *args);
51 #else
52 #define xfs_dir2_sf_check(args)
53 #endif /* DEBUG */
54 #if XFS_BIG_INUMS
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 */
58
59 /*
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.
63  *
64  * For 64-bit inode number the most significant byte must be zero.
65  */
66 static xfs_ino_t
67 xfs_dir2_sf_get_ino(
68         struct xfs_dir2_sf_hdr  *hdr,
69         xfs_dir2_inou_t         *from)
70 {
71         if (hdr->i8count)
72                 return get_unaligned_be64(&from->i8.i) & 0x00ffffffffffffffULL;
73         else
74                 return get_unaligned_be32(&from->i4.i);
75 }
76
77 static void
78 xfs_dir2_sf_put_ino(
79         struct xfs_dir2_sf_hdr  *hdr,
80         xfs_dir2_inou_t         *to,
81         xfs_ino_t               ino)
82 {
83         ASSERT((ino & 0xff00000000000000ULL) == 0);
84
85         if (hdr->i8count)
86                 put_unaligned_be64(ino, &to->i8.i);
87         else
88                 put_unaligned_be32(ino, &to->i4.i);
89 }
90
91 xfs_ino_t
92 xfs_dir2_sf_get_parent_ino(
93         struct xfs_dir2_sf_hdr  *hdr)
94 {
95         return xfs_dir2_sf_get_ino(hdr, &hdr->parent);
96 }
97
98 static void
99 xfs_dir2_sf_put_parent_ino(
100         struct xfs_dir2_sf_hdr  *hdr,
101         xfs_ino_t               ino)
102 {
103         xfs_dir2_sf_put_ino(hdr, &hdr->parent, ino);
104 }
105
106 /*
107  * In short-form directory entries the inode numbers are stored at variable
108  * offset behind the entry name.  The inode numbers may only be accessed
109  * through the helpers below.
110  */
111 static xfs_dir2_inou_t *
112 xfs_dir2_sfe_inop(
113         struct xfs_dir2_sf_entry *sfep)
114 {
115         return (xfs_dir2_inou_t *)&sfep->name[sfep->namelen];
116 }
117
118 xfs_ino_t
119 xfs_dir2_sfe_get_ino(
120         struct xfs_dir2_sf_hdr  *hdr,
121         struct xfs_dir2_sf_entry *sfep)
122 {
123         return xfs_dir2_sf_get_ino(hdr, xfs_dir2_sfe_inop(sfep));
124 }
125
126 static void
127 xfs_dir2_sfe_put_ino(
128         struct xfs_dir2_sf_hdr  *hdr,
129         struct xfs_dir2_sf_entry *sfep,
130         xfs_ino_t               ino)
131 {
132         xfs_dir2_sf_put_ino(hdr, xfs_dir2_sfe_inop(sfep), ino);
133 }
134
135 /*
136  * Given a block directory (dp/block), calculate its size as a shortform (sf)
137  * directory and a header for the sf directory, if it will fit it the
138  * space currently present in the inode.  If it won't fit, the output
139  * size is too big (but not accurate).
140  */
141 int                                             /* size for sf form */
142 xfs_dir2_block_sfsize(
143         xfs_inode_t             *dp,            /* incore inode pointer */
144         xfs_dir2_data_hdr_t     *hdr,           /* block directory data */
145         xfs_dir2_sf_hdr_t       *sfhp)          /* output: header for sf form */
146 {
147         xfs_dir2_dataptr_t      addr;           /* data entry address */
148         xfs_dir2_leaf_entry_t   *blp;           /* leaf area of the block */
149         xfs_dir2_block_tail_t   *btp;           /* tail area of the block */
150         int                     count;          /* shortform entry count */
151         xfs_dir2_data_entry_t   *dep;           /* data entry in the block */
152         int                     i;              /* block entry index */
153         int                     i8count;        /* count of big-inode entries */
154         int                     isdot;          /* entry is "." */
155         int                     isdotdot;       /* entry is ".." */
156         xfs_mount_t             *mp;            /* mount structure pointer */
157         int                     namelen;        /* total name bytes */
158         xfs_ino_t               parent = 0;     /* parent inode number */
159         int                     size=0;         /* total computed size */
160
161         mp = dp->i_mount;
162
163         count = i8count = namelen = 0;
164         btp = xfs_dir2_block_tail_p(mp, hdr);
165         blp = xfs_dir2_block_leaf_p(btp);
166
167         /*
168          * Iterate over the block's data entries by using the leaf pointers.
169          */
170         for (i = 0; i < be32_to_cpu(btp->count); i++) {
171                 if ((addr = be32_to_cpu(blp[i].address)) == XFS_DIR2_NULL_DATAPTR)
172                         continue;
173                 /*
174                  * Calculate the pointer to the entry at hand.
175                  */
176                 dep = (xfs_dir2_data_entry_t *)
177                       ((char *)hdr + xfs_dir2_dataptr_to_off(mp, addr));
178                 /*
179                  * Detect . and .., so we can special-case them.
180                  * . is not included in sf directories.
181                  * .. is included by just the parent inode number.
182                  */
183                 isdot = dep->namelen == 1 && dep->name[0] == '.';
184                 isdotdot =
185                         dep->namelen == 2 &&
186                         dep->name[0] == '.' && dep->name[1] == '.';
187 #if XFS_BIG_INUMS
188                 if (!isdot)
189                         i8count += be64_to_cpu(dep->inumber) > XFS_DIR2_MAX_SHORT_INUM;
190 #endif
191                 if (!isdot && !isdotdot) {
192                         count++;
193                         namelen += dep->namelen;
194                 } else if (isdotdot)
195                         parent = be64_to_cpu(dep->inumber);
196                 /*
197                  * Calculate the new size, see if we should give up yet.
198                  */
199                 size = xfs_dir2_sf_hdr_size(i8count) +          /* header */
200                        count +                                  /* namelen */
201                        count * (uint)sizeof(xfs_dir2_sf_off_t) + /* offset */
202                        namelen +                                /* name */
203                        (i8count ?                               /* inumber */
204                                 (uint)sizeof(xfs_dir2_ino8_t) * count :
205                                 (uint)sizeof(xfs_dir2_ino4_t) * count);
206                 if (size > XFS_IFORK_DSIZE(dp))
207                         return size;            /* size value is a failure */
208         }
209         /*
210          * Create the output header, if it worked.
211          */
212         sfhp->count = count;
213         sfhp->i8count = i8count;
214         xfs_dir2_sf_put_parent_ino(sfhp, parent);
215         return size;
216 }
217
218 /*
219  * Convert a block format directory to shortform.
220  * Caller has already checked that it will fit, and built us a header.
221  */
222 int                                             /* error */
223 xfs_dir2_block_to_sf(
224         xfs_da_args_t           *args,          /* operation arguments */
225         struct xfs_buf          *bp,
226         int                     size,           /* shortform directory size */
227         xfs_dir2_sf_hdr_t       *sfhp)          /* shortform directory hdr */
228 {
229         xfs_dir2_data_hdr_t     *hdr;           /* block header */
230         xfs_dir2_block_tail_t   *btp;           /* block tail pointer */
231         xfs_dir2_data_entry_t   *dep;           /* data entry pointer */
232         xfs_inode_t             *dp;            /* incore directory inode */
233         xfs_dir2_data_unused_t  *dup;           /* unused data pointer */
234         char                    *endptr;        /* end of data entries */
235         int                     error;          /* error return value */
236         int                     logflags;       /* inode logging flags */
237         xfs_mount_t             *mp;            /* filesystem mount point */
238         char                    *ptr;           /* current data pointer */
239         xfs_dir2_sf_entry_t     *sfep;          /* shortform entry */
240         xfs_dir2_sf_hdr_t       *sfp;           /* shortform directory header */
241
242         trace_xfs_dir2_block_to_sf(args);
243
244         dp = args->dp;
245         mp = dp->i_mount;
246
247         /*
248          * Make a copy of the block data, so we can shrink the inode
249          * and add local data.
250          */
251         hdr = kmem_alloc(mp->m_dirblksize, KM_SLEEP);
252         memcpy(hdr, bp->b_addr, mp->m_dirblksize);
253         logflags = XFS_ILOG_CORE;
254         if ((error = xfs_dir2_shrink_inode(args, mp->m_dirdatablk, bp))) {
255                 ASSERT(error != ENOSPC);
256                 goto out;
257         }
258
259         /*
260          * The buffer is now unconditionally gone, whether
261          * xfs_dir2_shrink_inode worked or not.
262          *
263          * Convert the inode to local format.
264          */
265         dp->i_df.if_flags &= ~XFS_IFEXTENTS;
266         dp->i_df.if_flags |= XFS_IFINLINE;
267         dp->i_d.di_format = XFS_DINODE_FMT_LOCAL;
268         ASSERT(dp->i_df.if_bytes == 0);
269         xfs_idata_realloc(dp, size, XFS_DATA_FORK);
270         logflags |= XFS_ILOG_DDATA;
271         /*
272          * Copy the header into the newly allocate local space.
273          */
274         sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
275         memcpy(sfp, sfhp, xfs_dir2_sf_hdr_size(sfhp->i8count));
276         dp->i_d.di_size = size;
277         /*
278          * Set up to loop over the block's entries.
279          */
280         btp = xfs_dir2_block_tail_p(mp, hdr);
281         ptr = (char *)xfs_dir3_data_entry_p(hdr);
282         endptr = (char *)xfs_dir2_block_leaf_p(btp);
283         sfep = xfs_dir2_sf_firstentry(sfp);
284         /*
285          * Loop over the active and unused entries.
286          * Stop when we reach the leaf/tail portion of the block.
287          */
288         while (ptr < endptr) {
289                 /*
290                  * If it's unused, just skip over it.
291                  */
292                 dup = (xfs_dir2_data_unused_t *)ptr;
293                 if (be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
294                         ptr += be16_to_cpu(dup->length);
295                         continue;
296                 }
297                 dep = (xfs_dir2_data_entry_t *)ptr;
298                 /*
299                  * Skip .
300                  */
301                 if (dep->namelen == 1 && dep->name[0] == '.')
302                         ASSERT(be64_to_cpu(dep->inumber) == dp->i_ino);
303                 /*
304                  * Skip .., but make sure the inode number is right.
305                  */
306                 else if (dep->namelen == 2 &&
307                          dep->name[0] == '.' && dep->name[1] == '.')
308                         ASSERT(be64_to_cpu(dep->inumber) ==
309                                xfs_dir2_sf_get_parent_ino(sfp));
310                 /*
311                  * Normal entry, copy it into shortform.
312                  */
313                 else {
314                         sfep->namelen = dep->namelen;
315                         xfs_dir2_sf_put_offset(sfep,
316                                 (xfs_dir2_data_aoff_t)
317                                 ((char *)dep - (char *)hdr));
318                         memcpy(sfep->name, dep->name, dep->namelen);
319                         xfs_dir2_sfe_put_ino(sfp, sfep,
320                                              be64_to_cpu(dep->inumber));
321
322                         sfep = xfs_dir2_sf_nextentry(sfp, sfep);
323                 }
324                 ptr += xfs_dir2_data_entsize(dep->namelen);
325         }
326         ASSERT((char *)sfep - (char *)sfp == size);
327         xfs_dir2_sf_check(args);
328 out:
329         xfs_trans_log_inode(args->trans, dp, logflags);
330         kmem_free(hdr);
331         return error;
332 }
333
334 /*
335  * Add a name to a shortform directory.
336  * There are two algorithms, "easy" and "hard" which we decide on
337  * before changing anything.
338  * Convert to block form if necessary, if the new entry won't fit.
339  */
340 int                                             /* error */
341 xfs_dir2_sf_addname(
342         xfs_da_args_t           *args)          /* operation arguments */
343 {
344         int                     add_entsize;    /* size of the new entry */
345         xfs_inode_t             *dp;            /* incore directory inode */
346         int                     error;          /* error return value */
347         int                     incr_isize;     /* total change in size */
348         int                     new_isize;      /* di_size after adding name */
349         int                     objchange;      /* changing to 8-byte inodes */
350         xfs_dir2_data_aoff_t    offset = 0;     /* offset for new entry */
351         int                     old_isize;      /* di_size before adding name */
352         int                     pick;           /* which algorithm to use */
353         xfs_dir2_sf_hdr_t       *sfp;           /* shortform structure */
354         xfs_dir2_sf_entry_t     *sfep = NULL;   /* shortform entry */
355
356         trace_xfs_dir2_sf_addname(args);
357
358         ASSERT(xfs_dir2_sf_lookup(args) == ENOENT);
359         dp = args->dp;
360         ASSERT(dp->i_df.if_flags & XFS_IFINLINE);
361         /*
362          * Make sure the shortform value has some of its header.
363          */
364         if (dp->i_d.di_size < offsetof(xfs_dir2_sf_hdr_t, parent)) {
365                 ASSERT(XFS_FORCED_SHUTDOWN(dp->i_mount));
366                 return XFS_ERROR(EIO);
367         }
368         ASSERT(dp->i_df.if_bytes == dp->i_d.di_size);
369         ASSERT(dp->i_df.if_u1.if_data != NULL);
370         sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
371         ASSERT(dp->i_d.di_size >= xfs_dir2_sf_hdr_size(sfp->i8count));
372         /*
373          * Compute entry (and change in) size.
374          */
375         add_entsize = xfs_dir2_sf_entsize(sfp, args->namelen);
376         incr_isize = add_entsize;
377         objchange = 0;
378 #if XFS_BIG_INUMS
379         /*
380          * Do we have to change to 8 byte inodes?
381          */
382         if (args->inumber > XFS_DIR2_MAX_SHORT_INUM && sfp->i8count == 0) {
383                 /*
384                  * Yes, adjust the entry size and the total size.
385                  */
386                 add_entsize +=
387                         (uint)sizeof(xfs_dir2_ino8_t) -
388                         (uint)sizeof(xfs_dir2_ino4_t);
389                 incr_isize +=
390                         (sfp->count + 2) *
391                         ((uint)sizeof(xfs_dir2_ino8_t) -
392                          (uint)sizeof(xfs_dir2_ino4_t));
393                 objchange = 1;
394         }
395 #endif
396         old_isize = (int)dp->i_d.di_size;
397         new_isize = old_isize + incr_isize;
398         /*
399          * Won't fit as shortform any more (due to size),
400          * or the pick routine says it won't (due to offset values).
401          */
402         if (new_isize > XFS_IFORK_DSIZE(dp) ||
403             (pick =
404              xfs_dir2_sf_addname_pick(args, objchange, &sfep, &offset)) == 0) {
405                 /*
406                  * Just checking or no space reservation, it doesn't fit.
407                  */
408                 if ((args->op_flags & XFS_DA_OP_JUSTCHECK) || args->total == 0)
409                         return XFS_ERROR(ENOSPC);
410                 /*
411                  * Convert to block form then add the name.
412                  */
413                 error = xfs_dir2_sf_to_block(args);
414                 if (error)
415                         return error;
416                 return xfs_dir2_block_addname(args);
417         }
418         /*
419          * Just checking, it fits.
420          */
421         if (args->op_flags & XFS_DA_OP_JUSTCHECK)
422                 return 0;
423         /*
424          * Do it the easy way - just add it at the end.
425          */
426         if (pick == 1)
427                 xfs_dir2_sf_addname_easy(args, sfep, offset, new_isize);
428         /*
429          * Do it the hard way - look for a place to insert the new entry.
430          * Convert to 8 byte inode numbers first if necessary.
431          */
432         else {
433                 ASSERT(pick == 2);
434 #if XFS_BIG_INUMS
435                 if (objchange)
436                         xfs_dir2_sf_toino8(args);
437 #endif
438                 xfs_dir2_sf_addname_hard(args, objchange, new_isize);
439         }
440         xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE | XFS_ILOG_DDATA);
441         return 0;
442 }
443
444 /*
445  * Add the new entry the "easy" way.
446  * This is copying the old directory and adding the new entry at the end.
447  * Since it's sorted by "offset" we need room after the last offset
448  * that's already there, and then room to convert to a block directory.
449  * This is already checked by the pick routine.
450  */
451 static void
452 xfs_dir2_sf_addname_easy(
453         xfs_da_args_t           *args,          /* operation arguments */
454         xfs_dir2_sf_entry_t     *sfep,          /* pointer to new entry */
455         xfs_dir2_data_aoff_t    offset,         /* offset to use for new ent */
456         int                     new_isize)      /* new directory size */
457 {
458         int                     byteoff;        /* byte offset in sf dir */
459         xfs_inode_t             *dp;            /* incore directory inode */
460         xfs_dir2_sf_hdr_t       *sfp;           /* shortform structure */
461
462         dp = args->dp;
463
464         sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
465         byteoff = (int)((char *)sfep - (char *)sfp);
466         /*
467          * Grow the in-inode space.
468          */
469         xfs_idata_realloc(dp, xfs_dir2_sf_entsize(sfp, args->namelen),
470                 XFS_DATA_FORK);
471         /*
472          * Need to set up again due to realloc of the inode data.
473          */
474         sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
475         sfep = (xfs_dir2_sf_entry_t *)((char *)sfp + byteoff);
476         /*
477          * Fill in the new entry.
478          */
479         sfep->namelen = args->namelen;
480         xfs_dir2_sf_put_offset(sfep, offset);
481         memcpy(sfep->name, args->name, sfep->namelen);
482         xfs_dir2_sfe_put_ino(sfp, sfep, args->inumber);
483         /*
484          * Update the header and inode.
485          */
486         sfp->count++;
487 #if XFS_BIG_INUMS
488         if (args->inumber > XFS_DIR2_MAX_SHORT_INUM)
489                 sfp->i8count++;
490 #endif
491         dp->i_d.di_size = new_isize;
492         xfs_dir2_sf_check(args);
493 }
494
495 /*
496  * Add the new entry the "hard" way.
497  * The caller has already converted to 8 byte inode numbers if necessary,
498  * in which case we need to leave the i8count at 1.
499  * Find a hole that the new entry will fit into, and copy
500  * the first part of the entries, the new entry, and the last part of
501  * the entries.
502  */
503 /* ARGSUSED */
504 static void
505 xfs_dir2_sf_addname_hard(
506         xfs_da_args_t           *args,          /* operation arguments */
507         int                     objchange,      /* changing inode number size */
508         int                     new_isize)      /* new directory size */
509 {
510         int                     add_datasize;   /* data size need for new ent */
511         char                    *buf;           /* buffer for old */
512         xfs_inode_t             *dp;            /* incore directory inode */
513         int                     eof;            /* reached end of old dir */
514         int                     nbytes;         /* temp for byte copies */
515         xfs_dir2_data_aoff_t    new_offset;     /* next offset value */
516         xfs_dir2_data_aoff_t    offset;         /* current offset value */
517         int                     old_isize;      /* previous di_size */
518         xfs_dir2_sf_entry_t     *oldsfep;       /* entry in original dir */
519         xfs_dir2_sf_hdr_t       *oldsfp;        /* original shortform dir */
520         xfs_dir2_sf_entry_t     *sfep;          /* entry in new dir */
521         xfs_dir2_sf_hdr_t       *sfp;           /* new shortform dir */
522
523         /*
524          * Copy the old directory to the stack buffer.
525          */
526         dp = args->dp;
527
528         sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
529         old_isize = (int)dp->i_d.di_size;
530         buf = kmem_alloc(old_isize, KM_SLEEP);
531         oldsfp = (xfs_dir2_sf_hdr_t *)buf;
532         memcpy(oldsfp, sfp, old_isize);
533         /*
534          * Loop over the old directory finding the place we're going
535          * to insert the new entry.
536          * If it's going to end up at the end then oldsfep will point there.
537          */
538         for (offset = XFS_DIR3_DATA_FIRST_OFFSET(dp->i_mount),
539               oldsfep = xfs_dir2_sf_firstentry(oldsfp),
540               add_datasize = xfs_dir2_data_entsize(args->namelen),
541               eof = (char *)oldsfep == &buf[old_isize];
542              !eof;
543              offset = new_offset + xfs_dir2_data_entsize(oldsfep->namelen),
544               oldsfep = xfs_dir2_sf_nextentry(oldsfp, oldsfep),
545               eof = (char *)oldsfep == &buf[old_isize]) {
546                 new_offset = xfs_dir2_sf_get_offset(oldsfep);
547                 if (offset + add_datasize <= new_offset)
548                         break;
549         }
550         /*
551          * Get rid of the old directory, then allocate space for
552          * the new one.  We do this so xfs_idata_realloc won't copy
553          * the data.
554          */
555         xfs_idata_realloc(dp, -old_isize, XFS_DATA_FORK);
556         xfs_idata_realloc(dp, new_isize, XFS_DATA_FORK);
557         /*
558          * Reset the pointer since the buffer was reallocated.
559          */
560         sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
561         /*
562          * Copy the first part of the directory, including the header.
563          */
564         nbytes = (int)((char *)oldsfep - (char *)oldsfp);
565         memcpy(sfp, oldsfp, nbytes);
566         sfep = (xfs_dir2_sf_entry_t *)((char *)sfp + nbytes);
567         /*
568          * Fill in the new entry, and update the header counts.
569          */
570         sfep->namelen = args->namelen;
571         xfs_dir2_sf_put_offset(sfep, offset);
572         memcpy(sfep->name, args->name, sfep->namelen);
573         xfs_dir2_sfe_put_ino(sfp, sfep, args->inumber);
574         sfp->count++;
575 #if XFS_BIG_INUMS
576         if (args->inumber > XFS_DIR2_MAX_SHORT_INUM && !objchange)
577                 sfp->i8count++;
578 #endif
579         /*
580          * If there's more left to copy, do that.
581          */
582         if (!eof) {
583                 sfep = xfs_dir2_sf_nextentry(sfp, sfep);
584                 memcpy(sfep, oldsfep, old_isize - nbytes);
585         }
586         kmem_free(buf);
587         dp->i_d.di_size = new_isize;
588         xfs_dir2_sf_check(args);
589 }
590
591 /*
592  * Decide if the new entry will fit at all.
593  * If it will fit, pick between adding the new entry to the end (easy)
594  * or somewhere else (hard).
595  * Return 0 (won't fit), 1 (easy), 2 (hard).
596  */
597 /*ARGSUSED*/
598 static int                                      /* pick result */
599 xfs_dir2_sf_addname_pick(
600         xfs_da_args_t           *args,          /* operation arguments */
601         int                     objchange,      /* inode # size changes */
602         xfs_dir2_sf_entry_t     **sfepp,        /* out(1): new entry ptr */
603         xfs_dir2_data_aoff_t    *offsetp)       /* out(1): new offset */
604 {
605         xfs_inode_t             *dp;            /* incore directory inode */
606         int                     holefit;        /* found hole it will fit in */
607         int                     i;              /* entry number */
608         xfs_mount_t             *mp;            /* filesystem mount point */
609         xfs_dir2_data_aoff_t    offset;         /* data block offset */
610         xfs_dir2_sf_entry_t     *sfep;          /* shortform entry */
611         xfs_dir2_sf_hdr_t       *sfp;           /* shortform structure */
612         int                     size;           /* entry's data size */
613         int                     used;           /* data bytes used */
614
615         dp = args->dp;
616         mp = dp->i_mount;
617
618         sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
619         size = xfs_dir2_data_entsize(args->namelen);
620         offset = XFS_DIR3_DATA_FIRST_OFFSET(mp);
621         sfep = xfs_dir2_sf_firstentry(sfp);
622         holefit = 0;
623         /*
624          * Loop over sf entries.
625          * Keep track of data offset and whether we've seen a place
626          * to insert the new entry.
627          */
628         for (i = 0; i < sfp->count; i++) {
629                 if (!holefit)
630                         holefit = offset + size <= xfs_dir2_sf_get_offset(sfep);
631                 offset = xfs_dir2_sf_get_offset(sfep) +
632                          xfs_dir2_data_entsize(sfep->namelen);
633                 sfep = xfs_dir2_sf_nextentry(sfp, sfep);
634         }
635         /*
636          * Calculate data bytes used excluding the new entry, if this
637          * was a data block (block form directory).
638          */
639         used = offset +
640                (sfp->count + 3) * (uint)sizeof(xfs_dir2_leaf_entry_t) +
641                (uint)sizeof(xfs_dir2_block_tail_t);
642         /*
643          * If it won't fit in a block form then we can't insert it,
644          * we'll go back, convert to block, then try the insert and convert
645          * to leaf.
646          */
647         if (used + (holefit ? 0 : size) > mp->m_dirblksize)
648                 return 0;
649         /*
650          * If changing the inode number size, do it the hard way.
651          */
652 #if XFS_BIG_INUMS
653         if (objchange) {
654                 return 2;
655         }
656 #else
657         ASSERT(objchange == 0);
658 #endif
659         /*
660          * If it won't fit at the end then do it the hard way (use the hole).
661          */
662         if (used + size > mp->m_dirblksize)
663                 return 2;
664         /*
665          * Do it the easy way.
666          */
667         *sfepp = sfep;
668         *offsetp = offset;
669         return 1;
670 }
671
672 #ifdef DEBUG
673 /*
674  * Check consistency of shortform directory, assert if bad.
675  */
676 static void
677 xfs_dir2_sf_check(
678         xfs_da_args_t           *args)          /* operation arguments */
679 {
680         xfs_inode_t             *dp;            /* incore directory inode */
681         int                     i;              /* entry number */
682         int                     i8count;        /* number of big inode#s */
683         xfs_ino_t               ino;            /* entry inode number */
684         int                     offset;         /* data offset */
685         xfs_dir2_sf_entry_t     *sfep;          /* shortform dir entry */
686         xfs_dir2_sf_hdr_t       *sfp;           /* shortform structure */
687
688         dp = args->dp;
689
690         sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
691         offset = XFS_DIR3_DATA_FIRST_OFFSET(dp->i_mount);
692         ino = xfs_dir2_sf_get_parent_ino(sfp);
693         i8count = ino > XFS_DIR2_MAX_SHORT_INUM;
694
695         for (i = 0, sfep = xfs_dir2_sf_firstentry(sfp);
696              i < sfp->count;
697              i++, sfep = xfs_dir2_sf_nextentry(sfp, sfep)) {
698                 ASSERT(xfs_dir2_sf_get_offset(sfep) >= offset);
699                 ino = xfs_dir2_sfe_get_ino(sfp, sfep);
700                 i8count += ino > XFS_DIR2_MAX_SHORT_INUM;
701                 offset =
702                         xfs_dir2_sf_get_offset(sfep) +
703                         xfs_dir2_data_entsize(sfep->namelen);
704         }
705         ASSERT(i8count == sfp->i8count);
706         ASSERT(XFS_BIG_INUMS || i8count == 0);
707         ASSERT((char *)sfep - (char *)sfp == dp->i_d.di_size);
708         ASSERT(offset +
709                (sfp->count + 2) * (uint)sizeof(xfs_dir2_leaf_entry_t) +
710                (uint)sizeof(xfs_dir2_block_tail_t) <=
711                dp->i_mount->m_dirblksize);
712 }
713 #endif  /* DEBUG */
714
715 /*
716  * Create a new (shortform) directory.
717  */
718 int                                     /* error, always 0 */
719 xfs_dir2_sf_create(
720         xfs_da_args_t   *args,          /* operation arguments */
721         xfs_ino_t       pino)           /* parent inode number */
722 {
723         xfs_inode_t     *dp;            /* incore directory inode */
724         int             i8count;        /* parent inode is an 8-byte number */
725         xfs_dir2_sf_hdr_t *sfp;         /* shortform structure */
726         int             size;           /* directory size */
727
728         trace_xfs_dir2_sf_create(args);
729
730         dp = args->dp;
731
732         ASSERT(dp != NULL);
733         ASSERT(dp->i_d.di_size == 0);
734         /*
735          * If it's currently a zero-length extent file,
736          * convert it to local format.
737          */
738         if (dp->i_d.di_format == XFS_DINODE_FMT_EXTENTS) {
739                 dp->i_df.if_flags &= ~XFS_IFEXTENTS;    /* just in case */
740                 dp->i_d.di_format = XFS_DINODE_FMT_LOCAL;
741                 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE);
742                 dp->i_df.if_flags |= XFS_IFINLINE;
743         }
744         ASSERT(dp->i_df.if_flags & XFS_IFINLINE);
745         ASSERT(dp->i_df.if_bytes == 0);
746         i8count = pino > XFS_DIR2_MAX_SHORT_INUM;
747         size = xfs_dir2_sf_hdr_size(i8count);
748         /*
749          * Make a buffer for the data.
750          */
751         xfs_idata_realloc(dp, size, XFS_DATA_FORK);
752         /*
753          * Fill in the header,
754          */
755         sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
756         sfp->i8count = i8count;
757         /*
758          * Now can put in the inode number, since i8count is set.
759          */
760         xfs_dir2_sf_put_parent_ino(sfp, pino);
761         sfp->count = 0;
762         dp->i_d.di_size = size;
763         xfs_dir2_sf_check(args);
764         xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE | XFS_ILOG_DDATA);
765         return 0;
766 }
767
768 int                                             /* error */
769 xfs_dir2_sf_getdents(
770         xfs_inode_t             *dp,            /* incore directory inode */
771         struct dir_context      *ctx)
772 {
773         int                     i;              /* shortform entry number */
774         xfs_mount_t             *mp;            /* filesystem mount point */
775         xfs_dir2_dataptr_t      off;            /* current entry's offset */
776         xfs_dir2_sf_entry_t     *sfep;          /* shortform directory entry */
777         xfs_dir2_sf_hdr_t       *sfp;           /* shortform structure */
778         xfs_dir2_dataptr_t      dot_offset;
779         xfs_dir2_dataptr_t      dotdot_offset;
780         xfs_ino_t               ino;
781
782         mp = dp->i_mount;
783
784         ASSERT(dp->i_df.if_flags & XFS_IFINLINE);
785         /*
786          * Give up if the directory is way too short.
787          */
788         if (dp->i_d.di_size < offsetof(xfs_dir2_sf_hdr_t, parent)) {
789                 ASSERT(XFS_FORCED_SHUTDOWN(mp));
790                 return XFS_ERROR(EIO);
791         }
792
793         ASSERT(dp->i_df.if_bytes == dp->i_d.di_size);
794         ASSERT(dp->i_df.if_u1.if_data != NULL);
795
796         sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
797
798         ASSERT(dp->i_d.di_size >= xfs_dir2_sf_hdr_size(sfp->i8count));
799
800         /*
801          * If the block number in the offset is out of range, we're done.
802          */
803         if (xfs_dir2_dataptr_to_db(mp, ctx->pos) > mp->m_dirdatablk)
804                 return 0;
805
806         /*
807          * Precalculate offsets for . and .. as we will always need them.
808          *
809          * XXX(hch): the second argument is sometimes 0 and sometimes
810          * mp->m_dirdatablk.
811          */
812         dot_offset = xfs_dir2_db_off_to_dataptr(mp, mp->m_dirdatablk,
813                                              XFS_DIR3_DATA_DOT_OFFSET(mp));
814         dotdot_offset = xfs_dir2_db_off_to_dataptr(mp, mp->m_dirdatablk,
815                                                 XFS_DIR3_DATA_DOTDOT_OFFSET(mp));
816
817         /*
818          * Put . entry unless we're starting past it.
819          */
820         if (ctx->pos <= dot_offset) {
821                 ctx->pos = dot_offset & 0x7fffffff;
822                 if (!dir_emit(ctx, ".", 1, dp->i_ino, DT_DIR))
823                         return 0;
824         }
825
826         /*
827          * Put .. entry unless we're starting past it.
828          */
829         if (ctx->pos <= dotdot_offset) {
830                 ino = xfs_dir2_sf_get_parent_ino(sfp);
831                 ctx->pos = dotdot_offset & 0x7fffffff;
832                 if (!dir_emit(ctx, "..", 2, ino, DT_DIR))
833                         return 0;
834         }
835
836         /*
837          * Loop while there are more entries and put'ing works.
838          */
839         sfep = xfs_dir2_sf_firstentry(sfp);
840         for (i = 0; i < sfp->count; i++) {
841                 off = xfs_dir2_db_off_to_dataptr(mp, mp->m_dirdatablk,
842                                 xfs_dir2_sf_get_offset(sfep));
843
844                 if (ctx->pos > off) {
845                         sfep = xfs_dir2_sf_nextentry(sfp, sfep);
846                         continue;
847                 }
848
849                 ino = xfs_dir2_sfe_get_ino(sfp, sfep);
850                 ctx->pos = off & 0x7fffffff;
851                 if (!dir_emit(ctx, (char *)sfep->name, sfep->namelen,
852                             ino, DT_UNKNOWN))
853                         return 0;
854                 sfep = xfs_dir2_sf_nextentry(sfp, sfep);
855         }
856
857         ctx->pos = xfs_dir2_db_off_to_dataptr(mp, mp->m_dirdatablk + 1, 0) &
858                         0x7fffffff;
859         return 0;
860 }
861
862 /*
863  * Lookup an entry in a shortform directory.
864  * Returns EEXIST if found, ENOENT if not found.
865  */
866 int                                             /* error */
867 xfs_dir2_sf_lookup(
868         xfs_da_args_t           *args)          /* operation arguments */
869 {
870         xfs_inode_t             *dp;            /* incore directory inode */
871         int                     i;              /* entry index */
872         int                     error;
873         xfs_dir2_sf_entry_t     *sfep;          /* shortform directory entry */
874         xfs_dir2_sf_hdr_t       *sfp;           /* shortform structure */
875         enum xfs_dacmp          cmp;            /* comparison result */
876         xfs_dir2_sf_entry_t     *ci_sfep;       /* case-insens. entry */
877
878         trace_xfs_dir2_sf_lookup(args);
879
880         xfs_dir2_sf_check(args);
881         dp = args->dp;
882
883         ASSERT(dp->i_df.if_flags & XFS_IFINLINE);
884         /*
885          * Bail out if the directory is way too short.
886          */
887         if (dp->i_d.di_size < offsetof(xfs_dir2_sf_hdr_t, parent)) {
888                 ASSERT(XFS_FORCED_SHUTDOWN(dp->i_mount));
889                 return XFS_ERROR(EIO);
890         }
891         ASSERT(dp->i_df.if_bytes == dp->i_d.di_size);
892         ASSERT(dp->i_df.if_u1.if_data != NULL);
893         sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
894         ASSERT(dp->i_d.di_size >= xfs_dir2_sf_hdr_size(sfp->i8count));
895         /*
896          * Special case for .
897          */
898         if (args->namelen == 1 && args->name[0] == '.') {
899                 args->inumber = dp->i_ino;
900                 args->cmpresult = XFS_CMP_EXACT;
901                 return XFS_ERROR(EEXIST);
902         }
903         /*
904          * Special case for ..
905          */
906         if (args->namelen == 2 &&
907             args->name[0] == '.' && args->name[1] == '.') {
908                 args->inumber = xfs_dir2_sf_get_parent_ino(sfp);
909                 args->cmpresult = XFS_CMP_EXACT;
910                 return XFS_ERROR(EEXIST);
911         }
912         /*
913          * Loop over all the entries trying to match ours.
914          */
915         ci_sfep = NULL;
916         for (i = 0, sfep = xfs_dir2_sf_firstentry(sfp); i < sfp->count;
917                                 i++, sfep = xfs_dir2_sf_nextentry(sfp, sfep)) {
918                 /*
919                  * Compare name and if it's an exact match, return the inode
920                  * number. If it's the first case-insensitive match, store the
921                  * inode number and continue looking for an exact match.
922                  */
923                 cmp = dp->i_mount->m_dirnameops->compname(args, sfep->name,
924                                                                 sfep->namelen);
925                 if (cmp != XFS_CMP_DIFFERENT && cmp != args->cmpresult) {
926                         args->cmpresult = cmp;
927                         args->inumber = xfs_dir2_sfe_get_ino(sfp, sfep);
928                         if (cmp == XFS_CMP_EXACT)
929                                 return XFS_ERROR(EEXIST);
930                         ci_sfep = sfep;
931                 }
932         }
933         ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
934         /*
935          * Here, we can only be doing a lookup (not a rename or replace).
936          * If a case-insensitive match was not found, return ENOENT.
937          */
938         if (!ci_sfep)
939                 return XFS_ERROR(ENOENT);
940         /* otherwise process the CI match as required by the caller */
941         error = xfs_dir_cilookup_result(args, ci_sfep->name, ci_sfep->namelen);
942         return XFS_ERROR(error);
943 }
944
945 /*
946  * Remove an entry from a shortform directory.
947  */
948 int                                             /* error */
949 xfs_dir2_sf_removename(
950         xfs_da_args_t           *args)
951 {
952         int                     byteoff;        /* offset of removed entry */
953         xfs_inode_t             *dp;            /* incore directory inode */
954         int                     entsize;        /* this entry's size */
955         int                     i;              /* shortform entry index */
956         int                     newsize;        /* new inode size */
957         int                     oldsize;        /* old inode size */
958         xfs_dir2_sf_entry_t     *sfep;          /* shortform directory entry */
959         xfs_dir2_sf_hdr_t       *sfp;           /* shortform structure */
960
961         trace_xfs_dir2_sf_removename(args);
962
963         dp = args->dp;
964
965         ASSERT(dp->i_df.if_flags & XFS_IFINLINE);
966         oldsize = (int)dp->i_d.di_size;
967         /*
968          * Bail out if the directory is way too short.
969          */
970         if (oldsize < offsetof(xfs_dir2_sf_hdr_t, parent)) {
971                 ASSERT(XFS_FORCED_SHUTDOWN(dp->i_mount));
972                 return XFS_ERROR(EIO);
973         }
974         ASSERT(dp->i_df.if_bytes == oldsize);
975         ASSERT(dp->i_df.if_u1.if_data != NULL);
976         sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
977         ASSERT(oldsize >= xfs_dir2_sf_hdr_size(sfp->i8count));
978         /*
979          * Loop over the old directory entries.
980          * Find the one we're deleting.
981          */
982         for (i = 0, sfep = xfs_dir2_sf_firstentry(sfp); i < sfp->count;
983                                 i++, sfep = xfs_dir2_sf_nextentry(sfp, sfep)) {
984                 if (xfs_da_compname(args, sfep->name, sfep->namelen) ==
985                                                                 XFS_CMP_EXACT) {
986                         ASSERT(xfs_dir2_sfe_get_ino(sfp, sfep) ==
987                                args->inumber);
988                         break;
989                 }
990         }
991         /*
992          * Didn't find it.
993          */
994         if (i == sfp->count)
995                 return XFS_ERROR(ENOENT);
996         /*
997          * Calculate sizes.
998          */
999         byteoff = (int)((char *)sfep - (char *)sfp);
1000         entsize = xfs_dir2_sf_entsize(sfp, args->namelen);
1001         newsize = oldsize - entsize;
1002         /*
1003          * Copy the part if any after the removed entry, sliding it down.
1004          */
1005         if (byteoff + entsize < oldsize)
1006                 memmove((char *)sfp + byteoff, (char *)sfp + byteoff + entsize,
1007                         oldsize - (byteoff + entsize));
1008         /*
1009          * Fix up the header and file size.
1010          */
1011         sfp->count--;
1012         dp->i_d.di_size = newsize;
1013         /*
1014          * Reallocate, making it smaller.
1015          */
1016         xfs_idata_realloc(dp, newsize - oldsize, XFS_DATA_FORK);
1017         sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
1018 #if XFS_BIG_INUMS
1019         /*
1020          * Are we changing inode number size?
1021          */
1022         if (args->inumber > XFS_DIR2_MAX_SHORT_INUM) {
1023                 if (sfp->i8count == 1)
1024                         xfs_dir2_sf_toino4(args);
1025                 else
1026                         sfp->i8count--;
1027         }
1028 #endif
1029         xfs_dir2_sf_check(args);
1030         xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE | XFS_ILOG_DDATA);
1031         return 0;
1032 }
1033
1034 /*
1035  * Replace the inode number of an entry in a shortform directory.
1036  */
1037 int                                             /* error */
1038 xfs_dir2_sf_replace(
1039         xfs_da_args_t           *args)          /* operation arguments */
1040 {
1041         xfs_inode_t             *dp;            /* incore directory inode */
1042         int                     i;              /* entry index */
1043 #if XFS_BIG_INUMS || defined(DEBUG)
1044         xfs_ino_t               ino=0;          /* entry old inode number */
1045 #endif
1046 #if XFS_BIG_INUMS
1047         int                     i8elevated;     /* sf_toino8 set i8count=1 */
1048 #endif
1049         xfs_dir2_sf_entry_t     *sfep;          /* shortform directory entry */
1050         xfs_dir2_sf_hdr_t       *sfp;           /* shortform structure */
1051
1052         trace_xfs_dir2_sf_replace(args);
1053
1054         dp = args->dp;
1055
1056         ASSERT(dp->i_df.if_flags & XFS_IFINLINE);
1057         /*
1058          * Bail out if the shortform directory is way too small.
1059          */
1060         if (dp->i_d.di_size < offsetof(xfs_dir2_sf_hdr_t, parent)) {
1061                 ASSERT(XFS_FORCED_SHUTDOWN(dp->i_mount));
1062                 return XFS_ERROR(EIO);
1063         }
1064         ASSERT(dp->i_df.if_bytes == dp->i_d.di_size);
1065         ASSERT(dp->i_df.if_u1.if_data != NULL);
1066         sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
1067         ASSERT(dp->i_d.di_size >= xfs_dir2_sf_hdr_size(sfp->i8count));
1068 #if XFS_BIG_INUMS
1069         /*
1070          * New inode number is large, and need to convert to 8-byte inodes.
1071          */
1072         if (args->inumber > XFS_DIR2_MAX_SHORT_INUM && sfp->i8count == 0) {
1073                 int     error;                  /* error return value */
1074                 int     newsize;                /* new inode size */
1075
1076                 newsize =
1077                         dp->i_df.if_bytes +
1078                         (sfp->count + 1) *
1079                         ((uint)sizeof(xfs_dir2_ino8_t) -
1080                          (uint)sizeof(xfs_dir2_ino4_t));
1081                 /*
1082                  * Won't fit as shortform, convert to block then do replace.
1083                  */
1084                 if (newsize > XFS_IFORK_DSIZE(dp)) {
1085                         error = xfs_dir2_sf_to_block(args);
1086                         if (error) {
1087                                 return error;
1088                         }
1089                         return xfs_dir2_block_replace(args);
1090                 }
1091                 /*
1092                  * Still fits, convert to 8-byte now.
1093                  */
1094                 xfs_dir2_sf_toino8(args);
1095                 i8elevated = 1;
1096                 sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
1097         } else
1098                 i8elevated = 0;
1099 #endif
1100         ASSERT(args->namelen != 1 || args->name[0] != '.');
1101         /*
1102          * Replace ..'s entry.
1103          */
1104         if (args->namelen == 2 &&
1105             args->name[0] == '.' && args->name[1] == '.') {
1106 #if XFS_BIG_INUMS || defined(DEBUG)
1107                 ino = xfs_dir2_sf_get_parent_ino(sfp);
1108                 ASSERT(args->inumber != ino);
1109 #endif
1110                 xfs_dir2_sf_put_parent_ino(sfp, args->inumber);
1111         }
1112         /*
1113          * Normal entry, look for the name.
1114          */
1115         else {
1116                 for (i = 0, sfep = xfs_dir2_sf_firstentry(sfp);
1117                                 i < sfp->count;
1118                                 i++, sfep = xfs_dir2_sf_nextentry(sfp, sfep)) {
1119                         if (xfs_da_compname(args, sfep->name, sfep->namelen) ==
1120                                                                 XFS_CMP_EXACT) {
1121 #if XFS_BIG_INUMS || defined(DEBUG)
1122                                 ino = xfs_dir2_sfe_get_ino(sfp, sfep);
1123                                 ASSERT(args->inumber != ino);
1124 #endif
1125                                 xfs_dir2_sfe_put_ino(sfp, sfep, args->inumber);
1126                                 break;
1127                         }
1128                 }
1129                 /*
1130                  * Didn't find it.
1131                  */
1132                 if (i == sfp->count) {
1133                         ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
1134 #if XFS_BIG_INUMS
1135                         if (i8elevated)
1136                                 xfs_dir2_sf_toino4(args);
1137 #endif
1138                         return XFS_ERROR(ENOENT);
1139                 }
1140         }
1141 #if XFS_BIG_INUMS
1142         /*
1143          * See if the old number was large, the new number is small.
1144          */
1145         if (ino > XFS_DIR2_MAX_SHORT_INUM &&
1146             args->inumber <= XFS_DIR2_MAX_SHORT_INUM) {
1147                 /*
1148                  * And the old count was one, so need to convert to small.
1149                  */
1150                 if (sfp->i8count == 1)
1151                         xfs_dir2_sf_toino4(args);
1152                 else
1153                         sfp->i8count--;
1154         }
1155         /*
1156          * See if the old number was small, the new number is large.
1157          */
1158         if (ino <= XFS_DIR2_MAX_SHORT_INUM &&
1159             args->inumber > XFS_DIR2_MAX_SHORT_INUM) {
1160                 /*
1161                  * add to the i8count unless we just converted to 8-byte
1162                  * inodes (which does an implied i8count = 1)
1163                  */
1164                 ASSERT(sfp->i8count != 0);
1165                 if (!i8elevated)
1166                         sfp->i8count++;
1167         }
1168 #endif
1169         xfs_dir2_sf_check(args);
1170         xfs_trans_log_inode(args->trans, dp, XFS_ILOG_DDATA);
1171         return 0;
1172 }
1173
1174 #if XFS_BIG_INUMS
1175 /*
1176  * Convert from 8-byte inode numbers to 4-byte inode numbers.
1177  * The last 8-byte inode number is gone, but the count is still 1.
1178  */
1179 static void
1180 xfs_dir2_sf_toino4(
1181         xfs_da_args_t           *args)          /* operation arguments */
1182 {
1183         char                    *buf;           /* old dir's buffer */
1184         xfs_inode_t             *dp;            /* incore directory inode */
1185         int                     i;              /* entry index */
1186         int                     newsize;        /* new inode size */
1187         xfs_dir2_sf_entry_t     *oldsfep;       /* old sf entry */
1188         xfs_dir2_sf_hdr_t       *oldsfp;        /* old sf directory */
1189         int                     oldsize;        /* old inode size */
1190         xfs_dir2_sf_entry_t     *sfep;          /* new sf entry */
1191         xfs_dir2_sf_hdr_t       *sfp;           /* new sf directory */
1192
1193         trace_xfs_dir2_sf_toino4(args);
1194
1195         dp = args->dp;
1196
1197         /*
1198          * Copy the old directory to the buffer.
1199          * Then nuke it from the inode, and add the new buffer to the inode.
1200          * Don't want xfs_idata_realloc copying the data here.
1201          */
1202         oldsize = dp->i_df.if_bytes;
1203         buf = kmem_alloc(oldsize, KM_SLEEP);
1204         oldsfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
1205         ASSERT(oldsfp->i8count == 1);
1206         memcpy(buf, oldsfp, oldsize);
1207         /*
1208          * Compute the new inode size.
1209          */
1210         newsize =
1211                 oldsize -
1212                 (oldsfp->count + 1) *
1213                 ((uint)sizeof(xfs_dir2_ino8_t) - (uint)sizeof(xfs_dir2_ino4_t));
1214         xfs_idata_realloc(dp, -oldsize, XFS_DATA_FORK);
1215         xfs_idata_realloc(dp, newsize, XFS_DATA_FORK);
1216         /*
1217          * Reset our pointers, the data has moved.
1218          */
1219         oldsfp = (xfs_dir2_sf_hdr_t *)buf;
1220         sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
1221         /*
1222          * Fill in the new header.
1223          */
1224         sfp->count = oldsfp->count;
1225         sfp->i8count = 0;
1226         xfs_dir2_sf_put_parent_ino(sfp, xfs_dir2_sf_get_parent_ino(oldsfp));
1227         /*
1228          * Copy the entries field by field.
1229          */
1230         for (i = 0, sfep = xfs_dir2_sf_firstentry(sfp),
1231                     oldsfep = xfs_dir2_sf_firstentry(oldsfp);
1232              i < sfp->count;
1233              i++, sfep = xfs_dir2_sf_nextentry(sfp, sfep),
1234                   oldsfep = xfs_dir2_sf_nextentry(oldsfp, oldsfep)) {
1235                 sfep->namelen = oldsfep->namelen;
1236                 sfep->offset = oldsfep->offset;
1237                 memcpy(sfep->name, oldsfep->name, sfep->namelen);
1238                 xfs_dir2_sfe_put_ino(sfp, sfep,
1239                         xfs_dir2_sfe_get_ino(oldsfp, oldsfep));
1240         }
1241         /*
1242          * Clean up the inode.
1243          */
1244         kmem_free(buf);
1245         dp->i_d.di_size = newsize;
1246         xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE | XFS_ILOG_DDATA);
1247 }
1248
1249 /*
1250  * Convert from 4-byte inode numbers to 8-byte inode numbers.
1251  * The new 8-byte inode number is not there yet, we leave with the
1252  * count 1 but no corresponding entry.
1253  */
1254 static void
1255 xfs_dir2_sf_toino8(
1256         xfs_da_args_t           *args)          /* operation arguments */
1257 {
1258         char                    *buf;           /* old dir's buffer */
1259         xfs_inode_t             *dp;            /* incore directory inode */
1260         int                     i;              /* entry index */
1261         int                     newsize;        /* new inode size */
1262         xfs_dir2_sf_entry_t     *oldsfep;       /* old sf entry */
1263         xfs_dir2_sf_hdr_t       *oldsfp;        /* old sf directory */
1264         int                     oldsize;        /* old inode size */
1265         xfs_dir2_sf_entry_t     *sfep;          /* new sf entry */
1266         xfs_dir2_sf_hdr_t       *sfp;           /* new sf directory */
1267
1268         trace_xfs_dir2_sf_toino8(args);
1269
1270         dp = args->dp;
1271
1272         /*
1273          * Copy the old directory to the buffer.
1274          * Then nuke it from the inode, and add the new buffer to the inode.
1275          * Don't want xfs_idata_realloc copying the data here.
1276          */
1277         oldsize = dp->i_df.if_bytes;
1278         buf = kmem_alloc(oldsize, KM_SLEEP);
1279         oldsfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
1280         ASSERT(oldsfp->i8count == 0);
1281         memcpy(buf, oldsfp, oldsize);
1282         /*
1283          * Compute the new inode size.
1284          */
1285         newsize =
1286                 oldsize +
1287                 (oldsfp->count + 1) *
1288                 ((uint)sizeof(xfs_dir2_ino8_t) - (uint)sizeof(xfs_dir2_ino4_t));
1289         xfs_idata_realloc(dp, -oldsize, XFS_DATA_FORK);
1290         xfs_idata_realloc(dp, newsize, XFS_DATA_FORK);
1291         /*
1292          * Reset our pointers, the data has moved.
1293          */
1294         oldsfp = (xfs_dir2_sf_hdr_t *)buf;
1295         sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
1296         /*
1297          * Fill in the new header.
1298          */
1299         sfp->count = oldsfp->count;
1300         sfp->i8count = 1;
1301         xfs_dir2_sf_put_parent_ino(sfp, xfs_dir2_sf_get_parent_ino(oldsfp));
1302         /*
1303          * Copy the entries field by field.
1304          */
1305         for (i = 0, sfep = xfs_dir2_sf_firstentry(sfp),
1306                     oldsfep = xfs_dir2_sf_firstentry(oldsfp);
1307              i < sfp->count;
1308              i++, sfep = xfs_dir2_sf_nextentry(sfp, sfep),
1309                   oldsfep = xfs_dir2_sf_nextentry(oldsfp, oldsfep)) {
1310                 sfep->namelen = oldsfep->namelen;
1311                 sfep->offset = oldsfep->offset;
1312                 memcpy(sfep->name, oldsfep->name, sfep->namelen);
1313                 xfs_dir2_sfe_put_ino(sfp, sfep,
1314                         xfs_dir2_sfe_get_ino(oldsfp, oldsfep));
1315         }
1316         /*
1317          * Clean up the inode.
1318          */
1319         kmem_free(buf);
1320         dp->i_d.di_size = newsize;
1321         xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE | XFS_ILOG_DDATA);
1322 }
1323 #endif  /* XFS_BIG_INUMS */