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