xfs: remove rt-wrappers from xfs_format.h
[linux-block.git] / fs / xfs / libxfs / xfs_attr_leaf.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (c) 2000-2005 Silicon Graphics, Inc.
4  * Copyright (c) 2013 Red Hat, Inc.
5  * All Rights Reserved.
6  */
7 #include "xfs.h"
8 #include "xfs_fs.h"
9 #include "xfs_shared.h"
10 #include "xfs_format.h"
11 #include "xfs_log_format.h"
12 #include "xfs_trans_resv.h"
13 #include "xfs_sb.h"
14 #include "xfs_mount.h"
15 #include "xfs_da_format.h"
16 #include "xfs_da_btree.h"
17 #include "xfs_inode.h"
18 #include "xfs_trans.h"
19 #include "xfs_bmap_btree.h"
20 #include "xfs_bmap.h"
21 #include "xfs_attr_sf.h"
22 #include "xfs_attr.h"
23 #include "xfs_attr_remote.h"
24 #include "xfs_attr_leaf.h"
25 #include "xfs_error.h"
26 #include "xfs_trace.h"
27 #include "xfs_buf_item.h"
28 #include "xfs_dir2.h"
29 #include "xfs_log.h"
30 #include "xfs_ag.h"
31 #include "xfs_errortag.h"
32
33
34 /*
35  * xfs_attr_leaf.c
36  *
37  * Routines to implement leaf blocks of attributes as Btrees of hashed names.
38  */
39
40 /*========================================================================
41  * Function prototypes for the kernel.
42  *========================================================================*/
43
44 /*
45  * Routines used for growing the Btree.
46  */
47 STATIC int xfs_attr3_leaf_create(struct xfs_da_args *args,
48                                  xfs_dablk_t which_block, struct xfs_buf **bpp);
49 STATIC int xfs_attr3_leaf_add_work(struct xfs_buf *leaf_buffer,
50                                    struct xfs_attr3_icleaf_hdr *ichdr,
51                                    struct xfs_da_args *args, int freemap_index);
52 STATIC void xfs_attr3_leaf_compact(struct xfs_da_args *args,
53                                    struct xfs_attr3_icleaf_hdr *ichdr,
54                                    struct xfs_buf *leaf_buffer);
55 STATIC void xfs_attr3_leaf_rebalance(xfs_da_state_t *state,
56                                                    xfs_da_state_blk_t *blk1,
57                                                    xfs_da_state_blk_t *blk2);
58 STATIC int xfs_attr3_leaf_figure_balance(xfs_da_state_t *state,
59                         xfs_da_state_blk_t *leaf_blk_1,
60                         struct xfs_attr3_icleaf_hdr *ichdr1,
61                         xfs_da_state_blk_t *leaf_blk_2,
62                         struct xfs_attr3_icleaf_hdr *ichdr2,
63                         int *number_entries_in_blk1,
64                         int *number_usedbytes_in_blk1);
65
66 /*
67  * Utility routines.
68  */
69 STATIC void xfs_attr3_leaf_moveents(struct xfs_da_args *args,
70                         struct xfs_attr_leafblock *src_leaf,
71                         struct xfs_attr3_icleaf_hdr *src_ichdr, int src_start,
72                         struct xfs_attr_leafblock *dst_leaf,
73                         struct xfs_attr3_icleaf_hdr *dst_ichdr, int dst_start,
74                         int move_count);
75 STATIC int xfs_attr_leaf_entsize(xfs_attr_leafblock_t *leaf, int index);
76
77 /*
78  * attr3 block 'firstused' conversion helpers.
79  *
80  * firstused refers to the offset of the first used byte of the nameval region
81  * of an attr leaf block. The region starts at the tail of the block and expands
82  * backwards towards the middle. As such, firstused is initialized to the block
83  * size for an empty leaf block and is reduced from there.
84  *
85  * The attr3 block size is pegged to the fsb size and the maximum fsb is 64k.
86  * The in-core firstused field is 32-bit and thus supports the maximum fsb size.
87  * The on-disk field is only 16-bit, however, and overflows at 64k. Since this
88  * only occurs at exactly 64k, we use zero as a magic on-disk value to represent
89  * the attr block size. The following helpers manage the conversion between the
90  * in-core and on-disk formats.
91  */
92
93 static void
94 xfs_attr3_leaf_firstused_from_disk(
95         struct xfs_da_geometry          *geo,
96         struct xfs_attr3_icleaf_hdr     *to,
97         struct xfs_attr_leafblock       *from)
98 {
99         struct xfs_attr3_leaf_hdr       *hdr3;
100
101         if (from->hdr.info.magic == cpu_to_be16(XFS_ATTR3_LEAF_MAGIC)) {
102                 hdr3 = (struct xfs_attr3_leaf_hdr *) from;
103                 to->firstused = be16_to_cpu(hdr3->firstused);
104         } else {
105                 to->firstused = be16_to_cpu(from->hdr.firstused);
106         }
107
108         /*
109          * Convert from the magic fsb size value to actual blocksize. This
110          * should only occur for empty blocks when the block size overflows
111          * 16-bits.
112          */
113         if (to->firstused == XFS_ATTR3_LEAF_NULLOFF) {
114                 ASSERT(!to->count && !to->usedbytes);
115                 ASSERT(geo->blksize > USHRT_MAX);
116                 to->firstused = geo->blksize;
117         }
118 }
119
120 static void
121 xfs_attr3_leaf_firstused_to_disk(
122         struct xfs_da_geometry          *geo,
123         struct xfs_attr_leafblock       *to,
124         struct xfs_attr3_icleaf_hdr     *from)
125 {
126         struct xfs_attr3_leaf_hdr       *hdr3;
127         uint32_t                        firstused;
128
129         /* magic value should only be seen on disk */
130         ASSERT(from->firstused != XFS_ATTR3_LEAF_NULLOFF);
131
132         /*
133          * Scale down the 32-bit in-core firstused value to the 16-bit on-disk
134          * value. This only overflows at the max supported value of 64k. Use the
135          * magic on-disk value to represent block size in this case.
136          */
137         firstused = from->firstused;
138         if (firstused > USHRT_MAX) {
139                 ASSERT(from->firstused == geo->blksize);
140                 firstused = XFS_ATTR3_LEAF_NULLOFF;
141         }
142
143         if (from->magic == XFS_ATTR3_LEAF_MAGIC) {
144                 hdr3 = (struct xfs_attr3_leaf_hdr *) to;
145                 hdr3->firstused = cpu_to_be16(firstused);
146         } else {
147                 to->hdr.firstused = cpu_to_be16(firstused);
148         }
149 }
150
151 void
152 xfs_attr3_leaf_hdr_from_disk(
153         struct xfs_da_geometry          *geo,
154         struct xfs_attr3_icleaf_hdr     *to,
155         struct xfs_attr_leafblock       *from)
156 {
157         int     i;
158
159         ASSERT(from->hdr.info.magic == cpu_to_be16(XFS_ATTR_LEAF_MAGIC) ||
160                from->hdr.info.magic == cpu_to_be16(XFS_ATTR3_LEAF_MAGIC));
161
162         if (from->hdr.info.magic == cpu_to_be16(XFS_ATTR3_LEAF_MAGIC)) {
163                 struct xfs_attr3_leaf_hdr *hdr3 = (struct xfs_attr3_leaf_hdr *)from;
164
165                 to->forw = be32_to_cpu(hdr3->info.hdr.forw);
166                 to->back = be32_to_cpu(hdr3->info.hdr.back);
167                 to->magic = be16_to_cpu(hdr3->info.hdr.magic);
168                 to->count = be16_to_cpu(hdr3->count);
169                 to->usedbytes = be16_to_cpu(hdr3->usedbytes);
170                 xfs_attr3_leaf_firstused_from_disk(geo, to, from);
171                 to->holes = hdr3->holes;
172
173                 for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
174                         to->freemap[i].base = be16_to_cpu(hdr3->freemap[i].base);
175                         to->freemap[i].size = be16_to_cpu(hdr3->freemap[i].size);
176                 }
177                 return;
178         }
179         to->forw = be32_to_cpu(from->hdr.info.forw);
180         to->back = be32_to_cpu(from->hdr.info.back);
181         to->magic = be16_to_cpu(from->hdr.info.magic);
182         to->count = be16_to_cpu(from->hdr.count);
183         to->usedbytes = be16_to_cpu(from->hdr.usedbytes);
184         xfs_attr3_leaf_firstused_from_disk(geo, to, from);
185         to->holes = from->hdr.holes;
186
187         for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
188                 to->freemap[i].base = be16_to_cpu(from->hdr.freemap[i].base);
189                 to->freemap[i].size = be16_to_cpu(from->hdr.freemap[i].size);
190         }
191 }
192
193 void
194 xfs_attr3_leaf_hdr_to_disk(
195         struct xfs_da_geometry          *geo,
196         struct xfs_attr_leafblock       *to,
197         struct xfs_attr3_icleaf_hdr     *from)
198 {
199         int                             i;
200
201         ASSERT(from->magic == XFS_ATTR_LEAF_MAGIC ||
202                from->magic == XFS_ATTR3_LEAF_MAGIC);
203
204         if (from->magic == XFS_ATTR3_LEAF_MAGIC) {
205                 struct xfs_attr3_leaf_hdr *hdr3 = (struct xfs_attr3_leaf_hdr *)to;
206
207                 hdr3->info.hdr.forw = cpu_to_be32(from->forw);
208                 hdr3->info.hdr.back = cpu_to_be32(from->back);
209                 hdr3->info.hdr.magic = cpu_to_be16(from->magic);
210                 hdr3->count = cpu_to_be16(from->count);
211                 hdr3->usedbytes = cpu_to_be16(from->usedbytes);
212                 xfs_attr3_leaf_firstused_to_disk(geo, to, from);
213                 hdr3->holes = from->holes;
214                 hdr3->pad1 = 0;
215
216                 for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
217                         hdr3->freemap[i].base = cpu_to_be16(from->freemap[i].base);
218                         hdr3->freemap[i].size = cpu_to_be16(from->freemap[i].size);
219                 }
220                 return;
221         }
222         to->hdr.info.forw = cpu_to_be32(from->forw);
223         to->hdr.info.back = cpu_to_be32(from->back);
224         to->hdr.info.magic = cpu_to_be16(from->magic);
225         to->hdr.count = cpu_to_be16(from->count);
226         to->hdr.usedbytes = cpu_to_be16(from->usedbytes);
227         xfs_attr3_leaf_firstused_to_disk(geo, to, from);
228         to->hdr.holes = from->holes;
229         to->hdr.pad1 = 0;
230
231         for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
232                 to->hdr.freemap[i].base = cpu_to_be16(from->freemap[i].base);
233                 to->hdr.freemap[i].size = cpu_to_be16(from->freemap[i].size);
234         }
235 }
236
237 static xfs_failaddr_t
238 xfs_attr3_leaf_verify_entry(
239         struct xfs_mount                        *mp,
240         char                                    *buf_end,
241         struct xfs_attr_leafblock               *leaf,
242         struct xfs_attr3_icleaf_hdr             *leafhdr,
243         struct xfs_attr_leaf_entry              *ent,
244         int                                     idx,
245         __u32                                   *last_hashval)
246 {
247         struct xfs_attr_leaf_name_local         *lentry;
248         struct xfs_attr_leaf_name_remote        *rentry;
249         char                                    *name_end;
250         unsigned int                            nameidx;
251         unsigned int                            namesize;
252         __u32                                   hashval;
253
254         /* hash order check */
255         hashval = be32_to_cpu(ent->hashval);
256         if (hashval < *last_hashval)
257                 return __this_address;
258         *last_hashval = hashval;
259
260         nameidx = be16_to_cpu(ent->nameidx);
261         if (nameidx < leafhdr->firstused || nameidx >= mp->m_attr_geo->blksize)
262                 return __this_address;
263
264         /*
265          * Check the name information.  The namelen fields are u8 so we can't
266          * possibly exceed the maximum name length of 255 bytes.
267          */
268         if (ent->flags & XFS_ATTR_LOCAL) {
269                 lentry = xfs_attr3_leaf_name_local(leaf, idx);
270                 namesize = xfs_attr_leaf_entsize_local(lentry->namelen,
271                                 be16_to_cpu(lentry->valuelen));
272                 name_end = (char *)lentry + namesize;
273                 if (lentry->namelen == 0)
274                         return __this_address;
275         } else {
276                 rentry = xfs_attr3_leaf_name_remote(leaf, idx);
277                 namesize = xfs_attr_leaf_entsize_remote(rentry->namelen);
278                 name_end = (char *)rentry + namesize;
279                 if (rentry->namelen == 0)
280                         return __this_address;
281                 if (!(ent->flags & XFS_ATTR_INCOMPLETE) &&
282                     rentry->valueblk == 0)
283                         return __this_address;
284         }
285
286         if (name_end > buf_end)
287                 return __this_address;
288
289         return NULL;
290 }
291
292 /*
293  * Validate an attribute leaf block.
294  *
295  * Empty leaf blocks can occur under the following circumstances:
296  *
297  * 1. setxattr adds a new extended attribute to a file;
298  * 2. The file has zero existing attributes;
299  * 3. The attribute is too large to fit in the attribute fork;
300  * 4. The attribute is small enough to fit in a leaf block;
301  * 5. A log flush occurs after committing the transaction that creates
302  *    the (empty) leaf block; and
303  * 6. The filesystem goes down after the log flush but before the new
304  *    attribute can be committed to the leaf block.
305  *
306  * Hence we need to ensure that we don't fail the validation purely
307  * because the leaf is empty.
308  */
309 static xfs_failaddr_t
310 xfs_attr3_leaf_verify(
311         struct xfs_buf                  *bp)
312 {
313         struct xfs_attr3_icleaf_hdr     ichdr;
314         struct xfs_mount                *mp = bp->b_mount;
315         struct xfs_attr_leafblock       *leaf = bp->b_addr;
316         struct xfs_attr_leaf_entry      *entries;
317         struct xfs_attr_leaf_entry      *ent;
318         char                            *buf_end;
319         uint32_t                        end;    /* must be 32bit - see below */
320         __u32                           last_hashval = 0;
321         int                             i;
322         xfs_failaddr_t                  fa;
323
324         xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo, &ichdr, leaf);
325
326         fa = xfs_da3_blkinfo_verify(bp, bp->b_addr);
327         if (fa)
328                 return fa;
329
330         /*
331          * firstused is the block offset of the first name info structure.
332          * Make sure it doesn't go off the block or crash into the header.
333          */
334         if (ichdr.firstused > mp->m_attr_geo->blksize)
335                 return __this_address;
336         if (ichdr.firstused < xfs_attr3_leaf_hdr_size(leaf))
337                 return __this_address;
338
339         /* Make sure the entries array doesn't crash into the name info. */
340         entries = xfs_attr3_leaf_entryp(bp->b_addr);
341         if ((char *)&entries[ichdr.count] >
342             (char *)bp->b_addr + ichdr.firstused)
343                 return __this_address;
344
345         /*
346          * NOTE: This verifier historically failed empty leaf buffers because
347          * we expect the fork to be in another format. Empty attr fork format
348          * conversions are possible during xattr set, however, and format
349          * conversion is not atomic with the xattr set that triggers it. We
350          * cannot assume leaf blocks are non-empty until that is addressed.
351         */
352         buf_end = (char *)bp->b_addr + mp->m_attr_geo->blksize;
353         for (i = 0, ent = entries; i < ichdr.count; ent++, i++) {
354                 fa = xfs_attr3_leaf_verify_entry(mp, buf_end, leaf, &ichdr,
355                                 ent, i, &last_hashval);
356                 if (fa)
357                         return fa;
358         }
359
360         /*
361          * Quickly check the freemap information.  Attribute data has to be
362          * aligned to 4-byte boundaries, and likewise for the free space.
363          *
364          * Note that for 64k block size filesystems, the freemap entries cannot
365          * overflow as they are only be16 fields. However, when checking end
366          * pointer of the freemap, we have to be careful to detect overflows and
367          * so use uint32_t for those checks.
368          */
369         for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
370                 if (ichdr.freemap[i].base > mp->m_attr_geo->blksize)
371                         return __this_address;
372                 if (ichdr.freemap[i].base & 0x3)
373                         return __this_address;
374                 if (ichdr.freemap[i].size > mp->m_attr_geo->blksize)
375                         return __this_address;
376                 if (ichdr.freemap[i].size & 0x3)
377                         return __this_address;
378
379                 /* be care of 16 bit overflows here */
380                 end = (uint32_t)ichdr.freemap[i].base + ichdr.freemap[i].size;
381                 if (end < ichdr.freemap[i].base)
382                         return __this_address;
383                 if (end > mp->m_attr_geo->blksize)
384                         return __this_address;
385         }
386
387         return NULL;
388 }
389
390 static void
391 xfs_attr3_leaf_write_verify(
392         struct xfs_buf  *bp)
393 {
394         struct xfs_mount        *mp = bp->b_mount;
395         struct xfs_buf_log_item *bip = bp->b_log_item;
396         struct xfs_attr3_leaf_hdr *hdr3 = bp->b_addr;
397         xfs_failaddr_t          fa;
398
399         fa = xfs_attr3_leaf_verify(bp);
400         if (fa) {
401                 xfs_verifier_error(bp, -EFSCORRUPTED, fa);
402                 return;
403         }
404
405         if (!xfs_has_crc(mp))
406                 return;
407
408         if (bip)
409                 hdr3->info.lsn = cpu_to_be64(bip->bli_item.li_lsn);
410
411         xfs_buf_update_cksum(bp, XFS_ATTR3_LEAF_CRC_OFF);
412 }
413
414 /*
415  * leaf/node format detection on trees is sketchy, so a node read can be done on
416  * leaf level blocks when detection identifies the tree as a node format tree
417  * incorrectly. In this case, we need to swap the verifier to match the correct
418  * format of the block being read.
419  */
420 static void
421 xfs_attr3_leaf_read_verify(
422         struct xfs_buf          *bp)
423 {
424         struct xfs_mount        *mp = bp->b_mount;
425         xfs_failaddr_t          fa;
426
427         if (xfs_has_crc(mp) &&
428              !xfs_buf_verify_cksum(bp, XFS_ATTR3_LEAF_CRC_OFF))
429                 xfs_verifier_error(bp, -EFSBADCRC, __this_address);
430         else {
431                 fa = xfs_attr3_leaf_verify(bp);
432                 if (fa)
433                         xfs_verifier_error(bp, -EFSCORRUPTED, fa);
434         }
435 }
436
437 const struct xfs_buf_ops xfs_attr3_leaf_buf_ops = {
438         .name = "xfs_attr3_leaf",
439         .magic16 = { cpu_to_be16(XFS_ATTR_LEAF_MAGIC),
440                      cpu_to_be16(XFS_ATTR3_LEAF_MAGIC) },
441         .verify_read = xfs_attr3_leaf_read_verify,
442         .verify_write = xfs_attr3_leaf_write_verify,
443         .verify_struct = xfs_attr3_leaf_verify,
444 };
445
446 int
447 xfs_attr3_leaf_read(
448         struct xfs_trans        *tp,
449         struct xfs_inode        *dp,
450         xfs_dablk_t             bno,
451         struct xfs_buf          **bpp)
452 {
453         int                     err;
454
455         err = xfs_da_read_buf(tp, dp, bno, 0, bpp, XFS_ATTR_FORK,
456                         &xfs_attr3_leaf_buf_ops);
457         if (!err && tp && *bpp)
458                 xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_ATTR_LEAF_BUF);
459         return err;
460 }
461
462 /*========================================================================
463  * Namespace helper routines
464  *========================================================================*/
465
466 /*
467  * If we are in log recovery, then we want the lookup to ignore the INCOMPLETE
468  * flag on disk - if there's an incomplete attr then recovery needs to tear it
469  * down. If there's no incomplete attr, then recovery needs to tear that attr
470  * down to replace it with the attr that has been logged. In this case, the
471  * INCOMPLETE flag will not be set in attr->attr_filter, but rather
472  * XFS_DA_OP_RECOVERY will be set in args->op_flags.
473  */
474 static bool
475 xfs_attr_match(
476         struct xfs_da_args      *args,
477         uint8_t                 namelen,
478         unsigned char           *name,
479         int                     flags)
480 {
481
482         if (args->namelen != namelen)
483                 return false;
484         if (memcmp(args->name, name, namelen) != 0)
485                 return false;
486
487         /* Recovery ignores the INCOMPLETE flag. */
488         if ((args->op_flags & XFS_DA_OP_RECOVERY) &&
489             args->attr_filter == (flags & XFS_ATTR_NSP_ONDISK_MASK))
490                 return true;
491
492         /* All remaining matches need to be filtered by INCOMPLETE state. */
493         if (args->attr_filter !=
494             (flags & (XFS_ATTR_NSP_ONDISK_MASK | XFS_ATTR_INCOMPLETE)))
495                 return false;
496         return true;
497 }
498
499 static int
500 xfs_attr_copy_value(
501         struct xfs_da_args      *args,
502         unsigned char           *value,
503         int                     valuelen)
504 {
505         /*
506          * No copy if all we have to do is get the length
507          */
508         if (!args->valuelen) {
509                 args->valuelen = valuelen;
510                 return 0;
511         }
512
513         /*
514          * No copy if the length of the existing buffer is too small
515          */
516         if (args->valuelen < valuelen) {
517                 args->valuelen = valuelen;
518                 return -ERANGE;
519         }
520
521         if (!args->value) {
522                 args->value = kvmalloc(valuelen, GFP_KERNEL | __GFP_NOLOCKDEP);
523                 if (!args->value)
524                         return -ENOMEM;
525         }
526         args->valuelen = valuelen;
527
528         /* remote block xattr requires IO for copy-in */
529         if (args->rmtblkno)
530                 return xfs_attr_rmtval_get(args);
531
532         /*
533          * This is to prevent a GCC warning because the remote xattr case
534          * doesn't have a value to pass in. In that case, we never reach here,
535          * but GCC can't work that out and so throws a "passing NULL to
536          * memcpy" warning.
537          */
538         if (!value)
539                 return -EINVAL;
540         memcpy(args->value, value, valuelen);
541         return 0;
542 }
543
544 /*========================================================================
545  * External routines when attribute fork size < XFS_LITINO(mp).
546  *========================================================================*/
547
548 /*
549  * Query whether the total requested number of attr fork bytes of extended
550  * attribute space will be able to fit inline.
551  *
552  * Returns zero if not, else the i_forkoff fork offset to be used in the
553  * literal area for attribute data once the new bytes have been added.
554  *
555  * i_forkoff must be 8 byte aligned, hence is stored as a >>3 value;
556  * special case for dev/uuid inodes, they have fixed size data forks.
557  */
558 int
559 xfs_attr_shortform_bytesfit(
560         struct xfs_inode        *dp,
561         int                     bytes)
562 {
563         struct xfs_mount        *mp = dp->i_mount;
564         int64_t                 dsize;
565         int                     minforkoff;
566         int                     maxforkoff;
567         int                     offset;
568
569         /*
570          * Check if the new size could fit at all first:
571          */
572         if (bytes > XFS_LITINO(mp))
573                 return 0;
574
575         /* rounded down */
576         offset = (XFS_LITINO(mp) - bytes) >> 3;
577
578         if (dp->i_df.if_format == XFS_DINODE_FMT_DEV) {
579                 minforkoff = roundup(sizeof(xfs_dev_t), 8) >> 3;
580                 return (offset >= minforkoff) ? minforkoff : 0;
581         }
582
583         /*
584          * If the requested numbers of bytes is smaller or equal to the
585          * current attribute fork size we can always proceed.
586          *
587          * Note that if_bytes in the data fork might actually be larger than
588          * the current data fork size is due to delalloc extents. In that
589          * case either the extent count will go down when they are converted
590          * to real extents, or the delalloc conversion will take care of the
591          * literal area rebalancing.
592          */
593         if (bytes <= xfs_inode_attr_fork_size(dp))
594                 return dp->i_forkoff;
595
596         /*
597          * For attr2 we can try to move the forkoff if there is space in the
598          * literal area, but for the old format we are done if there is no
599          * space in the fixed attribute fork.
600          */
601         if (!xfs_has_attr2(mp))
602                 return 0;
603
604         dsize = dp->i_df.if_bytes;
605
606         switch (dp->i_df.if_format) {
607         case XFS_DINODE_FMT_EXTENTS:
608                 /*
609                  * If there is no attr fork and the data fork is extents,
610                  * determine if creating the default attr fork will result
611                  * in the extents form migrating to btree. If so, the
612                  * minimum offset only needs to be the space required for
613                  * the btree root.
614                  */
615                 if (!dp->i_forkoff && dp->i_df.if_bytes >
616                     xfs_default_attroffset(dp))
617                         dsize = XFS_BMDR_SPACE_CALC(MINDBTPTRS);
618                 break;
619         case XFS_DINODE_FMT_BTREE:
620                 /*
621                  * If we have a data btree then keep forkoff if we have one,
622                  * otherwise we are adding a new attr, so then we set
623                  * minforkoff to where the btree root can finish so we have
624                  * plenty of room for attrs
625                  */
626                 if (dp->i_forkoff) {
627                         if (offset < dp->i_forkoff)
628                                 return 0;
629                         return dp->i_forkoff;
630                 }
631                 dsize = XFS_BMAP_BROOT_SPACE(mp, dp->i_df.if_broot);
632                 break;
633         }
634
635         /*
636          * A data fork btree root must have space for at least
637          * MINDBTPTRS key/ptr pairs if the data fork is small or empty.
638          */
639         minforkoff = max_t(int64_t, dsize, XFS_BMDR_SPACE_CALC(MINDBTPTRS));
640         minforkoff = roundup(minforkoff, 8) >> 3;
641
642         /* attr fork btree root can have at least this many key/ptr pairs */
643         maxforkoff = XFS_LITINO(mp) - XFS_BMDR_SPACE_CALC(MINABTPTRS);
644         maxforkoff = maxforkoff >> 3;   /* rounded down */
645
646         if (offset >= maxforkoff)
647                 return maxforkoff;
648         if (offset >= minforkoff)
649                 return offset;
650         return 0;
651 }
652
653 /*
654  * Switch on the ATTR2 superblock bit (implies also FEATURES2) unless:
655  * - noattr2 mount option is set,
656  * - on-disk version bit says it is already set, or
657  * - the attr2 mount option is not set to enable automatic upgrade from attr1.
658  */
659 STATIC void
660 xfs_sbversion_add_attr2(
661         struct xfs_mount        *mp,
662         struct xfs_trans        *tp)
663 {
664         if (xfs_has_noattr2(mp))
665                 return;
666         if (mp->m_sb.sb_features2 & XFS_SB_VERSION2_ATTR2BIT)
667                 return;
668         if (!xfs_has_attr2(mp))
669                 return;
670
671         spin_lock(&mp->m_sb_lock);
672         xfs_add_attr2(mp);
673         spin_unlock(&mp->m_sb_lock);
674         xfs_log_sb(tp);
675 }
676
677 /*
678  * Create the initial contents of a shortform attribute list.
679  */
680 void
681 xfs_attr_shortform_create(
682         struct xfs_da_args      *args)
683 {
684         struct xfs_inode        *dp = args->dp;
685         struct xfs_ifork        *ifp = &dp->i_af;
686         struct xfs_attr_sf_hdr  *hdr;
687
688         trace_xfs_attr_sf_create(args);
689
690         ASSERT(ifp->if_bytes == 0);
691         if (ifp->if_format == XFS_DINODE_FMT_EXTENTS)
692                 ifp->if_format = XFS_DINODE_FMT_LOCAL;
693         xfs_idata_realloc(dp, sizeof(*hdr), XFS_ATTR_FORK);
694         hdr = (struct xfs_attr_sf_hdr *)ifp->if_u1.if_data;
695         memset(hdr, 0, sizeof(*hdr));
696         hdr->totsize = cpu_to_be16(sizeof(*hdr));
697         xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE | XFS_ILOG_ADATA);
698 }
699
700 /*
701  * Return -EEXIST if attr is found, or -ENOATTR if not
702  * args:  args containing attribute name and namelen
703  * sfep:  If not null, pointer will be set to the last attr entry found on
704           -EEXIST.  On -ENOATTR pointer is left at the last entry in the list
705  * basep: If not null, pointer is set to the byte offset of the entry in the
706  *        list on -EEXIST.  On -ENOATTR, pointer is left at the byte offset of
707  *        the last entry in the list
708  */
709 int
710 xfs_attr_sf_findname(
711         struct xfs_da_args       *args,
712         struct xfs_attr_sf_entry **sfep,
713         unsigned int             *basep)
714 {
715         struct xfs_attr_shortform *sf;
716         struct xfs_attr_sf_entry *sfe;
717         unsigned int            base = sizeof(struct xfs_attr_sf_hdr);
718         int                     size = 0;
719         int                     end;
720         int                     i;
721
722         sf = (struct xfs_attr_shortform *)args->dp->i_af.if_u1.if_data;
723         sfe = &sf->list[0];
724         end = sf->hdr.count;
725         for (i = 0; i < end; sfe = xfs_attr_sf_nextentry(sfe),
726                              base += size, i++) {
727                 size = xfs_attr_sf_entsize(sfe);
728                 if (!xfs_attr_match(args, sfe->namelen, sfe->nameval,
729                                     sfe->flags))
730                         continue;
731                 break;
732         }
733
734         if (sfep != NULL)
735                 *sfep = sfe;
736
737         if (basep != NULL)
738                 *basep = base;
739
740         if (i == end)
741                 return -ENOATTR;
742         return -EEXIST;
743 }
744
745 /*
746  * Add a name/value pair to the shortform attribute list.
747  * Overflow from the inode has already been checked for.
748  */
749 void
750 xfs_attr_shortform_add(
751         struct xfs_da_args              *args,
752         int                             forkoff)
753 {
754         struct xfs_attr_shortform       *sf;
755         struct xfs_attr_sf_entry        *sfe;
756         int                             offset, size;
757         struct xfs_mount                *mp;
758         struct xfs_inode                *dp;
759         struct xfs_ifork                *ifp;
760
761         trace_xfs_attr_sf_add(args);
762
763         dp = args->dp;
764         mp = dp->i_mount;
765         dp->i_forkoff = forkoff;
766
767         ifp = &dp->i_af;
768         ASSERT(ifp->if_format == XFS_DINODE_FMT_LOCAL);
769         sf = (struct xfs_attr_shortform *)ifp->if_u1.if_data;
770         if (xfs_attr_sf_findname(args, &sfe, NULL) == -EEXIST)
771                 ASSERT(0);
772
773         offset = (char *)sfe - (char *)sf;
774         size = xfs_attr_sf_entsize_byname(args->namelen, args->valuelen);
775         xfs_idata_realloc(dp, size, XFS_ATTR_FORK);
776         sf = (struct xfs_attr_shortform *)ifp->if_u1.if_data;
777         sfe = (struct xfs_attr_sf_entry *)((char *)sf + offset);
778
779         sfe->namelen = args->namelen;
780         sfe->valuelen = args->valuelen;
781         sfe->flags = args->attr_filter;
782         memcpy(sfe->nameval, args->name, args->namelen);
783         memcpy(&sfe->nameval[args->namelen], args->value, args->valuelen);
784         sf->hdr.count++;
785         be16_add_cpu(&sf->hdr.totsize, size);
786         xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE | XFS_ILOG_ADATA);
787
788         xfs_sbversion_add_attr2(mp, args->trans);
789 }
790
791 /*
792  * After the last attribute is removed revert to original inode format,
793  * making all literal area available to the data fork once more.
794  */
795 void
796 xfs_attr_fork_remove(
797         struct xfs_inode        *ip,
798         struct xfs_trans        *tp)
799 {
800         ASSERT(ip->i_af.if_nextents == 0);
801
802         xfs_ifork_zap_attr(ip);
803         ip->i_forkoff = 0;
804         xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
805 }
806
807 /*
808  * Remove an attribute from the shortform attribute list structure.
809  */
810 int
811 xfs_attr_sf_removename(
812         struct xfs_da_args              *args)
813 {
814         struct xfs_attr_shortform       *sf;
815         struct xfs_attr_sf_entry        *sfe;
816         int                             size = 0, end, totsize;
817         unsigned int                    base;
818         struct xfs_mount                *mp;
819         struct xfs_inode                *dp;
820         int                             error;
821
822         trace_xfs_attr_sf_remove(args);
823
824         dp = args->dp;
825         mp = dp->i_mount;
826         sf = (struct xfs_attr_shortform *)dp->i_af.if_u1.if_data;
827
828         error = xfs_attr_sf_findname(args, &sfe, &base);
829
830         /*
831          * If we are recovering an operation, finding nothing to
832          * remove is not an error - it just means there was nothing
833          * to clean up.
834          */
835         if (error == -ENOATTR && (args->op_flags & XFS_DA_OP_RECOVERY))
836                 return 0;
837         if (error != -EEXIST)
838                 return error;
839         size = xfs_attr_sf_entsize(sfe);
840
841         /*
842          * Fix up the attribute fork data, covering the hole
843          */
844         end = base + size;
845         totsize = be16_to_cpu(sf->hdr.totsize);
846         if (end != totsize)
847                 memmove(&((char *)sf)[base], &((char *)sf)[end], totsize - end);
848         sf->hdr.count--;
849         be16_add_cpu(&sf->hdr.totsize, -size);
850
851         /*
852          * Fix up the start offset of the attribute fork
853          */
854         totsize -= size;
855         if (totsize == sizeof(xfs_attr_sf_hdr_t) && xfs_has_attr2(mp) &&
856             (dp->i_df.if_format != XFS_DINODE_FMT_BTREE) &&
857             !(args->op_flags & (XFS_DA_OP_ADDNAME | XFS_DA_OP_REPLACE))) {
858                 xfs_attr_fork_remove(dp, args->trans);
859         } else {
860                 xfs_idata_realloc(dp, -size, XFS_ATTR_FORK);
861                 dp->i_forkoff = xfs_attr_shortform_bytesfit(dp, totsize);
862                 ASSERT(dp->i_forkoff);
863                 ASSERT(totsize > sizeof(xfs_attr_sf_hdr_t) ||
864                                 (args->op_flags & XFS_DA_OP_ADDNAME) ||
865                                 !xfs_has_attr2(mp) ||
866                                 dp->i_df.if_format == XFS_DINODE_FMT_BTREE);
867                 xfs_trans_log_inode(args->trans, dp,
868                                         XFS_ILOG_CORE | XFS_ILOG_ADATA);
869         }
870
871         xfs_sbversion_add_attr2(mp, args->trans);
872
873         return 0;
874 }
875
876 /*
877  * Look up a name in a shortform attribute list structure.
878  */
879 /*ARGSUSED*/
880 int
881 xfs_attr_shortform_lookup(xfs_da_args_t *args)
882 {
883         struct xfs_attr_shortform *sf;
884         struct xfs_attr_sf_entry *sfe;
885         int i;
886         struct xfs_ifork *ifp;
887
888         trace_xfs_attr_sf_lookup(args);
889
890         ifp = &args->dp->i_af;
891         ASSERT(ifp->if_format == XFS_DINODE_FMT_LOCAL);
892         sf = (struct xfs_attr_shortform *)ifp->if_u1.if_data;
893         sfe = &sf->list[0];
894         for (i = 0; i < sf->hdr.count;
895                                 sfe = xfs_attr_sf_nextentry(sfe), i++) {
896                 if (xfs_attr_match(args, sfe->namelen, sfe->nameval,
897                                 sfe->flags))
898                         return -EEXIST;
899         }
900         return -ENOATTR;
901 }
902
903 /*
904  * Retrieve the attribute value and length.
905  *
906  * If args->valuelen is zero, only the length needs to be returned.  Unlike a
907  * lookup, we only return an error if the attribute does not exist or we can't
908  * retrieve the value.
909  */
910 int
911 xfs_attr_shortform_getvalue(
912         struct xfs_da_args      *args)
913 {
914         struct xfs_attr_shortform *sf;
915         struct xfs_attr_sf_entry *sfe;
916         int                     i;
917
918         ASSERT(args->dp->i_af.if_format == XFS_DINODE_FMT_LOCAL);
919         sf = (struct xfs_attr_shortform *)args->dp->i_af.if_u1.if_data;
920         sfe = &sf->list[0];
921         for (i = 0; i < sf->hdr.count;
922                                 sfe = xfs_attr_sf_nextentry(sfe), i++) {
923                 if (xfs_attr_match(args, sfe->namelen, sfe->nameval,
924                                 sfe->flags))
925                         return xfs_attr_copy_value(args,
926                                 &sfe->nameval[args->namelen], sfe->valuelen);
927         }
928         return -ENOATTR;
929 }
930
931 /* Convert from using the shortform to the leaf format. */
932 int
933 xfs_attr_shortform_to_leaf(
934         struct xfs_da_args              *args)
935 {
936         struct xfs_inode                *dp;
937         struct xfs_attr_shortform       *sf;
938         struct xfs_attr_sf_entry        *sfe;
939         struct xfs_da_args              nargs;
940         char                            *tmpbuffer;
941         int                             error, i, size;
942         xfs_dablk_t                     blkno;
943         struct xfs_buf                  *bp;
944         struct xfs_ifork                *ifp;
945
946         trace_xfs_attr_sf_to_leaf(args);
947
948         dp = args->dp;
949         ifp = &dp->i_af;
950         sf = (struct xfs_attr_shortform *)ifp->if_u1.if_data;
951         size = be16_to_cpu(sf->hdr.totsize);
952         tmpbuffer = kmem_alloc(size, 0);
953         ASSERT(tmpbuffer != NULL);
954         memcpy(tmpbuffer, ifp->if_u1.if_data, size);
955         sf = (struct xfs_attr_shortform *)tmpbuffer;
956
957         xfs_idata_realloc(dp, -size, XFS_ATTR_FORK);
958         xfs_bmap_local_to_extents_empty(args->trans, dp, XFS_ATTR_FORK);
959
960         bp = NULL;
961         error = xfs_da_grow_inode(args, &blkno);
962         if (error)
963                 goto out;
964
965         ASSERT(blkno == 0);
966         error = xfs_attr3_leaf_create(args, blkno, &bp);
967         if (error)
968                 goto out;
969
970         memset((char *)&nargs, 0, sizeof(nargs));
971         nargs.dp = dp;
972         nargs.geo = args->geo;
973         nargs.total = args->total;
974         nargs.whichfork = XFS_ATTR_FORK;
975         nargs.trans = args->trans;
976         nargs.op_flags = XFS_DA_OP_OKNOENT;
977
978         sfe = &sf->list[0];
979         for (i = 0; i < sf->hdr.count; i++) {
980                 nargs.name = sfe->nameval;
981                 nargs.namelen = sfe->namelen;
982                 nargs.value = &sfe->nameval[nargs.namelen];
983                 nargs.valuelen = sfe->valuelen;
984                 nargs.hashval = xfs_da_hashname(sfe->nameval,
985                                                 sfe->namelen);
986                 nargs.attr_filter = sfe->flags & XFS_ATTR_NSP_ONDISK_MASK;
987                 error = xfs_attr3_leaf_lookup_int(bp, &nargs); /* set a->index */
988                 ASSERT(error == -ENOATTR);
989                 error = xfs_attr3_leaf_add(bp, &nargs);
990                 ASSERT(error != -ENOSPC);
991                 if (error)
992                         goto out;
993                 sfe = xfs_attr_sf_nextentry(sfe);
994         }
995         error = 0;
996 out:
997         kmem_free(tmpbuffer);
998         return error;
999 }
1000
1001 /*
1002  * Check a leaf attribute block to see if all the entries would fit into
1003  * a shortform attribute list.
1004  */
1005 int
1006 xfs_attr_shortform_allfit(
1007         struct xfs_buf          *bp,
1008         struct xfs_inode        *dp)
1009 {
1010         struct xfs_attr_leafblock *leaf;
1011         struct xfs_attr_leaf_entry *entry;
1012         xfs_attr_leaf_name_local_t *name_loc;
1013         struct xfs_attr3_icleaf_hdr leafhdr;
1014         int                     bytes;
1015         int                     i;
1016         struct xfs_mount        *mp = bp->b_mount;
1017
1018         leaf = bp->b_addr;
1019         xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo, &leafhdr, leaf);
1020         entry = xfs_attr3_leaf_entryp(leaf);
1021
1022         bytes = sizeof(struct xfs_attr_sf_hdr);
1023         for (i = 0; i < leafhdr.count; entry++, i++) {
1024                 if (entry->flags & XFS_ATTR_INCOMPLETE)
1025                         continue;               /* don't copy partial entries */
1026                 if (!(entry->flags & XFS_ATTR_LOCAL))
1027                         return 0;
1028                 name_loc = xfs_attr3_leaf_name_local(leaf, i);
1029                 if (name_loc->namelen >= XFS_ATTR_SF_ENTSIZE_MAX)
1030                         return 0;
1031                 if (be16_to_cpu(name_loc->valuelen) >= XFS_ATTR_SF_ENTSIZE_MAX)
1032                         return 0;
1033                 bytes += xfs_attr_sf_entsize_byname(name_loc->namelen,
1034                                         be16_to_cpu(name_loc->valuelen));
1035         }
1036         if (xfs_has_attr2(dp->i_mount) &&
1037             (dp->i_df.if_format != XFS_DINODE_FMT_BTREE) &&
1038             (bytes == sizeof(struct xfs_attr_sf_hdr)))
1039                 return -1;
1040         return xfs_attr_shortform_bytesfit(dp, bytes);
1041 }
1042
1043 /* Verify the consistency of a raw inline attribute fork. */
1044 xfs_failaddr_t
1045 xfs_attr_shortform_verify(
1046         struct xfs_attr_shortform       *sfp,
1047         size_t                          size)
1048 {
1049         struct xfs_attr_sf_entry        *sfep;
1050         struct xfs_attr_sf_entry        *next_sfep;
1051         char                            *endp;
1052         int                             i;
1053
1054         /*
1055          * Give up if the attribute is way too short.
1056          */
1057         if (size < sizeof(struct xfs_attr_sf_hdr))
1058                 return __this_address;
1059
1060         endp = (char *)sfp + size;
1061
1062         /* Check all reported entries */
1063         sfep = &sfp->list[0];
1064         for (i = 0; i < sfp->hdr.count; i++) {
1065                 /*
1066                  * struct xfs_attr_sf_entry has a variable length.
1067                  * Check the fixed-offset parts of the structure are
1068                  * within the data buffer.
1069                  * xfs_attr_sf_entry is defined with a 1-byte variable
1070                  * array at the end, so we must subtract that off.
1071                  */
1072                 if (((char *)sfep + sizeof(*sfep)) >= endp)
1073                         return __this_address;
1074
1075                 /* Don't allow names with known bad length. */
1076                 if (sfep->namelen == 0)
1077                         return __this_address;
1078
1079                 /*
1080                  * Check that the variable-length part of the structure is
1081                  * within the data buffer.  The next entry starts after the
1082                  * name component, so nextentry is an acceptable test.
1083                  */
1084                 next_sfep = xfs_attr_sf_nextentry(sfep);
1085                 if ((char *)next_sfep > endp)
1086                         return __this_address;
1087
1088                 /*
1089                  * Check for unknown flags.  Short form doesn't support
1090                  * the incomplete or local bits, so we can use the namespace
1091                  * mask here.
1092                  */
1093                 if (sfep->flags & ~XFS_ATTR_NSP_ONDISK_MASK)
1094                         return __this_address;
1095
1096                 /*
1097                  * Check for invalid namespace combinations.  We only allow
1098                  * one namespace flag per xattr, so we can just count the
1099                  * bits (i.e. hweight) here.
1100                  */
1101                 if (hweight8(sfep->flags & XFS_ATTR_NSP_ONDISK_MASK) > 1)
1102                         return __this_address;
1103
1104                 sfep = next_sfep;
1105         }
1106         if ((void *)sfep != (void *)endp)
1107                 return __this_address;
1108
1109         return NULL;
1110 }
1111
1112 /*
1113  * Convert a leaf attribute list to shortform attribute list
1114  */
1115 int
1116 xfs_attr3_leaf_to_shortform(
1117         struct xfs_buf          *bp,
1118         struct xfs_da_args      *args,
1119         int                     forkoff)
1120 {
1121         struct xfs_attr_leafblock *leaf;
1122         struct xfs_attr3_icleaf_hdr ichdr;
1123         struct xfs_attr_leaf_entry *entry;
1124         struct xfs_attr_leaf_name_local *name_loc;
1125         struct xfs_da_args      nargs;
1126         struct xfs_inode        *dp = args->dp;
1127         char                    *tmpbuffer;
1128         int                     error;
1129         int                     i;
1130
1131         trace_xfs_attr_leaf_to_sf(args);
1132
1133         tmpbuffer = kmem_alloc(args->geo->blksize, 0);
1134         if (!tmpbuffer)
1135                 return -ENOMEM;
1136
1137         memcpy(tmpbuffer, bp->b_addr, args->geo->blksize);
1138
1139         leaf = (xfs_attr_leafblock_t *)tmpbuffer;
1140         xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf);
1141         entry = xfs_attr3_leaf_entryp(leaf);
1142
1143         /* XXX (dgc): buffer is about to be marked stale - why zero it? */
1144         memset(bp->b_addr, 0, args->geo->blksize);
1145
1146         /*
1147          * Clean out the prior contents of the attribute list.
1148          */
1149         error = xfs_da_shrink_inode(args, 0, bp);
1150         if (error)
1151                 goto out;
1152
1153         if (forkoff == -1) {
1154                 /*
1155                  * Don't remove the attr fork if this operation is the first
1156                  * part of a attr replace operations. We're going to add a new
1157                  * attr immediately, so we need to keep the attr fork around in
1158                  * this case.
1159                  */
1160                 if (!(args->op_flags & XFS_DA_OP_REPLACE)) {
1161                         ASSERT(xfs_has_attr2(dp->i_mount));
1162                         ASSERT(dp->i_df.if_format != XFS_DINODE_FMT_BTREE);
1163                         xfs_attr_fork_remove(dp, args->trans);
1164                 }
1165                 goto out;
1166         }
1167
1168         xfs_attr_shortform_create(args);
1169
1170         /*
1171          * Copy the attributes
1172          */
1173         memset((char *)&nargs, 0, sizeof(nargs));
1174         nargs.geo = args->geo;
1175         nargs.dp = dp;
1176         nargs.total = args->total;
1177         nargs.whichfork = XFS_ATTR_FORK;
1178         nargs.trans = args->trans;
1179         nargs.op_flags = XFS_DA_OP_OKNOENT;
1180
1181         for (i = 0; i < ichdr.count; entry++, i++) {
1182                 if (entry->flags & XFS_ATTR_INCOMPLETE)
1183                         continue;       /* don't copy partial entries */
1184                 if (!entry->nameidx)
1185                         continue;
1186                 ASSERT(entry->flags & XFS_ATTR_LOCAL);
1187                 name_loc = xfs_attr3_leaf_name_local(leaf, i);
1188                 nargs.name = name_loc->nameval;
1189                 nargs.namelen = name_loc->namelen;
1190                 nargs.value = &name_loc->nameval[nargs.namelen];
1191                 nargs.valuelen = be16_to_cpu(name_loc->valuelen);
1192                 nargs.hashval = be32_to_cpu(entry->hashval);
1193                 nargs.attr_filter = entry->flags & XFS_ATTR_NSP_ONDISK_MASK;
1194                 xfs_attr_shortform_add(&nargs, forkoff);
1195         }
1196         error = 0;
1197
1198 out:
1199         kmem_free(tmpbuffer);
1200         return error;
1201 }
1202
1203 /*
1204  * Convert from using a single leaf to a root node and a leaf.
1205  */
1206 int
1207 xfs_attr3_leaf_to_node(
1208         struct xfs_da_args      *args)
1209 {
1210         struct xfs_attr_leafblock *leaf;
1211         struct xfs_attr3_icleaf_hdr icleafhdr;
1212         struct xfs_attr_leaf_entry *entries;
1213         struct xfs_da3_icnode_hdr icnodehdr;
1214         struct xfs_da_intnode   *node;
1215         struct xfs_inode        *dp = args->dp;
1216         struct xfs_mount        *mp = dp->i_mount;
1217         struct xfs_buf          *bp1 = NULL;
1218         struct xfs_buf          *bp2 = NULL;
1219         xfs_dablk_t             blkno;
1220         int                     error;
1221
1222         trace_xfs_attr_leaf_to_node(args);
1223
1224         if (XFS_TEST_ERROR(false, mp, XFS_ERRTAG_ATTR_LEAF_TO_NODE)) {
1225                 error = -EIO;
1226                 goto out;
1227         }
1228
1229         error = xfs_da_grow_inode(args, &blkno);
1230         if (error)
1231                 goto out;
1232         error = xfs_attr3_leaf_read(args->trans, dp, 0, &bp1);
1233         if (error)
1234                 goto out;
1235
1236         error = xfs_da_get_buf(args->trans, dp, blkno, &bp2, XFS_ATTR_FORK);
1237         if (error)
1238                 goto out;
1239
1240         /*
1241          * Copy leaf to new buffer and log it.
1242          */
1243         xfs_da_buf_copy(bp2, bp1, args->geo->blksize);
1244         xfs_trans_log_buf(args->trans, bp2, 0, args->geo->blksize - 1);
1245
1246         /*
1247          * Set up the new root node.
1248          */
1249         error = xfs_da3_node_create(args, 0, 1, &bp1, XFS_ATTR_FORK);
1250         if (error)
1251                 goto out;
1252         node = bp1->b_addr;
1253         xfs_da3_node_hdr_from_disk(mp, &icnodehdr, node);
1254
1255         leaf = bp2->b_addr;
1256         xfs_attr3_leaf_hdr_from_disk(args->geo, &icleafhdr, leaf);
1257         entries = xfs_attr3_leaf_entryp(leaf);
1258
1259         /* both on-disk, don't endian-flip twice */
1260         icnodehdr.btree[0].hashval = entries[icleafhdr.count - 1].hashval;
1261         icnodehdr.btree[0].before = cpu_to_be32(blkno);
1262         icnodehdr.count = 1;
1263         xfs_da3_node_hdr_to_disk(dp->i_mount, node, &icnodehdr);
1264         xfs_trans_log_buf(args->trans, bp1, 0, args->geo->blksize - 1);
1265         error = 0;
1266 out:
1267         return error;
1268 }
1269
1270 /*========================================================================
1271  * Routines used for growing the Btree.
1272  *========================================================================*/
1273
1274 /*
1275  * Create the initial contents of a leaf attribute list
1276  * or a leaf in a node attribute list.
1277  */
1278 STATIC int
1279 xfs_attr3_leaf_create(
1280         struct xfs_da_args      *args,
1281         xfs_dablk_t             blkno,
1282         struct xfs_buf          **bpp)
1283 {
1284         struct xfs_attr_leafblock *leaf;
1285         struct xfs_attr3_icleaf_hdr ichdr;
1286         struct xfs_inode        *dp = args->dp;
1287         struct xfs_mount        *mp = dp->i_mount;
1288         struct xfs_buf          *bp;
1289         int                     error;
1290
1291         trace_xfs_attr_leaf_create(args);
1292
1293         error = xfs_da_get_buf(args->trans, args->dp, blkno, &bp,
1294                                             XFS_ATTR_FORK);
1295         if (error)
1296                 return error;
1297         bp->b_ops = &xfs_attr3_leaf_buf_ops;
1298         xfs_trans_buf_set_type(args->trans, bp, XFS_BLFT_ATTR_LEAF_BUF);
1299         leaf = bp->b_addr;
1300         memset(leaf, 0, args->geo->blksize);
1301
1302         memset(&ichdr, 0, sizeof(ichdr));
1303         ichdr.firstused = args->geo->blksize;
1304
1305         if (xfs_has_crc(mp)) {
1306                 struct xfs_da3_blkinfo *hdr3 = bp->b_addr;
1307
1308                 ichdr.magic = XFS_ATTR3_LEAF_MAGIC;
1309
1310                 hdr3->blkno = cpu_to_be64(xfs_buf_daddr(bp));
1311                 hdr3->owner = cpu_to_be64(dp->i_ino);
1312                 uuid_copy(&hdr3->uuid, &mp->m_sb.sb_meta_uuid);
1313
1314                 ichdr.freemap[0].base = sizeof(struct xfs_attr3_leaf_hdr);
1315         } else {
1316                 ichdr.magic = XFS_ATTR_LEAF_MAGIC;
1317                 ichdr.freemap[0].base = sizeof(struct xfs_attr_leaf_hdr);
1318         }
1319         ichdr.freemap[0].size = ichdr.firstused - ichdr.freemap[0].base;
1320
1321         xfs_attr3_leaf_hdr_to_disk(args->geo, leaf, &ichdr);
1322         xfs_trans_log_buf(args->trans, bp, 0, args->geo->blksize - 1);
1323
1324         *bpp = bp;
1325         return 0;
1326 }
1327
1328 /*
1329  * Split the leaf node, rebalance, then add the new entry.
1330  */
1331 int
1332 xfs_attr3_leaf_split(
1333         struct xfs_da_state     *state,
1334         struct xfs_da_state_blk *oldblk,
1335         struct xfs_da_state_blk *newblk)
1336 {
1337         xfs_dablk_t blkno;
1338         int error;
1339
1340         trace_xfs_attr_leaf_split(state->args);
1341
1342         /*
1343          * Allocate space for a new leaf node.
1344          */
1345         ASSERT(oldblk->magic == XFS_ATTR_LEAF_MAGIC);
1346         error = xfs_da_grow_inode(state->args, &blkno);
1347         if (error)
1348                 return error;
1349         error = xfs_attr3_leaf_create(state->args, blkno, &newblk->bp);
1350         if (error)
1351                 return error;
1352         newblk->blkno = blkno;
1353         newblk->magic = XFS_ATTR_LEAF_MAGIC;
1354
1355         /*
1356          * Rebalance the entries across the two leaves.
1357          * NOTE: rebalance() currently depends on the 2nd block being empty.
1358          */
1359         xfs_attr3_leaf_rebalance(state, oldblk, newblk);
1360         error = xfs_da3_blk_link(state, oldblk, newblk);
1361         if (error)
1362                 return error;
1363
1364         /*
1365          * Save info on "old" attribute for "atomic rename" ops, leaf_add()
1366          * modifies the index/blkno/rmtblk/rmtblkcnt fields to show the
1367          * "new" attrs info.  Will need the "old" info to remove it later.
1368          *
1369          * Insert the "new" entry in the correct block.
1370          */
1371         if (state->inleaf) {
1372                 trace_xfs_attr_leaf_add_old(state->args);
1373                 error = xfs_attr3_leaf_add(oldblk->bp, state->args);
1374         } else {
1375                 trace_xfs_attr_leaf_add_new(state->args);
1376                 error = xfs_attr3_leaf_add(newblk->bp, state->args);
1377         }
1378
1379         /*
1380          * Update last hashval in each block since we added the name.
1381          */
1382         oldblk->hashval = xfs_attr_leaf_lasthash(oldblk->bp, NULL);
1383         newblk->hashval = xfs_attr_leaf_lasthash(newblk->bp, NULL);
1384         return error;
1385 }
1386
1387 /*
1388  * Add a name to the leaf attribute list structure.
1389  */
1390 int
1391 xfs_attr3_leaf_add(
1392         struct xfs_buf          *bp,
1393         struct xfs_da_args      *args)
1394 {
1395         struct xfs_attr_leafblock *leaf;
1396         struct xfs_attr3_icleaf_hdr ichdr;
1397         int                     tablesize;
1398         int                     entsize;
1399         int                     sum;
1400         int                     tmp;
1401         int                     i;
1402
1403         trace_xfs_attr_leaf_add(args);
1404
1405         leaf = bp->b_addr;
1406         xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf);
1407         ASSERT(args->index >= 0 && args->index <= ichdr.count);
1408         entsize = xfs_attr_leaf_newentsize(args, NULL);
1409
1410         /*
1411          * Search through freemap for first-fit on new name length.
1412          * (may need to figure in size of entry struct too)
1413          */
1414         tablesize = (ichdr.count + 1) * sizeof(xfs_attr_leaf_entry_t)
1415                                         + xfs_attr3_leaf_hdr_size(leaf);
1416         for (sum = 0, i = XFS_ATTR_LEAF_MAPSIZE - 1; i >= 0; i--) {
1417                 if (tablesize > ichdr.firstused) {
1418                         sum += ichdr.freemap[i].size;
1419                         continue;
1420                 }
1421                 if (!ichdr.freemap[i].size)
1422                         continue;       /* no space in this map */
1423                 tmp = entsize;
1424                 if (ichdr.freemap[i].base < ichdr.firstused)
1425                         tmp += sizeof(xfs_attr_leaf_entry_t);
1426                 if (ichdr.freemap[i].size >= tmp) {
1427                         tmp = xfs_attr3_leaf_add_work(bp, &ichdr, args, i);
1428                         goto out_log_hdr;
1429                 }
1430                 sum += ichdr.freemap[i].size;
1431         }
1432
1433         /*
1434          * If there are no holes in the address space of the block,
1435          * and we don't have enough freespace, then compaction will do us
1436          * no good and we should just give up.
1437          */
1438         if (!ichdr.holes && sum < entsize)
1439                 return -ENOSPC;
1440
1441         /*
1442          * Compact the entries to coalesce free space.
1443          * This may change the hdr->count via dropping INCOMPLETE entries.
1444          */
1445         xfs_attr3_leaf_compact(args, &ichdr, bp);
1446
1447         /*
1448          * After compaction, the block is guaranteed to have only one
1449          * free region, in freemap[0].  If it is not big enough, give up.
1450          */
1451         if (ichdr.freemap[0].size < (entsize + sizeof(xfs_attr_leaf_entry_t))) {
1452                 tmp = -ENOSPC;
1453                 goto out_log_hdr;
1454         }
1455
1456         tmp = xfs_attr3_leaf_add_work(bp, &ichdr, args, 0);
1457
1458 out_log_hdr:
1459         xfs_attr3_leaf_hdr_to_disk(args->geo, leaf, &ichdr);
1460         xfs_trans_log_buf(args->trans, bp,
1461                 XFS_DA_LOGRANGE(leaf, &leaf->hdr,
1462                                 xfs_attr3_leaf_hdr_size(leaf)));
1463         return tmp;
1464 }
1465
1466 /*
1467  * Add a name to a leaf attribute list structure.
1468  */
1469 STATIC int
1470 xfs_attr3_leaf_add_work(
1471         struct xfs_buf          *bp,
1472         struct xfs_attr3_icleaf_hdr *ichdr,
1473         struct xfs_da_args      *args,
1474         int                     mapindex)
1475 {
1476         struct xfs_attr_leafblock *leaf;
1477         struct xfs_attr_leaf_entry *entry;
1478         struct xfs_attr_leaf_name_local *name_loc;
1479         struct xfs_attr_leaf_name_remote *name_rmt;
1480         struct xfs_mount        *mp;
1481         int                     tmp;
1482         int                     i;
1483
1484         trace_xfs_attr_leaf_add_work(args);
1485
1486         leaf = bp->b_addr;
1487         ASSERT(mapindex >= 0 && mapindex < XFS_ATTR_LEAF_MAPSIZE);
1488         ASSERT(args->index >= 0 && args->index <= ichdr->count);
1489
1490         /*
1491          * Force open some space in the entry array and fill it in.
1492          */
1493         entry = &xfs_attr3_leaf_entryp(leaf)[args->index];
1494         if (args->index < ichdr->count) {
1495                 tmp  = ichdr->count - args->index;
1496                 tmp *= sizeof(xfs_attr_leaf_entry_t);
1497                 memmove(entry + 1, entry, tmp);
1498                 xfs_trans_log_buf(args->trans, bp,
1499                     XFS_DA_LOGRANGE(leaf, entry, tmp + sizeof(*entry)));
1500         }
1501         ichdr->count++;
1502
1503         /*
1504          * Allocate space for the new string (at the end of the run).
1505          */
1506         mp = args->trans->t_mountp;
1507         ASSERT(ichdr->freemap[mapindex].base < args->geo->blksize);
1508         ASSERT((ichdr->freemap[mapindex].base & 0x3) == 0);
1509         ASSERT(ichdr->freemap[mapindex].size >=
1510                 xfs_attr_leaf_newentsize(args, NULL));
1511         ASSERT(ichdr->freemap[mapindex].size < args->geo->blksize);
1512         ASSERT((ichdr->freemap[mapindex].size & 0x3) == 0);
1513
1514         ichdr->freemap[mapindex].size -= xfs_attr_leaf_newentsize(args, &tmp);
1515
1516         entry->nameidx = cpu_to_be16(ichdr->freemap[mapindex].base +
1517                                      ichdr->freemap[mapindex].size);
1518         entry->hashval = cpu_to_be32(args->hashval);
1519         entry->flags = args->attr_filter;
1520         if (tmp)
1521                 entry->flags |= XFS_ATTR_LOCAL;
1522         if (args->op_flags & XFS_DA_OP_REPLACE) {
1523                 if (!(args->op_flags & XFS_DA_OP_LOGGED))
1524                         entry->flags |= XFS_ATTR_INCOMPLETE;
1525                 if ((args->blkno2 == args->blkno) &&
1526                     (args->index2 <= args->index)) {
1527                         args->index2++;
1528                 }
1529         }
1530         xfs_trans_log_buf(args->trans, bp,
1531                           XFS_DA_LOGRANGE(leaf, entry, sizeof(*entry)));
1532         ASSERT((args->index == 0) ||
1533                (be32_to_cpu(entry->hashval) >= be32_to_cpu((entry-1)->hashval)));
1534         ASSERT((args->index == ichdr->count - 1) ||
1535                (be32_to_cpu(entry->hashval) <= be32_to_cpu((entry+1)->hashval)));
1536
1537         /*
1538          * For "remote" attribute values, simply note that we need to
1539          * allocate space for the "remote" value.  We can't actually
1540          * allocate the extents in this transaction, and we can't decide
1541          * which blocks they should be as we might allocate more blocks
1542          * as part of this transaction (a split operation for example).
1543          */
1544         if (entry->flags & XFS_ATTR_LOCAL) {
1545                 name_loc = xfs_attr3_leaf_name_local(leaf, args->index);
1546                 name_loc->namelen = args->namelen;
1547                 name_loc->valuelen = cpu_to_be16(args->valuelen);
1548                 memcpy((char *)name_loc->nameval, args->name, args->namelen);
1549                 memcpy((char *)&name_loc->nameval[args->namelen], args->value,
1550                                    be16_to_cpu(name_loc->valuelen));
1551         } else {
1552                 name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index);
1553                 name_rmt->namelen = args->namelen;
1554                 memcpy((char *)name_rmt->name, args->name, args->namelen);
1555                 entry->flags |= XFS_ATTR_INCOMPLETE;
1556                 /* just in case */
1557                 name_rmt->valuelen = 0;
1558                 name_rmt->valueblk = 0;
1559                 args->rmtblkno = 1;
1560                 args->rmtblkcnt = xfs_attr3_rmt_blocks(mp, args->valuelen);
1561                 args->rmtvaluelen = args->valuelen;
1562         }
1563         xfs_trans_log_buf(args->trans, bp,
1564              XFS_DA_LOGRANGE(leaf, xfs_attr3_leaf_name(leaf, args->index),
1565                                    xfs_attr_leaf_entsize(leaf, args->index)));
1566
1567         /*
1568          * Update the control info for this leaf node
1569          */
1570         if (be16_to_cpu(entry->nameidx) < ichdr->firstused)
1571                 ichdr->firstused = be16_to_cpu(entry->nameidx);
1572
1573         ASSERT(ichdr->firstused >= ichdr->count * sizeof(xfs_attr_leaf_entry_t)
1574                                         + xfs_attr3_leaf_hdr_size(leaf));
1575         tmp = (ichdr->count - 1) * sizeof(xfs_attr_leaf_entry_t)
1576                                         + xfs_attr3_leaf_hdr_size(leaf);
1577
1578         for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
1579                 if (ichdr->freemap[i].base == tmp) {
1580                         ichdr->freemap[i].base += sizeof(xfs_attr_leaf_entry_t);
1581                         ichdr->freemap[i].size -=
1582                                 min_t(uint16_t, ichdr->freemap[i].size,
1583                                                 sizeof(xfs_attr_leaf_entry_t));
1584                 }
1585         }
1586         ichdr->usedbytes += xfs_attr_leaf_entsize(leaf, args->index);
1587         return 0;
1588 }
1589
1590 /*
1591  * Garbage collect a leaf attribute list block by copying it to a new buffer.
1592  */
1593 STATIC void
1594 xfs_attr3_leaf_compact(
1595         struct xfs_da_args      *args,
1596         struct xfs_attr3_icleaf_hdr *ichdr_dst,
1597         struct xfs_buf          *bp)
1598 {
1599         struct xfs_attr_leafblock *leaf_src;
1600         struct xfs_attr_leafblock *leaf_dst;
1601         struct xfs_attr3_icleaf_hdr ichdr_src;
1602         struct xfs_trans        *trans = args->trans;
1603         char                    *tmpbuffer;
1604
1605         trace_xfs_attr_leaf_compact(args);
1606
1607         tmpbuffer = kmem_alloc(args->geo->blksize, 0);
1608         memcpy(tmpbuffer, bp->b_addr, args->geo->blksize);
1609         memset(bp->b_addr, 0, args->geo->blksize);
1610         leaf_src = (xfs_attr_leafblock_t *)tmpbuffer;
1611         leaf_dst = bp->b_addr;
1612
1613         /*
1614          * Copy the on-disk header back into the destination buffer to ensure
1615          * all the information in the header that is not part of the incore
1616          * header structure is preserved.
1617          */
1618         memcpy(bp->b_addr, tmpbuffer, xfs_attr3_leaf_hdr_size(leaf_src));
1619
1620         /* Initialise the incore headers */
1621         ichdr_src = *ichdr_dst; /* struct copy */
1622         ichdr_dst->firstused = args->geo->blksize;
1623         ichdr_dst->usedbytes = 0;
1624         ichdr_dst->count = 0;
1625         ichdr_dst->holes = 0;
1626         ichdr_dst->freemap[0].base = xfs_attr3_leaf_hdr_size(leaf_src);
1627         ichdr_dst->freemap[0].size = ichdr_dst->firstused -
1628                                                 ichdr_dst->freemap[0].base;
1629
1630         /* write the header back to initialise the underlying buffer */
1631         xfs_attr3_leaf_hdr_to_disk(args->geo, leaf_dst, ichdr_dst);
1632
1633         /*
1634          * Copy all entry's in the same (sorted) order,
1635          * but allocate name/value pairs packed and in sequence.
1636          */
1637         xfs_attr3_leaf_moveents(args, leaf_src, &ichdr_src, 0,
1638                                 leaf_dst, ichdr_dst, 0, ichdr_src.count);
1639         /*
1640          * this logs the entire buffer, but the caller must write the header
1641          * back to the buffer when it is finished modifying it.
1642          */
1643         xfs_trans_log_buf(trans, bp, 0, args->geo->blksize - 1);
1644
1645         kmem_free(tmpbuffer);
1646 }
1647
1648 /*
1649  * Compare two leaf blocks "order".
1650  * Return 0 unless leaf2 should go before leaf1.
1651  */
1652 static int
1653 xfs_attr3_leaf_order(
1654         struct xfs_buf  *leaf1_bp,
1655         struct xfs_attr3_icleaf_hdr *leaf1hdr,
1656         struct xfs_buf  *leaf2_bp,
1657         struct xfs_attr3_icleaf_hdr *leaf2hdr)
1658 {
1659         struct xfs_attr_leaf_entry *entries1;
1660         struct xfs_attr_leaf_entry *entries2;
1661
1662         entries1 = xfs_attr3_leaf_entryp(leaf1_bp->b_addr);
1663         entries2 = xfs_attr3_leaf_entryp(leaf2_bp->b_addr);
1664         if (leaf1hdr->count > 0 && leaf2hdr->count > 0 &&
1665             ((be32_to_cpu(entries2[0].hashval) <
1666               be32_to_cpu(entries1[0].hashval)) ||
1667              (be32_to_cpu(entries2[leaf2hdr->count - 1].hashval) <
1668               be32_to_cpu(entries1[leaf1hdr->count - 1].hashval)))) {
1669                 return 1;
1670         }
1671         return 0;
1672 }
1673
1674 int
1675 xfs_attr_leaf_order(
1676         struct xfs_buf  *leaf1_bp,
1677         struct xfs_buf  *leaf2_bp)
1678 {
1679         struct xfs_attr3_icleaf_hdr ichdr1;
1680         struct xfs_attr3_icleaf_hdr ichdr2;
1681         struct xfs_mount *mp = leaf1_bp->b_mount;
1682
1683         xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo, &ichdr1, leaf1_bp->b_addr);
1684         xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo, &ichdr2, leaf2_bp->b_addr);
1685         return xfs_attr3_leaf_order(leaf1_bp, &ichdr1, leaf2_bp, &ichdr2);
1686 }
1687
1688 /*
1689  * Redistribute the attribute list entries between two leaf nodes,
1690  * taking into account the size of the new entry.
1691  *
1692  * NOTE: if new block is empty, then it will get the upper half of the
1693  * old block.  At present, all (one) callers pass in an empty second block.
1694  *
1695  * This code adjusts the args->index/blkno and args->index2/blkno2 fields
1696  * to match what it is doing in splitting the attribute leaf block.  Those
1697  * values are used in "atomic rename" operations on attributes.  Note that
1698  * the "new" and "old" values can end up in different blocks.
1699  */
1700 STATIC void
1701 xfs_attr3_leaf_rebalance(
1702         struct xfs_da_state     *state,
1703         struct xfs_da_state_blk *blk1,
1704         struct xfs_da_state_blk *blk2)
1705 {
1706         struct xfs_da_args      *args;
1707         struct xfs_attr_leafblock *leaf1;
1708         struct xfs_attr_leafblock *leaf2;
1709         struct xfs_attr3_icleaf_hdr ichdr1;
1710         struct xfs_attr3_icleaf_hdr ichdr2;
1711         struct xfs_attr_leaf_entry *entries1;
1712         struct xfs_attr_leaf_entry *entries2;
1713         int                     count;
1714         int                     totallen;
1715         int                     max;
1716         int                     space;
1717         int                     swap;
1718
1719         /*
1720          * Set up environment.
1721          */
1722         ASSERT(blk1->magic == XFS_ATTR_LEAF_MAGIC);
1723         ASSERT(blk2->magic == XFS_ATTR_LEAF_MAGIC);
1724         leaf1 = blk1->bp->b_addr;
1725         leaf2 = blk2->bp->b_addr;
1726         xfs_attr3_leaf_hdr_from_disk(state->args->geo, &ichdr1, leaf1);
1727         xfs_attr3_leaf_hdr_from_disk(state->args->geo, &ichdr2, leaf2);
1728         ASSERT(ichdr2.count == 0);
1729         args = state->args;
1730
1731         trace_xfs_attr_leaf_rebalance(args);
1732
1733         /*
1734          * Check ordering of blocks, reverse if it makes things simpler.
1735          *
1736          * NOTE: Given that all (current) callers pass in an empty
1737          * second block, this code should never set "swap".
1738          */
1739         swap = 0;
1740         if (xfs_attr3_leaf_order(blk1->bp, &ichdr1, blk2->bp, &ichdr2)) {
1741                 swap(blk1, blk2);
1742
1743                 /* swap structures rather than reconverting them */
1744                 swap(ichdr1, ichdr2);
1745
1746                 leaf1 = blk1->bp->b_addr;
1747                 leaf2 = blk2->bp->b_addr;
1748                 swap = 1;
1749         }
1750
1751         /*
1752          * Examine entries until we reduce the absolute difference in
1753          * byte usage between the two blocks to a minimum.  Then get
1754          * the direction to copy and the number of elements to move.
1755          *
1756          * "inleaf" is true if the new entry should be inserted into blk1.
1757          * If "swap" is also true, then reverse the sense of "inleaf".
1758          */
1759         state->inleaf = xfs_attr3_leaf_figure_balance(state, blk1, &ichdr1,
1760                                                       blk2, &ichdr2,
1761                                                       &count, &totallen);
1762         if (swap)
1763                 state->inleaf = !state->inleaf;
1764
1765         /*
1766          * Move any entries required from leaf to leaf:
1767          */
1768         if (count < ichdr1.count) {
1769                 /*
1770                  * Figure the total bytes to be added to the destination leaf.
1771                  */
1772                 /* number entries being moved */
1773                 count = ichdr1.count - count;
1774                 space  = ichdr1.usedbytes - totallen;
1775                 space += count * sizeof(xfs_attr_leaf_entry_t);
1776
1777                 /*
1778                  * leaf2 is the destination, compact it if it looks tight.
1779                  */
1780                 max  = ichdr2.firstused - xfs_attr3_leaf_hdr_size(leaf1);
1781                 max -= ichdr2.count * sizeof(xfs_attr_leaf_entry_t);
1782                 if (space > max)
1783                         xfs_attr3_leaf_compact(args, &ichdr2, blk2->bp);
1784
1785                 /*
1786                  * Move high entries from leaf1 to low end of leaf2.
1787                  */
1788                 xfs_attr3_leaf_moveents(args, leaf1, &ichdr1,
1789                                 ichdr1.count - count, leaf2, &ichdr2, 0, count);
1790
1791         } else if (count > ichdr1.count) {
1792                 /*
1793                  * I assert that since all callers pass in an empty
1794                  * second buffer, this code should never execute.
1795                  */
1796                 ASSERT(0);
1797
1798                 /*
1799                  * Figure the total bytes to be added to the destination leaf.
1800                  */
1801                 /* number entries being moved */
1802                 count -= ichdr1.count;
1803                 space  = totallen - ichdr1.usedbytes;
1804                 space += count * sizeof(xfs_attr_leaf_entry_t);
1805
1806                 /*
1807                  * leaf1 is the destination, compact it if it looks tight.
1808                  */
1809                 max  = ichdr1.firstused - xfs_attr3_leaf_hdr_size(leaf1);
1810                 max -= ichdr1.count * sizeof(xfs_attr_leaf_entry_t);
1811                 if (space > max)
1812                         xfs_attr3_leaf_compact(args, &ichdr1, blk1->bp);
1813
1814                 /*
1815                  * Move low entries from leaf2 to high end of leaf1.
1816                  */
1817                 xfs_attr3_leaf_moveents(args, leaf2, &ichdr2, 0, leaf1, &ichdr1,
1818                                         ichdr1.count, count);
1819         }
1820
1821         xfs_attr3_leaf_hdr_to_disk(state->args->geo, leaf1, &ichdr1);
1822         xfs_attr3_leaf_hdr_to_disk(state->args->geo, leaf2, &ichdr2);
1823         xfs_trans_log_buf(args->trans, blk1->bp, 0, args->geo->blksize - 1);
1824         xfs_trans_log_buf(args->trans, blk2->bp, 0, args->geo->blksize - 1);
1825
1826         /*
1827          * Copy out last hashval in each block for B-tree code.
1828          */
1829         entries1 = xfs_attr3_leaf_entryp(leaf1);
1830         entries2 = xfs_attr3_leaf_entryp(leaf2);
1831         blk1->hashval = be32_to_cpu(entries1[ichdr1.count - 1].hashval);
1832         blk2->hashval = be32_to_cpu(entries2[ichdr2.count - 1].hashval);
1833
1834         /*
1835          * Adjust the expected index for insertion.
1836          * NOTE: this code depends on the (current) situation that the
1837          * second block was originally empty.
1838          *
1839          * If the insertion point moved to the 2nd block, we must adjust
1840          * the index.  We must also track the entry just following the
1841          * new entry for use in an "atomic rename" operation, that entry
1842          * is always the "old" entry and the "new" entry is what we are
1843          * inserting.  The index/blkno fields refer to the "old" entry,
1844          * while the index2/blkno2 fields refer to the "new" entry.
1845          */
1846         if (blk1->index > ichdr1.count) {
1847                 ASSERT(state->inleaf == 0);
1848                 blk2->index = blk1->index - ichdr1.count;
1849                 args->index = args->index2 = blk2->index;
1850                 args->blkno = args->blkno2 = blk2->blkno;
1851         } else if (blk1->index == ichdr1.count) {
1852                 if (state->inleaf) {
1853                         args->index = blk1->index;
1854                         args->blkno = blk1->blkno;
1855                         args->index2 = 0;
1856                         args->blkno2 = blk2->blkno;
1857                 } else {
1858                         /*
1859                          * On a double leaf split, the original attr location
1860                          * is already stored in blkno2/index2, so don't
1861                          * overwrite it overwise we corrupt the tree.
1862                          */
1863                         blk2->index = blk1->index - ichdr1.count;
1864                         args->index = blk2->index;
1865                         args->blkno = blk2->blkno;
1866                         if (!state->extravalid) {
1867                                 /*
1868                                  * set the new attr location to match the old
1869                                  * one and let the higher level split code
1870                                  * decide where in the leaf to place it.
1871                                  */
1872                                 args->index2 = blk2->index;
1873                                 args->blkno2 = blk2->blkno;
1874                         }
1875                 }
1876         } else {
1877                 ASSERT(state->inleaf == 1);
1878                 args->index = args->index2 = blk1->index;
1879                 args->blkno = args->blkno2 = blk1->blkno;
1880         }
1881 }
1882
1883 /*
1884  * Examine entries until we reduce the absolute difference in
1885  * byte usage between the two blocks to a minimum.
1886  * GROT: Is this really necessary?  With other than a 512 byte blocksize,
1887  * GROT: there will always be enough room in either block for a new entry.
1888  * GROT: Do a double-split for this case?
1889  */
1890 STATIC int
1891 xfs_attr3_leaf_figure_balance(
1892         struct xfs_da_state             *state,
1893         struct xfs_da_state_blk         *blk1,
1894         struct xfs_attr3_icleaf_hdr     *ichdr1,
1895         struct xfs_da_state_blk         *blk2,
1896         struct xfs_attr3_icleaf_hdr     *ichdr2,
1897         int                             *countarg,
1898         int                             *usedbytesarg)
1899 {
1900         struct xfs_attr_leafblock       *leaf1 = blk1->bp->b_addr;
1901         struct xfs_attr_leafblock       *leaf2 = blk2->bp->b_addr;
1902         struct xfs_attr_leaf_entry      *entry;
1903         int                             count;
1904         int                             max;
1905         int                             index;
1906         int                             totallen = 0;
1907         int                             half;
1908         int                             lastdelta;
1909         int                             foundit = 0;
1910         int                             tmp;
1911
1912         /*
1913          * Examine entries until we reduce the absolute difference in
1914          * byte usage between the two blocks to a minimum.
1915          */
1916         max = ichdr1->count + ichdr2->count;
1917         half = (max + 1) * sizeof(*entry);
1918         half += ichdr1->usedbytes + ichdr2->usedbytes +
1919                         xfs_attr_leaf_newentsize(state->args, NULL);
1920         half /= 2;
1921         lastdelta = state->args->geo->blksize;
1922         entry = xfs_attr3_leaf_entryp(leaf1);
1923         for (count = index = 0; count < max; entry++, index++, count++) {
1924
1925 #define XFS_ATTR_ABS(A) (((A) < 0) ? -(A) : (A))
1926                 /*
1927                  * The new entry is in the first block, account for it.
1928                  */
1929                 if (count == blk1->index) {
1930                         tmp = totallen + sizeof(*entry) +
1931                                 xfs_attr_leaf_newentsize(state->args, NULL);
1932                         if (XFS_ATTR_ABS(half - tmp) > lastdelta)
1933                                 break;
1934                         lastdelta = XFS_ATTR_ABS(half - tmp);
1935                         totallen = tmp;
1936                         foundit = 1;
1937                 }
1938
1939                 /*
1940                  * Wrap around into the second block if necessary.
1941                  */
1942                 if (count == ichdr1->count) {
1943                         leaf1 = leaf2;
1944                         entry = xfs_attr3_leaf_entryp(leaf1);
1945                         index = 0;
1946                 }
1947
1948                 /*
1949                  * Figure out if next leaf entry would be too much.
1950                  */
1951                 tmp = totallen + sizeof(*entry) + xfs_attr_leaf_entsize(leaf1,
1952                                                                         index);
1953                 if (XFS_ATTR_ABS(half - tmp) > lastdelta)
1954                         break;
1955                 lastdelta = XFS_ATTR_ABS(half - tmp);
1956                 totallen = tmp;
1957 #undef XFS_ATTR_ABS
1958         }
1959
1960         /*
1961          * Calculate the number of usedbytes that will end up in lower block.
1962          * If new entry not in lower block, fix up the count.
1963          */
1964         totallen -= count * sizeof(*entry);
1965         if (foundit) {
1966                 totallen -= sizeof(*entry) +
1967                                 xfs_attr_leaf_newentsize(state->args, NULL);
1968         }
1969
1970         *countarg = count;
1971         *usedbytesarg = totallen;
1972         return foundit;
1973 }
1974
1975 /*========================================================================
1976  * Routines used for shrinking the Btree.
1977  *========================================================================*/
1978
1979 /*
1980  * Check a leaf block and its neighbors to see if the block should be
1981  * collapsed into one or the other neighbor.  Always keep the block
1982  * with the smaller block number.
1983  * If the current block is over 50% full, don't try to join it, return 0.
1984  * If the block is empty, fill in the state structure and return 2.
1985  * If it can be collapsed, fill in the state structure and return 1.
1986  * If nothing can be done, return 0.
1987  *
1988  * GROT: allow for INCOMPLETE entries in calculation.
1989  */
1990 int
1991 xfs_attr3_leaf_toosmall(
1992         struct xfs_da_state     *state,
1993         int                     *action)
1994 {
1995         struct xfs_attr_leafblock *leaf;
1996         struct xfs_da_state_blk *blk;
1997         struct xfs_attr3_icleaf_hdr ichdr;
1998         struct xfs_buf          *bp;
1999         xfs_dablk_t             blkno;
2000         int                     bytes;
2001         int                     forward;
2002         int                     error;
2003         int                     retval;
2004         int                     i;
2005
2006         trace_xfs_attr_leaf_toosmall(state->args);
2007
2008         /*
2009          * Check for the degenerate case of the block being over 50% full.
2010          * If so, it's not worth even looking to see if we might be able
2011          * to coalesce with a sibling.
2012          */
2013         blk = &state->path.blk[ state->path.active-1 ];
2014         leaf = blk->bp->b_addr;
2015         xfs_attr3_leaf_hdr_from_disk(state->args->geo, &ichdr, leaf);
2016         bytes = xfs_attr3_leaf_hdr_size(leaf) +
2017                 ichdr.count * sizeof(xfs_attr_leaf_entry_t) +
2018                 ichdr.usedbytes;
2019         if (bytes > (state->args->geo->blksize >> 1)) {
2020                 *action = 0;    /* blk over 50%, don't try to join */
2021                 return 0;
2022         }
2023
2024         /*
2025          * Check for the degenerate case of the block being empty.
2026          * If the block is empty, we'll simply delete it, no need to
2027          * coalesce it with a sibling block.  We choose (arbitrarily)
2028          * to merge with the forward block unless it is NULL.
2029          */
2030         if (ichdr.count == 0) {
2031                 /*
2032                  * Make altpath point to the block we want to keep and
2033                  * path point to the block we want to drop (this one).
2034                  */
2035                 forward = (ichdr.forw != 0);
2036                 memcpy(&state->altpath, &state->path, sizeof(state->path));
2037                 error = xfs_da3_path_shift(state, &state->altpath, forward,
2038                                                  0, &retval);
2039                 if (error)
2040                         return error;
2041                 if (retval) {
2042                         *action = 0;
2043                 } else {
2044                         *action = 2;
2045                 }
2046                 return 0;
2047         }
2048
2049         /*
2050          * Examine each sibling block to see if we can coalesce with
2051          * at least 25% free space to spare.  We need to figure out
2052          * whether to merge with the forward or the backward block.
2053          * We prefer coalescing with the lower numbered sibling so as
2054          * to shrink an attribute list over time.
2055          */
2056         /* start with smaller blk num */
2057         forward = ichdr.forw < ichdr.back;
2058         for (i = 0; i < 2; forward = !forward, i++) {
2059                 struct xfs_attr3_icleaf_hdr ichdr2;
2060                 if (forward)
2061                         blkno = ichdr.forw;
2062                 else
2063                         blkno = ichdr.back;
2064                 if (blkno == 0)
2065                         continue;
2066                 error = xfs_attr3_leaf_read(state->args->trans, state->args->dp,
2067                                         blkno, &bp);
2068                 if (error)
2069                         return error;
2070
2071                 xfs_attr3_leaf_hdr_from_disk(state->args->geo, &ichdr2, bp->b_addr);
2072
2073                 bytes = state->args->geo->blksize -
2074                         (state->args->geo->blksize >> 2) -
2075                         ichdr.usedbytes - ichdr2.usedbytes -
2076                         ((ichdr.count + ichdr2.count) *
2077                                         sizeof(xfs_attr_leaf_entry_t)) -
2078                         xfs_attr3_leaf_hdr_size(leaf);
2079
2080                 xfs_trans_brelse(state->args->trans, bp);
2081                 if (bytes >= 0)
2082                         break;  /* fits with at least 25% to spare */
2083         }
2084         if (i >= 2) {
2085                 *action = 0;
2086                 return 0;
2087         }
2088
2089         /*
2090          * Make altpath point to the block we want to keep (the lower
2091          * numbered block) and path point to the block we want to drop.
2092          */
2093         memcpy(&state->altpath, &state->path, sizeof(state->path));
2094         if (blkno < blk->blkno) {
2095                 error = xfs_da3_path_shift(state, &state->altpath, forward,
2096                                                  0, &retval);
2097         } else {
2098                 error = xfs_da3_path_shift(state, &state->path, forward,
2099                                                  0, &retval);
2100         }
2101         if (error)
2102                 return error;
2103         if (retval) {
2104                 *action = 0;
2105         } else {
2106                 *action = 1;
2107         }
2108         return 0;
2109 }
2110
2111 /*
2112  * Remove a name from the leaf attribute list structure.
2113  *
2114  * Return 1 if leaf is less than 37% full, 0 if >= 37% full.
2115  * If two leaves are 37% full, when combined they will leave 25% free.
2116  */
2117 int
2118 xfs_attr3_leaf_remove(
2119         struct xfs_buf          *bp,
2120         struct xfs_da_args      *args)
2121 {
2122         struct xfs_attr_leafblock *leaf;
2123         struct xfs_attr3_icleaf_hdr ichdr;
2124         struct xfs_attr_leaf_entry *entry;
2125         int                     before;
2126         int                     after;
2127         int                     smallest;
2128         int                     entsize;
2129         int                     tablesize;
2130         int                     tmp;
2131         int                     i;
2132
2133         trace_xfs_attr_leaf_remove(args);
2134
2135         leaf = bp->b_addr;
2136         xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf);
2137
2138         ASSERT(ichdr.count > 0 && ichdr.count < args->geo->blksize / 8);
2139         ASSERT(args->index >= 0 && args->index < ichdr.count);
2140         ASSERT(ichdr.firstused >= ichdr.count * sizeof(*entry) +
2141                                         xfs_attr3_leaf_hdr_size(leaf));
2142
2143         entry = &xfs_attr3_leaf_entryp(leaf)[args->index];
2144
2145         ASSERT(be16_to_cpu(entry->nameidx) >= ichdr.firstused);
2146         ASSERT(be16_to_cpu(entry->nameidx) < args->geo->blksize);
2147
2148         /*
2149          * Scan through free region table:
2150          *    check for adjacency of free'd entry with an existing one,
2151          *    find smallest free region in case we need to replace it,
2152          *    adjust any map that borders the entry table,
2153          */
2154         tablesize = ichdr.count * sizeof(xfs_attr_leaf_entry_t)
2155                                         + xfs_attr3_leaf_hdr_size(leaf);
2156         tmp = ichdr.freemap[0].size;
2157         before = after = -1;
2158         smallest = XFS_ATTR_LEAF_MAPSIZE - 1;
2159         entsize = xfs_attr_leaf_entsize(leaf, args->index);
2160         for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
2161                 ASSERT(ichdr.freemap[i].base < args->geo->blksize);
2162                 ASSERT(ichdr.freemap[i].size < args->geo->blksize);
2163                 if (ichdr.freemap[i].base == tablesize) {
2164                         ichdr.freemap[i].base -= sizeof(xfs_attr_leaf_entry_t);
2165                         ichdr.freemap[i].size += sizeof(xfs_attr_leaf_entry_t);
2166                 }
2167
2168                 if (ichdr.freemap[i].base + ichdr.freemap[i].size ==
2169                                 be16_to_cpu(entry->nameidx)) {
2170                         before = i;
2171                 } else if (ichdr.freemap[i].base ==
2172                                 (be16_to_cpu(entry->nameidx) + entsize)) {
2173                         after = i;
2174                 } else if (ichdr.freemap[i].size < tmp) {
2175                         tmp = ichdr.freemap[i].size;
2176                         smallest = i;
2177                 }
2178         }
2179
2180         /*
2181          * Coalesce adjacent freemap regions,
2182          * or replace the smallest region.
2183          */
2184         if ((before >= 0) || (after >= 0)) {
2185                 if ((before >= 0) && (after >= 0)) {
2186                         ichdr.freemap[before].size += entsize;
2187                         ichdr.freemap[before].size += ichdr.freemap[after].size;
2188                         ichdr.freemap[after].base = 0;
2189                         ichdr.freemap[after].size = 0;
2190                 } else if (before >= 0) {
2191                         ichdr.freemap[before].size += entsize;
2192                 } else {
2193                         ichdr.freemap[after].base = be16_to_cpu(entry->nameidx);
2194                         ichdr.freemap[after].size += entsize;
2195                 }
2196         } else {
2197                 /*
2198                  * Replace smallest region (if it is smaller than free'd entry)
2199                  */
2200                 if (ichdr.freemap[smallest].size < entsize) {
2201                         ichdr.freemap[smallest].base = be16_to_cpu(entry->nameidx);
2202                         ichdr.freemap[smallest].size = entsize;
2203                 }
2204         }
2205
2206         /*
2207          * Did we remove the first entry?
2208          */
2209         if (be16_to_cpu(entry->nameidx) == ichdr.firstused)
2210                 smallest = 1;
2211         else
2212                 smallest = 0;
2213
2214         /*
2215          * Compress the remaining entries and zero out the removed stuff.
2216          */
2217         memset(xfs_attr3_leaf_name(leaf, args->index), 0, entsize);
2218         ichdr.usedbytes -= entsize;
2219         xfs_trans_log_buf(args->trans, bp,
2220              XFS_DA_LOGRANGE(leaf, xfs_attr3_leaf_name(leaf, args->index),
2221                                    entsize));
2222
2223         tmp = (ichdr.count - args->index) * sizeof(xfs_attr_leaf_entry_t);
2224         memmove(entry, entry + 1, tmp);
2225         ichdr.count--;
2226         xfs_trans_log_buf(args->trans, bp,
2227             XFS_DA_LOGRANGE(leaf, entry, tmp + sizeof(xfs_attr_leaf_entry_t)));
2228
2229         entry = &xfs_attr3_leaf_entryp(leaf)[ichdr.count];
2230         memset(entry, 0, sizeof(xfs_attr_leaf_entry_t));
2231
2232         /*
2233          * If we removed the first entry, re-find the first used byte
2234          * in the name area.  Note that if the entry was the "firstused",
2235          * then we don't have a "hole" in our block resulting from
2236          * removing the name.
2237          */
2238         if (smallest) {
2239                 tmp = args->geo->blksize;
2240                 entry = xfs_attr3_leaf_entryp(leaf);
2241                 for (i = ichdr.count - 1; i >= 0; entry++, i--) {
2242                         ASSERT(be16_to_cpu(entry->nameidx) >= ichdr.firstused);
2243                         ASSERT(be16_to_cpu(entry->nameidx) < args->geo->blksize);
2244
2245                         if (be16_to_cpu(entry->nameidx) < tmp)
2246                                 tmp = be16_to_cpu(entry->nameidx);
2247                 }
2248                 ichdr.firstused = tmp;
2249                 ASSERT(ichdr.firstused != 0);
2250         } else {
2251                 ichdr.holes = 1;        /* mark as needing compaction */
2252         }
2253         xfs_attr3_leaf_hdr_to_disk(args->geo, leaf, &ichdr);
2254         xfs_trans_log_buf(args->trans, bp,
2255                           XFS_DA_LOGRANGE(leaf, &leaf->hdr,
2256                                           xfs_attr3_leaf_hdr_size(leaf)));
2257
2258         /*
2259          * Check if leaf is less than 50% full, caller may want to
2260          * "join" the leaf with a sibling if so.
2261          */
2262         tmp = ichdr.usedbytes + xfs_attr3_leaf_hdr_size(leaf) +
2263               ichdr.count * sizeof(xfs_attr_leaf_entry_t);
2264
2265         return tmp < args->geo->magicpct; /* leaf is < 37% full */
2266 }
2267
2268 /*
2269  * Move all the attribute list entries from drop_leaf into save_leaf.
2270  */
2271 void
2272 xfs_attr3_leaf_unbalance(
2273         struct xfs_da_state     *state,
2274         struct xfs_da_state_blk *drop_blk,
2275         struct xfs_da_state_blk *save_blk)
2276 {
2277         struct xfs_attr_leafblock *drop_leaf = drop_blk->bp->b_addr;
2278         struct xfs_attr_leafblock *save_leaf = save_blk->bp->b_addr;
2279         struct xfs_attr3_icleaf_hdr drophdr;
2280         struct xfs_attr3_icleaf_hdr savehdr;
2281         struct xfs_attr_leaf_entry *entry;
2282
2283         trace_xfs_attr_leaf_unbalance(state->args);
2284
2285         xfs_attr3_leaf_hdr_from_disk(state->args->geo, &drophdr, drop_leaf);
2286         xfs_attr3_leaf_hdr_from_disk(state->args->geo, &savehdr, save_leaf);
2287         entry = xfs_attr3_leaf_entryp(drop_leaf);
2288
2289         /*
2290          * Save last hashval from dying block for later Btree fixup.
2291          */
2292         drop_blk->hashval = be32_to_cpu(entry[drophdr.count - 1].hashval);
2293
2294         /*
2295          * Check if we need a temp buffer, or can we do it in place.
2296          * Note that we don't check "leaf" for holes because we will
2297          * always be dropping it, toosmall() decided that for us already.
2298          */
2299         if (savehdr.holes == 0) {
2300                 /*
2301                  * dest leaf has no holes, so we add there.  May need
2302                  * to make some room in the entry array.
2303                  */
2304                 if (xfs_attr3_leaf_order(save_blk->bp, &savehdr,
2305                                          drop_blk->bp, &drophdr)) {
2306                         xfs_attr3_leaf_moveents(state->args,
2307                                                 drop_leaf, &drophdr, 0,
2308                                                 save_leaf, &savehdr, 0,
2309                                                 drophdr.count);
2310                 } else {
2311                         xfs_attr3_leaf_moveents(state->args,
2312                                                 drop_leaf, &drophdr, 0,
2313                                                 save_leaf, &savehdr,
2314                                                 savehdr.count, drophdr.count);
2315                 }
2316         } else {
2317                 /*
2318                  * Destination has holes, so we make a temporary copy
2319                  * of the leaf and add them both to that.
2320                  */
2321                 struct xfs_attr_leafblock *tmp_leaf;
2322                 struct xfs_attr3_icleaf_hdr tmphdr;
2323
2324                 tmp_leaf = kmem_zalloc(state->args->geo->blksize, 0);
2325
2326                 /*
2327                  * Copy the header into the temp leaf so that all the stuff
2328                  * not in the incore header is present and gets copied back in
2329                  * once we've moved all the entries.
2330                  */
2331                 memcpy(tmp_leaf, save_leaf, xfs_attr3_leaf_hdr_size(save_leaf));
2332
2333                 memset(&tmphdr, 0, sizeof(tmphdr));
2334                 tmphdr.magic = savehdr.magic;
2335                 tmphdr.forw = savehdr.forw;
2336                 tmphdr.back = savehdr.back;
2337                 tmphdr.firstused = state->args->geo->blksize;
2338
2339                 /* write the header to the temp buffer to initialise it */
2340                 xfs_attr3_leaf_hdr_to_disk(state->args->geo, tmp_leaf, &tmphdr);
2341
2342                 if (xfs_attr3_leaf_order(save_blk->bp, &savehdr,
2343                                          drop_blk->bp, &drophdr)) {
2344                         xfs_attr3_leaf_moveents(state->args,
2345                                                 drop_leaf, &drophdr, 0,
2346                                                 tmp_leaf, &tmphdr, 0,
2347                                                 drophdr.count);
2348                         xfs_attr3_leaf_moveents(state->args,
2349                                                 save_leaf, &savehdr, 0,
2350                                                 tmp_leaf, &tmphdr, tmphdr.count,
2351                                                 savehdr.count);
2352                 } else {
2353                         xfs_attr3_leaf_moveents(state->args,
2354                                                 save_leaf, &savehdr, 0,
2355                                                 tmp_leaf, &tmphdr, 0,
2356                                                 savehdr.count);
2357                         xfs_attr3_leaf_moveents(state->args,
2358                                                 drop_leaf, &drophdr, 0,
2359                                                 tmp_leaf, &tmphdr, tmphdr.count,
2360                                                 drophdr.count);
2361                 }
2362                 memcpy(save_leaf, tmp_leaf, state->args->geo->blksize);
2363                 savehdr = tmphdr; /* struct copy */
2364                 kmem_free(tmp_leaf);
2365         }
2366
2367         xfs_attr3_leaf_hdr_to_disk(state->args->geo, save_leaf, &savehdr);
2368         xfs_trans_log_buf(state->args->trans, save_blk->bp, 0,
2369                                            state->args->geo->blksize - 1);
2370
2371         /*
2372          * Copy out last hashval in each block for B-tree code.
2373          */
2374         entry = xfs_attr3_leaf_entryp(save_leaf);
2375         save_blk->hashval = be32_to_cpu(entry[savehdr.count - 1].hashval);
2376 }
2377
2378 /*========================================================================
2379  * Routines used for finding things in the Btree.
2380  *========================================================================*/
2381
2382 /*
2383  * Look up a name in a leaf attribute list structure.
2384  * This is the internal routine, it uses the caller's buffer.
2385  *
2386  * Note that duplicate keys are allowed, but only check within the
2387  * current leaf node.  The Btree code must check in adjacent leaf nodes.
2388  *
2389  * Return in args->index the index into the entry[] array of either
2390  * the found entry, or where the entry should have been (insert before
2391  * that entry).
2392  *
2393  * Don't change the args->value unless we find the attribute.
2394  */
2395 int
2396 xfs_attr3_leaf_lookup_int(
2397         struct xfs_buf          *bp,
2398         struct xfs_da_args      *args)
2399 {
2400         struct xfs_attr_leafblock *leaf;
2401         struct xfs_attr3_icleaf_hdr ichdr;
2402         struct xfs_attr_leaf_entry *entry;
2403         struct xfs_attr_leaf_entry *entries;
2404         struct xfs_attr_leaf_name_local *name_loc;
2405         struct xfs_attr_leaf_name_remote *name_rmt;
2406         xfs_dahash_t            hashval;
2407         int                     probe;
2408         int                     span;
2409
2410         trace_xfs_attr_leaf_lookup(args);
2411
2412         leaf = bp->b_addr;
2413         xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf);
2414         entries = xfs_attr3_leaf_entryp(leaf);
2415         if (ichdr.count >= args->geo->blksize / 8) {
2416                 xfs_buf_mark_corrupt(bp);
2417                 return -EFSCORRUPTED;
2418         }
2419
2420         /*
2421          * Binary search.  (note: small blocks will skip this loop)
2422          */
2423         hashval = args->hashval;
2424         probe = span = ichdr.count / 2;
2425         for (entry = &entries[probe]; span > 4; entry = &entries[probe]) {
2426                 span /= 2;
2427                 if (be32_to_cpu(entry->hashval) < hashval)
2428                         probe += span;
2429                 else if (be32_to_cpu(entry->hashval) > hashval)
2430                         probe -= span;
2431                 else
2432                         break;
2433         }
2434         if (!(probe >= 0 && (!ichdr.count || probe < ichdr.count))) {
2435                 xfs_buf_mark_corrupt(bp);
2436                 return -EFSCORRUPTED;
2437         }
2438         if (!(span <= 4 || be32_to_cpu(entry->hashval) == hashval)) {
2439                 xfs_buf_mark_corrupt(bp);
2440                 return -EFSCORRUPTED;
2441         }
2442
2443         /*
2444          * Since we may have duplicate hashval's, find the first matching
2445          * hashval in the leaf.
2446          */
2447         while (probe > 0 && be32_to_cpu(entry->hashval) >= hashval) {
2448                 entry--;
2449                 probe--;
2450         }
2451         while (probe < ichdr.count &&
2452                be32_to_cpu(entry->hashval) < hashval) {
2453                 entry++;
2454                 probe++;
2455         }
2456         if (probe == ichdr.count || be32_to_cpu(entry->hashval) != hashval) {
2457                 args->index = probe;
2458                 return -ENOATTR;
2459         }
2460
2461         /*
2462          * Duplicate keys may be present, so search all of them for a match.
2463          */
2464         for (; probe < ichdr.count && (be32_to_cpu(entry->hashval) == hashval);
2465                         entry++, probe++) {
2466 /*
2467  * GROT: Add code to remove incomplete entries.
2468  */
2469                 if (entry->flags & XFS_ATTR_LOCAL) {
2470                         name_loc = xfs_attr3_leaf_name_local(leaf, probe);
2471                         if (!xfs_attr_match(args, name_loc->namelen,
2472                                         name_loc->nameval, entry->flags))
2473                                 continue;
2474                         args->index = probe;
2475                         return -EEXIST;
2476                 } else {
2477                         name_rmt = xfs_attr3_leaf_name_remote(leaf, probe);
2478                         if (!xfs_attr_match(args, name_rmt->namelen,
2479                                         name_rmt->name, entry->flags))
2480                                 continue;
2481                         args->index = probe;
2482                         args->rmtvaluelen = be32_to_cpu(name_rmt->valuelen);
2483                         args->rmtblkno = be32_to_cpu(name_rmt->valueblk);
2484                         args->rmtblkcnt = xfs_attr3_rmt_blocks(
2485                                                         args->dp->i_mount,
2486                                                         args->rmtvaluelen);
2487                         return -EEXIST;
2488                 }
2489         }
2490         args->index = probe;
2491         return -ENOATTR;
2492 }
2493
2494 /*
2495  * Get the value associated with an attribute name from a leaf attribute
2496  * list structure.
2497  *
2498  * If args->valuelen is zero, only the length needs to be returned.  Unlike a
2499  * lookup, we only return an error if the attribute does not exist or we can't
2500  * retrieve the value.
2501  */
2502 int
2503 xfs_attr3_leaf_getvalue(
2504         struct xfs_buf          *bp,
2505         struct xfs_da_args      *args)
2506 {
2507         struct xfs_attr_leafblock *leaf;
2508         struct xfs_attr3_icleaf_hdr ichdr;
2509         struct xfs_attr_leaf_entry *entry;
2510         struct xfs_attr_leaf_name_local *name_loc;
2511         struct xfs_attr_leaf_name_remote *name_rmt;
2512
2513         leaf = bp->b_addr;
2514         xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf);
2515         ASSERT(ichdr.count < args->geo->blksize / 8);
2516         ASSERT(args->index < ichdr.count);
2517
2518         entry = &xfs_attr3_leaf_entryp(leaf)[args->index];
2519         if (entry->flags & XFS_ATTR_LOCAL) {
2520                 name_loc = xfs_attr3_leaf_name_local(leaf, args->index);
2521                 ASSERT(name_loc->namelen == args->namelen);
2522                 ASSERT(memcmp(args->name, name_loc->nameval, args->namelen) == 0);
2523                 return xfs_attr_copy_value(args,
2524                                         &name_loc->nameval[args->namelen],
2525                                         be16_to_cpu(name_loc->valuelen));
2526         }
2527
2528         name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index);
2529         ASSERT(name_rmt->namelen == args->namelen);
2530         ASSERT(memcmp(args->name, name_rmt->name, args->namelen) == 0);
2531         args->rmtvaluelen = be32_to_cpu(name_rmt->valuelen);
2532         args->rmtblkno = be32_to_cpu(name_rmt->valueblk);
2533         args->rmtblkcnt = xfs_attr3_rmt_blocks(args->dp->i_mount,
2534                                                args->rmtvaluelen);
2535         return xfs_attr_copy_value(args, NULL, args->rmtvaluelen);
2536 }
2537
2538 /*========================================================================
2539  * Utility routines.
2540  *========================================================================*/
2541
2542 /*
2543  * Move the indicated entries from one leaf to another.
2544  * NOTE: this routine modifies both source and destination leaves.
2545  */
2546 /*ARGSUSED*/
2547 STATIC void
2548 xfs_attr3_leaf_moveents(
2549         struct xfs_da_args              *args,
2550         struct xfs_attr_leafblock       *leaf_s,
2551         struct xfs_attr3_icleaf_hdr     *ichdr_s,
2552         int                             start_s,
2553         struct xfs_attr_leafblock       *leaf_d,
2554         struct xfs_attr3_icleaf_hdr     *ichdr_d,
2555         int                             start_d,
2556         int                             count)
2557 {
2558         struct xfs_attr_leaf_entry      *entry_s;
2559         struct xfs_attr_leaf_entry      *entry_d;
2560         int                             desti;
2561         int                             tmp;
2562         int                             i;
2563
2564         /*
2565          * Check for nothing to do.
2566          */
2567         if (count == 0)
2568                 return;
2569
2570         /*
2571          * Set up environment.
2572          */
2573         ASSERT(ichdr_s->magic == XFS_ATTR_LEAF_MAGIC ||
2574                ichdr_s->magic == XFS_ATTR3_LEAF_MAGIC);
2575         ASSERT(ichdr_s->magic == ichdr_d->magic);
2576         ASSERT(ichdr_s->count > 0 && ichdr_s->count < args->geo->blksize / 8);
2577         ASSERT(ichdr_s->firstused >= (ichdr_s->count * sizeof(*entry_s))
2578                                         + xfs_attr3_leaf_hdr_size(leaf_s));
2579         ASSERT(ichdr_d->count < args->geo->blksize / 8);
2580         ASSERT(ichdr_d->firstused >= (ichdr_d->count * sizeof(*entry_d))
2581                                         + xfs_attr3_leaf_hdr_size(leaf_d));
2582
2583         ASSERT(start_s < ichdr_s->count);
2584         ASSERT(start_d <= ichdr_d->count);
2585         ASSERT(count <= ichdr_s->count);
2586
2587
2588         /*
2589          * Move the entries in the destination leaf up to make a hole?
2590          */
2591         if (start_d < ichdr_d->count) {
2592                 tmp  = ichdr_d->count - start_d;
2593                 tmp *= sizeof(xfs_attr_leaf_entry_t);
2594                 entry_s = &xfs_attr3_leaf_entryp(leaf_d)[start_d];
2595                 entry_d = &xfs_attr3_leaf_entryp(leaf_d)[start_d + count];
2596                 memmove(entry_d, entry_s, tmp);
2597         }
2598
2599         /*
2600          * Copy all entry's in the same (sorted) order,
2601          * but allocate attribute info packed and in sequence.
2602          */
2603         entry_s = &xfs_attr3_leaf_entryp(leaf_s)[start_s];
2604         entry_d = &xfs_attr3_leaf_entryp(leaf_d)[start_d];
2605         desti = start_d;
2606         for (i = 0; i < count; entry_s++, entry_d++, desti++, i++) {
2607                 ASSERT(be16_to_cpu(entry_s->nameidx) >= ichdr_s->firstused);
2608                 tmp = xfs_attr_leaf_entsize(leaf_s, start_s + i);
2609 #ifdef GROT
2610                 /*
2611                  * Code to drop INCOMPLETE entries.  Difficult to use as we
2612                  * may also need to change the insertion index.  Code turned
2613                  * off for 6.2, should be revisited later.
2614                  */
2615                 if (entry_s->flags & XFS_ATTR_INCOMPLETE) { /* skip partials? */
2616                         memset(xfs_attr3_leaf_name(leaf_s, start_s + i), 0, tmp);
2617                         ichdr_s->usedbytes -= tmp;
2618                         ichdr_s->count -= 1;
2619                         entry_d--;      /* to compensate for ++ in loop hdr */
2620                         desti--;
2621                         if ((start_s + i) < offset)
2622                                 result++;       /* insertion index adjustment */
2623                 } else {
2624 #endif /* GROT */
2625                         ichdr_d->firstused -= tmp;
2626                         /* both on-disk, don't endian flip twice */
2627                         entry_d->hashval = entry_s->hashval;
2628                         entry_d->nameidx = cpu_to_be16(ichdr_d->firstused);
2629                         entry_d->flags = entry_s->flags;
2630                         ASSERT(be16_to_cpu(entry_d->nameidx) + tmp
2631                                                         <= args->geo->blksize);
2632                         memmove(xfs_attr3_leaf_name(leaf_d, desti),
2633                                 xfs_attr3_leaf_name(leaf_s, start_s + i), tmp);
2634                         ASSERT(be16_to_cpu(entry_s->nameidx) + tmp
2635                                                         <= args->geo->blksize);
2636                         memset(xfs_attr3_leaf_name(leaf_s, start_s + i), 0, tmp);
2637                         ichdr_s->usedbytes -= tmp;
2638                         ichdr_d->usedbytes += tmp;
2639                         ichdr_s->count -= 1;
2640                         ichdr_d->count += 1;
2641                         tmp = ichdr_d->count * sizeof(xfs_attr_leaf_entry_t)
2642                                         + xfs_attr3_leaf_hdr_size(leaf_d);
2643                         ASSERT(ichdr_d->firstused >= tmp);
2644 #ifdef GROT
2645                 }
2646 #endif /* GROT */
2647         }
2648
2649         /*
2650          * Zero out the entries we just copied.
2651          */
2652         if (start_s == ichdr_s->count) {
2653                 tmp = count * sizeof(xfs_attr_leaf_entry_t);
2654                 entry_s = &xfs_attr3_leaf_entryp(leaf_s)[start_s];
2655                 ASSERT(((char *)entry_s + tmp) <=
2656                        ((char *)leaf_s + args->geo->blksize));
2657                 memset(entry_s, 0, tmp);
2658         } else {
2659                 /*
2660                  * Move the remaining entries down to fill the hole,
2661                  * then zero the entries at the top.
2662                  */
2663                 tmp  = (ichdr_s->count - count) * sizeof(xfs_attr_leaf_entry_t);
2664                 entry_s = &xfs_attr3_leaf_entryp(leaf_s)[start_s + count];
2665                 entry_d = &xfs_attr3_leaf_entryp(leaf_s)[start_s];
2666                 memmove(entry_d, entry_s, tmp);
2667
2668                 tmp = count * sizeof(xfs_attr_leaf_entry_t);
2669                 entry_s = &xfs_attr3_leaf_entryp(leaf_s)[ichdr_s->count];
2670                 ASSERT(((char *)entry_s + tmp) <=
2671                        ((char *)leaf_s + args->geo->blksize));
2672                 memset(entry_s, 0, tmp);
2673         }
2674
2675         /*
2676          * Fill in the freemap information
2677          */
2678         ichdr_d->freemap[0].base = xfs_attr3_leaf_hdr_size(leaf_d);
2679         ichdr_d->freemap[0].base += ichdr_d->count * sizeof(xfs_attr_leaf_entry_t);
2680         ichdr_d->freemap[0].size = ichdr_d->firstused - ichdr_d->freemap[0].base;
2681         ichdr_d->freemap[1].base = 0;
2682         ichdr_d->freemap[2].base = 0;
2683         ichdr_d->freemap[1].size = 0;
2684         ichdr_d->freemap[2].size = 0;
2685         ichdr_s->holes = 1;     /* leaf may not be compact */
2686 }
2687
2688 /*
2689  * Pick up the last hashvalue from a leaf block.
2690  */
2691 xfs_dahash_t
2692 xfs_attr_leaf_lasthash(
2693         struct xfs_buf  *bp,
2694         int             *count)
2695 {
2696         struct xfs_attr3_icleaf_hdr ichdr;
2697         struct xfs_attr_leaf_entry *entries;
2698         struct xfs_mount *mp = bp->b_mount;
2699
2700         xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo, &ichdr, bp->b_addr);
2701         entries = xfs_attr3_leaf_entryp(bp->b_addr);
2702         if (count)
2703                 *count = ichdr.count;
2704         if (!ichdr.count)
2705                 return 0;
2706         return be32_to_cpu(entries[ichdr.count - 1].hashval);
2707 }
2708
2709 /*
2710  * Calculate the number of bytes used to store the indicated attribute
2711  * (whether local or remote only calculate bytes in this block).
2712  */
2713 STATIC int
2714 xfs_attr_leaf_entsize(xfs_attr_leafblock_t *leaf, int index)
2715 {
2716         struct xfs_attr_leaf_entry *entries;
2717         xfs_attr_leaf_name_local_t *name_loc;
2718         xfs_attr_leaf_name_remote_t *name_rmt;
2719         int size;
2720
2721         entries = xfs_attr3_leaf_entryp(leaf);
2722         if (entries[index].flags & XFS_ATTR_LOCAL) {
2723                 name_loc = xfs_attr3_leaf_name_local(leaf, index);
2724                 size = xfs_attr_leaf_entsize_local(name_loc->namelen,
2725                                                    be16_to_cpu(name_loc->valuelen));
2726         } else {
2727                 name_rmt = xfs_attr3_leaf_name_remote(leaf, index);
2728                 size = xfs_attr_leaf_entsize_remote(name_rmt->namelen);
2729         }
2730         return size;
2731 }
2732
2733 /*
2734  * Calculate the number of bytes that would be required to store the new
2735  * attribute (whether local or remote only calculate bytes in this block).
2736  * This routine decides as a side effect whether the attribute will be
2737  * a "local" or a "remote" attribute.
2738  */
2739 int
2740 xfs_attr_leaf_newentsize(
2741         struct xfs_da_args      *args,
2742         int                     *local)
2743 {
2744         int                     size;
2745
2746         size = xfs_attr_leaf_entsize_local(args->namelen, args->valuelen);
2747         if (size < xfs_attr_leaf_entsize_local_max(args->geo->blksize)) {
2748                 if (local)
2749                         *local = 1;
2750                 return size;
2751         }
2752         if (local)
2753                 *local = 0;
2754         return xfs_attr_leaf_entsize_remote(args->namelen);
2755 }
2756
2757
2758 /*========================================================================
2759  * Manage the INCOMPLETE flag in a leaf entry
2760  *========================================================================*/
2761
2762 /*
2763  * Clear the INCOMPLETE flag on an entry in a leaf block.
2764  */
2765 int
2766 xfs_attr3_leaf_clearflag(
2767         struct xfs_da_args      *args)
2768 {
2769         struct xfs_attr_leafblock *leaf;
2770         struct xfs_attr_leaf_entry *entry;
2771         struct xfs_attr_leaf_name_remote *name_rmt;
2772         struct xfs_buf          *bp;
2773         int                     error;
2774 #ifdef DEBUG
2775         struct xfs_attr3_icleaf_hdr ichdr;
2776         xfs_attr_leaf_name_local_t *name_loc;
2777         int namelen;
2778         char *name;
2779 #endif /* DEBUG */
2780
2781         trace_xfs_attr_leaf_clearflag(args);
2782         /*
2783          * Set up the operation.
2784          */
2785         error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, &bp);
2786         if (error)
2787                 return error;
2788
2789         leaf = bp->b_addr;
2790         entry = &xfs_attr3_leaf_entryp(leaf)[args->index];
2791         ASSERT(entry->flags & XFS_ATTR_INCOMPLETE);
2792
2793 #ifdef DEBUG
2794         xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf);
2795         ASSERT(args->index < ichdr.count);
2796         ASSERT(args->index >= 0);
2797
2798         if (entry->flags & XFS_ATTR_LOCAL) {
2799                 name_loc = xfs_attr3_leaf_name_local(leaf, args->index);
2800                 namelen = name_loc->namelen;
2801                 name = (char *)name_loc->nameval;
2802         } else {
2803                 name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index);
2804                 namelen = name_rmt->namelen;
2805                 name = (char *)name_rmt->name;
2806         }
2807         ASSERT(be32_to_cpu(entry->hashval) == args->hashval);
2808         ASSERT(namelen == args->namelen);
2809         ASSERT(memcmp(name, args->name, namelen) == 0);
2810 #endif /* DEBUG */
2811
2812         entry->flags &= ~XFS_ATTR_INCOMPLETE;
2813         xfs_trans_log_buf(args->trans, bp,
2814                          XFS_DA_LOGRANGE(leaf, entry, sizeof(*entry)));
2815
2816         if (args->rmtblkno) {
2817                 ASSERT((entry->flags & XFS_ATTR_LOCAL) == 0);
2818                 name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index);
2819                 name_rmt->valueblk = cpu_to_be32(args->rmtblkno);
2820                 name_rmt->valuelen = cpu_to_be32(args->rmtvaluelen);
2821                 xfs_trans_log_buf(args->trans, bp,
2822                          XFS_DA_LOGRANGE(leaf, name_rmt, sizeof(*name_rmt)));
2823         }
2824
2825         return 0;
2826 }
2827
2828 /*
2829  * Set the INCOMPLETE flag on an entry in a leaf block.
2830  */
2831 int
2832 xfs_attr3_leaf_setflag(
2833         struct xfs_da_args      *args)
2834 {
2835         struct xfs_attr_leafblock *leaf;
2836         struct xfs_attr_leaf_entry *entry;
2837         struct xfs_attr_leaf_name_remote *name_rmt;
2838         struct xfs_buf          *bp;
2839         int error;
2840 #ifdef DEBUG
2841         struct xfs_attr3_icleaf_hdr ichdr;
2842 #endif
2843
2844         trace_xfs_attr_leaf_setflag(args);
2845
2846         /*
2847          * Set up the operation.
2848          */
2849         error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, &bp);
2850         if (error)
2851                 return error;
2852
2853         leaf = bp->b_addr;
2854 #ifdef DEBUG
2855         xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf);
2856         ASSERT(args->index < ichdr.count);
2857         ASSERT(args->index >= 0);
2858 #endif
2859         entry = &xfs_attr3_leaf_entryp(leaf)[args->index];
2860
2861         ASSERT((entry->flags & XFS_ATTR_INCOMPLETE) == 0);
2862         entry->flags |= XFS_ATTR_INCOMPLETE;
2863         xfs_trans_log_buf(args->trans, bp,
2864                         XFS_DA_LOGRANGE(leaf, entry, sizeof(*entry)));
2865         if ((entry->flags & XFS_ATTR_LOCAL) == 0) {
2866                 name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index);
2867                 name_rmt->valueblk = 0;
2868                 name_rmt->valuelen = 0;
2869                 xfs_trans_log_buf(args->trans, bp,
2870                          XFS_DA_LOGRANGE(leaf, name_rmt, sizeof(*name_rmt)));
2871         }
2872
2873         return 0;
2874 }
2875
2876 /*
2877  * In a single transaction, clear the INCOMPLETE flag on the leaf entry
2878  * given by args->blkno/index and set the INCOMPLETE flag on the leaf
2879  * entry given by args->blkno2/index2.
2880  *
2881  * Note that they could be in different blocks, or in the same block.
2882  */
2883 int
2884 xfs_attr3_leaf_flipflags(
2885         struct xfs_da_args      *args)
2886 {
2887         struct xfs_attr_leafblock *leaf1;
2888         struct xfs_attr_leafblock *leaf2;
2889         struct xfs_attr_leaf_entry *entry1;
2890         struct xfs_attr_leaf_entry *entry2;
2891         struct xfs_attr_leaf_name_remote *name_rmt;
2892         struct xfs_buf          *bp1;
2893         struct xfs_buf          *bp2;
2894         int error;
2895 #ifdef DEBUG
2896         struct xfs_attr3_icleaf_hdr ichdr1;
2897         struct xfs_attr3_icleaf_hdr ichdr2;
2898         xfs_attr_leaf_name_local_t *name_loc;
2899         int namelen1, namelen2;
2900         char *name1, *name2;
2901 #endif /* DEBUG */
2902
2903         trace_xfs_attr_leaf_flipflags(args);
2904
2905         /*
2906          * Read the block containing the "old" attr
2907          */
2908         error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, &bp1);
2909         if (error)
2910                 return error;
2911
2912         /*
2913          * Read the block containing the "new" attr, if it is different
2914          */
2915         if (args->blkno2 != args->blkno) {
2916                 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno2,
2917                                            &bp2);
2918                 if (error)
2919                         return error;
2920         } else {
2921                 bp2 = bp1;
2922         }
2923
2924         leaf1 = bp1->b_addr;
2925         entry1 = &xfs_attr3_leaf_entryp(leaf1)[args->index];
2926
2927         leaf2 = bp2->b_addr;
2928         entry2 = &xfs_attr3_leaf_entryp(leaf2)[args->index2];
2929
2930 #ifdef DEBUG
2931         xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr1, leaf1);
2932         ASSERT(args->index < ichdr1.count);
2933         ASSERT(args->index >= 0);
2934
2935         xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr2, leaf2);
2936         ASSERT(args->index2 < ichdr2.count);
2937         ASSERT(args->index2 >= 0);
2938
2939         if (entry1->flags & XFS_ATTR_LOCAL) {
2940                 name_loc = xfs_attr3_leaf_name_local(leaf1, args->index);
2941                 namelen1 = name_loc->namelen;
2942                 name1 = (char *)name_loc->nameval;
2943         } else {
2944                 name_rmt = xfs_attr3_leaf_name_remote(leaf1, args->index);
2945                 namelen1 = name_rmt->namelen;
2946                 name1 = (char *)name_rmt->name;
2947         }
2948         if (entry2->flags & XFS_ATTR_LOCAL) {
2949                 name_loc = xfs_attr3_leaf_name_local(leaf2, args->index2);
2950                 namelen2 = name_loc->namelen;
2951                 name2 = (char *)name_loc->nameval;
2952         } else {
2953                 name_rmt = xfs_attr3_leaf_name_remote(leaf2, args->index2);
2954                 namelen2 = name_rmt->namelen;
2955                 name2 = (char *)name_rmt->name;
2956         }
2957         ASSERT(be32_to_cpu(entry1->hashval) == be32_to_cpu(entry2->hashval));
2958         ASSERT(namelen1 == namelen2);
2959         ASSERT(memcmp(name1, name2, namelen1) == 0);
2960 #endif /* DEBUG */
2961
2962         ASSERT(entry1->flags & XFS_ATTR_INCOMPLETE);
2963         ASSERT((entry2->flags & XFS_ATTR_INCOMPLETE) == 0);
2964
2965         entry1->flags &= ~XFS_ATTR_INCOMPLETE;
2966         xfs_trans_log_buf(args->trans, bp1,
2967                           XFS_DA_LOGRANGE(leaf1, entry1, sizeof(*entry1)));
2968         if (args->rmtblkno) {
2969                 ASSERT((entry1->flags & XFS_ATTR_LOCAL) == 0);
2970                 name_rmt = xfs_attr3_leaf_name_remote(leaf1, args->index);
2971                 name_rmt->valueblk = cpu_to_be32(args->rmtblkno);
2972                 name_rmt->valuelen = cpu_to_be32(args->rmtvaluelen);
2973                 xfs_trans_log_buf(args->trans, bp1,
2974                          XFS_DA_LOGRANGE(leaf1, name_rmt, sizeof(*name_rmt)));
2975         }
2976
2977         entry2->flags |= XFS_ATTR_INCOMPLETE;
2978         xfs_trans_log_buf(args->trans, bp2,
2979                           XFS_DA_LOGRANGE(leaf2, entry2, sizeof(*entry2)));
2980         if ((entry2->flags & XFS_ATTR_LOCAL) == 0) {
2981                 name_rmt = xfs_attr3_leaf_name_remote(leaf2, args->index2);
2982                 name_rmt->valueblk = 0;
2983                 name_rmt->valuelen = 0;
2984                 xfs_trans_log_buf(args->trans, bp2,
2985                          XFS_DA_LOGRANGE(leaf2, name_rmt, sizeof(*name_rmt)));
2986         }
2987
2988         return 0;
2989 }