]> Pileus Git - ~andy/linux/blob - fs/xfs/xfs_attr_leaf.c
[XFS] endianess annotations for xfs_attr_leaf_hdr_t
[~andy/linux] / fs / xfs / xfs_attr_leaf.c
1 /*
2  * Copyright (c) 2000-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_bit.h"
22 #include "xfs_log.h"
23 #include "xfs_inum.h"
24 #include "xfs_trans.h"
25 #include "xfs_sb.h"
26 #include "xfs_ag.h"
27 #include "xfs_dir.h"
28 #include "xfs_dir2.h"
29 #include "xfs_dmapi.h"
30 #include "xfs_mount.h"
31 #include "xfs_da_btree.h"
32 #include "xfs_bmap_btree.h"
33 #include "xfs_alloc_btree.h"
34 #include "xfs_ialloc_btree.h"
35 #include "xfs_alloc.h"
36 #include "xfs_btree.h"
37 #include "xfs_dir_sf.h"
38 #include "xfs_dir2_sf.h"
39 #include "xfs_attr_sf.h"
40 #include "xfs_dinode.h"
41 #include "xfs_inode.h"
42 #include "xfs_inode_item.h"
43 #include "xfs_bmap.h"
44 #include "xfs_attr.h"
45 #include "xfs_attr_leaf.h"
46 #include "xfs_error.h"
47
48 /*
49  * xfs_attr_leaf.c
50  *
51  * Routines to implement leaf blocks of attributes as Btrees of hashed names.
52  */
53
54 /*========================================================================
55  * Function prototypes for the kernel.
56  *========================================================================*/
57
58 /*
59  * Routines used for growing the Btree.
60  */
61 STATIC int xfs_attr_leaf_create(xfs_da_args_t *args, xfs_dablk_t which_block,
62                                     xfs_dabuf_t **bpp);
63 STATIC int xfs_attr_leaf_add_work(xfs_dabuf_t *leaf_buffer, xfs_da_args_t *args,
64                                               int freemap_index);
65 STATIC void xfs_attr_leaf_compact(xfs_trans_t *trans, xfs_dabuf_t *leaf_buffer);
66 STATIC void xfs_attr_leaf_rebalance(xfs_da_state_t *state,
67                                                    xfs_da_state_blk_t *blk1,
68                                                    xfs_da_state_blk_t *blk2);
69 STATIC int xfs_attr_leaf_figure_balance(xfs_da_state_t *state,
70                                            xfs_da_state_blk_t *leaf_blk_1,
71                                            xfs_da_state_blk_t *leaf_blk_2,
72                                            int *number_entries_in_blk1,
73                                            int *number_usedbytes_in_blk1);
74
75 /*
76  * Routines used for shrinking the Btree.
77  */
78 STATIC int xfs_attr_node_inactive(xfs_trans_t **trans, xfs_inode_t *dp,
79                                   xfs_dabuf_t *bp, int level);
80 STATIC int xfs_attr_leaf_inactive(xfs_trans_t **trans, xfs_inode_t *dp,
81                                   xfs_dabuf_t *bp);
82 STATIC int xfs_attr_leaf_freextent(xfs_trans_t **trans, xfs_inode_t *dp,
83                                    xfs_dablk_t blkno, int blkcnt);
84
85 /*
86  * Utility routines.
87  */
88 STATIC void xfs_attr_leaf_moveents(xfs_attr_leafblock_t *src_leaf,
89                                          int src_start,
90                                          xfs_attr_leafblock_t *dst_leaf,
91                                          int dst_start, int move_count,
92                                          xfs_mount_t *mp);
93 STATIC int xfs_attr_leaf_entsize(xfs_attr_leafblock_t *leaf, int index);
94 STATIC int xfs_attr_put_listent(xfs_attr_list_context_t *context,
95                              attrnames_t *, char *name, int namelen,
96                              int valuelen);
97
98
99 /*========================================================================
100  * External routines when attribute fork size < XFS_LITINO(mp).
101  *========================================================================*/
102
103 /*
104  * Query whether the requested number of additional bytes of extended
105  * attribute space will be able to fit inline.
106  * Returns zero if not, else the di_forkoff fork offset to be used in the
107  * literal area for attribute data once the new bytes have been added.
108  *
109  * di_forkoff must be 8 byte aligned, hence is stored as a >>3 value;
110  * special case for dev/uuid inodes, they have fixed size data forks.
111  */
112 int
113 xfs_attr_shortform_bytesfit(xfs_inode_t *dp, int bytes)
114 {
115         int offset;
116         int minforkoff; /* lower limit on valid forkoff locations */
117         int maxforkoff; /* upper limit on valid forkoff locations */
118         xfs_mount_t *mp = dp->i_mount;
119
120         offset = (XFS_LITINO(mp) - bytes) >> 3; /* rounded down */
121
122         switch (dp->i_d.di_format) {
123         case XFS_DINODE_FMT_DEV:
124                 minforkoff = roundup(sizeof(xfs_dev_t), 8) >> 3;
125                 return (offset >= minforkoff) ? minforkoff : 0;
126         case XFS_DINODE_FMT_UUID:
127                 minforkoff = roundup(sizeof(uuid_t), 8) >> 3;
128                 return (offset >= minforkoff) ? minforkoff : 0;
129         }
130
131         if (!(mp->m_flags & XFS_MOUNT_ATTR2)) {
132                 if (bytes <= XFS_IFORK_ASIZE(dp))
133                         return mp->m_attroffset >> 3;
134                 return 0;
135         }
136
137         /* data fork btree root can have at least this many key/ptr pairs */
138         minforkoff = MAX(dp->i_df.if_bytes, XFS_BMDR_SPACE_CALC(MINDBTPTRS));
139         minforkoff = roundup(minforkoff, 8) >> 3;
140
141         /* attr fork btree root can have at least this many key/ptr pairs */
142         maxforkoff = XFS_LITINO(mp) - XFS_BMDR_SPACE_CALC(MINABTPTRS);
143         maxforkoff = maxforkoff >> 3;   /* rounded down */
144
145         if (offset >= minforkoff && offset < maxforkoff)
146                 return offset;
147         if (offset >= maxforkoff)
148                 return maxforkoff;
149         return 0;
150 }
151
152 /*
153  * Switch on the ATTR2 superblock bit (implies also FEATURES2)
154  */
155 STATIC void
156 xfs_sbversion_add_attr2(xfs_mount_t *mp, xfs_trans_t *tp)
157 {
158         unsigned long s;
159
160         if ((mp->m_flags & XFS_MOUNT_ATTR2) &&
161             !(XFS_SB_VERSION_HASATTR2(&mp->m_sb))) {
162                 s = XFS_SB_LOCK(mp);
163                 if (!XFS_SB_VERSION_HASATTR2(&mp->m_sb)) {
164                         XFS_SB_VERSION_ADDATTR2(&mp->m_sb);
165                         XFS_SB_UNLOCK(mp, s);
166                         xfs_mod_sb(tp, XFS_SB_VERSIONNUM | XFS_SB_FEATURES2);
167                 } else
168                         XFS_SB_UNLOCK(mp, s);
169         }
170 }
171
172 /*
173  * Create the initial contents of a shortform attribute list.
174  */
175 void
176 xfs_attr_shortform_create(xfs_da_args_t *args)
177 {
178         xfs_attr_sf_hdr_t *hdr;
179         xfs_inode_t *dp;
180         xfs_ifork_t *ifp;
181
182         dp = args->dp;
183         ASSERT(dp != NULL);
184         ifp = dp->i_afp;
185         ASSERT(ifp != NULL);
186         ASSERT(ifp->if_bytes == 0);
187         if (dp->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS) {
188                 ifp->if_flags &= ~XFS_IFEXTENTS;        /* just in case */
189                 dp->i_d.di_aformat = XFS_DINODE_FMT_LOCAL;
190                 ifp->if_flags |= XFS_IFINLINE;
191         } else {
192                 ASSERT(ifp->if_flags & XFS_IFINLINE);
193         }
194         xfs_idata_realloc(dp, sizeof(*hdr), XFS_ATTR_FORK);
195         hdr = (xfs_attr_sf_hdr_t *)ifp->if_u1.if_data;
196         hdr->count = 0;
197         INT_SET(hdr->totsize, ARCH_CONVERT, sizeof(*hdr));
198         xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE | XFS_ILOG_ADATA);
199 }
200
201 /*
202  * Add a name/value pair to the shortform attribute list.
203  * Overflow from the inode has already been checked for.
204  */
205 void
206 xfs_attr_shortform_add(xfs_da_args_t *args, int forkoff)
207 {
208         xfs_attr_shortform_t *sf;
209         xfs_attr_sf_entry_t *sfe;
210         int i, offset, size;
211         xfs_mount_t *mp;
212         xfs_inode_t *dp;
213         xfs_ifork_t *ifp;
214
215         dp = args->dp;
216         mp = dp->i_mount;
217         dp->i_d.di_forkoff = forkoff;
218         dp->i_df.if_ext_max =
219                 XFS_IFORK_DSIZE(dp) / (uint)sizeof(xfs_bmbt_rec_t);
220         dp->i_afp->if_ext_max =
221                 XFS_IFORK_ASIZE(dp) / (uint)sizeof(xfs_bmbt_rec_t);
222
223         ifp = dp->i_afp;
224         ASSERT(ifp->if_flags & XFS_IFINLINE);
225         sf = (xfs_attr_shortform_t *)ifp->if_u1.if_data;
226         sfe = &sf->list[0];
227         for (i = 0; i < INT_GET(sf->hdr.count, ARCH_CONVERT);
228                                 sfe = XFS_ATTR_SF_NEXTENTRY(sfe), i++) {
229 #ifdef DEBUG
230                 if (sfe->namelen != args->namelen)
231                         continue;
232                 if (memcmp(args->name, sfe->nameval, args->namelen) != 0)
233                         continue;
234                 if (((args->flags & ATTR_SECURE) != 0) !=
235                     ((sfe->flags & XFS_ATTR_SECURE) != 0))
236                         continue;
237                 if (((args->flags & ATTR_ROOT) != 0) !=
238                     ((sfe->flags & XFS_ATTR_ROOT) != 0))
239                         continue;
240                 ASSERT(0);
241 #endif
242         }
243
244         offset = (char *)sfe - (char *)sf;
245         size = XFS_ATTR_SF_ENTSIZE_BYNAME(args->namelen, args->valuelen);
246         xfs_idata_realloc(dp, size, XFS_ATTR_FORK);
247         sf = (xfs_attr_shortform_t *)ifp->if_u1.if_data;
248         sfe = (xfs_attr_sf_entry_t *)((char *)sf + offset);
249
250         sfe->namelen = args->namelen;
251         INT_SET(sfe->valuelen, ARCH_CONVERT, args->valuelen);
252         sfe->flags = (args->flags & ATTR_SECURE) ? XFS_ATTR_SECURE :
253                         ((args->flags & ATTR_ROOT) ? XFS_ATTR_ROOT : 0);
254         memcpy(sfe->nameval, args->name, args->namelen);
255         memcpy(&sfe->nameval[args->namelen], args->value, args->valuelen);
256         INT_MOD(sf->hdr.count, ARCH_CONVERT, 1);
257         INT_MOD(sf->hdr.totsize, ARCH_CONVERT, size);
258         xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE | XFS_ILOG_ADATA);
259
260         xfs_sbversion_add_attr2(mp, args->trans);
261 }
262
263 /*
264  * Remove an attribute from the shortform attribute list structure.
265  */
266 int
267 xfs_attr_shortform_remove(xfs_da_args_t *args)
268 {
269         xfs_attr_shortform_t *sf;
270         xfs_attr_sf_entry_t *sfe;
271         int base, size=0, end, totsize, i;
272         xfs_mount_t *mp;
273         xfs_inode_t *dp;
274
275         dp = args->dp;
276         mp = dp->i_mount;
277         base = sizeof(xfs_attr_sf_hdr_t);
278         sf = (xfs_attr_shortform_t *)dp->i_afp->if_u1.if_data;
279         sfe = &sf->list[0];
280         end = INT_GET(sf->hdr.count, ARCH_CONVERT);
281         for (i = 0; i < end; sfe = XFS_ATTR_SF_NEXTENTRY(sfe),
282                                         base += size, i++) {
283                 size = XFS_ATTR_SF_ENTSIZE(sfe);
284                 if (sfe->namelen != args->namelen)
285                         continue;
286                 if (memcmp(sfe->nameval, args->name, args->namelen) != 0)
287                         continue;
288                 if (((args->flags & ATTR_SECURE) != 0) !=
289                     ((sfe->flags & XFS_ATTR_SECURE) != 0))
290                         continue;
291                 if (((args->flags & ATTR_ROOT) != 0) !=
292                     ((sfe->flags & XFS_ATTR_ROOT) != 0))
293                         continue;
294                 break;
295         }
296         if (i == end)
297                 return(XFS_ERROR(ENOATTR));
298
299         /*
300          * Fix up the attribute fork data, covering the hole
301          */
302         end = base + size;
303         totsize = INT_GET(sf->hdr.totsize, ARCH_CONVERT);
304         if (end != totsize)
305                 memmove(&((char *)sf)[base], &((char *)sf)[end], totsize - end);
306         INT_MOD(sf->hdr.count, ARCH_CONVERT, -1);
307         INT_MOD(sf->hdr.totsize, ARCH_CONVERT, -size);
308
309         /*
310          * Fix up the start offset of the attribute fork
311          */
312         totsize -= size;
313         if (totsize == sizeof(xfs_attr_sf_hdr_t) && !args->addname &&
314             (mp->m_flags & XFS_MOUNT_ATTR2)) {
315                 /*
316                  * Last attribute now removed, revert to original
317                  * inode format making all literal area available
318                  * to the data fork once more.
319                  */
320                 xfs_idestroy_fork(dp, XFS_ATTR_FORK);
321                 dp->i_d.di_forkoff = 0;
322                 dp->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
323                 ASSERT(dp->i_d.di_anextents == 0);
324                 ASSERT(dp->i_afp == NULL);
325                 dp->i_df.if_ext_max =
326                         XFS_IFORK_DSIZE(dp) / (uint)sizeof(xfs_bmbt_rec_t);
327                 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE);
328         } else {
329                 xfs_idata_realloc(dp, -size, XFS_ATTR_FORK);
330                 dp->i_d.di_forkoff = xfs_attr_shortform_bytesfit(dp, totsize);
331                 ASSERT(dp->i_d.di_forkoff);
332                 ASSERT(totsize > sizeof(xfs_attr_sf_hdr_t) || args->addname ||
333                         !(mp->m_flags & XFS_MOUNT_ATTR2));
334                 dp->i_afp->if_ext_max =
335                         XFS_IFORK_ASIZE(dp) / (uint)sizeof(xfs_bmbt_rec_t);
336                 dp->i_df.if_ext_max =
337                         XFS_IFORK_DSIZE(dp) / (uint)sizeof(xfs_bmbt_rec_t);
338                 xfs_trans_log_inode(args->trans, dp,
339                                         XFS_ILOG_CORE | XFS_ILOG_ADATA);
340         }
341
342         xfs_sbversion_add_attr2(mp, args->trans);
343
344         return(0);
345 }
346
347 /*
348  * Look up a name in a shortform attribute list structure.
349  */
350 /*ARGSUSED*/
351 int
352 xfs_attr_shortform_lookup(xfs_da_args_t *args)
353 {
354         xfs_attr_shortform_t *sf;
355         xfs_attr_sf_entry_t *sfe;
356         int i;
357         xfs_ifork_t *ifp;
358
359         ifp = args->dp->i_afp;
360         ASSERT(ifp->if_flags & XFS_IFINLINE);
361         sf = (xfs_attr_shortform_t *)ifp->if_u1.if_data;
362         sfe = &sf->list[0];
363         for (i = 0; i < INT_GET(sf->hdr.count, ARCH_CONVERT);
364                                 sfe = XFS_ATTR_SF_NEXTENTRY(sfe), i++) {
365                 if (sfe->namelen != args->namelen)
366                         continue;
367                 if (memcmp(args->name, sfe->nameval, args->namelen) != 0)
368                         continue;
369                 if (((args->flags & ATTR_SECURE) != 0) !=
370                     ((sfe->flags & XFS_ATTR_SECURE) != 0))
371                         continue;
372                 if (((args->flags & ATTR_ROOT) != 0) !=
373                     ((sfe->flags & XFS_ATTR_ROOT) != 0))
374                         continue;
375                 return(XFS_ERROR(EEXIST));
376         }
377         return(XFS_ERROR(ENOATTR));
378 }
379
380 /*
381  * Look up a name in a shortform attribute list structure.
382  */
383 /*ARGSUSED*/
384 int
385 xfs_attr_shortform_getvalue(xfs_da_args_t *args)
386 {
387         xfs_attr_shortform_t *sf;
388         xfs_attr_sf_entry_t *sfe;
389         int i;
390
391         ASSERT(args->dp->i_d.di_aformat == XFS_IFINLINE);
392         sf = (xfs_attr_shortform_t *)args->dp->i_afp->if_u1.if_data;
393         sfe = &sf->list[0];
394         for (i = 0; i < INT_GET(sf->hdr.count, ARCH_CONVERT);
395                                 sfe = XFS_ATTR_SF_NEXTENTRY(sfe), i++) {
396                 if (sfe->namelen != args->namelen)
397                         continue;
398                 if (memcmp(args->name, sfe->nameval, args->namelen) != 0)
399                         continue;
400                 if (((args->flags & ATTR_SECURE) != 0) !=
401                     ((sfe->flags & XFS_ATTR_SECURE) != 0))
402                         continue;
403                 if (((args->flags & ATTR_ROOT) != 0) !=
404                     ((sfe->flags & XFS_ATTR_ROOT) != 0))
405                         continue;
406                 if (args->flags & ATTR_KERNOVAL) {
407                         args->valuelen = INT_GET(sfe->valuelen, ARCH_CONVERT);
408                         return(XFS_ERROR(EEXIST));
409                 }
410                 if (args->valuelen < INT_GET(sfe->valuelen, ARCH_CONVERT)) {
411                         args->valuelen = INT_GET(sfe->valuelen, ARCH_CONVERT);
412                         return(XFS_ERROR(ERANGE));
413                 }
414                 args->valuelen = INT_GET(sfe->valuelen, ARCH_CONVERT);
415                 memcpy(args->value, &sfe->nameval[args->namelen],
416                                                     args->valuelen);
417                 return(XFS_ERROR(EEXIST));
418         }
419         return(XFS_ERROR(ENOATTR));
420 }
421
422 /*
423  * Convert from using the shortform to the leaf.
424  */
425 int
426 xfs_attr_shortform_to_leaf(xfs_da_args_t *args)
427 {
428         xfs_inode_t *dp;
429         xfs_attr_shortform_t *sf;
430         xfs_attr_sf_entry_t *sfe;
431         xfs_da_args_t nargs;
432         char *tmpbuffer;
433         int error, i, size;
434         xfs_dablk_t blkno;
435         xfs_dabuf_t *bp;
436         xfs_ifork_t *ifp;
437
438         dp = args->dp;
439         ifp = dp->i_afp;
440         sf = (xfs_attr_shortform_t *)ifp->if_u1.if_data;
441         size = INT_GET(sf->hdr.totsize, ARCH_CONVERT);
442         tmpbuffer = kmem_alloc(size, KM_SLEEP);
443         ASSERT(tmpbuffer != NULL);
444         memcpy(tmpbuffer, ifp->if_u1.if_data, size);
445         sf = (xfs_attr_shortform_t *)tmpbuffer;
446
447         xfs_idata_realloc(dp, -size, XFS_ATTR_FORK);
448         bp = NULL;
449         error = xfs_da_grow_inode(args, &blkno);
450         if (error) {
451                 /*
452                  * If we hit an IO error middle of the transaction inside
453                  * grow_inode(), we may have inconsistent data. Bail out.
454                  */
455                 if (error == EIO)
456                         goto out;
457                 xfs_idata_realloc(dp, size, XFS_ATTR_FORK);     /* try to put */
458                 memcpy(ifp->if_u1.if_data, tmpbuffer, size);    /* it back */
459                 goto out;
460         }
461
462         ASSERT(blkno == 0);
463         error = xfs_attr_leaf_create(args, blkno, &bp);
464         if (error) {
465                 error = xfs_da_shrink_inode(args, 0, bp);
466                 bp = NULL;
467                 if (error)
468                         goto out;
469                 xfs_idata_realloc(dp, size, XFS_ATTR_FORK);     /* try to put */
470                 memcpy(ifp->if_u1.if_data, tmpbuffer, size);    /* it back */
471                 goto out;
472         }
473
474         memset((char *)&nargs, 0, sizeof(nargs));
475         nargs.dp = dp;
476         nargs.firstblock = args->firstblock;
477         nargs.flist = args->flist;
478         nargs.total = args->total;
479         nargs.whichfork = XFS_ATTR_FORK;
480         nargs.trans = args->trans;
481         nargs.oknoent = 1;
482
483         sfe = &sf->list[0];
484         for (i = 0; i < INT_GET(sf->hdr.count, ARCH_CONVERT); i++) {
485                 nargs.name = (char *)sfe->nameval;
486                 nargs.namelen = sfe->namelen;
487                 nargs.value = (char *)&sfe->nameval[nargs.namelen];
488                 nargs.valuelen = INT_GET(sfe->valuelen, ARCH_CONVERT);
489                 nargs.hashval = xfs_da_hashname((char *)sfe->nameval,
490                                                 sfe->namelen);
491                 nargs.flags = (sfe->flags & XFS_ATTR_SECURE) ? ATTR_SECURE :
492                                 ((sfe->flags & XFS_ATTR_ROOT) ? ATTR_ROOT : 0);
493                 error = xfs_attr_leaf_lookup_int(bp, &nargs); /* set a->index */
494                 ASSERT(error == ENOATTR);
495                 error = xfs_attr_leaf_add(bp, &nargs);
496                 ASSERT(error != ENOSPC);
497                 if (error)
498                         goto out;
499                 sfe = XFS_ATTR_SF_NEXTENTRY(sfe);
500         }
501         error = 0;
502
503 out:
504         if(bp)
505                 xfs_da_buf_done(bp);
506         kmem_free(tmpbuffer, size);
507         return(error);
508 }
509
510 STATIC int
511 xfs_attr_shortform_compare(const void *a, const void *b)
512 {
513         xfs_attr_sf_sort_t *sa, *sb;
514
515         sa = (xfs_attr_sf_sort_t *)a;
516         sb = (xfs_attr_sf_sort_t *)b;
517         if (INT_GET(sa->hash, ARCH_CONVERT)
518                                 < INT_GET(sb->hash, ARCH_CONVERT)) {
519                 return(-1);
520         } else if (INT_GET(sa->hash, ARCH_CONVERT)
521                                 > INT_GET(sb->hash, ARCH_CONVERT)) {
522                 return(1);
523         } else {
524                 return(sa->entno - sb->entno);
525         }
526 }
527
528 /*
529  * Copy out entries of shortform attribute lists for attr_list().
530  * Shortform atrtribute lists are not stored in hashval sorted order.
531  * If the output buffer is not large enough to hold them all, then we
532  * we have to calculate each entries' hashvalue and sort them before
533  * we can begin returning them to the user.
534  */
535 /*ARGSUSED*/
536 int
537 xfs_attr_shortform_list(xfs_attr_list_context_t *context)
538 {
539         attrlist_cursor_kern_t *cursor;
540         xfs_attr_sf_sort_t *sbuf, *sbp;
541         xfs_attr_shortform_t *sf;
542         xfs_attr_sf_entry_t *sfe;
543         xfs_inode_t *dp;
544         int sbsize, nsbuf, count, i;
545
546         ASSERT(context != NULL);
547         dp = context->dp;
548         ASSERT(dp != NULL);
549         ASSERT(dp->i_afp != NULL);
550         sf = (xfs_attr_shortform_t *)dp->i_afp->if_u1.if_data;
551         ASSERT(sf != NULL);
552         if (!sf->hdr.count)
553                 return(0);
554         cursor = context->cursor;
555         ASSERT(cursor != NULL);
556
557         xfs_attr_trace_l_c("sf start", context);
558
559         /*
560          * If the buffer is large enough, do not bother with sorting.
561          * Note the generous fudge factor of 16 overhead bytes per entry.
562          */
563         if ((dp->i_afp->if_bytes + INT_GET(sf->hdr.count, ARCH_CONVERT) * 16)
564                                                         < context->bufsize) {
565                 for (i = 0, sfe = &sf->list[0];
566                                 i < INT_GET(sf->hdr.count, ARCH_CONVERT); i++) {
567                         attrnames_t     *namesp;
568
569                         if (((context->flags & ATTR_SECURE) != 0) !=
570                             ((sfe->flags & XFS_ATTR_SECURE) != 0) &&
571                             !(context->flags & ATTR_KERNORMALS)) {
572                                 sfe = XFS_ATTR_SF_NEXTENTRY(sfe);
573                                 continue;
574                         }
575                         if (((context->flags & ATTR_ROOT) != 0) !=
576                             ((sfe->flags & XFS_ATTR_ROOT) != 0) &&
577                             !(context->flags & ATTR_KERNROOTLS)) {
578                                 sfe = XFS_ATTR_SF_NEXTENTRY(sfe);
579                                 continue;
580                         }
581                         namesp = (sfe->flags & XFS_ATTR_SECURE) ? &attr_secure:
582                                 ((sfe->flags & XFS_ATTR_ROOT) ? &attr_trusted :
583                                   &attr_user);
584                         if (context->flags & ATTR_KERNOVAL) {
585                                 ASSERT(context->flags & ATTR_KERNAMELS);
586                                 context->count += namesp->attr_namelen +
587                                         INT_GET(sfe->namelen, ARCH_CONVERT) + 1;
588                         }
589                         else {
590                                 if (xfs_attr_put_listent(context, namesp,
591                                                    (char *)sfe->nameval,
592                                                    (int)sfe->namelen,
593                                                    (int)INT_GET(sfe->valuelen,
594                                                                 ARCH_CONVERT)))
595                                         break;
596                         }
597                         sfe = XFS_ATTR_SF_NEXTENTRY(sfe);
598                 }
599                 xfs_attr_trace_l_c("sf big-gulp", context);
600                 return(0);
601         }
602
603         /*
604          * It didn't all fit, so we have to sort everything on hashval.
605          */
606         sbsize = INT_GET(sf->hdr.count, ARCH_CONVERT) * sizeof(*sbuf);
607         sbp = sbuf = kmem_alloc(sbsize, KM_SLEEP);
608
609         /*
610          * Scan the attribute list for the rest of the entries, storing
611          * the relevant info from only those that match into a buffer.
612          */
613         nsbuf = 0;
614         for (i = 0, sfe = &sf->list[0];
615                         i < INT_GET(sf->hdr.count, ARCH_CONVERT); i++) {
616                 if (unlikely(
617                     ((char *)sfe < (char *)sf) ||
618                     ((char *)sfe >= ((char *)sf + dp->i_afp->if_bytes)))) {
619                         XFS_CORRUPTION_ERROR("xfs_attr_shortform_list",
620                                              XFS_ERRLEVEL_LOW,
621                                              context->dp->i_mount, sfe);
622                         xfs_attr_trace_l_c("sf corrupted", context);
623                         kmem_free(sbuf, sbsize);
624                         return XFS_ERROR(EFSCORRUPTED);
625                 }
626                 if (((context->flags & ATTR_SECURE) != 0) !=
627                     ((sfe->flags & XFS_ATTR_SECURE) != 0) &&
628                     !(context->flags & ATTR_KERNORMALS)) {
629                         sfe = XFS_ATTR_SF_NEXTENTRY(sfe);
630                         continue;
631                 }
632                 if (((context->flags & ATTR_ROOT) != 0) !=
633                     ((sfe->flags & XFS_ATTR_ROOT) != 0) &&
634                     !(context->flags & ATTR_KERNROOTLS)) {
635                         sfe = XFS_ATTR_SF_NEXTENTRY(sfe);
636                         continue;
637                 }
638                 sbp->entno = i;
639                 INT_SET(sbp->hash, ARCH_CONVERT,
640                         xfs_da_hashname((char *)sfe->nameval, sfe->namelen));
641                 sbp->name = (char *)sfe->nameval;
642                 sbp->namelen = sfe->namelen;
643                 /* These are bytes, and both on-disk, don't endian-flip */
644                 sbp->valuelen = sfe->valuelen;
645                 sbp->flags = sfe->flags;
646                 sfe = XFS_ATTR_SF_NEXTENTRY(sfe);
647                 sbp++;
648                 nsbuf++;
649         }
650
651         /*
652          * Sort the entries on hash then entno.
653          */
654         xfs_sort(sbuf, nsbuf, sizeof(*sbuf), xfs_attr_shortform_compare);
655
656         /*
657          * Re-find our place IN THE SORTED LIST.
658          */
659         count = 0;
660         cursor->initted = 1;
661         cursor->blkno = 0;
662         for (sbp = sbuf, i = 0; i < nsbuf; i++, sbp++) {
663                 if (INT_GET(sbp->hash, ARCH_CONVERT) == cursor->hashval) {
664                         if (cursor->offset == count) {
665                                 break;
666                         }
667                         count++;
668                 } else if (INT_GET(sbp->hash, ARCH_CONVERT) > cursor->hashval) {
669                         break;
670                 }
671         }
672         if (i == nsbuf) {
673                 kmem_free(sbuf, sbsize);
674                 xfs_attr_trace_l_c("blk end", context);
675                 return(0);
676         }
677
678         /*
679          * Loop putting entries into the user buffer.
680          */
681         for ( ; i < nsbuf; i++, sbp++) {
682                 attrnames_t     *namesp;
683
684                 namesp = (sbp->flags & XFS_ATTR_SECURE) ? &attr_secure :
685                         ((sbp->flags & XFS_ATTR_ROOT) ? &attr_trusted :
686                           &attr_user);
687
688                 if (cursor->hashval != INT_GET(sbp->hash, ARCH_CONVERT)) {
689                         cursor->hashval = INT_GET(sbp->hash, ARCH_CONVERT);
690                         cursor->offset = 0;
691                 }
692                 if (context->flags & ATTR_KERNOVAL) {
693                         ASSERT(context->flags & ATTR_KERNAMELS);
694                         context->count += namesp->attr_namelen +
695                                                 sbp->namelen + 1;
696                 } else {
697                         if (xfs_attr_put_listent(context, namesp,
698                                         sbp->name, sbp->namelen,
699                                         INT_GET(sbp->valuelen, ARCH_CONVERT)))
700                                 break;
701                 }
702                 cursor->offset++;
703         }
704
705         kmem_free(sbuf, sbsize);
706         xfs_attr_trace_l_c("sf E-O-F", context);
707         return(0);
708 }
709
710 /*
711  * Check a leaf attribute block to see if all the entries would fit into
712  * a shortform attribute list.
713  */
714 int
715 xfs_attr_shortform_allfit(xfs_dabuf_t *bp, xfs_inode_t *dp)
716 {
717         xfs_attr_leafblock_t *leaf;
718         xfs_attr_leaf_entry_t *entry;
719         xfs_attr_leaf_name_local_t *name_loc;
720         int bytes, i;
721
722         leaf = bp->data;
723         ASSERT(be16_to_cpu(leaf->hdr.info.magic) == XFS_ATTR_LEAF_MAGIC);
724
725         entry = &leaf->entries[0];
726         bytes = sizeof(struct xfs_attr_sf_hdr);
727         for (i = 0; i < be16_to_cpu(leaf->hdr.count); entry++, i++) {
728                 if (entry->flags & XFS_ATTR_INCOMPLETE)
729                         continue;               /* don't copy partial entries */
730                 if (!(entry->flags & XFS_ATTR_LOCAL))
731                         return(0);
732                 name_loc = XFS_ATTR_LEAF_NAME_LOCAL(leaf, i);
733                 if (name_loc->namelen >= XFS_ATTR_SF_ENTSIZE_MAX)
734                         return(0);
735                 if (INT_GET(name_loc->valuelen, ARCH_CONVERT) >= XFS_ATTR_SF_ENTSIZE_MAX)
736                         return(0);
737                 bytes += sizeof(struct xfs_attr_sf_entry)-1
738                                 + name_loc->namelen
739                                 + INT_GET(name_loc->valuelen, ARCH_CONVERT);
740         }
741         if ((dp->i_mount->m_flags & XFS_MOUNT_ATTR2) &&
742             (bytes == sizeof(struct xfs_attr_sf_hdr)))
743                 return(-1);
744         return(xfs_attr_shortform_bytesfit(dp, bytes));
745 }
746
747 /*
748  * Convert a leaf attribute list to shortform attribute list
749  */
750 int
751 xfs_attr_leaf_to_shortform(xfs_dabuf_t *bp, xfs_da_args_t *args, int forkoff)
752 {
753         xfs_attr_leafblock_t *leaf;
754         xfs_attr_leaf_entry_t *entry;
755         xfs_attr_leaf_name_local_t *name_loc;
756         xfs_da_args_t nargs;
757         xfs_inode_t *dp;
758         char *tmpbuffer;
759         int error, i;
760
761         dp = args->dp;
762         tmpbuffer = kmem_alloc(XFS_LBSIZE(dp->i_mount), KM_SLEEP);
763         ASSERT(tmpbuffer != NULL);
764
765         ASSERT(bp != NULL);
766         memcpy(tmpbuffer, bp->data, XFS_LBSIZE(dp->i_mount));
767         leaf = (xfs_attr_leafblock_t *)tmpbuffer;
768         ASSERT(be16_to_cpu(leaf->hdr.info.magic) == XFS_ATTR_LEAF_MAGIC);
769         memset(bp->data, 0, XFS_LBSIZE(dp->i_mount));
770
771         /*
772          * Clean out the prior contents of the attribute list.
773          */
774         error = xfs_da_shrink_inode(args, 0, bp);
775         if (error)
776                 goto out;
777
778         if (forkoff == -1) {
779                 ASSERT(dp->i_mount->m_flags & XFS_MOUNT_ATTR2);
780
781                 /*
782                  * Last attribute was removed, revert to original
783                  * inode format making all literal area available
784                  * to the data fork once more.
785                  */
786                 xfs_idestroy_fork(dp, XFS_ATTR_FORK);
787                 dp->i_d.di_forkoff = 0;
788                 dp->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
789                 ASSERT(dp->i_d.di_anextents == 0);
790                 ASSERT(dp->i_afp == NULL);
791                 dp->i_df.if_ext_max =
792                         XFS_IFORK_DSIZE(dp) / (uint)sizeof(xfs_bmbt_rec_t);
793                 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE);
794                 goto out;
795         }
796
797         xfs_attr_shortform_create(args);
798
799         /*
800          * Copy the attributes
801          */
802         memset((char *)&nargs, 0, sizeof(nargs));
803         nargs.dp = dp;
804         nargs.firstblock = args->firstblock;
805         nargs.flist = args->flist;
806         nargs.total = args->total;
807         nargs.whichfork = XFS_ATTR_FORK;
808         nargs.trans = args->trans;
809         nargs.oknoent = 1;
810         entry = &leaf->entries[0];
811         for (i = 0; i < be16_to_cpu(leaf->hdr.count); entry++, i++) {
812                 if (entry->flags & XFS_ATTR_INCOMPLETE)
813                         continue;       /* don't copy partial entries */
814                 if (!entry->nameidx)
815                         continue;
816                 ASSERT(entry->flags & XFS_ATTR_LOCAL);
817                 name_loc = XFS_ATTR_LEAF_NAME_LOCAL(leaf, i);
818                 nargs.name = (char *)name_loc->nameval;
819                 nargs.namelen = name_loc->namelen;
820                 nargs.value = (char *)&name_loc->nameval[nargs.namelen];
821                 nargs.valuelen = INT_GET(name_loc->valuelen, ARCH_CONVERT);
822                 nargs.hashval = INT_GET(entry->hashval, ARCH_CONVERT);
823                 nargs.flags = (entry->flags & XFS_ATTR_SECURE) ? ATTR_SECURE :
824                               ((entry->flags & XFS_ATTR_ROOT) ? ATTR_ROOT : 0);
825                 xfs_attr_shortform_add(&nargs, forkoff);
826         }
827         error = 0;
828
829 out:
830         kmem_free(tmpbuffer, XFS_LBSIZE(dp->i_mount));
831         return(error);
832 }
833
834 /*
835  * Convert from using a single leaf to a root node and a leaf.
836  */
837 int
838 xfs_attr_leaf_to_node(xfs_da_args_t *args)
839 {
840         xfs_attr_leafblock_t *leaf;
841         xfs_da_intnode_t *node;
842         xfs_inode_t *dp;
843         xfs_dabuf_t *bp1, *bp2;
844         xfs_dablk_t blkno;
845         int error;
846
847         dp = args->dp;
848         bp1 = bp2 = NULL;
849         error = xfs_da_grow_inode(args, &blkno);
850         if (error)
851                 goto out;
852         error = xfs_da_read_buf(args->trans, args->dp, 0, -1, &bp1,
853                                              XFS_ATTR_FORK);
854         if (error)
855                 goto out;
856         ASSERT(bp1 != NULL);
857         bp2 = NULL;
858         error = xfs_da_get_buf(args->trans, args->dp, blkno, -1, &bp2,
859                                             XFS_ATTR_FORK);
860         if (error)
861                 goto out;
862         ASSERT(bp2 != NULL);
863         memcpy(bp2->data, bp1->data, XFS_LBSIZE(dp->i_mount));
864         xfs_da_buf_done(bp1);
865         bp1 = NULL;
866         xfs_da_log_buf(args->trans, bp2, 0, XFS_LBSIZE(dp->i_mount) - 1);
867
868         /*
869          * Set up the new root node.
870          */
871         error = xfs_da_node_create(args, 0, 1, &bp1, XFS_ATTR_FORK);
872         if (error)
873                 goto out;
874         node = bp1->data;
875         leaf = bp2->data;
876         ASSERT(be16_to_cpu(leaf->hdr.info.magic) == XFS_ATTR_LEAF_MAGIC);
877         /* both on-disk, don't endian-flip twice */
878         node->btree[0].hashval =
879                 leaf->entries[be16_to_cpu(leaf->hdr.count)-1 ].hashval;
880         INT_SET(node->btree[0].before, ARCH_CONVERT, blkno);
881         INT_SET(node->hdr.count, ARCH_CONVERT, 1);
882         xfs_da_log_buf(args->trans, bp1, 0, XFS_LBSIZE(dp->i_mount) - 1);
883         error = 0;
884 out:
885         if (bp1)
886                 xfs_da_buf_done(bp1);
887         if (bp2)
888                 xfs_da_buf_done(bp2);
889         return(error);
890 }
891
892
893 /*========================================================================
894  * Routines used for growing the Btree.
895  *========================================================================*/
896
897 /*
898  * Create the initial contents of a leaf attribute list
899  * or a leaf in a node attribute list.
900  */
901 STATIC int
902 xfs_attr_leaf_create(xfs_da_args_t *args, xfs_dablk_t blkno, xfs_dabuf_t **bpp)
903 {
904         xfs_attr_leafblock_t *leaf;
905         xfs_attr_leaf_hdr_t *hdr;
906         xfs_inode_t *dp;
907         xfs_dabuf_t *bp;
908         int error;
909
910         dp = args->dp;
911         ASSERT(dp != NULL);
912         error = xfs_da_get_buf(args->trans, args->dp, blkno, -1, &bp,
913                                             XFS_ATTR_FORK);
914         if (error)
915                 return(error);
916         ASSERT(bp != NULL);
917         leaf = bp->data;
918         memset((char *)leaf, 0, XFS_LBSIZE(dp->i_mount));
919         hdr = &leaf->hdr;
920         hdr->info.magic = cpu_to_be16(XFS_ATTR_LEAF_MAGIC);
921         hdr->firstused = cpu_to_be16(XFS_LBSIZE(dp->i_mount));
922         if (!hdr->firstused) {
923                 hdr->firstused = cpu_to_be16(
924                         XFS_LBSIZE(dp->i_mount) - XFS_ATTR_LEAF_NAME_ALIGN);
925         }
926
927         hdr->freemap[0].base = cpu_to_be16(sizeof(xfs_attr_leaf_hdr_t));
928         hdr->freemap[0].size = cpu_to_be16(be16_to_cpu(hdr->firstused) -
929                                            sizeof(xfs_attr_leaf_hdr_t));
930
931         xfs_da_log_buf(args->trans, bp, 0, XFS_LBSIZE(dp->i_mount) - 1);
932
933         *bpp = bp;
934         return(0);
935 }
936
937 /*
938  * Split the leaf node, rebalance, then add the new entry.
939  */
940 int
941 xfs_attr_leaf_split(xfs_da_state_t *state, xfs_da_state_blk_t *oldblk,
942                                    xfs_da_state_blk_t *newblk)
943 {
944         xfs_dablk_t blkno;
945         int error;
946
947         /*
948          * Allocate space for a new leaf node.
949          */
950         ASSERT(oldblk->magic == XFS_ATTR_LEAF_MAGIC);
951         error = xfs_da_grow_inode(state->args, &blkno);
952         if (error)
953                 return(error);
954         error = xfs_attr_leaf_create(state->args, blkno, &newblk->bp);
955         if (error)
956                 return(error);
957         newblk->blkno = blkno;
958         newblk->magic = XFS_ATTR_LEAF_MAGIC;
959
960         /*
961          * Rebalance the entries across the two leaves.
962          * NOTE: rebalance() currently depends on the 2nd block being empty.
963          */
964         xfs_attr_leaf_rebalance(state, oldblk, newblk);
965         error = xfs_da_blk_link(state, oldblk, newblk);
966         if (error)
967                 return(error);
968
969         /*
970          * Save info on "old" attribute for "atomic rename" ops, leaf_add()
971          * modifies the index/blkno/rmtblk/rmtblkcnt fields to show the
972          * "new" attrs info.  Will need the "old" info to remove it later.
973          *
974          * Insert the "new" entry in the correct block.
975          */
976         if (state->inleaf)
977                 error = xfs_attr_leaf_add(oldblk->bp, state->args);
978         else
979                 error = xfs_attr_leaf_add(newblk->bp, state->args);
980
981         /*
982          * Update last hashval in each block since we added the name.
983          */
984         oldblk->hashval = xfs_attr_leaf_lasthash(oldblk->bp, NULL);
985         newblk->hashval = xfs_attr_leaf_lasthash(newblk->bp, NULL);
986         return(error);
987 }
988
989 /*
990  * Add a name to the leaf attribute list structure.
991  */
992 int
993 xfs_attr_leaf_add(xfs_dabuf_t *bp, xfs_da_args_t *args)
994 {
995         xfs_attr_leafblock_t *leaf;
996         xfs_attr_leaf_hdr_t *hdr;
997         xfs_attr_leaf_map_t *map;
998         int tablesize, entsize, sum, tmp, i;
999
1000         leaf = bp->data;
1001         ASSERT(be16_to_cpu(leaf->hdr.info.magic) == XFS_ATTR_LEAF_MAGIC);
1002         ASSERT((args->index >= 0)
1003                 && (args->index <= be16_to_cpu(leaf->hdr.count)));
1004         hdr = &leaf->hdr;
1005         entsize = xfs_attr_leaf_newentsize(args->namelen, args->valuelen,
1006                            args->trans->t_mountp->m_sb.sb_blocksize, NULL);
1007
1008         /*
1009          * Search through freemap for first-fit on new name length.
1010          * (may need to figure in size of entry struct too)
1011          */
1012         tablesize = (be16_to_cpu(hdr->count) + 1)
1013                                         * sizeof(xfs_attr_leaf_entry_t)
1014                                         + sizeof(xfs_attr_leaf_hdr_t);
1015         map = &hdr->freemap[XFS_ATTR_LEAF_MAPSIZE-1];
1016         for (sum = 0, i = XFS_ATTR_LEAF_MAPSIZE-1; i >= 0; map--, i--) {
1017                 if (tablesize > be16_to_cpu(hdr->firstused)) {
1018                         sum += be16_to_cpu(map->size);
1019                         continue;
1020                 }
1021                 if (!map->size)
1022                         continue;       /* no space in this map */
1023                 tmp = entsize;
1024                 if (be16_to_cpu(map->base) < be16_to_cpu(hdr->firstused))
1025                         tmp += sizeof(xfs_attr_leaf_entry_t);
1026                 if (be16_to_cpu(map->size) >= tmp) {
1027                         tmp = xfs_attr_leaf_add_work(bp, args, i);
1028                         return(tmp);
1029                 }
1030                 sum += be16_to_cpu(map->size);
1031         }
1032
1033         /*
1034          * If there are no holes in the address space of the block,
1035          * and we don't have enough freespace, then compaction will do us
1036          * no good and we should just give up.
1037          */
1038         if (!hdr->holes && (sum < entsize))
1039                 return(XFS_ERROR(ENOSPC));
1040
1041         /*
1042          * Compact the entries to coalesce free space.
1043          * This may change the hdr->count via dropping INCOMPLETE entries.
1044          */
1045         xfs_attr_leaf_compact(args->trans, bp);
1046
1047         /*
1048          * After compaction, the block is guaranteed to have only one
1049          * free region, in freemap[0].  If it is not big enough, give up.
1050          */
1051         if (be16_to_cpu(hdr->freemap[0].size)
1052                                 < (entsize + sizeof(xfs_attr_leaf_entry_t)))
1053                 return(XFS_ERROR(ENOSPC));
1054
1055         return(xfs_attr_leaf_add_work(bp, args, 0));
1056 }
1057
1058 /*
1059  * Add a name to a leaf attribute list structure.
1060  */
1061 STATIC int
1062 xfs_attr_leaf_add_work(xfs_dabuf_t *bp, xfs_da_args_t *args, int mapindex)
1063 {
1064         xfs_attr_leafblock_t *leaf;
1065         xfs_attr_leaf_hdr_t *hdr;
1066         xfs_attr_leaf_entry_t *entry;
1067         xfs_attr_leaf_name_local_t *name_loc;
1068         xfs_attr_leaf_name_remote_t *name_rmt;
1069         xfs_attr_leaf_map_t *map;
1070         xfs_mount_t *mp;
1071         int tmp, i;
1072
1073         leaf = bp->data;
1074         ASSERT(be16_to_cpu(leaf->hdr.info.magic) == XFS_ATTR_LEAF_MAGIC);
1075         hdr = &leaf->hdr;
1076         ASSERT((mapindex >= 0) && (mapindex < XFS_ATTR_LEAF_MAPSIZE));
1077         ASSERT((args->index >= 0) && (args->index <= be16_to_cpu(hdr->count)));
1078
1079         /*
1080          * Force open some space in the entry array and fill it in.
1081          */
1082         entry = &leaf->entries[args->index];
1083         if (args->index < be16_to_cpu(hdr->count)) {
1084                 tmp  = be16_to_cpu(hdr->count) - args->index;
1085                 tmp *= sizeof(xfs_attr_leaf_entry_t);
1086                 memmove((char *)(entry+1), (char *)entry, tmp);
1087                 xfs_da_log_buf(args->trans, bp,
1088                     XFS_DA_LOGRANGE(leaf, entry, tmp + sizeof(*entry)));
1089         }
1090         be16_add(&hdr->count, 1);
1091
1092         /*
1093          * Allocate space for the new string (at the end of the run).
1094          */
1095         map = &hdr->freemap[mapindex];
1096         mp = args->trans->t_mountp;
1097         ASSERT(be16_to_cpu(map->base) < XFS_LBSIZE(mp));
1098         ASSERT((be16_to_cpu(map->base) & 0x3) == 0);
1099         ASSERT(be16_to_cpu(map->size) >=
1100                 xfs_attr_leaf_newentsize(args->namelen, args->valuelen,
1101                                          mp->m_sb.sb_blocksize, NULL));
1102         ASSERT(be16_to_cpu(map->size) < XFS_LBSIZE(mp));
1103         ASSERT((be16_to_cpu(map->size) & 0x3) == 0);
1104         be16_add(&map->size,
1105                 -xfs_attr_leaf_newentsize(args->namelen, args->valuelen,
1106                                           mp->m_sb.sb_blocksize, &tmp));
1107         INT_SET(entry->nameidx, ARCH_CONVERT,
1108                                         be16_to_cpu(map->base)
1109                                       + be16_to_cpu(map->size));
1110         INT_SET(entry->hashval, ARCH_CONVERT, args->hashval);
1111         entry->flags = tmp ? XFS_ATTR_LOCAL : 0;
1112         entry->flags |= (args->flags & ATTR_SECURE) ? XFS_ATTR_SECURE :
1113                         ((args->flags & ATTR_ROOT) ? XFS_ATTR_ROOT : 0);
1114         if (args->rename) {
1115                 entry->flags |= XFS_ATTR_INCOMPLETE;
1116                 if ((args->blkno2 == args->blkno) &&
1117                     (args->index2 <= args->index)) {
1118                         args->index2++;
1119                 }
1120         }
1121         xfs_da_log_buf(args->trans, bp,
1122                           XFS_DA_LOGRANGE(leaf, entry, sizeof(*entry)));
1123         ASSERT((args->index == 0) || (INT_GET(entry->hashval, ARCH_CONVERT)
1124                                                 >= INT_GET((entry-1)->hashval,
1125                                                             ARCH_CONVERT)));
1126         ASSERT((args->index == be16_to_cpu(hdr->count)-1) ||
1127                (INT_GET(entry->hashval, ARCH_CONVERT)
1128                             <= (INT_GET((entry+1)->hashval, ARCH_CONVERT))));
1129
1130         /*
1131          * Copy the attribute name and value into the new space.
1132          *
1133          * For "remote" attribute values, simply note that we need to
1134          * allocate space for the "remote" value.  We can't actually
1135          * allocate the extents in this transaction, and we can't decide
1136          * which blocks they should be as we might allocate more blocks
1137          * as part of this transaction (a split operation for example).
1138          */
1139         if (entry->flags & XFS_ATTR_LOCAL) {
1140                 name_loc = XFS_ATTR_LEAF_NAME_LOCAL(leaf, args->index);
1141                 name_loc->namelen = args->namelen;
1142                 INT_SET(name_loc->valuelen, ARCH_CONVERT, args->valuelen);
1143                 memcpy((char *)name_loc->nameval, args->name, args->namelen);
1144                 memcpy((char *)&name_loc->nameval[args->namelen], args->value,
1145                                    INT_GET(name_loc->valuelen, ARCH_CONVERT));
1146         } else {
1147                 name_rmt = XFS_ATTR_LEAF_NAME_REMOTE(leaf, args->index);
1148                 name_rmt->namelen = args->namelen;
1149                 memcpy((char *)name_rmt->name, args->name, args->namelen);
1150                 entry->flags |= XFS_ATTR_INCOMPLETE;
1151                 /* just in case */
1152                 name_rmt->valuelen = 0;
1153                 name_rmt->valueblk = 0;
1154                 args->rmtblkno = 1;
1155                 args->rmtblkcnt = XFS_B_TO_FSB(mp, args->valuelen);
1156         }
1157         xfs_da_log_buf(args->trans, bp,
1158              XFS_DA_LOGRANGE(leaf, XFS_ATTR_LEAF_NAME(leaf, args->index),
1159                                    xfs_attr_leaf_entsize(leaf, args->index)));
1160
1161         /*
1162          * Update the control info for this leaf node
1163          */
1164         if (INT_GET(entry->nameidx, ARCH_CONVERT)
1165                                 < be16_to_cpu(hdr->firstused)) {
1166                 /* both on-disk, don't endian-flip twice */
1167                 hdr->firstused = entry->nameidx;
1168         }
1169         ASSERT(be16_to_cpu(hdr->firstused) >=
1170                ((be16_to_cpu(hdr->count) * sizeof(*entry)) + sizeof(*hdr)));
1171         tmp = (be16_to_cpu(hdr->count)-1) * sizeof(xfs_attr_leaf_entry_t)
1172                                         + sizeof(xfs_attr_leaf_hdr_t);
1173         map = &hdr->freemap[0];
1174         for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; map++, i++) {
1175                 if (be16_to_cpu(map->base) == tmp) {
1176                         be16_add(&map->base, sizeof(xfs_attr_leaf_entry_t));
1177                         be16_add(&map->size,
1178                                  -((int)sizeof(xfs_attr_leaf_entry_t)));
1179                 }
1180         }
1181         be16_add(&hdr->usedbytes, xfs_attr_leaf_entsize(leaf, args->index));
1182         xfs_da_log_buf(args->trans, bp,
1183                 XFS_DA_LOGRANGE(leaf, hdr, sizeof(*hdr)));
1184         return(0);
1185 }
1186
1187 /*
1188  * Garbage collect a leaf attribute list block by copying it to a new buffer.
1189  */
1190 STATIC void
1191 xfs_attr_leaf_compact(xfs_trans_t *trans, xfs_dabuf_t *bp)
1192 {
1193         xfs_attr_leafblock_t *leaf_s, *leaf_d;
1194         xfs_attr_leaf_hdr_t *hdr_s, *hdr_d;
1195         xfs_mount_t *mp;
1196         char *tmpbuffer;
1197
1198         mp = trans->t_mountp;
1199         tmpbuffer = kmem_alloc(XFS_LBSIZE(mp), KM_SLEEP);
1200         ASSERT(tmpbuffer != NULL);
1201         memcpy(tmpbuffer, bp->data, XFS_LBSIZE(mp));
1202         memset(bp->data, 0, XFS_LBSIZE(mp));
1203
1204         /*
1205          * Copy basic information
1206          */
1207         leaf_s = (xfs_attr_leafblock_t *)tmpbuffer;
1208         leaf_d = bp->data;
1209         hdr_s = &leaf_s->hdr;
1210         hdr_d = &leaf_d->hdr;
1211         hdr_d->info = hdr_s->info;      /* struct copy */
1212         hdr_d->firstused = cpu_to_be16(XFS_LBSIZE(mp));
1213         /* handle truncation gracefully */
1214         if (!hdr_d->firstused) {
1215                 hdr_d->firstused = cpu_to_be16(
1216                                 XFS_LBSIZE(mp) - XFS_ATTR_LEAF_NAME_ALIGN);
1217         }
1218         hdr_d->usedbytes = 0;
1219         hdr_d->count = 0;
1220         hdr_d->holes = 0;
1221         hdr_d->freemap[0].base = cpu_to_be16(sizeof(xfs_attr_leaf_hdr_t));
1222         hdr_d->freemap[0].size = cpu_to_be16(be16_to_cpu(hdr_d->firstused) -
1223                                              sizeof(xfs_attr_leaf_hdr_t));
1224
1225         /*
1226          * Copy all entry's in the same (sorted) order,
1227          * but allocate name/value pairs packed and in sequence.
1228          */
1229         xfs_attr_leaf_moveents(leaf_s, 0, leaf_d, 0,
1230                                 be16_to_cpu(hdr_s->count), mp);
1231         xfs_da_log_buf(trans, bp, 0, XFS_LBSIZE(mp) - 1);
1232
1233         kmem_free(tmpbuffer, XFS_LBSIZE(mp));
1234 }
1235
1236 /*
1237  * Redistribute the attribute list entries between two leaf nodes,
1238  * taking into account the size of the new entry.
1239  *
1240  * NOTE: if new block is empty, then it will get the upper half of the
1241  * old block.  At present, all (one) callers pass in an empty second block.
1242  *
1243  * This code adjusts the args->index/blkno and args->index2/blkno2 fields
1244  * to match what it is doing in splitting the attribute leaf block.  Those
1245  * values are used in "atomic rename" operations on attributes.  Note that
1246  * the "new" and "old" values can end up in different blocks.
1247  */
1248 STATIC void
1249 xfs_attr_leaf_rebalance(xfs_da_state_t *state, xfs_da_state_blk_t *blk1,
1250                                        xfs_da_state_blk_t *blk2)
1251 {
1252         xfs_da_args_t *args;
1253         xfs_da_state_blk_t *tmp_blk;
1254         xfs_attr_leafblock_t *leaf1, *leaf2;
1255         xfs_attr_leaf_hdr_t *hdr1, *hdr2;
1256         int count, totallen, max, space, swap;
1257
1258         /*
1259          * Set up environment.
1260          */
1261         ASSERT(blk1->magic == XFS_ATTR_LEAF_MAGIC);
1262         ASSERT(blk2->magic == XFS_ATTR_LEAF_MAGIC);
1263         leaf1 = blk1->bp->data;
1264         leaf2 = blk2->bp->data;
1265         ASSERT(be16_to_cpu(leaf1->hdr.info.magic) == XFS_ATTR_LEAF_MAGIC);
1266         ASSERT(be16_to_cpu(leaf2->hdr.info.magic) == XFS_ATTR_LEAF_MAGIC);
1267         args = state->args;
1268
1269         /*
1270          * Check ordering of blocks, reverse if it makes things simpler.
1271          *
1272          * NOTE: Given that all (current) callers pass in an empty
1273          * second block, this code should never set "swap".
1274          */
1275         swap = 0;
1276         if (xfs_attr_leaf_order(blk1->bp, blk2->bp)) {
1277                 tmp_blk = blk1;
1278                 blk1 = blk2;
1279                 blk2 = tmp_blk;
1280                 leaf1 = blk1->bp->data;
1281                 leaf2 = blk2->bp->data;
1282                 swap = 1;
1283         }
1284         hdr1 = &leaf1->hdr;
1285         hdr2 = &leaf2->hdr;
1286
1287         /*
1288          * Examine entries until we reduce the absolute difference in
1289          * byte usage between the two blocks to a minimum.  Then get
1290          * the direction to copy and the number of elements to move.
1291          *
1292          * "inleaf" is true if the new entry should be inserted into blk1.
1293          * If "swap" is also true, then reverse the sense of "inleaf".
1294          */
1295         state->inleaf = xfs_attr_leaf_figure_balance(state, blk1, blk2,
1296                                                             &count, &totallen);
1297         if (swap)
1298                 state->inleaf = !state->inleaf;
1299
1300         /*
1301          * Move any entries required from leaf to leaf:
1302          */
1303         if (count < be16_to_cpu(hdr1->count)) {
1304                 /*
1305                  * Figure the total bytes to be added to the destination leaf.
1306                  */
1307                 /* number entries being moved */
1308                 count = be16_to_cpu(hdr1->count) - count;
1309                 space  = be16_to_cpu(hdr1->usedbytes) - totallen;
1310                 space += count * sizeof(xfs_attr_leaf_entry_t);
1311
1312                 /*
1313                  * leaf2 is the destination, compact it if it looks tight.
1314                  */
1315                 max  = be16_to_cpu(hdr2->firstused)
1316                                                 - sizeof(xfs_attr_leaf_hdr_t);
1317                 max -= be16_to_cpu(hdr2->count) * sizeof(xfs_attr_leaf_entry_t);
1318                 if (space > max) {
1319                         xfs_attr_leaf_compact(args->trans, blk2->bp);
1320                 }
1321
1322                 /*
1323                  * Move high entries from leaf1 to low end of leaf2.
1324                  */
1325                 xfs_attr_leaf_moveents(leaf1, be16_to_cpu(hdr1->count) - count,
1326                                 leaf2, 0, count, state->mp);
1327
1328                 xfs_da_log_buf(args->trans, blk1->bp, 0, state->blocksize-1);
1329                 xfs_da_log_buf(args->trans, blk2->bp, 0, state->blocksize-1);
1330         } else if (count > be16_to_cpu(hdr1->count)) {
1331                 /*
1332                  * I assert that since all callers pass in an empty
1333                  * second buffer, this code should never execute.
1334                  */
1335
1336                 /*
1337                  * Figure the total bytes to be added to the destination leaf.
1338                  */
1339                 /* number entries being moved */
1340                 count -= be16_to_cpu(hdr1->count);
1341                 space  = totallen - be16_to_cpu(hdr1->usedbytes);
1342                 space += count * sizeof(xfs_attr_leaf_entry_t);
1343
1344                 /*
1345                  * leaf1 is the destination, compact it if it looks tight.
1346                  */
1347                 max  = be16_to_cpu(hdr1->firstused)
1348                                                 - sizeof(xfs_attr_leaf_hdr_t);
1349                 max -= be16_to_cpu(hdr1->count) * sizeof(xfs_attr_leaf_entry_t);
1350                 if (space > max) {
1351                         xfs_attr_leaf_compact(args->trans, blk1->bp);
1352                 }
1353
1354                 /*
1355                  * Move low entries from leaf2 to high end of leaf1.
1356                  */
1357                 xfs_attr_leaf_moveents(leaf2, 0, leaf1,
1358                                 be16_to_cpu(hdr1->count), count, state->mp);
1359
1360                 xfs_da_log_buf(args->trans, blk1->bp, 0, state->blocksize-1);
1361                 xfs_da_log_buf(args->trans, blk2->bp, 0, state->blocksize-1);
1362         }
1363
1364         /*
1365          * Copy out last hashval in each block for B-tree code.
1366          */
1367         blk1->hashval =
1368             INT_GET(leaf1->entries[be16_to_cpu(leaf1->hdr.count)-1].hashval,
1369                             ARCH_CONVERT);
1370         blk2->hashval =
1371             INT_GET(leaf2->entries[be16_to_cpu(leaf2->hdr.count)-1].hashval,
1372                             ARCH_CONVERT);
1373
1374         /*
1375          * Adjust the expected index for insertion.
1376          * NOTE: this code depends on the (current) situation that the
1377          * second block was originally empty.
1378          *
1379          * If the insertion point moved to the 2nd block, we must adjust
1380          * the index.  We must also track the entry just following the
1381          * new entry for use in an "atomic rename" operation, that entry
1382          * is always the "old" entry and the "new" entry is what we are
1383          * inserting.  The index/blkno fields refer to the "old" entry,
1384          * while the index2/blkno2 fields refer to the "new" entry.
1385          */
1386         if (blk1->index > be16_to_cpu(leaf1->hdr.count)) {
1387                 ASSERT(state->inleaf == 0);
1388                 blk2->index = blk1->index - be16_to_cpu(leaf1->hdr.count);
1389                 args->index = args->index2 = blk2->index;
1390                 args->blkno = args->blkno2 = blk2->blkno;
1391         } else if (blk1->index == be16_to_cpu(leaf1->hdr.count)) {
1392                 if (state->inleaf) {
1393                         args->index = blk1->index;
1394                         args->blkno = blk1->blkno;
1395                         args->index2 = 0;
1396                         args->blkno2 = blk2->blkno;
1397                 } else {
1398                         blk2->index = blk1->index
1399                                     - be16_to_cpu(leaf1->hdr.count);
1400                         args->index = args->index2 = blk2->index;
1401                         args->blkno = args->blkno2 = blk2->blkno;
1402                 }
1403         } else {
1404                 ASSERT(state->inleaf == 1);
1405                 args->index = args->index2 = blk1->index;
1406                 args->blkno = args->blkno2 = blk1->blkno;
1407         }
1408 }
1409
1410 /*
1411  * Examine entries until we reduce the absolute difference in
1412  * byte usage between the two blocks to a minimum.
1413  * GROT: Is this really necessary?  With other than a 512 byte blocksize,
1414  * GROT: there will always be enough room in either block for a new entry.
1415  * GROT: Do a double-split for this case?
1416  */
1417 STATIC int
1418 xfs_attr_leaf_figure_balance(xfs_da_state_t *state,
1419                                     xfs_da_state_blk_t *blk1,
1420                                     xfs_da_state_blk_t *blk2,
1421                                     int *countarg, int *usedbytesarg)
1422 {
1423         xfs_attr_leafblock_t *leaf1, *leaf2;
1424         xfs_attr_leaf_hdr_t *hdr1, *hdr2;
1425         xfs_attr_leaf_entry_t *entry;
1426         int count, max, index, totallen, half;
1427         int lastdelta, foundit, tmp;
1428
1429         /*
1430          * Set up environment.
1431          */
1432         leaf1 = blk1->bp->data;
1433         leaf2 = blk2->bp->data;
1434         hdr1 = &leaf1->hdr;
1435         hdr2 = &leaf2->hdr;
1436         foundit = 0;
1437         totallen = 0;
1438
1439         /*
1440          * Examine entries until we reduce the absolute difference in
1441          * byte usage between the two blocks to a minimum.
1442          */
1443         max = be16_to_cpu(hdr1->count) + be16_to_cpu(hdr2->count);
1444         half  = (max+1) * sizeof(*entry);
1445         half += be16_to_cpu(hdr1->usedbytes) +
1446                 be16_to_cpu(hdr2->usedbytes) +
1447                 xfs_attr_leaf_newentsize(
1448                                 state->args->namelen,
1449                                 state->args->valuelen,
1450                                 state->blocksize, NULL);
1451         half /= 2;
1452         lastdelta = state->blocksize;
1453         entry = &leaf1->entries[0];
1454         for (count = index = 0; count < max; entry++, index++, count++) {
1455
1456 #define XFS_ATTR_ABS(A) (((A) < 0) ? -(A) : (A))
1457                 /*
1458                  * The new entry is in the first block, account for it.
1459                  */
1460                 if (count == blk1->index) {
1461                         tmp = totallen + sizeof(*entry) +
1462                                 xfs_attr_leaf_newentsize(
1463                                                 state->args->namelen,
1464                                                 state->args->valuelen,
1465                                                 state->blocksize, NULL);
1466                         if (XFS_ATTR_ABS(half - tmp) > lastdelta)
1467                                 break;
1468                         lastdelta = XFS_ATTR_ABS(half - tmp);
1469                         totallen = tmp;
1470                         foundit = 1;
1471                 }
1472
1473                 /*
1474                  * Wrap around into the second block if necessary.
1475                  */
1476                 if (count == be16_to_cpu(hdr1->count)) {
1477                         leaf1 = leaf2;
1478                         entry = &leaf1->entries[0];
1479                         index = 0;
1480                 }
1481
1482                 /*
1483                  * Figure out if next leaf entry would be too much.
1484                  */
1485                 tmp = totallen + sizeof(*entry) + xfs_attr_leaf_entsize(leaf1,
1486                                                                         index);
1487                 if (XFS_ATTR_ABS(half - tmp) > lastdelta)
1488                         break;
1489                 lastdelta = XFS_ATTR_ABS(half - tmp);
1490                 totallen = tmp;
1491 #undef XFS_ATTR_ABS
1492         }
1493
1494         /*
1495          * Calculate the number of usedbytes that will end up in lower block.
1496          * If new entry not in lower block, fix up the count.
1497          */
1498         totallen -= count * sizeof(*entry);
1499         if (foundit) {
1500                 totallen -= sizeof(*entry) +
1501                                 xfs_attr_leaf_newentsize(
1502                                                 state->args->namelen,
1503                                                 state->args->valuelen,
1504                                                 state->blocksize, NULL);
1505         }
1506
1507         *countarg = count;
1508         *usedbytesarg = totallen;
1509         return(foundit);
1510 }
1511
1512 /*========================================================================
1513  * Routines used for shrinking the Btree.
1514  *========================================================================*/
1515
1516 /*
1517  * Check a leaf block and its neighbors to see if the block should be
1518  * collapsed into one or the other neighbor.  Always keep the block
1519  * with the smaller block number.
1520  * If the current block is over 50% full, don't try to join it, return 0.
1521  * If the block is empty, fill in the state structure and return 2.
1522  * If it can be collapsed, fill in the state structure and return 1.
1523  * If nothing can be done, return 0.
1524  *
1525  * GROT: allow for INCOMPLETE entries in calculation.
1526  */
1527 int
1528 xfs_attr_leaf_toosmall(xfs_da_state_t *state, int *action)
1529 {
1530         xfs_attr_leafblock_t *leaf;
1531         xfs_da_state_blk_t *blk;
1532         xfs_da_blkinfo_t *info;
1533         int count, bytes, forward, error, retval, i;
1534         xfs_dablk_t blkno;
1535         xfs_dabuf_t *bp;
1536
1537         /*
1538          * Check for the degenerate case of the block being over 50% full.
1539          * If so, it's not worth even looking to see if we might be able
1540          * to coalesce with a sibling.
1541          */
1542         blk = &state->path.blk[ state->path.active-1 ];
1543         info = blk->bp->data;
1544         ASSERT(be16_to_cpu(info->magic) == XFS_ATTR_LEAF_MAGIC);
1545         leaf = (xfs_attr_leafblock_t *)info;
1546         count = be16_to_cpu(leaf->hdr.count);
1547         bytes = sizeof(xfs_attr_leaf_hdr_t) +
1548                 count * sizeof(xfs_attr_leaf_entry_t) +
1549                 be16_to_cpu(leaf->hdr.usedbytes);
1550         if (bytes > (state->blocksize >> 1)) {
1551                 *action = 0;    /* blk over 50%, don't try to join */
1552                 return(0);
1553         }
1554
1555         /*
1556          * Check for the degenerate case of the block being empty.
1557          * If the block is empty, we'll simply delete it, no need to
1558          * coalesce it with a sibling block.  We choose (aribtrarily)
1559          * to merge with the forward block unless it is NULL.
1560          */
1561         if (count == 0) {
1562                 /*
1563                  * Make altpath point to the block we want to keep and
1564                  * path point to the block we want to drop (this one).
1565                  */
1566                 forward = (info->forw != 0);
1567                 memcpy(&state->altpath, &state->path, sizeof(state->path));
1568                 error = xfs_da_path_shift(state, &state->altpath, forward,
1569                                                  0, &retval);
1570                 if (error)
1571                         return(error);
1572                 if (retval) {
1573                         *action = 0;
1574                 } else {
1575                         *action = 2;
1576                 }
1577                 return(0);
1578         }
1579
1580         /*
1581          * Examine each sibling block to see if we can coalesce with
1582          * at least 25% free space to spare.  We need to figure out
1583          * whether to merge with the forward or the backward block.
1584          * We prefer coalescing with the lower numbered sibling so as
1585          * to shrink an attribute list over time.
1586          */
1587         /* start with smaller blk num */
1588         forward = (be32_to_cpu(info->forw) < be32_to_cpu(info->back));
1589         for (i = 0; i < 2; forward = !forward, i++) {
1590                 if (forward)
1591                         blkno = be32_to_cpu(info->forw);
1592                 else
1593                         blkno = be32_to_cpu(info->back);
1594                 if (blkno == 0)
1595                         continue;
1596                 error = xfs_da_read_buf(state->args->trans, state->args->dp,
1597                                         blkno, -1, &bp, XFS_ATTR_FORK);
1598                 if (error)
1599                         return(error);
1600                 ASSERT(bp != NULL);
1601
1602                 leaf = (xfs_attr_leafblock_t *)info;
1603                 count  = be16_to_cpu(leaf->hdr.count);
1604                 bytes  = state->blocksize - (state->blocksize>>2);
1605                 bytes -= be16_to_cpu(leaf->hdr.usedbytes);
1606                 leaf = bp->data;
1607                 ASSERT(be16_to_cpu(leaf->hdr.info.magic) == XFS_ATTR_LEAF_MAGIC);
1608                 count += be16_to_cpu(leaf->hdr.count);
1609                 bytes -= be16_to_cpu(leaf->hdr.usedbytes);
1610                 bytes -= count * sizeof(xfs_attr_leaf_entry_t);
1611                 bytes -= sizeof(xfs_attr_leaf_hdr_t);
1612                 xfs_da_brelse(state->args->trans, bp);
1613                 if (bytes >= 0)
1614                         break;  /* fits with at least 25% to spare */
1615         }
1616         if (i >= 2) {
1617                 *action = 0;
1618                 return(0);
1619         }
1620
1621         /*
1622          * Make altpath point to the block we want to keep (the lower
1623          * numbered block) and path point to the block we want to drop.
1624          */
1625         memcpy(&state->altpath, &state->path, sizeof(state->path));
1626         if (blkno < blk->blkno) {
1627                 error = xfs_da_path_shift(state, &state->altpath, forward,
1628                                                  0, &retval);
1629         } else {
1630                 error = xfs_da_path_shift(state, &state->path, forward,
1631                                                  0, &retval);
1632         }
1633         if (error)
1634                 return(error);
1635         if (retval) {
1636                 *action = 0;
1637         } else {
1638                 *action = 1;
1639         }
1640         return(0);
1641 }
1642
1643 /*
1644  * Remove a name from the leaf attribute list structure.
1645  *
1646  * Return 1 if leaf is less than 37% full, 0 if >= 37% full.
1647  * If two leaves are 37% full, when combined they will leave 25% free.
1648  */
1649 int
1650 xfs_attr_leaf_remove(xfs_dabuf_t *bp, xfs_da_args_t *args)
1651 {
1652         xfs_attr_leafblock_t *leaf;
1653         xfs_attr_leaf_hdr_t *hdr;
1654         xfs_attr_leaf_map_t *map;
1655         xfs_attr_leaf_entry_t *entry;
1656         int before, after, smallest, entsize;
1657         int tablesize, tmp, i;
1658         xfs_mount_t *mp;
1659
1660         leaf = bp->data;
1661         ASSERT(be16_to_cpu(leaf->hdr.info.magic) == XFS_ATTR_LEAF_MAGIC);
1662         hdr = &leaf->hdr;
1663         mp = args->trans->t_mountp;
1664         ASSERT((be16_to_cpu(hdr->count) > 0)
1665                 && (be16_to_cpu(hdr->count) < (XFS_LBSIZE(mp)/8)));
1666         ASSERT((args->index >= 0)
1667                 && (args->index < be16_to_cpu(hdr->count)));
1668         ASSERT(be16_to_cpu(hdr->firstused) >=
1669                ((be16_to_cpu(hdr->count) * sizeof(*entry)) + sizeof(*hdr)));
1670         entry = &leaf->entries[args->index];
1671         ASSERT(INT_GET(entry->nameidx, ARCH_CONVERT)
1672                                 >= be16_to_cpu(hdr->firstused));
1673         ASSERT(INT_GET(entry->nameidx, ARCH_CONVERT) < XFS_LBSIZE(mp));
1674
1675         /*
1676          * Scan through free region table:
1677          *    check for adjacency of free'd entry with an existing one,
1678          *    find smallest free region in case we need to replace it,
1679          *    adjust any map that borders the entry table,
1680          */
1681         tablesize = be16_to_cpu(hdr->count) * sizeof(xfs_attr_leaf_entry_t)
1682                                         + sizeof(xfs_attr_leaf_hdr_t);
1683         map = &hdr->freemap[0];
1684         tmp = be16_to_cpu(map->size);
1685         before = after = -1;
1686         smallest = XFS_ATTR_LEAF_MAPSIZE - 1;
1687         entsize = xfs_attr_leaf_entsize(leaf, args->index);
1688         for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; map++, i++) {
1689                 ASSERT(be16_to_cpu(map->base) < XFS_LBSIZE(mp));
1690                 ASSERT(be16_to_cpu(map->size) < XFS_LBSIZE(mp));
1691                 if (be16_to_cpu(map->base) == tablesize) {
1692                         be16_add(&map->base,
1693                                  -((int)sizeof(xfs_attr_leaf_entry_t)));
1694                         be16_add(&map->size, sizeof(xfs_attr_leaf_entry_t));
1695                 }
1696
1697                 if ((be16_to_cpu(map->base) + be16_to_cpu(map->size))
1698                                 == INT_GET(entry->nameidx, ARCH_CONVERT)) {
1699                         before = i;
1700                 } else if (be16_to_cpu(map->base)
1701                         == (INT_GET(entry->nameidx, ARCH_CONVERT) + entsize)) {
1702                         after = i;
1703                 } else if (be16_to_cpu(map->size) < tmp) {
1704                         tmp = be16_to_cpu(map->size);
1705                         smallest = i;
1706                 }
1707         }
1708
1709         /*
1710          * Coalesce adjacent freemap regions,
1711          * or replace the smallest region.
1712          */
1713         if ((before >= 0) || (after >= 0)) {
1714                 if ((before >= 0) && (after >= 0)) {
1715                         map = &hdr->freemap[before];
1716                         be16_add(&map->size, entsize);
1717                         be16_add(&map->size,
1718                                  be16_to_cpu(hdr->freemap[after].size));
1719                         hdr->freemap[after].base = 0;
1720                         hdr->freemap[after].size = 0;
1721                 } else if (before >= 0) {
1722                         map = &hdr->freemap[before];
1723                         be16_add(&map->size, entsize);
1724                 } else {
1725                         map = &hdr->freemap[after];
1726                         /* both on-disk, don't endian flip twice */
1727                         map->base = entry->nameidx;
1728                         be16_add(&map->size, entsize);
1729                 }
1730         } else {
1731                 /*
1732                  * Replace smallest region (if it is smaller than free'd entry)
1733                  */
1734                 map = &hdr->freemap[smallest];
1735                 if (be16_to_cpu(map->size) < entsize) {
1736                         map->base = cpu_to_be16(
1737                                         INT_GET(entry->nameidx, ARCH_CONVERT));
1738                         map->size = cpu_to_be16(entsize);
1739                 }
1740         }
1741
1742         /*
1743          * Did we remove the first entry?
1744          */
1745         if (INT_GET(entry->nameidx, ARCH_CONVERT)
1746                                 == be16_to_cpu(hdr->firstused))
1747                 smallest = 1;
1748         else
1749                 smallest = 0;
1750
1751         /*
1752          * Compress the remaining entries and zero out the removed stuff.
1753          */
1754         memset(XFS_ATTR_LEAF_NAME(leaf, args->index), 0, entsize);
1755         be16_add(&hdr->usedbytes, -entsize);
1756         xfs_da_log_buf(args->trans, bp,
1757              XFS_DA_LOGRANGE(leaf, XFS_ATTR_LEAF_NAME(leaf, args->index),
1758                                    entsize));
1759
1760         tmp = (be16_to_cpu(hdr->count) - args->index)
1761                                         * sizeof(xfs_attr_leaf_entry_t);
1762         memmove((char *)entry, (char *)(entry+1), tmp);
1763         be16_add(&hdr->count, -1);
1764         xfs_da_log_buf(args->trans, bp,
1765             XFS_DA_LOGRANGE(leaf, entry, tmp + sizeof(*entry)));
1766         entry = &leaf->entries[be16_to_cpu(hdr->count)];
1767         memset((char *)entry, 0, sizeof(xfs_attr_leaf_entry_t));
1768
1769         /*
1770          * If we removed the first entry, re-find the first used byte
1771          * in the name area.  Note that if the entry was the "firstused",
1772          * then we don't have a "hole" in our block resulting from
1773          * removing the name.
1774          */
1775         if (smallest) {
1776                 tmp = XFS_LBSIZE(mp);
1777                 entry = &leaf->entries[0];
1778                 for (i = be16_to_cpu(hdr->count)-1; i >= 0; entry++, i--) {
1779                         ASSERT(INT_GET(entry->nameidx, ARCH_CONVERT)
1780                                 >= be16_to_cpu(hdr->firstused));
1781                         ASSERT(INT_GET(entry->nameidx, ARCH_CONVERT)
1782                                                         < XFS_LBSIZE(mp));
1783                         if (INT_GET(entry->nameidx, ARCH_CONVERT) < tmp)
1784                                 tmp = INT_GET(entry->nameidx, ARCH_CONVERT);
1785                 }
1786                 hdr->firstused = cpu_to_be16(tmp);
1787                 if (!hdr->firstused) {
1788                         hdr->firstused = cpu_to_be16(
1789                                         tmp - XFS_ATTR_LEAF_NAME_ALIGN);
1790                 }
1791         } else {
1792                 hdr->holes = 1;         /* mark as needing compaction */
1793         }
1794         xfs_da_log_buf(args->trans, bp,
1795                           XFS_DA_LOGRANGE(leaf, hdr, sizeof(*hdr)));
1796
1797         /*
1798          * Check if leaf is less than 50% full, caller may want to
1799          * "join" the leaf with a sibling if so.
1800          */
1801         tmp  = sizeof(xfs_attr_leaf_hdr_t);
1802         tmp += be16_to_cpu(leaf->hdr.count) * sizeof(xfs_attr_leaf_entry_t);
1803         tmp += be16_to_cpu(leaf->hdr.usedbytes);
1804         return(tmp < mp->m_attr_magicpct); /* leaf is < 37% full */
1805 }
1806
1807 /*
1808  * Move all the attribute list entries from drop_leaf into save_leaf.
1809  */
1810 void
1811 xfs_attr_leaf_unbalance(xfs_da_state_t *state, xfs_da_state_blk_t *drop_blk,
1812                                        xfs_da_state_blk_t *save_blk)
1813 {
1814         xfs_attr_leafblock_t *drop_leaf, *save_leaf, *tmp_leaf;
1815         xfs_attr_leaf_hdr_t *drop_hdr, *save_hdr, *tmp_hdr;
1816         xfs_mount_t *mp;
1817         char *tmpbuffer;
1818
1819         /*
1820          * Set up environment.
1821          */
1822         mp = state->mp;
1823         ASSERT(drop_blk->magic == XFS_ATTR_LEAF_MAGIC);
1824         ASSERT(save_blk->magic == XFS_ATTR_LEAF_MAGIC);
1825         drop_leaf = drop_blk->bp->data;
1826         save_leaf = save_blk->bp->data;
1827         ASSERT(be16_to_cpu(drop_leaf->hdr.info.magic) == XFS_ATTR_LEAF_MAGIC);
1828         ASSERT(be16_to_cpu(save_leaf->hdr.info.magic) == XFS_ATTR_LEAF_MAGIC);
1829         drop_hdr = &drop_leaf->hdr;
1830         save_hdr = &save_leaf->hdr;
1831
1832         /*
1833          * Save last hashval from dying block for later Btree fixup.
1834          */
1835         drop_blk->hashval =
1836                 INT_GET(drop_leaf->entries[be16_to_cpu(drop_leaf->hdr.count)-1]
1837                                 .hashval, ARCH_CONVERT);
1838
1839         /*
1840          * Check if we need a temp buffer, or can we do it in place.
1841          * Note that we don't check "leaf" for holes because we will
1842          * always be dropping it, toosmall() decided that for us already.
1843          */
1844         if (save_hdr->holes == 0) {
1845                 /*
1846                  * dest leaf has no holes, so we add there.  May need
1847                  * to make some room in the entry array.
1848                  */
1849                 if (xfs_attr_leaf_order(save_blk->bp, drop_blk->bp)) {
1850                         xfs_attr_leaf_moveents(drop_leaf, 0, save_leaf, 0,
1851                              be16_to_cpu(drop_hdr->count), mp);
1852                 } else {
1853                         xfs_attr_leaf_moveents(drop_leaf, 0, save_leaf,
1854                                   be16_to_cpu(save_hdr->count),
1855                                   be16_to_cpu(drop_hdr->count), mp);
1856                 }
1857         } else {
1858                 /*
1859                  * Destination has holes, so we make a temporary copy
1860                  * of the leaf and add them both to that.
1861                  */
1862                 tmpbuffer = kmem_alloc(state->blocksize, KM_SLEEP);
1863                 ASSERT(tmpbuffer != NULL);
1864                 memset(tmpbuffer, 0, state->blocksize);
1865                 tmp_leaf = (xfs_attr_leafblock_t *)tmpbuffer;
1866                 tmp_hdr = &tmp_leaf->hdr;
1867                 tmp_hdr->info = save_hdr->info; /* struct copy */
1868                 tmp_hdr->count = 0;
1869                 tmp_hdr->firstused = cpu_to_be16(state->blocksize);
1870                 if (!tmp_hdr->firstused) {
1871                         tmp_hdr->firstused = cpu_to_be16(
1872                                 state->blocksize - XFS_ATTR_LEAF_NAME_ALIGN);
1873                 }
1874                 tmp_hdr->usedbytes = 0;
1875                 if (xfs_attr_leaf_order(save_blk->bp, drop_blk->bp)) {
1876                         xfs_attr_leaf_moveents(drop_leaf, 0, tmp_leaf, 0,
1877                                 be16_to_cpu(drop_hdr->count), mp);
1878                         xfs_attr_leaf_moveents(save_leaf, 0, tmp_leaf,
1879                                   be16_to_cpu(tmp_leaf->hdr.count),
1880                                   be16_to_cpu(save_hdr->count), mp);
1881                 } else {
1882                         xfs_attr_leaf_moveents(save_leaf, 0, tmp_leaf, 0,
1883                                 be16_to_cpu(save_hdr->count), mp);
1884                         xfs_attr_leaf_moveents(drop_leaf, 0, tmp_leaf,
1885                                 be16_to_cpu(tmp_leaf->hdr.count),
1886                                 be16_to_cpu(drop_hdr->count), mp);
1887                 }
1888                 memcpy((char *)save_leaf, (char *)tmp_leaf, state->blocksize);
1889                 kmem_free(tmpbuffer, state->blocksize);
1890         }
1891
1892         xfs_da_log_buf(state->args->trans, save_blk->bp, 0,
1893                                            state->blocksize - 1);
1894
1895         /*
1896          * Copy out last hashval in each block for B-tree code.
1897          */
1898         save_blk->hashval =
1899                 INT_GET(save_leaf->entries[be16_to_cpu(save_leaf->hdr.count)-1]
1900                                                 .hashval, ARCH_CONVERT);
1901 }
1902
1903 /*========================================================================
1904  * Routines used for finding things in the Btree.
1905  *========================================================================*/
1906
1907 /*
1908  * Look up a name in a leaf attribute list structure.
1909  * This is the internal routine, it uses the caller's buffer.
1910  *
1911  * Note that duplicate keys are allowed, but only check within the
1912  * current leaf node.  The Btree code must check in adjacent leaf nodes.
1913  *
1914  * Return in args->index the index into the entry[] array of either
1915  * the found entry, or where the entry should have been (insert before
1916  * that entry).
1917  *
1918  * Don't change the args->value unless we find the attribute.
1919  */
1920 int
1921 xfs_attr_leaf_lookup_int(xfs_dabuf_t *bp, xfs_da_args_t *args)
1922 {
1923         xfs_attr_leafblock_t *leaf;
1924         xfs_attr_leaf_entry_t *entry;
1925         xfs_attr_leaf_name_local_t *name_loc;
1926         xfs_attr_leaf_name_remote_t *name_rmt;
1927         int probe, span;
1928         xfs_dahash_t hashval;
1929
1930         leaf = bp->data;
1931         ASSERT(be16_to_cpu(leaf->hdr.info.magic) == XFS_ATTR_LEAF_MAGIC);
1932         ASSERT(be16_to_cpu(leaf->hdr.count)
1933                                         < (XFS_LBSIZE(args->dp->i_mount)/8));
1934
1935         /*
1936          * Binary search.  (note: small blocks will skip this loop)
1937          */
1938         hashval = args->hashval;
1939         probe = span = be16_to_cpu(leaf->hdr.count) / 2;
1940         for (entry = &leaf->entries[probe]; span > 4;
1941                    entry = &leaf->entries[probe]) {
1942                 span /= 2;
1943                 if (INT_GET(entry->hashval, ARCH_CONVERT) < hashval)
1944                         probe += span;
1945                 else if (INT_GET(entry->hashval, ARCH_CONVERT) > hashval)
1946                         probe -= span;
1947                 else
1948                         break;
1949         }
1950         ASSERT((probe >= 0) && 
1951                (!leaf->hdr.count
1952                || (probe < be16_to_cpu(leaf->hdr.count))));
1953         ASSERT((span <= 4) || (INT_GET(entry->hashval, ARCH_CONVERT)
1954                                                         == hashval));
1955
1956         /*
1957          * Since we may have duplicate hashval's, find the first matching
1958          * hashval in the leaf.
1959          */
1960         while ((probe > 0) && (INT_GET(entry->hashval, ARCH_CONVERT)
1961                                                         >= hashval)) {
1962                 entry--;
1963                 probe--;
1964         }
1965         while ((probe < be16_to_cpu(leaf->hdr.count))
1966                 && (INT_GET(entry->hashval, ARCH_CONVERT) < hashval)) {
1967                 entry++;
1968                 probe++;
1969         }
1970         if ((probe == be16_to_cpu(leaf->hdr.count))
1971                     || (INT_GET(entry->hashval, ARCH_CONVERT) != hashval)) {
1972                 args->index = probe;
1973                 return(XFS_ERROR(ENOATTR));
1974         }
1975
1976         /*
1977          * Duplicate keys may be present, so search all of them for a match.
1978          */
1979         for (  ; (probe < be16_to_cpu(leaf->hdr.count))
1980                         && (INT_GET(entry->hashval, ARCH_CONVERT) == hashval);
1981                         entry++, probe++) {
1982 /*
1983  * GROT: Add code to remove incomplete entries.
1984  */
1985                 /*
1986                  * If we are looking for INCOMPLETE entries, show only those.
1987                  * If we are looking for complete entries, show only those.
1988                  */
1989                 if ((args->flags & XFS_ATTR_INCOMPLETE) !=
1990                     (entry->flags & XFS_ATTR_INCOMPLETE)) {
1991                         continue;
1992                 }
1993                 if (entry->flags & XFS_ATTR_LOCAL) {
1994                         name_loc = XFS_ATTR_LEAF_NAME_LOCAL(leaf, probe);
1995                         if (name_loc->namelen != args->namelen)
1996                                 continue;
1997                         if (memcmp(args->name, (char *)name_loc->nameval,
1998                                              args->namelen) != 0)
1999                                 continue;
2000                         if (((args->flags & ATTR_SECURE) != 0) !=
2001                             ((entry->flags & XFS_ATTR_SECURE) != 0))
2002                                 continue;
2003                         if (((args->flags & ATTR_ROOT) != 0) !=
2004                             ((entry->flags & XFS_ATTR_ROOT) != 0))
2005                                 continue;
2006                         args->index = probe;
2007                         return(XFS_ERROR(EEXIST));
2008                 } else {
2009                         name_rmt = XFS_ATTR_LEAF_NAME_REMOTE(leaf, probe);
2010                         if (name_rmt->namelen != args->namelen)
2011                                 continue;
2012                         if (memcmp(args->name, (char *)name_rmt->name,
2013                                              args->namelen) != 0)
2014                                 continue;
2015                         if (((args->flags & ATTR_SECURE) != 0) !=
2016                             ((entry->flags & XFS_ATTR_SECURE) != 0))
2017                                 continue;
2018                         if (((args->flags & ATTR_ROOT) != 0) !=
2019                             ((entry->flags & XFS_ATTR_ROOT) != 0))
2020                                 continue;
2021                         args->index = probe;
2022                         args->rmtblkno
2023                                   = INT_GET(name_rmt->valueblk, ARCH_CONVERT);
2024                         args->rmtblkcnt = XFS_B_TO_FSB(args->dp->i_mount,
2025                                                    INT_GET(name_rmt->valuelen,
2026                                                                 ARCH_CONVERT));
2027                         return(XFS_ERROR(EEXIST));
2028                 }
2029         }
2030         args->index = probe;
2031         return(XFS_ERROR(ENOATTR));
2032 }
2033
2034 /*
2035  * Get the value associated with an attribute name from a leaf attribute
2036  * list structure.
2037  */
2038 int
2039 xfs_attr_leaf_getvalue(xfs_dabuf_t *bp, xfs_da_args_t *args)
2040 {
2041         int valuelen;
2042         xfs_attr_leafblock_t *leaf;
2043         xfs_attr_leaf_entry_t *entry;
2044         xfs_attr_leaf_name_local_t *name_loc;
2045         xfs_attr_leaf_name_remote_t *name_rmt;
2046
2047         leaf = bp->data;
2048         ASSERT(be16_to_cpu(leaf->hdr.info.magic) == XFS_ATTR_LEAF_MAGIC);
2049         ASSERT(be16_to_cpu(leaf->hdr.count)
2050                                         < (XFS_LBSIZE(args->dp->i_mount)/8));
2051         ASSERT(args->index < be16_to_cpu(leaf->hdr.count));
2052
2053         entry = &leaf->entries[args->index];
2054         if (entry->flags & XFS_ATTR_LOCAL) {
2055                 name_loc = XFS_ATTR_LEAF_NAME_LOCAL(leaf, args->index);
2056                 ASSERT(name_loc->namelen == args->namelen);
2057                 ASSERT(memcmp(args->name, name_loc->nameval, args->namelen) == 0);
2058                 valuelen = INT_GET(name_loc->valuelen, ARCH_CONVERT);
2059                 if (args->flags & ATTR_KERNOVAL) {
2060                         args->valuelen = valuelen;
2061                         return(0);
2062                 }
2063                 if (args->valuelen < valuelen) {
2064                         args->valuelen = valuelen;
2065                         return(XFS_ERROR(ERANGE));
2066                 }
2067                 args->valuelen = valuelen;
2068                 memcpy(args->value, &name_loc->nameval[args->namelen], valuelen);
2069         } else {
2070                 name_rmt = XFS_ATTR_LEAF_NAME_REMOTE(leaf, args->index);
2071                 ASSERT(name_rmt->namelen == args->namelen);
2072                 ASSERT(memcmp(args->name, name_rmt->name, args->namelen) == 0);
2073                 valuelen = INT_GET(name_rmt->valuelen, ARCH_CONVERT);
2074                 args->rmtblkno = INT_GET(name_rmt->valueblk, ARCH_CONVERT);
2075                 args->rmtblkcnt = XFS_B_TO_FSB(args->dp->i_mount, valuelen);
2076                 if (args->flags & ATTR_KERNOVAL) {
2077                         args->valuelen = valuelen;
2078                         return(0);
2079                 }
2080                 if (args->valuelen < valuelen) {
2081                         args->valuelen = valuelen;
2082                         return(XFS_ERROR(ERANGE));
2083                 }
2084                 args->valuelen = valuelen;
2085         }
2086         return(0);
2087 }
2088
2089 /*========================================================================
2090  * Utility routines.
2091  *========================================================================*/
2092
2093 /*
2094  * Move the indicated entries from one leaf to another.
2095  * NOTE: this routine modifies both source and destination leaves.
2096  */
2097 /*ARGSUSED*/
2098 STATIC void
2099 xfs_attr_leaf_moveents(xfs_attr_leafblock_t *leaf_s, int start_s,
2100                         xfs_attr_leafblock_t *leaf_d, int start_d,
2101                         int count, xfs_mount_t *mp)
2102 {
2103         xfs_attr_leaf_hdr_t *hdr_s, *hdr_d;
2104         xfs_attr_leaf_entry_t *entry_s, *entry_d;
2105         int desti, tmp, i;
2106
2107         /*
2108          * Check for nothing to do.
2109          */
2110         if (count == 0)
2111                 return;
2112
2113         /*
2114          * Set up environment.
2115          */
2116         ASSERT(be16_to_cpu(leaf_s->hdr.info.magic) == XFS_ATTR_LEAF_MAGIC);
2117         ASSERT(be16_to_cpu(leaf_d->hdr.info.magic) == XFS_ATTR_LEAF_MAGIC);
2118         hdr_s = &leaf_s->hdr;
2119         hdr_d = &leaf_d->hdr;
2120         ASSERT((be16_to_cpu(hdr_s->count) > 0) &&
2121                (be16_to_cpu(hdr_s->count) < (XFS_LBSIZE(mp)/8)));
2122         ASSERT(be16_to_cpu(hdr_s->firstused) >=
2123                 ((be16_to_cpu(hdr_s->count)
2124                                         * sizeof(*entry_s))+sizeof(*hdr_s)));
2125         ASSERT(be16_to_cpu(hdr_d->count) < (XFS_LBSIZE(mp)/8));
2126         ASSERT(be16_to_cpu(hdr_d->firstused) >=
2127                 ((be16_to_cpu(hdr_d->count)
2128                                         * sizeof(*entry_d))+sizeof(*hdr_d)));
2129
2130         ASSERT(start_s < be16_to_cpu(hdr_s->count));
2131         ASSERT(start_d <= be16_to_cpu(hdr_d->count));
2132         ASSERT(count <= be16_to_cpu(hdr_s->count));
2133
2134         /*
2135          * Move the entries in the destination leaf up to make a hole?
2136          */
2137         if (start_d < be16_to_cpu(hdr_d->count)) {
2138                 tmp  = be16_to_cpu(hdr_d->count) - start_d;
2139                 tmp *= sizeof(xfs_attr_leaf_entry_t);
2140                 entry_s = &leaf_d->entries[start_d];
2141                 entry_d = &leaf_d->entries[start_d + count];
2142                 memmove((char *)entry_d, (char *)entry_s, tmp);
2143         }
2144
2145         /*
2146          * Copy all entry's in the same (sorted) order,
2147          * but allocate attribute info packed and in sequence.
2148          */
2149         entry_s = &leaf_s->entries[start_s];
2150         entry_d = &leaf_d->entries[start_d];
2151         desti = start_d;
2152         for (i = 0; i < count; entry_s++, entry_d++, desti++, i++) {
2153                 ASSERT(INT_GET(entry_s->nameidx, ARCH_CONVERT)
2154                                 >= be16_to_cpu(hdr_s->firstused));
2155                 tmp = xfs_attr_leaf_entsize(leaf_s, start_s + i);
2156 #ifdef GROT
2157                 /*
2158                  * Code to drop INCOMPLETE entries.  Difficult to use as we
2159                  * may also need to change the insertion index.  Code turned
2160                  * off for 6.2, should be revisited later.
2161                  */
2162                 if (entry_s->flags & XFS_ATTR_INCOMPLETE) { /* skip partials? */
2163                         memset(XFS_ATTR_LEAF_NAME(leaf_s, start_s + i), 0, tmp);
2164                         be16_add(&hdr_s->usedbytes, -tmp);
2165                         be16_add(&hdr_s->count, -1);
2166                         entry_d--;      /* to compensate for ++ in loop hdr */
2167                         desti--;
2168                         if ((start_s + i) < offset)
2169                                 result++;       /* insertion index adjustment */
2170                 } else {
2171 #endif /* GROT */
2172                         be16_add(&hdr_d->firstused, -tmp);
2173                         /* both on-disk, don't endian flip twice */
2174                         entry_d->hashval = entry_s->hashval;
2175                         /* both on-disk, don't endian flip twice */
2176                         entry_d->nameidx = hdr_d->firstused;
2177                         entry_d->flags = entry_s->flags;
2178                         ASSERT(INT_GET(entry_d->nameidx, ARCH_CONVERT) + tmp
2179                                                         <= XFS_LBSIZE(mp));
2180                         memmove(XFS_ATTR_LEAF_NAME(leaf_d, desti),
2181                                 XFS_ATTR_LEAF_NAME(leaf_s, start_s + i), tmp);
2182                         ASSERT(INT_GET(entry_s->nameidx, ARCH_CONVERT) + tmp
2183                                                         <= XFS_LBSIZE(mp));
2184                         memset(XFS_ATTR_LEAF_NAME(leaf_s, start_s + i), 0, tmp);
2185                         be16_add(&hdr_s->usedbytes, -tmp);
2186                         be16_add(&hdr_d->usedbytes, tmp);
2187                         be16_add(&hdr_s->count, -1);
2188                         be16_add(&hdr_d->count, 1);
2189                         tmp = be16_to_cpu(hdr_d->count)
2190                                                 * sizeof(xfs_attr_leaf_entry_t)
2191                                                 + sizeof(xfs_attr_leaf_hdr_t);
2192                         ASSERT(be16_to_cpu(hdr_d->firstused) >= tmp);
2193 #ifdef GROT
2194                 }
2195 #endif /* GROT */
2196         }
2197
2198         /*
2199          * Zero out the entries we just copied.
2200          */
2201         if (start_s == be16_to_cpu(hdr_s->count)) {
2202                 tmp = count * sizeof(xfs_attr_leaf_entry_t);
2203                 entry_s = &leaf_s->entries[start_s];
2204                 ASSERT(((char *)entry_s + tmp) <=
2205                        ((char *)leaf_s + XFS_LBSIZE(mp)));
2206                 memset((char *)entry_s, 0, tmp);
2207         } else {
2208                 /*
2209                  * Move the remaining entries down to fill the hole,
2210                  * then zero the entries at the top.
2211                  */
2212                 tmp  = be16_to_cpu(hdr_s->count) - count;
2213                 tmp *= sizeof(xfs_attr_leaf_entry_t);
2214                 entry_s = &leaf_s->entries[start_s + count];
2215                 entry_d = &leaf_s->entries[start_s];
2216                 memmove((char *)entry_d, (char *)entry_s, tmp);
2217
2218                 tmp = count * sizeof(xfs_attr_leaf_entry_t);
2219                 entry_s = &leaf_s->entries[be16_to_cpu(hdr_s->count)];
2220                 ASSERT(((char *)entry_s + tmp) <=
2221                        ((char *)leaf_s + XFS_LBSIZE(mp)));
2222                 memset((char *)entry_s, 0, tmp);
2223         }
2224
2225         /*
2226          * Fill in the freemap information
2227          */
2228         hdr_d->freemap[0].base = cpu_to_be16(sizeof(xfs_attr_leaf_hdr_t));
2229         be16_add(&hdr_d->freemap[0].base, be16_to_cpu(hdr_d->count) *
2230                         sizeof(xfs_attr_leaf_entry_t));
2231         hdr_d->freemap[0].size = cpu_to_be16(be16_to_cpu(hdr_d->firstused)
2232                               - be16_to_cpu(hdr_d->freemap[0].base));
2233         hdr_d->freemap[1].base = 0;
2234         hdr_d->freemap[2].base = 0;
2235         hdr_d->freemap[1].size = 0;
2236         hdr_d->freemap[2].size = 0;
2237         hdr_s->holes = 1;       /* leaf may not be compact */
2238 }
2239
2240 /*
2241  * Compare two leaf blocks "order".
2242  * Return 0 unless leaf2 should go before leaf1.
2243  */
2244 int
2245 xfs_attr_leaf_order(xfs_dabuf_t *leaf1_bp, xfs_dabuf_t *leaf2_bp)
2246 {
2247         xfs_attr_leafblock_t *leaf1, *leaf2;
2248
2249         leaf1 = leaf1_bp->data;
2250         leaf2 = leaf2_bp->data;
2251         ASSERT((be16_to_cpu(leaf1->hdr.info.magic) == XFS_ATTR_LEAF_MAGIC) &&
2252                (be16_to_cpu(leaf2->hdr.info.magic) == XFS_ATTR_LEAF_MAGIC));
2253         if ((be16_to_cpu(leaf1->hdr.count) > 0) &&
2254             (be16_to_cpu(leaf2->hdr.count) > 0) &&
2255             ((INT_GET(leaf2->entries[0].hashval, ARCH_CONVERT) <
2256               INT_GET(leaf1->entries[0].hashval, ARCH_CONVERT)) ||
2257              (INT_GET(leaf2->entries[be16_to_cpu(leaf2->hdr.count)-1].hashval,
2258                                                 ARCH_CONVERT) <
2259               INT_GET(leaf1->entries[be16_to_cpu(leaf1->hdr.count)-1].hashval,
2260                                                 ARCH_CONVERT)))) {
2261                 return(1);
2262         }
2263         return(0);
2264 }
2265
2266 /*
2267  * Pick up the last hashvalue from a leaf block.
2268  */
2269 xfs_dahash_t
2270 xfs_attr_leaf_lasthash(xfs_dabuf_t *bp, int *count)
2271 {
2272         xfs_attr_leafblock_t *leaf;
2273
2274         leaf = bp->data;
2275         ASSERT(be16_to_cpu(leaf->hdr.info.magic) == XFS_ATTR_LEAF_MAGIC);
2276         if (count)
2277                 *count = be16_to_cpu(leaf->hdr.count);
2278         if (!leaf->hdr.count)
2279                 return(0);
2280         return (INT_GET(leaf->entries[be16_to_cpu(leaf->hdr.count)-1].hashval,
2281                                 ARCH_CONVERT));
2282 }
2283
2284 /*
2285  * Calculate the number of bytes used to store the indicated attribute
2286  * (whether local or remote only calculate bytes in this block).
2287  */
2288 STATIC int
2289 xfs_attr_leaf_entsize(xfs_attr_leafblock_t *leaf, int index)
2290 {
2291         xfs_attr_leaf_name_local_t *name_loc;
2292         xfs_attr_leaf_name_remote_t *name_rmt;
2293         int size;
2294
2295         ASSERT(be16_to_cpu(leaf->hdr.info.magic) == XFS_ATTR_LEAF_MAGIC);
2296         if (leaf->entries[index].flags & XFS_ATTR_LOCAL) {
2297                 name_loc = XFS_ATTR_LEAF_NAME_LOCAL(leaf, index);
2298                 size = XFS_ATTR_LEAF_ENTSIZE_LOCAL(name_loc->namelen,
2299                                                    INT_GET(name_loc->valuelen,
2300                                                                 ARCH_CONVERT));
2301         } else {
2302                 name_rmt = XFS_ATTR_LEAF_NAME_REMOTE(leaf, index);
2303                 size = XFS_ATTR_LEAF_ENTSIZE_REMOTE(name_rmt->namelen);
2304         }
2305         return(size);
2306 }
2307
2308 /*
2309  * Calculate the number of bytes that would be required to store the new
2310  * attribute (whether local or remote only calculate bytes in this block).
2311  * This routine decides as a side effect whether the attribute will be
2312  * a "local" or a "remote" attribute.
2313  */
2314 int
2315 xfs_attr_leaf_newentsize(int namelen, int valuelen, int blocksize, int *local)
2316 {
2317         int size;
2318
2319         size = XFS_ATTR_LEAF_ENTSIZE_LOCAL(namelen, valuelen);
2320         if (size < XFS_ATTR_LEAF_ENTSIZE_LOCAL_MAX(blocksize)) {
2321                 if (local) {
2322                         *local = 1;
2323                 }
2324         } else {
2325                 size = XFS_ATTR_LEAF_ENTSIZE_REMOTE(namelen);
2326                 if (local) {
2327                         *local = 0;
2328                 }
2329         }
2330         return(size);
2331 }
2332
2333 /*
2334  * Copy out attribute list entries for attr_list(), for leaf attribute lists.
2335  */
2336 int
2337 xfs_attr_leaf_list_int(xfs_dabuf_t *bp, xfs_attr_list_context_t *context)
2338 {
2339         attrlist_cursor_kern_t *cursor;
2340         xfs_attr_leafblock_t *leaf;
2341         xfs_attr_leaf_entry_t *entry;
2342         xfs_attr_leaf_name_local_t *name_loc;
2343         xfs_attr_leaf_name_remote_t *name_rmt;
2344         int retval, i;
2345
2346         ASSERT(bp != NULL);
2347         leaf = bp->data;
2348         cursor = context->cursor;
2349         cursor->initted = 1;
2350
2351         xfs_attr_trace_l_cl("blk start", context, leaf);
2352
2353         /*
2354          * Re-find our place in the leaf block if this is a new syscall.
2355          */
2356         if (context->resynch) {
2357                 entry = &leaf->entries[0];
2358                 for (i = 0; i < be16_to_cpu(leaf->hdr.count); entry++, i++) {
2359                         if (INT_GET(entry->hashval, ARCH_CONVERT)
2360                                                         == cursor->hashval) {
2361                                 if (cursor->offset == context->dupcnt) {
2362                                         context->dupcnt = 0;
2363                                         break;
2364                                 }
2365                                 context->dupcnt++;
2366                         } else if (INT_GET(entry->hashval, ARCH_CONVERT)
2367                                                         > cursor->hashval) {
2368                                 context->dupcnt = 0;
2369                                 break;
2370                         }
2371                 }
2372                 if (i == be16_to_cpu(leaf->hdr.count)) {
2373                         xfs_attr_trace_l_c("not found", context);
2374                         return(0);
2375                 }
2376         } else {
2377                 entry = &leaf->entries[0];
2378                 i = 0;
2379         }
2380         context->resynch = 0;
2381
2382         /*
2383          * We have found our place, start copying out the new attributes.
2384          */
2385         retval = 0;
2386         for (  ; (i < be16_to_cpu(leaf->hdr.count))
2387              && (retval == 0); entry++, i++) {
2388                 attrnames_t     *namesp;
2389
2390                 if (INT_GET(entry->hashval, ARCH_CONVERT) != cursor->hashval) {
2391                         cursor->hashval = INT_GET(entry->hashval, ARCH_CONVERT);
2392                         cursor->offset = 0;
2393                 }
2394
2395                 if (entry->flags & XFS_ATTR_INCOMPLETE)
2396                         continue;               /* skip incomplete entries */
2397                 if (((context->flags & ATTR_SECURE) != 0) !=
2398                     ((entry->flags & XFS_ATTR_SECURE) != 0) &&
2399                     !(context->flags & ATTR_KERNORMALS))
2400                         continue;               /* skip non-matching entries */
2401                 if (((context->flags & ATTR_ROOT) != 0) !=
2402                     ((entry->flags & XFS_ATTR_ROOT) != 0) &&
2403                     !(context->flags & ATTR_KERNROOTLS))
2404                         continue;               /* skip non-matching entries */
2405
2406                 namesp = (entry->flags & XFS_ATTR_SECURE) ? &attr_secure :
2407                         ((entry->flags & XFS_ATTR_ROOT) ? &attr_trusted :
2408                           &attr_user);
2409
2410                 if (entry->flags & XFS_ATTR_LOCAL) {
2411                         name_loc = XFS_ATTR_LEAF_NAME_LOCAL(leaf, i);
2412                         if (context->flags & ATTR_KERNOVAL) {
2413                                 ASSERT(context->flags & ATTR_KERNAMELS);
2414                                 context->count += namesp->attr_namelen +
2415                                                 (int)name_loc->namelen + 1;
2416                         } else {
2417                                 retval = xfs_attr_put_listent(context, namesp,
2418                                         (char *)name_loc->nameval,
2419                                         (int)name_loc->namelen,
2420                                         (int)INT_GET(name_loc->valuelen,
2421                                                                 ARCH_CONVERT));
2422                         }
2423                 } else {
2424                         name_rmt = XFS_ATTR_LEAF_NAME_REMOTE(leaf, i);
2425                         if (context->flags & ATTR_KERNOVAL) {
2426                                 ASSERT(context->flags & ATTR_KERNAMELS);
2427                                 context->count += namesp->attr_namelen +
2428                                                 (int)name_rmt->namelen + 1;
2429                         } else {
2430                                 retval = xfs_attr_put_listent(context, namesp,
2431                                         (char *)name_rmt->name,
2432                                         (int)name_rmt->namelen,
2433                                         (int)INT_GET(name_rmt->valuelen,
2434                                                                 ARCH_CONVERT));
2435                         }
2436                 }
2437                 if (retval == 0) {
2438                         cursor->offset++;
2439                 }
2440         }
2441         xfs_attr_trace_l_cl("blk end", context, leaf);
2442         return(retval);
2443 }
2444
2445 #define ATTR_ENTBASESIZE                /* minimum bytes used by an attr */ \
2446         (((struct attrlist_ent *) 0)->a_name - (char *) 0)
2447 #define ATTR_ENTSIZE(namelen)           /* actual bytes used by an attr */ \
2448         ((ATTR_ENTBASESIZE + (namelen) + 1 + sizeof(u_int32_t)-1) \
2449          & ~(sizeof(u_int32_t)-1))
2450
2451 /*
2452  * Format an attribute and copy it out to the user's buffer.
2453  * Take care to check values and protect against them changing later,
2454  * we may be reading them directly out of a user buffer.
2455  */
2456 /*ARGSUSED*/
2457 STATIC int
2458 xfs_attr_put_listent(xfs_attr_list_context_t *context,
2459                      attrnames_t *namesp, char *name, int namelen, int valuelen)
2460 {
2461         attrlist_ent_t *aep;
2462         int arraytop;
2463
2464         ASSERT(!(context->flags & ATTR_KERNOVAL));
2465         if (context->flags & ATTR_KERNAMELS) {
2466                 char *offset;
2467
2468                 ASSERT(context->count >= 0);
2469
2470                 arraytop = context->count + namesp->attr_namelen + namelen + 1;
2471                 if (arraytop > context->firstu) {
2472                         context->count = -1;    /* insufficient space */
2473                         return(1);
2474                 }
2475                 offset = (char *)context->alist + context->count;
2476                 strncpy(offset, namesp->attr_name, namesp->attr_namelen);
2477                 offset += namesp->attr_namelen;
2478                 strncpy(offset, name, namelen);                 /* real name */
2479                 offset += namelen;
2480                 *offset = '\0';
2481                 context->count += namesp->attr_namelen + namelen + 1;
2482                 return(0);
2483         }
2484
2485         ASSERT(context->count >= 0);
2486         ASSERT(context->count < (ATTR_MAX_VALUELEN/8));
2487         ASSERT(context->firstu >= sizeof(*context->alist));
2488         ASSERT(context->firstu <= context->bufsize);
2489
2490         arraytop = sizeof(*context->alist) +
2491                         context->count * sizeof(context->alist->al_offset[0]);
2492         context->firstu -= ATTR_ENTSIZE(namelen);
2493         if (context->firstu < arraytop) {
2494                 xfs_attr_trace_l_c("buffer full", context);
2495                 context->alist->al_more = 1;
2496                 return(1);
2497         }
2498
2499         aep = (attrlist_ent_t *)&(((char *)context->alist)[ context->firstu ]);
2500         aep->a_valuelen = valuelen;
2501         memcpy(aep->a_name, name, namelen);
2502         aep->a_name[ namelen ] = 0;
2503         context->alist->al_offset[ context->count++ ] = context->firstu;
2504         context->alist->al_count = context->count;
2505         xfs_attr_trace_l_c("add", context);
2506         return(0);
2507 }
2508
2509 /*========================================================================
2510  * Manage the INCOMPLETE flag in a leaf entry
2511  *========================================================================*/
2512
2513 /*
2514  * Clear the INCOMPLETE flag on an entry in a leaf block.
2515  */
2516 int
2517 xfs_attr_leaf_clearflag(xfs_da_args_t *args)
2518 {
2519         xfs_attr_leafblock_t *leaf;
2520         xfs_attr_leaf_entry_t *entry;
2521         xfs_attr_leaf_name_remote_t *name_rmt;
2522         xfs_dabuf_t *bp;
2523         int error;
2524 #ifdef DEBUG
2525         xfs_attr_leaf_name_local_t *name_loc;
2526         int namelen;
2527         char *name;
2528 #endif /* DEBUG */
2529
2530         /*
2531          * Set up the operation.
2532          */
2533         error = xfs_da_read_buf(args->trans, args->dp, args->blkno, -1, &bp,
2534                                              XFS_ATTR_FORK);
2535         if (error) {
2536                 return(error);
2537         }
2538         ASSERT(bp != NULL);
2539
2540         leaf = bp->data;
2541         ASSERT(be16_to_cpu(leaf->hdr.info.magic) == XFS_ATTR_LEAF_MAGIC);
2542         ASSERT(args->index < be16_to_cpu(leaf->hdr.count));
2543         ASSERT(args->index >= 0);
2544         entry = &leaf->entries[ args->index ];
2545         ASSERT(entry->flags & XFS_ATTR_INCOMPLETE);
2546
2547 #ifdef DEBUG
2548         if (entry->flags & XFS_ATTR_LOCAL) {
2549                 name_loc = XFS_ATTR_LEAF_NAME_LOCAL(leaf, args->index);
2550                 namelen = name_loc->namelen;
2551                 name = (char *)name_loc->nameval;
2552         } else {
2553                 name_rmt = XFS_ATTR_LEAF_NAME_REMOTE(leaf, args->index);
2554                 namelen = name_rmt->namelen;
2555                 name = (char *)name_rmt->name;
2556         }
2557         ASSERT(INT_GET(entry->hashval, ARCH_CONVERT) == args->hashval);
2558         ASSERT(namelen == args->namelen);
2559         ASSERT(memcmp(name, args->name, namelen) == 0);
2560 #endif /* DEBUG */
2561
2562         entry->flags &= ~XFS_ATTR_INCOMPLETE;
2563         xfs_da_log_buf(args->trans, bp,
2564                          XFS_DA_LOGRANGE(leaf, entry, sizeof(*entry)));
2565
2566         if (args->rmtblkno) {
2567                 ASSERT((entry->flags & XFS_ATTR_LOCAL) == 0);
2568                 name_rmt = XFS_ATTR_LEAF_NAME_REMOTE(leaf, args->index);
2569                 INT_SET(name_rmt->valueblk, ARCH_CONVERT, args->rmtblkno);
2570                 INT_SET(name_rmt->valuelen, ARCH_CONVERT, args->valuelen);
2571                 xfs_da_log_buf(args->trans, bp,
2572                          XFS_DA_LOGRANGE(leaf, name_rmt, sizeof(*name_rmt)));
2573         }
2574         xfs_da_buf_done(bp);
2575
2576         /*
2577          * Commit the flag value change and start the next trans in series.
2578          */
2579         error = xfs_attr_rolltrans(&args->trans, args->dp);
2580
2581         return(error);
2582 }
2583
2584 /*
2585  * Set the INCOMPLETE flag on an entry in a leaf block.
2586  */
2587 int
2588 xfs_attr_leaf_setflag(xfs_da_args_t *args)
2589 {
2590         xfs_attr_leafblock_t *leaf;
2591         xfs_attr_leaf_entry_t *entry;
2592         xfs_attr_leaf_name_remote_t *name_rmt;
2593         xfs_dabuf_t *bp;
2594         int error;
2595
2596         /*
2597          * Set up the operation.
2598          */
2599         error = xfs_da_read_buf(args->trans, args->dp, args->blkno, -1, &bp,
2600                                              XFS_ATTR_FORK);
2601         if (error) {
2602                 return(error);
2603         }
2604         ASSERT(bp != NULL);
2605
2606         leaf = bp->data;
2607         ASSERT(be16_to_cpu(leaf->hdr.info.magic) == XFS_ATTR_LEAF_MAGIC);
2608         ASSERT(args->index < be16_to_cpu(leaf->hdr.count));
2609         ASSERT(args->index >= 0);
2610         entry = &leaf->entries[ args->index ];
2611
2612         ASSERT((entry->flags & XFS_ATTR_INCOMPLETE) == 0);
2613         entry->flags |= XFS_ATTR_INCOMPLETE;
2614         xfs_da_log_buf(args->trans, bp,
2615                         XFS_DA_LOGRANGE(leaf, entry, sizeof(*entry)));
2616         if ((entry->flags & XFS_ATTR_LOCAL) == 0) {
2617                 name_rmt = XFS_ATTR_LEAF_NAME_REMOTE(leaf, args->index);
2618                 name_rmt->valueblk = 0;
2619                 name_rmt->valuelen = 0;
2620                 xfs_da_log_buf(args->trans, bp,
2621                          XFS_DA_LOGRANGE(leaf, name_rmt, sizeof(*name_rmt)));
2622         }
2623         xfs_da_buf_done(bp);
2624
2625         /*
2626          * Commit the flag value change and start the next trans in series.
2627          */
2628         error = xfs_attr_rolltrans(&args->trans, args->dp);
2629
2630         return(error);
2631 }
2632
2633 /*
2634  * In a single transaction, clear the INCOMPLETE flag on the leaf entry
2635  * given by args->blkno/index and set the INCOMPLETE flag on the leaf
2636  * entry given by args->blkno2/index2.
2637  *
2638  * Note that they could be in different blocks, or in the same block.
2639  */
2640 int
2641 xfs_attr_leaf_flipflags(xfs_da_args_t *args)
2642 {
2643         xfs_attr_leafblock_t *leaf1, *leaf2;
2644         xfs_attr_leaf_entry_t *entry1, *entry2;
2645         xfs_attr_leaf_name_remote_t *name_rmt;
2646         xfs_dabuf_t *bp1, *bp2;
2647         int error;
2648 #ifdef DEBUG
2649         xfs_attr_leaf_name_local_t *name_loc;
2650         int namelen1, namelen2;
2651         char *name1, *name2;
2652 #endif /* DEBUG */
2653
2654         /*
2655          * Read the block containing the "old" attr
2656          */
2657         error = xfs_da_read_buf(args->trans, args->dp, args->blkno, -1, &bp1,
2658                                              XFS_ATTR_FORK);
2659         if (error) {
2660                 return(error);
2661         }
2662         ASSERT(bp1 != NULL);
2663
2664         /*
2665          * Read the block containing the "new" attr, if it is different
2666          */
2667         if (args->blkno2 != args->blkno) {
2668                 error = xfs_da_read_buf(args->trans, args->dp, args->blkno2,
2669                                         -1, &bp2, XFS_ATTR_FORK);
2670                 if (error) {
2671                         return(error);
2672                 }
2673                 ASSERT(bp2 != NULL);
2674         } else {
2675                 bp2 = bp1;
2676         }
2677
2678         leaf1 = bp1->data;
2679         ASSERT(be16_to_cpu(leaf1->hdr.info.magic) == XFS_ATTR_LEAF_MAGIC);
2680         ASSERT(args->index < be16_to_cpu(leaf1->hdr.count));
2681         ASSERT(args->index >= 0);
2682         entry1 = &leaf1->entries[ args->index ];
2683
2684         leaf2 = bp2->data;
2685         ASSERT(be16_to_cpu(leaf2->hdr.info.magic) == XFS_ATTR_LEAF_MAGIC);
2686         ASSERT(args->index2 < be16_to_cpu(leaf2->hdr.count));
2687         ASSERT(args->index2 >= 0);
2688         entry2 = &leaf2->entries[ args->index2 ];
2689
2690 #ifdef DEBUG
2691         if (entry1->flags & XFS_ATTR_LOCAL) {
2692                 name_loc = XFS_ATTR_LEAF_NAME_LOCAL(leaf1, args->index);
2693                 namelen1 = name_loc->namelen;
2694                 name1 = (char *)name_loc->nameval;
2695         } else {
2696                 name_rmt = XFS_ATTR_LEAF_NAME_REMOTE(leaf1, args->index);
2697                 namelen1 = name_rmt->namelen;
2698                 name1 = (char *)name_rmt->name;
2699         }
2700         if (entry2->flags & XFS_ATTR_LOCAL) {
2701                 name_loc = XFS_ATTR_LEAF_NAME_LOCAL(leaf2, args->index2);
2702                 namelen2 = name_loc->namelen;
2703                 name2 = (char *)name_loc->nameval;
2704         } else {
2705                 name_rmt = XFS_ATTR_LEAF_NAME_REMOTE(leaf2, args->index2);
2706                 namelen2 = name_rmt->namelen;
2707                 name2 = (char *)name_rmt->name;
2708         }
2709         ASSERT(INT_GET(entry1->hashval, ARCH_CONVERT) == INT_GET(entry2->hashval, ARCH_CONVERT));
2710         ASSERT(namelen1 == namelen2);
2711         ASSERT(memcmp(name1, name2, namelen1) == 0);
2712 #endif /* DEBUG */
2713
2714         ASSERT(entry1->flags & XFS_ATTR_INCOMPLETE);
2715         ASSERT((entry2->flags & XFS_ATTR_INCOMPLETE) == 0);
2716
2717         entry1->flags &= ~XFS_ATTR_INCOMPLETE;
2718         xfs_da_log_buf(args->trans, bp1,
2719                           XFS_DA_LOGRANGE(leaf1, entry1, sizeof(*entry1)));
2720         if (args->rmtblkno) {
2721                 ASSERT((entry1->flags & XFS_ATTR_LOCAL) == 0);
2722                 name_rmt = XFS_ATTR_LEAF_NAME_REMOTE(leaf1, args->index);
2723                 INT_SET(name_rmt->valueblk, ARCH_CONVERT, args->rmtblkno);
2724                 INT_SET(name_rmt->valuelen, ARCH_CONVERT, args->valuelen);
2725                 xfs_da_log_buf(args->trans, bp1,
2726                          XFS_DA_LOGRANGE(leaf1, name_rmt, sizeof(*name_rmt)));
2727         }
2728
2729         entry2->flags |= XFS_ATTR_INCOMPLETE;
2730         xfs_da_log_buf(args->trans, bp2,
2731                           XFS_DA_LOGRANGE(leaf2, entry2, sizeof(*entry2)));
2732         if ((entry2->flags & XFS_ATTR_LOCAL) == 0) {
2733                 name_rmt = XFS_ATTR_LEAF_NAME_REMOTE(leaf2, args->index2);
2734                 name_rmt->valueblk = 0;
2735                 name_rmt->valuelen = 0;
2736                 xfs_da_log_buf(args->trans, bp2,
2737                          XFS_DA_LOGRANGE(leaf2, name_rmt, sizeof(*name_rmt)));
2738         }
2739         xfs_da_buf_done(bp1);
2740         if (bp1 != bp2)
2741                 xfs_da_buf_done(bp2);
2742
2743         /*
2744          * Commit the flag value change and start the next trans in series.
2745          */
2746         error = xfs_attr_rolltrans(&args->trans, args->dp);
2747
2748         return(error);
2749 }
2750
2751 /*========================================================================
2752  * Indiscriminately delete the entire attribute fork
2753  *========================================================================*/
2754
2755 /*
2756  * Recurse (gasp!) through the attribute nodes until we find leaves.
2757  * We're doing a depth-first traversal in order to invalidate everything.
2758  */
2759 int
2760 xfs_attr_root_inactive(xfs_trans_t **trans, xfs_inode_t *dp)
2761 {
2762         xfs_da_blkinfo_t *info;
2763         xfs_daddr_t blkno;
2764         xfs_dabuf_t *bp;
2765         int error;
2766
2767         /*
2768          * Read block 0 to see what we have to work with.
2769          * We only get here if we have extents, since we remove
2770          * the extents in reverse order the extent containing
2771          * block 0 must still be there.
2772          */
2773         error = xfs_da_read_buf(*trans, dp, 0, -1, &bp, XFS_ATTR_FORK);
2774         if (error)
2775                 return(error);
2776         blkno = xfs_da_blkno(bp);
2777
2778         /*
2779          * Invalidate the tree, even if the "tree" is only a single leaf block.
2780          * This is a depth-first traversal!
2781          */
2782         info = bp->data;
2783         if (be16_to_cpu(info->magic) == XFS_DA_NODE_MAGIC) {
2784                 error = xfs_attr_node_inactive(trans, dp, bp, 1);
2785         } else if (be16_to_cpu(info->magic) == XFS_ATTR_LEAF_MAGIC) {
2786                 error = xfs_attr_leaf_inactive(trans, dp, bp);
2787         } else {
2788                 error = XFS_ERROR(EIO);
2789                 xfs_da_brelse(*trans, bp);
2790         }
2791         if (error)
2792                 return(error);
2793
2794         /*
2795          * Invalidate the incore copy of the root block.
2796          */
2797         error = xfs_da_get_buf(*trans, dp, 0, blkno, &bp, XFS_ATTR_FORK);
2798         if (error)
2799                 return(error);
2800         xfs_da_binval(*trans, bp);      /* remove from cache */
2801         /*
2802          * Commit the invalidate and start the next transaction.
2803          */
2804         error = xfs_attr_rolltrans(trans, dp);
2805
2806         return (error);
2807 }
2808
2809 /*
2810  * Recurse (gasp!) through the attribute nodes until we find leaves.
2811  * We're doing a depth-first traversal in order to invalidate everything.
2812  */
2813 STATIC int
2814 xfs_attr_node_inactive(xfs_trans_t **trans, xfs_inode_t *dp, xfs_dabuf_t *bp,
2815                                    int level)
2816 {
2817         xfs_da_blkinfo_t *info;
2818         xfs_da_intnode_t *node;
2819         xfs_dablk_t child_fsb;
2820         xfs_daddr_t parent_blkno, child_blkno;
2821         int error, count, i;
2822         xfs_dabuf_t *child_bp;
2823
2824         /*
2825          * Since this code is recursive (gasp!) we must protect ourselves.
2826          */
2827         if (level > XFS_DA_NODE_MAXDEPTH) {
2828                 xfs_da_brelse(*trans, bp);      /* no locks for later trans */
2829                 return(XFS_ERROR(EIO));
2830         }
2831
2832         node = bp->data;
2833         ASSERT(be16_to_cpu(node->hdr.info.magic) == XFS_DA_NODE_MAGIC);
2834         parent_blkno = xfs_da_blkno(bp);        /* save for re-read later */
2835         count = INT_GET(node->hdr.count, ARCH_CONVERT);
2836         if (!count) {
2837                 xfs_da_brelse(*trans, bp);
2838                 return(0);
2839         }
2840         child_fsb = INT_GET(node->btree[0].before, ARCH_CONVERT);
2841         xfs_da_brelse(*trans, bp);      /* no locks for later trans */
2842
2843         /*
2844          * If this is the node level just above the leaves, simply loop
2845          * over the leaves removing all of them.  If this is higher up
2846          * in the tree, recurse downward.
2847          */
2848         for (i = 0; i < count; i++) {
2849                 /*
2850                  * Read the subsidiary block to see what we have to work with.
2851                  * Don't do this in a transaction.  This is a depth-first
2852                  * traversal of the tree so we may deal with many blocks
2853                  * before we come back to this one.
2854                  */
2855                 error = xfs_da_read_buf(*trans, dp, child_fsb, -2, &child_bp,
2856                                                 XFS_ATTR_FORK);
2857                 if (error)
2858                         return(error);
2859                 if (child_bp) {
2860                                                 /* save for re-read later */
2861                         child_blkno = xfs_da_blkno(child_bp);
2862
2863                         /*
2864                          * Invalidate the subtree, however we have to.
2865                          */
2866                         info = child_bp->data;
2867                         if (be16_to_cpu(info->magic) == XFS_DA_NODE_MAGIC) {
2868                                 error = xfs_attr_node_inactive(trans, dp,
2869                                                 child_bp, level+1);
2870                         } else if (be16_to_cpu(info->magic) == XFS_ATTR_LEAF_MAGIC) {
2871                                 error = xfs_attr_leaf_inactive(trans, dp,
2872                                                 child_bp);
2873                         } else {
2874                                 error = XFS_ERROR(EIO);
2875                                 xfs_da_brelse(*trans, child_bp);
2876                         }
2877                         if (error)
2878                                 return(error);
2879
2880                         /*
2881                          * Remove the subsidiary block from the cache
2882                          * and from the log.
2883                          */
2884                         error = xfs_da_get_buf(*trans, dp, 0, child_blkno,
2885                                 &child_bp, XFS_ATTR_FORK);
2886                         if (error)
2887                                 return(error);
2888                         xfs_da_binval(*trans, child_bp);
2889                 }
2890
2891                 /*
2892                  * If we're not done, re-read the parent to get the next
2893                  * child block number.
2894                  */
2895                 if ((i+1) < count) {
2896                         error = xfs_da_read_buf(*trans, dp, 0, parent_blkno,
2897                                 &bp, XFS_ATTR_FORK);
2898                         if (error)
2899                                 return(error);
2900                         child_fsb = INT_GET(node->btree[i+1].before, ARCH_CONVERT);
2901                         xfs_da_brelse(*trans, bp);
2902                 }
2903                 /*
2904                  * Atomically commit the whole invalidate stuff.
2905                  */
2906                 if ((error = xfs_attr_rolltrans(trans, dp)))
2907                         return (error);
2908         }
2909
2910         return(0);
2911 }
2912
2913 /*
2914  * Invalidate all of the "remote" value regions pointed to by a particular
2915  * leaf block.
2916  * Note that we must release the lock on the buffer so that we are not
2917  * caught holding something that the logging code wants to flush to disk.
2918  */
2919 STATIC int
2920 xfs_attr_leaf_inactive(xfs_trans_t **trans, xfs_inode_t *dp, xfs_dabuf_t *bp)
2921 {
2922         xfs_attr_leafblock_t *leaf;
2923         xfs_attr_leaf_entry_t *entry;
2924         xfs_attr_leaf_name_remote_t *name_rmt;
2925         xfs_attr_inactive_list_t *list, *lp;
2926         int error, count, size, tmp, i;
2927
2928         leaf = bp->data;
2929         ASSERT(be16_to_cpu(leaf->hdr.info.magic) == XFS_ATTR_LEAF_MAGIC);
2930
2931         /*
2932          * Count the number of "remote" value extents.
2933          */
2934         count = 0;
2935         entry = &leaf->entries[0];
2936         for (i = 0; i < be16_to_cpu(leaf->hdr.count); entry++, i++) {
2937                 if (   INT_GET(entry->nameidx, ARCH_CONVERT)
2938                     && ((entry->flags & XFS_ATTR_LOCAL) == 0)) {
2939                         name_rmt = XFS_ATTR_LEAF_NAME_REMOTE(leaf, i);
2940                         if (name_rmt->valueblk)
2941                                 count++;
2942                 }
2943         }
2944
2945         /*
2946          * If there are no "remote" values, we're done.
2947          */
2948         if (count == 0) {
2949                 xfs_da_brelse(*trans, bp);
2950                 return(0);
2951         }
2952
2953         /*
2954          * Allocate storage for a list of all the "remote" value extents.
2955          */
2956         size = count * sizeof(xfs_attr_inactive_list_t);
2957         list = (xfs_attr_inactive_list_t *)kmem_alloc(size, KM_SLEEP);
2958
2959         /*
2960          * Identify each of the "remote" value extents.
2961          */
2962         lp = list;
2963         entry = &leaf->entries[0];
2964         for (i = 0; i < be16_to_cpu(leaf->hdr.count); entry++, i++) {
2965                 if (   INT_GET(entry->nameidx, ARCH_CONVERT)
2966                     && ((entry->flags & XFS_ATTR_LOCAL) == 0)) {
2967                         name_rmt = XFS_ATTR_LEAF_NAME_REMOTE(leaf, i);
2968                         if (name_rmt->valueblk) {
2969                                 /* both on-disk, don't endian flip twice */
2970                                 lp->valueblk = name_rmt->valueblk;
2971                                 INT_SET(lp->valuelen, ARCH_CONVERT,
2972                                                 XFS_B_TO_FSB(dp->i_mount,
2973                                                     INT_GET(name_rmt->valuelen,
2974                                                               ARCH_CONVERT)));
2975                                 lp++;
2976                         }
2977                 }
2978         }
2979         xfs_da_brelse(*trans, bp);      /* unlock for trans. in freextent() */
2980
2981         /*
2982          * Invalidate each of the "remote" value extents.
2983          */
2984         error = 0;
2985         for (lp = list, i = 0; i < count; i++, lp++) {
2986                 tmp = xfs_attr_leaf_freextent(trans, dp,
2987                                                      INT_GET(lp->valueblk,
2988                                                                 ARCH_CONVERT),
2989                                                      INT_GET(lp->valuelen,
2990                                                                 ARCH_CONVERT));
2991                 if (error == 0)
2992                         error = tmp;    /* save only the 1st errno */
2993         }
2994
2995         kmem_free((xfs_caddr_t)list, size);
2996         return(error);
2997 }
2998
2999 /*
3000  * Look at all the extents for this logical region,
3001  * invalidate any buffers that are incore/in transactions.
3002  */
3003 STATIC int
3004 xfs_attr_leaf_freextent(xfs_trans_t **trans, xfs_inode_t *dp,
3005                                     xfs_dablk_t blkno, int blkcnt)
3006 {
3007         xfs_bmbt_irec_t map;
3008         xfs_dablk_t tblkno;
3009         int tblkcnt, dblkcnt, nmap, error;
3010         xfs_daddr_t dblkno;
3011         xfs_buf_t *bp;
3012
3013         /*
3014          * Roll through the "value", invalidating the attribute value's
3015          * blocks.
3016          */
3017         tblkno = blkno;
3018         tblkcnt = blkcnt;
3019         while (tblkcnt > 0) {
3020                 /*
3021                  * Try to remember where we decided to put the value.
3022                  */
3023                 nmap = 1;
3024                 error = xfs_bmapi(*trans, dp, (xfs_fileoff_t)tblkno, tblkcnt,
3025                                         XFS_BMAPI_ATTRFORK | XFS_BMAPI_METADATA,
3026                                         NULL, 0, &map, &nmap, NULL);
3027                 if (error) {
3028                         return(error);
3029                 }
3030                 ASSERT(nmap == 1);
3031                 ASSERT(map.br_startblock != DELAYSTARTBLOCK);
3032
3033                 /*
3034                  * If it's a hole, these are already unmapped
3035                  * so there's nothing to invalidate.
3036                  */
3037                 if (map.br_startblock != HOLESTARTBLOCK) {
3038
3039                         dblkno = XFS_FSB_TO_DADDR(dp->i_mount,
3040                                                   map.br_startblock);
3041                         dblkcnt = XFS_FSB_TO_BB(dp->i_mount,
3042                                                 map.br_blockcount);
3043                         bp = xfs_trans_get_buf(*trans,
3044                                         dp->i_mount->m_ddev_targp,
3045                                         dblkno, dblkcnt, XFS_BUF_LOCK);
3046                         xfs_trans_binval(*trans, bp);
3047                         /*
3048                          * Roll to next transaction.
3049                          */
3050                         if ((error = xfs_attr_rolltrans(trans, dp)))
3051                                 return (error);
3052                 }
3053
3054                 tblkno += map.br_blockcount;
3055                 tblkcnt -= map.br_blockcount;
3056         }
3057
3058         return(0);
3059 }
3060
3061
3062 /*
3063  * Roll from one trans in the sequence of PERMANENT transactions to the next.
3064  */
3065 int
3066 xfs_attr_rolltrans(xfs_trans_t **transp, xfs_inode_t *dp)
3067 {
3068         xfs_trans_t *trans;
3069         unsigned int logres, count;
3070         int     error;
3071
3072         /*
3073          * Ensure that the inode is always logged.
3074          */
3075         trans = *transp;
3076         xfs_trans_log_inode(trans, dp, XFS_ILOG_CORE);
3077
3078         /*
3079          * Copy the critical parameters from one trans to the next.
3080          */
3081         logres = trans->t_log_res;
3082         count = trans->t_log_count;
3083         *transp = xfs_trans_dup(trans);
3084
3085         /*
3086          * Commit the current transaction.
3087          * If this commit failed, then it'd just unlock those items that
3088          * are not marked ihold. That also means that a filesystem shutdown
3089          * is in progress. The caller takes the responsibility to cancel
3090          * the duplicate transaction that gets returned.
3091          */
3092         if ((error = xfs_trans_commit(trans, 0, NULL)))
3093                 return (error);
3094
3095         trans = *transp;
3096
3097         /*
3098          * Reserve space in the log for th next transaction.
3099          * This also pushes items in the "AIL", the list of logged items,
3100          * out to disk if they are taking up space at the tail of the log
3101          * that we want to use.  This requires that either nothing be locked
3102          * across this call, or that anything that is locked be logged in
3103          * the prior and the next transactions.
3104          */
3105         error = xfs_trans_reserve(trans, 0, logres, 0,
3106                                   XFS_TRANS_PERM_LOG_RES, count);
3107         /*
3108          *  Ensure that the inode is in the new transaction and locked.
3109          */
3110         if (!error) {
3111                 xfs_trans_ijoin(trans, dp, XFS_ILOCK_EXCL);
3112                 xfs_trans_ihold(trans, dp);
3113         }
3114         return (error);
3115
3116 }