0001
0002
0003
0004
0005
0006
0007 #include "xfs.h"
0008 #include "xfs_fs.h"
0009 #include "xfs_shared.h"
0010 #include "xfs_format.h"
0011 #include "xfs_log_format.h"
0012 #include "xfs_trans_resv.h"
0013 #include "xfs_sb.h"
0014 #include "xfs_mount.h"
0015 #include "xfs_da_format.h"
0016 #include "xfs_da_btree.h"
0017 #include "xfs_inode.h"
0018 #include "xfs_trans.h"
0019 #include "xfs_bmap_btree.h"
0020 #include "xfs_bmap.h"
0021 #include "xfs_attr_sf.h"
0022 #include "xfs_attr.h"
0023 #include "xfs_attr_remote.h"
0024 #include "xfs_attr_leaf.h"
0025 #include "xfs_error.h"
0026 #include "xfs_trace.h"
0027 #include "xfs_buf_item.h"
0028 #include "xfs_dir2.h"
0029 #include "xfs_log.h"
0030 #include "xfs_ag.h"
0031 #include "xfs_errortag.h"
0032
0033
0034
0035
0036
0037
0038
0039
0040
0041
0042
0043
0044
0045
0046
0047 STATIC int xfs_attr3_leaf_create(struct xfs_da_args *args,
0048 xfs_dablk_t which_block, struct xfs_buf **bpp);
0049 STATIC int xfs_attr3_leaf_add_work(struct xfs_buf *leaf_buffer,
0050 struct xfs_attr3_icleaf_hdr *ichdr,
0051 struct xfs_da_args *args, int freemap_index);
0052 STATIC void xfs_attr3_leaf_compact(struct xfs_da_args *args,
0053 struct xfs_attr3_icleaf_hdr *ichdr,
0054 struct xfs_buf *leaf_buffer);
0055 STATIC void xfs_attr3_leaf_rebalance(xfs_da_state_t *state,
0056 xfs_da_state_blk_t *blk1,
0057 xfs_da_state_blk_t *blk2);
0058 STATIC int xfs_attr3_leaf_figure_balance(xfs_da_state_t *state,
0059 xfs_da_state_blk_t *leaf_blk_1,
0060 struct xfs_attr3_icleaf_hdr *ichdr1,
0061 xfs_da_state_blk_t *leaf_blk_2,
0062 struct xfs_attr3_icleaf_hdr *ichdr2,
0063 int *number_entries_in_blk1,
0064 int *number_usedbytes_in_blk1);
0065
0066
0067
0068
0069 STATIC void xfs_attr3_leaf_moveents(struct xfs_da_args *args,
0070 struct xfs_attr_leafblock *src_leaf,
0071 struct xfs_attr3_icleaf_hdr *src_ichdr, int src_start,
0072 struct xfs_attr_leafblock *dst_leaf,
0073 struct xfs_attr3_icleaf_hdr *dst_ichdr, int dst_start,
0074 int move_count);
0075 STATIC int xfs_attr_leaf_entsize(xfs_attr_leafblock_t *leaf, int index);
0076
0077
0078
0079
0080
0081
0082
0083
0084
0085
0086
0087
0088
0089
0090
0091
0092
0093 static void
0094 xfs_attr3_leaf_firstused_from_disk(
0095 struct xfs_da_geometry *geo,
0096 struct xfs_attr3_icleaf_hdr *to,
0097 struct xfs_attr_leafblock *from)
0098 {
0099 struct xfs_attr3_leaf_hdr *hdr3;
0100
0101 if (from->hdr.info.magic == cpu_to_be16(XFS_ATTR3_LEAF_MAGIC)) {
0102 hdr3 = (struct xfs_attr3_leaf_hdr *) from;
0103 to->firstused = be16_to_cpu(hdr3->firstused);
0104 } else {
0105 to->firstused = be16_to_cpu(from->hdr.firstused);
0106 }
0107
0108
0109
0110
0111
0112
0113 if (to->firstused == XFS_ATTR3_LEAF_NULLOFF) {
0114 ASSERT(!to->count && !to->usedbytes);
0115 ASSERT(geo->blksize > USHRT_MAX);
0116 to->firstused = geo->blksize;
0117 }
0118 }
0119
0120 static void
0121 xfs_attr3_leaf_firstused_to_disk(
0122 struct xfs_da_geometry *geo,
0123 struct xfs_attr_leafblock *to,
0124 struct xfs_attr3_icleaf_hdr *from)
0125 {
0126 struct xfs_attr3_leaf_hdr *hdr3;
0127 uint32_t firstused;
0128
0129
0130 ASSERT(from->firstused != XFS_ATTR3_LEAF_NULLOFF);
0131
0132
0133
0134
0135
0136
0137 firstused = from->firstused;
0138 if (firstused > USHRT_MAX) {
0139 ASSERT(from->firstused == geo->blksize);
0140 firstused = XFS_ATTR3_LEAF_NULLOFF;
0141 }
0142
0143 if (from->magic == XFS_ATTR3_LEAF_MAGIC) {
0144 hdr3 = (struct xfs_attr3_leaf_hdr *) to;
0145 hdr3->firstused = cpu_to_be16(firstused);
0146 } else {
0147 to->hdr.firstused = cpu_to_be16(firstused);
0148 }
0149 }
0150
0151 void
0152 xfs_attr3_leaf_hdr_from_disk(
0153 struct xfs_da_geometry *geo,
0154 struct xfs_attr3_icleaf_hdr *to,
0155 struct xfs_attr_leafblock *from)
0156 {
0157 int i;
0158
0159 ASSERT(from->hdr.info.magic == cpu_to_be16(XFS_ATTR_LEAF_MAGIC) ||
0160 from->hdr.info.magic == cpu_to_be16(XFS_ATTR3_LEAF_MAGIC));
0161
0162 if (from->hdr.info.magic == cpu_to_be16(XFS_ATTR3_LEAF_MAGIC)) {
0163 struct xfs_attr3_leaf_hdr *hdr3 = (struct xfs_attr3_leaf_hdr *)from;
0164
0165 to->forw = be32_to_cpu(hdr3->info.hdr.forw);
0166 to->back = be32_to_cpu(hdr3->info.hdr.back);
0167 to->magic = be16_to_cpu(hdr3->info.hdr.magic);
0168 to->count = be16_to_cpu(hdr3->count);
0169 to->usedbytes = be16_to_cpu(hdr3->usedbytes);
0170 xfs_attr3_leaf_firstused_from_disk(geo, to, from);
0171 to->holes = hdr3->holes;
0172
0173 for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
0174 to->freemap[i].base = be16_to_cpu(hdr3->freemap[i].base);
0175 to->freemap[i].size = be16_to_cpu(hdr3->freemap[i].size);
0176 }
0177 return;
0178 }
0179 to->forw = be32_to_cpu(from->hdr.info.forw);
0180 to->back = be32_to_cpu(from->hdr.info.back);
0181 to->magic = be16_to_cpu(from->hdr.info.magic);
0182 to->count = be16_to_cpu(from->hdr.count);
0183 to->usedbytes = be16_to_cpu(from->hdr.usedbytes);
0184 xfs_attr3_leaf_firstused_from_disk(geo, to, from);
0185 to->holes = from->hdr.holes;
0186
0187 for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
0188 to->freemap[i].base = be16_to_cpu(from->hdr.freemap[i].base);
0189 to->freemap[i].size = be16_to_cpu(from->hdr.freemap[i].size);
0190 }
0191 }
0192
0193 void
0194 xfs_attr3_leaf_hdr_to_disk(
0195 struct xfs_da_geometry *geo,
0196 struct xfs_attr_leafblock *to,
0197 struct xfs_attr3_icleaf_hdr *from)
0198 {
0199 int i;
0200
0201 ASSERT(from->magic == XFS_ATTR_LEAF_MAGIC ||
0202 from->magic == XFS_ATTR3_LEAF_MAGIC);
0203
0204 if (from->magic == XFS_ATTR3_LEAF_MAGIC) {
0205 struct xfs_attr3_leaf_hdr *hdr3 = (struct xfs_attr3_leaf_hdr *)to;
0206
0207 hdr3->info.hdr.forw = cpu_to_be32(from->forw);
0208 hdr3->info.hdr.back = cpu_to_be32(from->back);
0209 hdr3->info.hdr.magic = cpu_to_be16(from->magic);
0210 hdr3->count = cpu_to_be16(from->count);
0211 hdr3->usedbytes = cpu_to_be16(from->usedbytes);
0212 xfs_attr3_leaf_firstused_to_disk(geo, to, from);
0213 hdr3->holes = from->holes;
0214 hdr3->pad1 = 0;
0215
0216 for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
0217 hdr3->freemap[i].base = cpu_to_be16(from->freemap[i].base);
0218 hdr3->freemap[i].size = cpu_to_be16(from->freemap[i].size);
0219 }
0220 return;
0221 }
0222 to->hdr.info.forw = cpu_to_be32(from->forw);
0223 to->hdr.info.back = cpu_to_be32(from->back);
0224 to->hdr.info.magic = cpu_to_be16(from->magic);
0225 to->hdr.count = cpu_to_be16(from->count);
0226 to->hdr.usedbytes = cpu_to_be16(from->usedbytes);
0227 xfs_attr3_leaf_firstused_to_disk(geo, to, from);
0228 to->hdr.holes = from->holes;
0229 to->hdr.pad1 = 0;
0230
0231 for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
0232 to->hdr.freemap[i].base = cpu_to_be16(from->freemap[i].base);
0233 to->hdr.freemap[i].size = cpu_to_be16(from->freemap[i].size);
0234 }
0235 }
0236
0237 static xfs_failaddr_t
0238 xfs_attr3_leaf_verify_entry(
0239 struct xfs_mount *mp,
0240 char *buf_end,
0241 struct xfs_attr_leafblock *leaf,
0242 struct xfs_attr3_icleaf_hdr *leafhdr,
0243 struct xfs_attr_leaf_entry *ent,
0244 int idx,
0245 __u32 *last_hashval)
0246 {
0247 struct xfs_attr_leaf_name_local *lentry;
0248 struct xfs_attr_leaf_name_remote *rentry;
0249 char *name_end;
0250 unsigned int nameidx;
0251 unsigned int namesize;
0252 __u32 hashval;
0253
0254
0255 hashval = be32_to_cpu(ent->hashval);
0256 if (hashval < *last_hashval)
0257 return __this_address;
0258 *last_hashval = hashval;
0259
0260 nameidx = be16_to_cpu(ent->nameidx);
0261 if (nameidx < leafhdr->firstused || nameidx >= mp->m_attr_geo->blksize)
0262 return __this_address;
0263
0264
0265
0266
0267
0268 if (ent->flags & XFS_ATTR_LOCAL) {
0269 lentry = xfs_attr3_leaf_name_local(leaf, idx);
0270 namesize = xfs_attr_leaf_entsize_local(lentry->namelen,
0271 be16_to_cpu(lentry->valuelen));
0272 name_end = (char *)lentry + namesize;
0273 if (lentry->namelen == 0)
0274 return __this_address;
0275 } else {
0276 rentry = xfs_attr3_leaf_name_remote(leaf, idx);
0277 namesize = xfs_attr_leaf_entsize_remote(rentry->namelen);
0278 name_end = (char *)rentry + namesize;
0279 if (rentry->namelen == 0)
0280 return __this_address;
0281 if (!(ent->flags & XFS_ATTR_INCOMPLETE) &&
0282 rentry->valueblk == 0)
0283 return __this_address;
0284 }
0285
0286 if (name_end > buf_end)
0287 return __this_address;
0288
0289 return NULL;
0290 }
0291
0292
0293
0294
0295
0296
0297
0298
0299
0300
0301
0302
0303
0304
0305
0306
0307
0308
0309 static xfs_failaddr_t
0310 xfs_attr3_leaf_verify(
0311 struct xfs_buf *bp)
0312 {
0313 struct xfs_attr3_icleaf_hdr ichdr;
0314 struct xfs_mount *mp = bp->b_mount;
0315 struct xfs_attr_leafblock *leaf = bp->b_addr;
0316 struct xfs_attr_leaf_entry *entries;
0317 struct xfs_attr_leaf_entry *ent;
0318 char *buf_end;
0319 uint32_t end;
0320 __u32 last_hashval = 0;
0321 int i;
0322 xfs_failaddr_t fa;
0323
0324 xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo, &ichdr, leaf);
0325
0326 fa = xfs_da3_blkinfo_verify(bp, bp->b_addr);
0327 if (fa)
0328 return fa;
0329
0330
0331
0332
0333
0334 if (ichdr.firstused > mp->m_attr_geo->blksize)
0335 return __this_address;
0336 if (ichdr.firstused < xfs_attr3_leaf_hdr_size(leaf))
0337 return __this_address;
0338
0339
0340 entries = xfs_attr3_leaf_entryp(bp->b_addr);
0341 if ((char *)&entries[ichdr.count] >
0342 (char *)bp->b_addr + ichdr.firstused)
0343 return __this_address;
0344
0345
0346
0347
0348
0349
0350
0351
0352 buf_end = (char *)bp->b_addr + mp->m_attr_geo->blksize;
0353 for (i = 0, ent = entries; i < ichdr.count; ent++, i++) {
0354 fa = xfs_attr3_leaf_verify_entry(mp, buf_end, leaf, &ichdr,
0355 ent, i, &last_hashval);
0356 if (fa)
0357 return fa;
0358 }
0359
0360
0361
0362
0363
0364
0365
0366
0367
0368
0369 for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
0370 if (ichdr.freemap[i].base > mp->m_attr_geo->blksize)
0371 return __this_address;
0372 if (ichdr.freemap[i].base & 0x3)
0373 return __this_address;
0374 if (ichdr.freemap[i].size > mp->m_attr_geo->blksize)
0375 return __this_address;
0376 if (ichdr.freemap[i].size & 0x3)
0377 return __this_address;
0378
0379
0380 end = (uint32_t)ichdr.freemap[i].base + ichdr.freemap[i].size;
0381 if (end < ichdr.freemap[i].base)
0382 return __this_address;
0383 if (end > mp->m_attr_geo->blksize)
0384 return __this_address;
0385 }
0386
0387 return NULL;
0388 }
0389
0390 static void
0391 xfs_attr3_leaf_write_verify(
0392 struct xfs_buf *bp)
0393 {
0394 struct xfs_mount *mp = bp->b_mount;
0395 struct xfs_buf_log_item *bip = bp->b_log_item;
0396 struct xfs_attr3_leaf_hdr *hdr3 = bp->b_addr;
0397 xfs_failaddr_t fa;
0398
0399 fa = xfs_attr3_leaf_verify(bp);
0400 if (fa) {
0401 xfs_verifier_error(bp, -EFSCORRUPTED, fa);
0402 return;
0403 }
0404
0405 if (!xfs_has_crc(mp))
0406 return;
0407
0408 if (bip)
0409 hdr3->info.lsn = cpu_to_be64(bip->bli_item.li_lsn);
0410
0411 xfs_buf_update_cksum(bp, XFS_ATTR3_LEAF_CRC_OFF);
0412 }
0413
0414
0415
0416
0417
0418
0419
0420 static void
0421 xfs_attr3_leaf_read_verify(
0422 struct xfs_buf *bp)
0423 {
0424 struct xfs_mount *mp = bp->b_mount;
0425 xfs_failaddr_t fa;
0426
0427 if (xfs_has_crc(mp) &&
0428 !xfs_buf_verify_cksum(bp, XFS_ATTR3_LEAF_CRC_OFF))
0429 xfs_verifier_error(bp, -EFSBADCRC, __this_address);
0430 else {
0431 fa = xfs_attr3_leaf_verify(bp);
0432 if (fa)
0433 xfs_verifier_error(bp, -EFSCORRUPTED, fa);
0434 }
0435 }
0436
0437 const struct xfs_buf_ops xfs_attr3_leaf_buf_ops = {
0438 .name = "xfs_attr3_leaf",
0439 .magic16 = { cpu_to_be16(XFS_ATTR_LEAF_MAGIC),
0440 cpu_to_be16(XFS_ATTR3_LEAF_MAGIC) },
0441 .verify_read = xfs_attr3_leaf_read_verify,
0442 .verify_write = xfs_attr3_leaf_write_verify,
0443 .verify_struct = xfs_attr3_leaf_verify,
0444 };
0445
0446 int
0447 xfs_attr3_leaf_read(
0448 struct xfs_trans *tp,
0449 struct xfs_inode *dp,
0450 xfs_dablk_t bno,
0451 struct xfs_buf **bpp)
0452 {
0453 int err;
0454
0455 err = xfs_da_read_buf(tp, dp, bno, 0, bpp, XFS_ATTR_FORK,
0456 &xfs_attr3_leaf_buf_ops);
0457 if (!err && tp && *bpp)
0458 xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_ATTR_LEAF_BUF);
0459 return err;
0460 }
0461
0462
0463
0464
0465
0466
0467
0468
0469
0470
0471
0472
0473
0474 static bool
0475 xfs_attr_match(
0476 struct xfs_da_args *args,
0477 uint8_t namelen,
0478 unsigned char *name,
0479 int flags)
0480 {
0481
0482 if (args->namelen != namelen)
0483 return false;
0484 if (memcmp(args->name, name, namelen) != 0)
0485 return false;
0486
0487
0488 if ((args->op_flags & XFS_DA_OP_RECOVERY) &&
0489 args->attr_filter == (flags & XFS_ATTR_NSP_ONDISK_MASK))
0490 return true;
0491
0492
0493 if (args->attr_filter !=
0494 (flags & (XFS_ATTR_NSP_ONDISK_MASK | XFS_ATTR_INCOMPLETE)))
0495 return false;
0496 return true;
0497 }
0498
0499 static int
0500 xfs_attr_copy_value(
0501 struct xfs_da_args *args,
0502 unsigned char *value,
0503 int valuelen)
0504 {
0505
0506
0507
0508 if (!args->valuelen) {
0509 args->valuelen = valuelen;
0510 return 0;
0511 }
0512
0513
0514
0515
0516 if (args->valuelen < valuelen) {
0517 args->valuelen = valuelen;
0518 return -ERANGE;
0519 }
0520
0521 if (!args->value) {
0522 args->value = kvmalloc(valuelen, GFP_KERNEL | __GFP_NOLOCKDEP);
0523 if (!args->value)
0524 return -ENOMEM;
0525 }
0526 args->valuelen = valuelen;
0527
0528
0529 if (args->rmtblkno)
0530 return xfs_attr_rmtval_get(args);
0531
0532
0533
0534
0535
0536
0537
0538 if (!value)
0539 return -EINVAL;
0540 memcpy(args->value, value, valuelen);
0541 return 0;
0542 }
0543
0544
0545
0546
0547
0548
0549
0550
0551
0552
0553
0554
0555
0556
0557
0558 int
0559 xfs_attr_shortform_bytesfit(
0560 struct xfs_inode *dp,
0561 int bytes)
0562 {
0563 struct xfs_mount *mp = dp->i_mount;
0564 int64_t dsize;
0565 int minforkoff;
0566 int maxforkoff;
0567 int offset;
0568
0569
0570
0571
0572 if (bytes > XFS_LITINO(mp))
0573 return 0;
0574
0575
0576 offset = (XFS_LITINO(mp) - bytes) >> 3;
0577
0578 if (dp->i_df.if_format == XFS_DINODE_FMT_DEV) {
0579 minforkoff = roundup(sizeof(xfs_dev_t), 8) >> 3;
0580 return (offset >= minforkoff) ? minforkoff : 0;
0581 }
0582
0583
0584
0585
0586
0587
0588
0589
0590
0591
0592
0593 if (bytes <= xfs_inode_attr_fork_size(dp))
0594 return dp->i_forkoff;
0595
0596
0597
0598
0599
0600
0601 if (!xfs_has_attr2(mp))
0602 return 0;
0603
0604 dsize = dp->i_df.if_bytes;
0605
0606 switch (dp->i_df.if_format) {
0607 case XFS_DINODE_FMT_EXTENTS:
0608
0609
0610
0611
0612
0613
0614
0615 if (!dp->i_forkoff && dp->i_df.if_bytes >
0616 xfs_default_attroffset(dp))
0617 dsize = XFS_BMDR_SPACE_CALC(MINDBTPTRS);
0618 break;
0619 case XFS_DINODE_FMT_BTREE:
0620
0621
0622
0623
0624
0625
0626 if (dp->i_forkoff) {
0627 if (offset < dp->i_forkoff)
0628 return 0;
0629 return dp->i_forkoff;
0630 }
0631 dsize = XFS_BMAP_BROOT_SPACE(mp, dp->i_df.if_broot);
0632 break;
0633 }
0634
0635
0636
0637
0638
0639 minforkoff = max_t(int64_t, dsize, XFS_BMDR_SPACE_CALC(MINDBTPTRS));
0640 minforkoff = roundup(minforkoff, 8) >> 3;
0641
0642
0643 maxforkoff = XFS_LITINO(mp) - XFS_BMDR_SPACE_CALC(MINABTPTRS);
0644 maxforkoff = maxforkoff >> 3;
0645
0646 if (offset >= maxforkoff)
0647 return maxforkoff;
0648 if (offset >= minforkoff)
0649 return offset;
0650 return 0;
0651 }
0652
0653
0654
0655
0656
0657
0658
0659 STATIC void
0660 xfs_sbversion_add_attr2(
0661 struct xfs_mount *mp,
0662 struct xfs_trans *tp)
0663 {
0664 if (xfs_has_noattr2(mp))
0665 return;
0666 if (mp->m_sb.sb_features2 & XFS_SB_VERSION2_ATTR2BIT)
0667 return;
0668 if (!xfs_has_attr2(mp))
0669 return;
0670
0671 spin_lock(&mp->m_sb_lock);
0672 xfs_add_attr2(mp);
0673 spin_unlock(&mp->m_sb_lock);
0674 xfs_log_sb(tp);
0675 }
0676
0677
0678
0679
0680 void
0681 xfs_attr_shortform_create(
0682 struct xfs_da_args *args)
0683 {
0684 struct xfs_inode *dp = args->dp;
0685 struct xfs_ifork *ifp = &dp->i_af;
0686 struct xfs_attr_sf_hdr *hdr;
0687
0688 trace_xfs_attr_sf_create(args);
0689
0690 ASSERT(ifp->if_bytes == 0);
0691 if (ifp->if_format == XFS_DINODE_FMT_EXTENTS)
0692 ifp->if_format = XFS_DINODE_FMT_LOCAL;
0693 xfs_idata_realloc(dp, sizeof(*hdr), XFS_ATTR_FORK);
0694 hdr = (struct xfs_attr_sf_hdr *)ifp->if_u1.if_data;
0695 memset(hdr, 0, sizeof(*hdr));
0696 hdr->totsize = cpu_to_be16(sizeof(*hdr));
0697 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE | XFS_ILOG_ADATA);
0698 }
0699
0700
0701
0702
0703
0704
0705
0706
0707
0708
0709 int
0710 xfs_attr_sf_findname(
0711 struct xfs_da_args *args,
0712 struct xfs_attr_sf_entry **sfep,
0713 unsigned int *basep)
0714 {
0715 struct xfs_attr_shortform *sf;
0716 struct xfs_attr_sf_entry *sfe;
0717 unsigned int base = sizeof(struct xfs_attr_sf_hdr);
0718 int size = 0;
0719 int end;
0720 int i;
0721
0722 sf = (struct xfs_attr_shortform *)args->dp->i_af.if_u1.if_data;
0723 sfe = &sf->list[0];
0724 end = sf->hdr.count;
0725 for (i = 0; i < end; sfe = xfs_attr_sf_nextentry(sfe),
0726 base += size, i++) {
0727 size = xfs_attr_sf_entsize(sfe);
0728 if (!xfs_attr_match(args, sfe->namelen, sfe->nameval,
0729 sfe->flags))
0730 continue;
0731 break;
0732 }
0733
0734 if (sfep != NULL)
0735 *sfep = sfe;
0736
0737 if (basep != NULL)
0738 *basep = base;
0739
0740 if (i == end)
0741 return -ENOATTR;
0742 return -EEXIST;
0743 }
0744
0745
0746
0747
0748
0749 void
0750 xfs_attr_shortform_add(
0751 struct xfs_da_args *args,
0752 int forkoff)
0753 {
0754 struct xfs_attr_shortform *sf;
0755 struct xfs_attr_sf_entry *sfe;
0756 int offset, size;
0757 struct xfs_mount *mp;
0758 struct xfs_inode *dp;
0759 struct xfs_ifork *ifp;
0760
0761 trace_xfs_attr_sf_add(args);
0762
0763 dp = args->dp;
0764 mp = dp->i_mount;
0765 dp->i_forkoff = forkoff;
0766
0767 ifp = &dp->i_af;
0768 ASSERT(ifp->if_format == XFS_DINODE_FMT_LOCAL);
0769 sf = (struct xfs_attr_shortform *)ifp->if_u1.if_data;
0770 if (xfs_attr_sf_findname(args, &sfe, NULL) == -EEXIST)
0771 ASSERT(0);
0772
0773 offset = (char *)sfe - (char *)sf;
0774 size = xfs_attr_sf_entsize_byname(args->namelen, args->valuelen);
0775 xfs_idata_realloc(dp, size, XFS_ATTR_FORK);
0776 sf = (struct xfs_attr_shortform *)ifp->if_u1.if_data;
0777 sfe = (struct xfs_attr_sf_entry *)((char *)sf + offset);
0778
0779 sfe->namelen = args->namelen;
0780 sfe->valuelen = args->valuelen;
0781 sfe->flags = args->attr_filter;
0782 memcpy(sfe->nameval, args->name, args->namelen);
0783 memcpy(&sfe->nameval[args->namelen], args->value, args->valuelen);
0784 sf->hdr.count++;
0785 be16_add_cpu(&sf->hdr.totsize, size);
0786 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE | XFS_ILOG_ADATA);
0787
0788 xfs_sbversion_add_attr2(mp, args->trans);
0789 }
0790
0791
0792
0793
0794
0795 void
0796 xfs_attr_fork_remove(
0797 struct xfs_inode *ip,
0798 struct xfs_trans *tp)
0799 {
0800 ASSERT(ip->i_af.if_nextents == 0);
0801
0802 xfs_ifork_zap_attr(ip);
0803 ip->i_forkoff = 0;
0804 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
0805 }
0806
0807
0808
0809
0810 int
0811 xfs_attr_sf_removename(
0812 struct xfs_da_args *args)
0813 {
0814 struct xfs_attr_shortform *sf;
0815 struct xfs_attr_sf_entry *sfe;
0816 int size = 0, end, totsize;
0817 unsigned int base;
0818 struct xfs_mount *mp;
0819 struct xfs_inode *dp;
0820 int error;
0821
0822 trace_xfs_attr_sf_remove(args);
0823
0824 dp = args->dp;
0825 mp = dp->i_mount;
0826 sf = (struct xfs_attr_shortform *)dp->i_af.if_u1.if_data;
0827
0828 error = xfs_attr_sf_findname(args, &sfe, &base);
0829
0830
0831
0832
0833
0834
0835 if (error == -ENOATTR && (args->op_flags & XFS_DA_OP_RECOVERY))
0836 return 0;
0837 if (error != -EEXIST)
0838 return error;
0839 size = xfs_attr_sf_entsize(sfe);
0840
0841
0842
0843
0844 end = base + size;
0845 totsize = be16_to_cpu(sf->hdr.totsize);
0846 if (end != totsize)
0847 memmove(&((char *)sf)[base], &((char *)sf)[end], totsize - end);
0848 sf->hdr.count--;
0849 be16_add_cpu(&sf->hdr.totsize, -size);
0850
0851
0852
0853
0854 totsize -= size;
0855 if (totsize == sizeof(xfs_attr_sf_hdr_t) && xfs_has_attr2(mp) &&
0856 (dp->i_df.if_format != XFS_DINODE_FMT_BTREE) &&
0857 !(args->op_flags & (XFS_DA_OP_ADDNAME | XFS_DA_OP_REPLACE))) {
0858 xfs_attr_fork_remove(dp, args->trans);
0859 } else {
0860 xfs_idata_realloc(dp, -size, XFS_ATTR_FORK);
0861 dp->i_forkoff = xfs_attr_shortform_bytesfit(dp, totsize);
0862 ASSERT(dp->i_forkoff);
0863 ASSERT(totsize > sizeof(xfs_attr_sf_hdr_t) ||
0864 (args->op_flags & XFS_DA_OP_ADDNAME) ||
0865 !xfs_has_attr2(mp) ||
0866 dp->i_df.if_format == XFS_DINODE_FMT_BTREE);
0867 xfs_trans_log_inode(args->trans, dp,
0868 XFS_ILOG_CORE | XFS_ILOG_ADATA);
0869 }
0870
0871 xfs_sbversion_add_attr2(mp, args->trans);
0872
0873 return 0;
0874 }
0875
0876
0877
0878
0879
0880 int
0881 xfs_attr_shortform_lookup(xfs_da_args_t *args)
0882 {
0883 struct xfs_attr_shortform *sf;
0884 struct xfs_attr_sf_entry *sfe;
0885 int i;
0886 struct xfs_ifork *ifp;
0887
0888 trace_xfs_attr_sf_lookup(args);
0889
0890 ifp = &args->dp->i_af;
0891 ASSERT(ifp->if_format == XFS_DINODE_FMT_LOCAL);
0892 sf = (struct xfs_attr_shortform *)ifp->if_u1.if_data;
0893 sfe = &sf->list[0];
0894 for (i = 0; i < sf->hdr.count;
0895 sfe = xfs_attr_sf_nextentry(sfe), i++) {
0896 if (xfs_attr_match(args, sfe->namelen, sfe->nameval,
0897 sfe->flags))
0898 return -EEXIST;
0899 }
0900 return -ENOATTR;
0901 }
0902
0903
0904
0905
0906
0907
0908
0909
0910 int
0911 xfs_attr_shortform_getvalue(
0912 struct xfs_da_args *args)
0913 {
0914 struct xfs_attr_shortform *sf;
0915 struct xfs_attr_sf_entry *sfe;
0916 int i;
0917
0918 ASSERT(args->dp->i_af.if_format == XFS_DINODE_FMT_LOCAL);
0919 sf = (struct xfs_attr_shortform *)args->dp->i_af.if_u1.if_data;
0920 sfe = &sf->list[0];
0921 for (i = 0; i < sf->hdr.count;
0922 sfe = xfs_attr_sf_nextentry(sfe), i++) {
0923 if (xfs_attr_match(args, sfe->namelen, sfe->nameval,
0924 sfe->flags))
0925 return xfs_attr_copy_value(args,
0926 &sfe->nameval[args->namelen], sfe->valuelen);
0927 }
0928 return -ENOATTR;
0929 }
0930
0931
0932 int
0933 xfs_attr_shortform_to_leaf(
0934 struct xfs_da_args *args)
0935 {
0936 struct xfs_inode *dp;
0937 struct xfs_attr_shortform *sf;
0938 struct xfs_attr_sf_entry *sfe;
0939 struct xfs_da_args nargs;
0940 char *tmpbuffer;
0941 int error, i, size;
0942 xfs_dablk_t blkno;
0943 struct xfs_buf *bp;
0944 struct xfs_ifork *ifp;
0945
0946 trace_xfs_attr_sf_to_leaf(args);
0947
0948 dp = args->dp;
0949 ifp = &dp->i_af;
0950 sf = (struct xfs_attr_shortform *)ifp->if_u1.if_data;
0951 size = be16_to_cpu(sf->hdr.totsize);
0952 tmpbuffer = kmem_alloc(size, 0);
0953 ASSERT(tmpbuffer != NULL);
0954 memcpy(tmpbuffer, ifp->if_u1.if_data, size);
0955 sf = (struct xfs_attr_shortform *)tmpbuffer;
0956
0957 xfs_idata_realloc(dp, -size, XFS_ATTR_FORK);
0958 xfs_bmap_local_to_extents_empty(args->trans, dp, XFS_ATTR_FORK);
0959
0960 bp = NULL;
0961 error = xfs_da_grow_inode(args, &blkno);
0962 if (error)
0963 goto out;
0964
0965 ASSERT(blkno == 0);
0966 error = xfs_attr3_leaf_create(args, blkno, &bp);
0967 if (error)
0968 goto out;
0969
0970 memset((char *)&nargs, 0, sizeof(nargs));
0971 nargs.dp = dp;
0972 nargs.geo = args->geo;
0973 nargs.total = args->total;
0974 nargs.whichfork = XFS_ATTR_FORK;
0975 nargs.trans = args->trans;
0976 nargs.op_flags = XFS_DA_OP_OKNOENT;
0977
0978 sfe = &sf->list[0];
0979 for (i = 0; i < sf->hdr.count; i++) {
0980 nargs.name = sfe->nameval;
0981 nargs.namelen = sfe->namelen;
0982 nargs.value = &sfe->nameval[nargs.namelen];
0983 nargs.valuelen = sfe->valuelen;
0984 nargs.hashval = xfs_da_hashname(sfe->nameval,
0985 sfe->namelen);
0986 nargs.attr_filter = sfe->flags & XFS_ATTR_NSP_ONDISK_MASK;
0987 error = xfs_attr3_leaf_lookup_int(bp, &nargs);
0988 ASSERT(error == -ENOATTR);
0989 error = xfs_attr3_leaf_add(bp, &nargs);
0990 ASSERT(error != -ENOSPC);
0991 if (error)
0992 goto out;
0993 sfe = xfs_attr_sf_nextentry(sfe);
0994 }
0995 error = 0;
0996 out:
0997 kmem_free(tmpbuffer);
0998 return error;
0999 }
1000
1001
1002
1003
1004
1005 int
1006 xfs_attr_shortform_allfit(
1007 struct xfs_buf *bp,
1008 struct xfs_inode *dp)
1009 {
1010 struct xfs_attr_leafblock *leaf;
1011 struct xfs_attr_leaf_entry *entry;
1012 xfs_attr_leaf_name_local_t *name_loc;
1013 struct xfs_attr3_icleaf_hdr leafhdr;
1014 int bytes;
1015 int i;
1016 struct xfs_mount *mp = bp->b_mount;
1017
1018 leaf = bp->b_addr;
1019 xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo, &leafhdr, leaf);
1020 entry = xfs_attr3_leaf_entryp(leaf);
1021
1022 bytes = sizeof(struct xfs_attr_sf_hdr);
1023 for (i = 0; i < leafhdr.count; entry++, i++) {
1024 if (entry->flags & XFS_ATTR_INCOMPLETE)
1025 continue;
1026 if (!(entry->flags & XFS_ATTR_LOCAL))
1027 return 0;
1028 name_loc = xfs_attr3_leaf_name_local(leaf, i);
1029 if (name_loc->namelen >= XFS_ATTR_SF_ENTSIZE_MAX)
1030 return 0;
1031 if (be16_to_cpu(name_loc->valuelen) >= XFS_ATTR_SF_ENTSIZE_MAX)
1032 return 0;
1033 bytes += xfs_attr_sf_entsize_byname(name_loc->namelen,
1034 be16_to_cpu(name_loc->valuelen));
1035 }
1036 if (xfs_has_attr2(dp->i_mount) &&
1037 (dp->i_df.if_format != XFS_DINODE_FMT_BTREE) &&
1038 (bytes == sizeof(struct xfs_attr_sf_hdr)))
1039 return -1;
1040 return xfs_attr_shortform_bytesfit(dp, bytes);
1041 }
1042
1043
1044 xfs_failaddr_t
1045 xfs_attr_shortform_verify(
1046 struct xfs_inode *ip)
1047 {
1048 struct xfs_attr_shortform *sfp;
1049 struct xfs_attr_sf_entry *sfep;
1050 struct xfs_attr_sf_entry *next_sfep;
1051 char *endp;
1052 struct xfs_ifork *ifp;
1053 int i;
1054 int64_t size;
1055
1056 ASSERT(ip->i_af.if_format == XFS_DINODE_FMT_LOCAL);
1057 ifp = xfs_ifork_ptr(ip, XFS_ATTR_FORK);
1058 sfp = (struct xfs_attr_shortform *)ifp->if_u1.if_data;
1059 size = ifp->if_bytes;
1060
1061
1062
1063
1064 if (size < sizeof(struct xfs_attr_sf_hdr))
1065 return __this_address;
1066
1067 endp = (char *)sfp + size;
1068
1069
1070 sfep = &sfp->list[0];
1071 for (i = 0; i < sfp->hdr.count; i++) {
1072
1073
1074
1075
1076
1077
1078
1079 if (((char *)sfep + sizeof(*sfep)) >= endp)
1080 return __this_address;
1081
1082
1083 if (sfep->namelen == 0)
1084 return __this_address;
1085
1086
1087
1088
1089
1090
1091 next_sfep = xfs_attr_sf_nextentry(sfep);
1092 if ((char *)next_sfep > endp)
1093 return __this_address;
1094
1095
1096
1097
1098
1099
1100 if (sfep->flags & ~XFS_ATTR_NSP_ONDISK_MASK)
1101 return __this_address;
1102
1103
1104
1105
1106
1107
1108 if (hweight8(sfep->flags & XFS_ATTR_NSP_ONDISK_MASK) > 1)
1109 return __this_address;
1110
1111 sfep = next_sfep;
1112 }
1113 if ((void *)sfep != (void *)endp)
1114 return __this_address;
1115
1116 return NULL;
1117 }
1118
1119
1120
1121
1122 int
1123 xfs_attr3_leaf_to_shortform(
1124 struct xfs_buf *bp,
1125 struct xfs_da_args *args,
1126 int forkoff)
1127 {
1128 struct xfs_attr_leafblock *leaf;
1129 struct xfs_attr3_icleaf_hdr ichdr;
1130 struct xfs_attr_leaf_entry *entry;
1131 struct xfs_attr_leaf_name_local *name_loc;
1132 struct xfs_da_args nargs;
1133 struct xfs_inode *dp = args->dp;
1134 char *tmpbuffer;
1135 int error;
1136 int i;
1137
1138 trace_xfs_attr_leaf_to_sf(args);
1139
1140 tmpbuffer = kmem_alloc(args->geo->blksize, 0);
1141 if (!tmpbuffer)
1142 return -ENOMEM;
1143
1144 memcpy(tmpbuffer, bp->b_addr, args->geo->blksize);
1145
1146 leaf = (xfs_attr_leafblock_t *)tmpbuffer;
1147 xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf);
1148 entry = xfs_attr3_leaf_entryp(leaf);
1149
1150
1151 memset(bp->b_addr, 0, args->geo->blksize);
1152
1153
1154
1155
1156 error = xfs_da_shrink_inode(args, 0, bp);
1157 if (error)
1158 goto out;
1159
1160 if (forkoff == -1) {
1161
1162
1163
1164
1165
1166
1167 if (!(args->op_flags & XFS_DA_OP_REPLACE)) {
1168 ASSERT(xfs_has_attr2(dp->i_mount));
1169 ASSERT(dp->i_df.if_format != XFS_DINODE_FMT_BTREE);
1170 xfs_attr_fork_remove(dp, args->trans);
1171 }
1172 goto out;
1173 }
1174
1175 xfs_attr_shortform_create(args);
1176
1177
1178
1179
1180 memset((char *)&nargs, 0, sizeof(nargs));
1181 nargs.geo = args->geo;
1182 nargs.dp = dp;
1183 nargs.total = args->total;
1184 nargs.whichfork = XFS_ATTR_FORK;
1185 nargs.trans = args->trans;
1186 nargs.op_flags = XFS_DA_OP_OKNOENT;
1187
1188 for (i = 0; i < ichdr.count; entry++, i++) {
1189 if (entry->flags & XFS_ATTR_INCOMPLETE)
1190 continue;
1191 if (!entry->nameidx)
1192 continue;
1193 ASSERT(entry->flags & XFS_ATTR_LOCAL);
1194 name_loc = xfs_attr3_leaf_name_local(leaf, i);
1195 nargs.name = name_loc->nameval;
1196 nargs.namelen = name_loc->namelen;
1197 nargs.value = &name_loc->nameval[nargs.namelen];
1198 nargs.valuelen = be16_to_cpu(name_loc->valuelen);
1199 nargs.hashval = be32_to_cpu(entry->hashval);
1200 nargs.attr_filter = entry->flags & XFS_ATTR_NSP_ONDISK_MASK;
1201 xfs_attr_shortform_add(&nargs, forkoff);
1202 }
1203 error = 0;
1204
1205 out:
1206 kmem_free(tmpbuffer);
1207 return error;
1208 }
1209
1210
1211
1212
1213 int
1214 xfs_attr3_leaf_to_node(
1215 struct xfs_da_args *args)
1216 {
1217 struct xfs_attr_leafblock *leaf;
1218 struct xfs_attr3_icleaf_hdr icleafhdr;
1219 struct xfs_attr_leaf_entry *entries;
1220 struct xfs_da3_icnode_hdr icnodehdr;
1221 struct xfs_da_intnode *node;
1222 struct xfs_inode *dp = args->dp;
1223 struct xfs_mount *mp = dp->i_mount;
1224 struct xfs_buf *bp1 = NULL;
1225 struct xfs_buf *bp2 = NULL;
1226 xfs_dablk_t blkno;
1227 int error;
1228
1229 trace_xfs_attr_leaf_to_node(args);
1230
1231 if (XFS_TEST_ERROR(false, mp, XFS_ERRTAG_ATTR_LEAF_TO_NODE)) {
1232 error = -EIO;
1233 goto out;
1234 }
1235
1236 error = xfs_da_grow_inode(args, &blkno);
1237 if (error)
1238 goto out;
1239 error = xfs_attr3_leaf_read(args->trans, dp, 0, &bp1);
1240 if (error)
1241 goto out;
1242
1243 error = xfs_da_get_buf(args->trans, dp, blkno, &bp2, XFS_ATTR_FORK);
1244 if (error)
1245 goto out;
1246
1247
1248 xfs_trans_buf_set_type(args->trans, bp2, XFS_BLFT_ATTR_LEAF_BUF);
1249 bp2->b_ops = bp1->b_ops;
1250 memcpy(bp2->b_addr, bp1->b_addr, args->geo->blksize);
1251 if (xfs_has_crc(mp)) {
1252 struct xfs_da3_blkinfo *hdr3 = bp2->b_addr;
1253 hdr3->blkno = cpu_to_be64(xfs_buf_daddr(bp2));
1254 }
1255 xfs_trans_log_buf(args->trans, bp2, 0, args->geo->blksize - 1);
1256
1257
1258
1259
1260 error = xfs_da3_node_create(args, 0, 1, &bp1, XFS_ATTR_FORK);
1261 if (error)
1262 goto out;
1263 node = bp1->b_addr;
1264 xfs_da3_node_hdr_from_disk(mp, &icnodehdr, node);
1265
1266 leaf = bp2->b_addr;
1267 xfs_attr3_leaf_hdr_from_disk(args->geo, &icleafhdr, leaf);
1268 entries = xfs_attr3_leaf_entryp(leaf);
1269
1270
1271 icnodehdr.btree[0].hashval = entries[icleafhdr.count - 1].hashval;
1272 icnodehdr.btree[0].before = cpu_to_be32(blkno);
1273 icnodehdr.count = 1;
1274 xfs_da3_node_hdr_to_disk(dp->i_mount, node, &icnodehdr);
1275 xfs_trans_log_buf(args->trans, bp1, 0, args->geo->blksize - 1);
1276 error = 0;
1277 out:
1278 return error;
1279 }
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289 STATIC int
1290 xfs_attr3_leaf_create(
1291 struct xfs_da_args *args,
1292 xfs_dablk_t blkno,
1293 struct xfs_buf **bpp)
1294 {
1295 struct xfs_attr_leafblock *leaf;
1296 struct xfs_attr3_icleaf_hdr ichdr;
1297 struct xfs_inode *dp = args->dp;
1298 struct xfs_mount *mp = dp->i_mount;
1299 struct xfs_buf *bp;
1300 int error;
1301
1302 trace_xfs_attr_leaf_create(args);
1303
1304 error = xfs_da_get_buf(args->trans, args->dp, blkno, &bp,
1305 XFS_ATTR_FORK);
1306 if (error)
1307 return error;
1308 bp->b_ops = &xfs_attr3_leaf_buf_ops;
1309 xfs_trans_buf_set_type(args->trans, bp, XFS_BLFT_ATTR_LEAF_BUF);
1310 leaf = bp->b_addr;
1311 memset(leaf, 0, args->geo->blksize);
1312
1313 memset(&ichdr, 0, sizeof(ichdr));
1314 ichdr.firstused = args->geo->blksize;
1315
1316 if (xfs_has_crc(mp)) {
1317 struct xfs_da3_blkinfo *hdr3 = bp->b_addr;
1318
1319 ichdr.magic = XFS_ATTR3_LEAF_MAGIC;
1320
1321 hdr3->blkno = cpu_to_be64(xfs_buf_daddr(bp));
1322 hdr3->owner = cpu_to_be64(dp->i_ino);
1323 uuid_copy(&hdr3->uuid, &mp->m_sb.sb_meta_uuid);
1324
1325 ichdr.freemap[0].base = sizeof(struct xfs_attr3_leaf_hdr);
1326 } else {
1327 ichdr.magic = XFS_ATTR_LEAF_MAGIC;
1328 ichdr.freemap[0].base = sizeof(struct xfs_attr_leaf_hdr);
1329 }
1330 ichdr.freemap[0].size = ichdr.firstused - ichdr.freemap[0].base;
1331
1332 xfs_attr3_leaf_hdr_to_disk(args->geo, leaf, &ichdr);
1333 xfs_trans_log_buf(args->trans, bp, 0, args->geo->blksize - 1);
1334
1335 *bpp = bp;
1336 return 0;
1337 }
1338
1339
1340
1341
1342 int
1343 xfs_attr3_leaf_split(
1344 struct xfs_da_state *state,
1345 struct xfs_da_state_blk *oldblk,
1346 struct xfs_da_state_blk *newblk)
1347 {
1348 xfs_dablk_t blkno;
1349 int error;
1350
1351 trace_xfs_attr_leaf_split(state->args);
1352
1353
1354
1355
1356 ASSERT(oldblk->magic == XFS_ATTR_LEAF_MAGIC);
1357 error = xfs_da_grow_inode(state->args, &blkno);
1358 if (error)
1359 return error;
1360 error = xfs_attr3_leaf_create(state->args, blkno, &newblk->bp);
1361 if (error)
1362 return error;
1363 newblk->blkno = blkno;
1364 newblk->magic = XFS_ATTR_LEAF_MAGIC;
1365
1366
1367
1368
1369
1370 xfs_attr3_leaf_rebalance(state, oldblk, newblk);
1371 error = xfs_da3_blk_link(state, oldblk, newblk);
1372 if (error)
1373 return error;
1374
1375
1376
1377
1378
1379
1380
1381
1382 if (state->inleaf) {
1383 trace_xfs_attr_leaf_add_old(state->args);
1384 error = xfs_attr3_leaf_add(oldblk->bp, state->args);
1385 } else {
1386 trace_xfs_attr_leaf_add_new(state->args);
1387 error = xfs_attr3_leaf_add(newblk->bp, state->args);
1388 }
1389
1390
1391
1392
1393 oldblk->hashval = xfs_attr_leaf_lasthash(oldblk->bp, NULL);
1394 newblk->hashval = xfs_attr_leaf_lasthash(newblk->bp, NULL);
1395 return error;
1396 }
1397
1398
1399
1400
1401 int
1402 xfs_attr3_leaf_add(
1403 struct xfs_buf *bp,
1404 struct xfs_da_args *args)
1405 {
1406 struct xfs_attr_leafblock *leaf;
1407 struct xfs_attr3_icleaf_hdr ichdr;
1408 int tablesize;
1409 int entsize;
1410 int sum;
1411 int tmp;
1412 int i;
1413
1414 trace_xfs_attr_leaf_add(args);
1415
1416 leaf = bp->b_addr;
1417 xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf);
1418 ASSERT(args->index >= 0 && args->index <= ichdr.count);
1419 entsize = xfs_attr_leaf_newentsize(args, NULL);
1420
1421
1422
1423
1424
1425 tablesize = (ichdr.count + 1) * sizeof(xfs_attr_leaf_entry_t)
1426 + xfs_attr3_leaf_hdr_size(leaf);
1427 for (sum = 0, i = XFS_ATTR_LEAF_MAPSIZE - 1; i >= 0; i--) {
1428 if (tablesize > ichdr.firstused) {
1429 sum += ichdr.freemap[i].size;
1430 continue;
1431 }
1432 if (!ichdr.freemap[i].size)
1433 continue;
1434 tmp = entsize;
1435 if (ichdr.freemap[i].base < ichdr.firstused)
1436 tmp += sizeof(xfs_attr_leaf_entry_t);
1437 if (ichdr.freemap[i].size >= tmp) {
1438 tmp = xfs_attr3_leaf_add_work(bp, &ichdr, args, i);
1439 goto out_log_hdr;
1440 }
1441 sum += ichdr.freemap[i].size;
1442 }
1443
1444
1445
1446
1447
1448
1449 if (!ichdr.holes && sum < entsize)
1450 return -ENOSPC;
1451
1452
1453
1454
1455
1456 xfs_attr3_leaf_compact(args, &ichdr, bp);
1457
1458
1459
1460
1461
1462 if (ichdr.freemap[0].size < (entsize + sizeof(xfs_attr_leaf_entry_t))) {
1463 tmp = -ENOSPC;
1464 goto out_log_hdr;
1465 }
1466
1467 tmp = xfs_attr3_leaf_add_work(bp, &ichdr, args, 0);
1468
1469 out_log_hdr:
1470 xfs_attr3_leaf_hdr_to_disk(args->geo, leaf, &ichdr);
1471 xfs_trans_log_buf(args->trans, bp,
1472 XFS_DA_LOGRANGE(leaf, &leaf->hdr,
1473 xfs_attr3_leaf_hdr_size(leaf)));
1474 return tmp;
1475 }
1476
1477
1478
1479
1480 STATIC int
1481 xfs_attr3_leaf_add_work(
1482 struct xfs_buf *bp,
1483 struct xfs_attr3_icleaf_hdr *ichdr,
1484 struct xfs_da_args *args,
1485 int mapindex)
1486 {
1487 struct xfs_attr_leafblock *leaf;
1488 struct xfs_attr_leaf_entry *entry;
1489 struct xfs_attr_leaf_name_local *name_loc;
1490 struct xfs_attr_leaf_name_remote *name_rmt;
1491 struct xfs_mount *mp;
1492 int tmp;
1493 int i;
1494
1495 trace_xfs_attr_leaf_add_work(args);
1496
1497 leaf = bp->b_addr;
1498 ASSERT(mapindex >= 0 && mapindex < XFS_ATTR_LEAF_MAPSIZE);
1499 ASSERT(args->index >= 0 && args->index <= ichdr->count);
1500
1501
1502
1503
1504 entry = &xfs_attr3_leaf_entryp(leaf)[args->index];
1505 if (args->index < ichdr->count) {
1506 tmp = ichdr->count - args->index;
1507 tmp *= sizeof(xfs_attr_leaf_entry_t);
1508 memmove(entry + 1, entry, tmp);
1509 xfs_trans_log_buf(args->trans, bp,
1510 XFS_DA_LOGRANGE(leaf, entry, tmp + sizeof(*entry)));
1511 }
1512 ichdr->count++;
1513
1514
1515
1516
1517 mp = args->trans->t_mountp;
1518 ASSERT(ichdr->freemap[mapindex].base < args->geo->blksize);
1519 ASSERT((ichdr->freemap[mapindex].base & 0x3) == 0);
1520 ASSERT(ichdr->freemap[mapindex].size >=
1521 xfs_attr_leaf_newentsize(args, NULL));
1522 ASSERT(ichdr->freemap[mapindex].size < args->geo->blksize);
1523 ASSERT((ichdr->freemap[mapindex].size & 0x3) == 0);
1524
1525 ichdr->freemap[mapindex].size -= xfs_attr_leaf_newentsize(args, &tmp);
1526
1527 entry->nameidx = cpu_to_be16(ichdr->freemap[mapindex].base +
1528 ichdr->freemap[mapindex].size);
1529 entry->hashval = cpu_to_be32(args->hashval);
1530 entry->flags = args->attr_filter;
1531 if (tmp)
1532 entry->flags |= XFS_ATTR_LOCAL;
1533 if (args->op_flags & XFS_DA_OP_REPLACE) {
1534 if (!(args->op_flags & XFS_DA_OP_LOGGED))
1535 entry->flags |= XFS_ATTR_INCOMPLETE;
1536 if ((args->blkno2 == args->blkno) &&
1537 (args->index2 <= args->index)) {
1538 args->index2++;
1539 }
1540 }
1541 xfs_trans_log_buf(args->trans, bp,
1542 XFS_DA_LOGRANGE(leaf, entry, sizeof(*entry)));
1543 ASSERT((args->index == 0) ||
1544 (be32_to_cpu(entry->hashval) >= be32_to_cpu((entry-1)->hashval)));
1545 ASSERT((args->index == ichdr->count - 1) ||
1546 (be32_to_cpu(entry->hashval) <= be32_to_cpu((entry+1)->hashval)));
1547
1548
1549
1550
1551
1552
1553
1554
1555 if (entry->flags & XFS_ATTR_LOCAL) {
1556 name_loc = xfs_attr3_leaf_name_local(leaf, args->index);
1557 name_loc->namelen = args->namelen;
1558 name_loc->valuelen = cpu_to_be16(args->valuelen);
1559 memcpy((char *)name_loc->nameval, args->name, args->namelen);
1560 memcpy((char *)&name_loc->nameval[args->namelen], args->value,
1561 be16_to_cpu(name_loc->valuelen));
1562 } else {
1563 name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index);
1564 name_rmt->namelen = args->namelen;
1565 memcpy((char *)name_rmt->name, args->name, args->namelen);
1566 entry->flags |= XFS_ATTR_INCOMPLETE;
1567
1568 name_rmt->valuelen = 0;
1569 name_rmt->valueblk = 0;
1570 args->rmtblkno = 1;
1571 args->rmtblkcnt = xfs_attr3_rmt_blocks(mp, args->valuelen);
1572 args->rmtvaluelen = args->valuelen;
1573 }
1574 xfs_trans_log_buf(args->trans, bp,
1575 XFS_DA_LOGRANGE(leaf, xfs_attr3_leaf_name(leaf, args->index),
1576 xfs_attr_leaf_entsize(leaf, args->index)));
1577
1578
1579
1580
1581 if (be16_to_cpu(entry->nameidx) < ichdr->firstused)
1582 ichdr->firstused = be16_to_cpu(entry->nameidx);
1583
1584 ASSERT(ichdr->firstused >= ichdr->count * sizeof(xfs_attr_leaf_entry_t)
1585 + xfs_attr3_leaf_hdr_size(leaf));
1586 tmp = (ichdr->count - 1) * sizeof(xfs_attr_leaf_entry_t)
1587 + xfs_attr3_leaf_hdr_size(leaf);
1588
1589 for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
1590 if (ichdr->freemap[i].base == tmp) {
1591 ichdr->freemap[i].base += sizeof(xfs_attr_leaf_entry_t);
1592 ichdr->freemap[i].size -=
1593 min_t(uint16_t, ichdr->freemap[i].size,
1594 sizeof(xfs_attr_leaf_entry_t));
1595 }
1596 }
1597 ichdr->usedbytes += xfs_attr_leaf_entsize(leaf, args->index);
1598 return 0;
1599 }
1600
1601
1602
1603
1604 STATIC void
1605 xfs_attr3_leaf_compact(
1606 struct xfs_da_args *args,
1607 struct xfs_attr3_icleaf_hdr *ichdr_dst,
1608 struct xfs_buf *bp)
1609 {
1610 struct xfs_attr_leafblock *leaf_src;
1611 struct xfs_attr_leafblock *leaf_dst;
1612 struct xfs_attr3_icleaf_hdr ichdr_src;
1613 struct xfs_trans *trans = args->trans;
1614 char *tmpbuffer;
1615
1616 trace_xfs_attr_leaf_compact(args);
1617
1618 tmpbuffer = kmem_alloc(args->geo->blksize, 0);
1619 memcpy(tmpbuffer, bp->b_addr, args->geo->blksize);
1620 memset(bp->b_addr, 0, args->geo->blksize);
1621 leaf_src = (xfs_attr_leafblock_t *)tmpbuffer;
1622 leaf_dst = bp->b_addr;
1623
1624
1625
1626
1627
1628
1629 memcpy(bp->b_addr, tmpbuffer, xfs_attr3_leaf_hdr_size(leaf_src));
1630
1631
1632 ichdr_src = *ichdr_dst;
1633 ichdr_dst->firstused = args->geo->blksize;
1634 ichdr_dst->usedbytes = 0;
1635 ichdr_dst->count = 0;
1636 ichdr_dst->holes = 0;
1637 ichdr_dst->freemap[0].base = xfs_attr3_leaf_hdr_size(leaf_src);
1638 ichdr_dst->freemap[0].size = ichdr_dst->firstused -
1639 ichdr_dst->freemap[0].base;
1640
1641
1642 xfs_attr3_leaf_hdr_to_disk(args->geo, leaf_dst, ichdr_dst);
1643
1644
1645
1646
1647
1648 xfs_attr3_leaf_moveents(args, leaf_src, &ichdr_src, 0,
1649 leaf_dst, ichdr_dst, 0, ichdr_src.count);
1650
1651
1652
1653
1654 xfs_trans_log_buf(trans, bp, 0, args->geo->blksize - 1);
1655
1656 kmem_free(tmpbuffer);
1657 }
1658
1659
1660
1661
1662
1663 static int
1664 xfs_attr3_leaf_order(
1665 struct xfs_buf *leaf1_bp,
1666 struct xfs_attr3_icleaf_hdr *leaf1hdr,
1667 struct xfs_buf *leaf2_bp,
1668 struct xfs_attr3_icleaf_hdr *leaf2hdr)
1669 {
1670 struct xfs_attr_leaf_entry *entries1;
1671 struct xfs_attr_leaf_entry *entries2;
1672
1673 entries1 = xfs_attr3_leaf_entryp(leaf1_bp->b_addr);
1674 entries2 = xfs_attr3_leaf_entryp(leaf2_bp->b_addr);
1675 if (leaf1hdr->count > 0 && leaf2hdr->count > 0 &&
1676 ((be32_to_cpu(entries2[0].hashval) <
1677 be32_to_cpu(entries1[0].hashval)) ||
1678 (be32_to_cpu(entries2[leaf2hdr->count - 1].hashval) <
1679 be32_to_cpu(entries1[leaf1hdr->count - 1].hashval)))) {
1680 return 1;
1681 }
1682 return 0;
1683 }
1684
1685 int
1686 xfs_attr_leaf_order(
1687 struct xfs_buf *leaf1_bp,
1688 struct xfs_buf *leaf2_bp)
1689 {
1690 struct xfs_attr3_icleaf_hdr ichdr1;
1691 struct xfs_attr3_icleaf_hdr ichdr2;
1692 struct xfs_mount *mp = leaf1_bp->b_mount;
1693
1694 xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo, &ichdr1, leaf1_bp->b_addr);
1695 xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo, &ichdr2, leaf2_bp->b_addr);
1696 return xfs_attr3_leaf_order(leaf1_bp, &ichdr1, leaf2_bp, &ichdr2);
1697 }
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711 STATIC void
1712 xfs_attr3_leaf_rebalance(
1713 struct xfs_da_state *state,
1714 struct xfs_da_state_blk *blk1,
1715 struct xfs_da_state_blk *blk2)
1716 {
1717 struct xfs_da_args *args;
1718 struct xfs_attr_leafblock *leaf1;
1719 struct xfs_attr_leafblock *leaf2;
1720 struct xfs_attr3_icleaf_hdr ichdr1;
1721 struct xfs_attr3_icleaf_hdr ichdr2;
1722 struct xfs_attr_leaf_entry *entries1;
1723 struct xfs_attr_leaf_entry *entries2;
1724 int count;
1725 int totallen;
1726 int max;
1727 int space;
1728 int swap;
1729
1730
1731
1732
1733 ASSERT(blk1->magic == XFS_ATTR_LEAF_MAGIC);
1734 ASSERT(blk2->magic == XFS_ATTR_LEAF_MAGIC);
1735 leaf1 = blk1->bp->b_addr;
1736 leaf2 = blk2->bp->b_addr;
1737 xfs_attr3_leaf_hdr_from_disk(state->args->geo, &ichdr1, leaf1);
1738 xfs_attr3_leaf_hdr_from_disk(state->args->geo, &ichdr2, leaf2);
1739 ASSERT(ichdr2.count == 0);
1740 args = state->args;
1741
1742 trace_xfs_attr_leaf_rebalance(args);
1743
1744
1745
1746
1747
1748
1749
1750 swap = 0;
1751 if (xfs_attr3_leaf_order(blk1->bp, &ichdr1, blk2->bp, &ichdr2)) {
1752 swap(blk1, blk2);
1753
1754
1755 swap(ichdr1, ichdr2);
1756
1757 leaf1 = blk1->bp->b_addr;
1758 leaf2 = blk2->bp->b_addr;
1759 swap = 1;
1760 }
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770 state->inleaf = xfs_attr3_leaf_figure_balance(state, blk1, &ichdr1,
1771 blk2, &ichdr2,
1772 &count, &totallen);
1773 if (swap)
1774 state->inleaf = !state->inleaf;
1775
1776
1777
1778
1779 if (count < ichdr1.count) {
1780
1781
1782
1783
1784 count = ichdr1.count - count;
1785 space = ichdr1.usedbytes - totallen;
1786 space += count * sizeof(xfs_attr_leaf_entry_t);
1787
1788
1789
1790
1791 max = ichdr2.firstused - xfs_attr3_leaf_hdr_size(leaf1);
1792 max -= ichdr2.count * sizeof(xfs_attr_leaf_entry_t);
1793 if (space > max)
1794 xfs_attr3_leaf_compact(args, &ichdr2, blk2->bp);
1795
1796
1797
1798
1799 xfs_attr3_leaf_moveents(args, leaf1, &ichdr1,
1800 ichdr1.count - count, leaf2, &ichdr2, 0, count);
1801
1802 } else if (count > ichdr1.count) {
1803
1804
1805
1806
1807 ASSERT(0);
1808
1809
1810
1811
1812
1813 count -= ichdr1.count;
1814 space = totallen - ichdr1.usedbytes;
1815 space += count * sizeof(xfs_attr_leaf_entry_t);
1816
1817
1818
1819
1820 max = ichdr1.firstused - xfs_attr3_leaf_hdr_size(leaf1);
1821 max -= ichdr1.count * sizeof(xfs_attr_leaf_entry_t);
1822 if (space > max)
1823 xfs_attr3_leaf_compact(args, &ichdr1, blk1->bp);
1824
1825
1826
1827
1828 xfs_attr3_leaf_moveents(args, leaf2, &ichdr2, 0, leaf1, &ichdr1,
1829 ichdr1.count, count);
1830 }
1831
1832 xfs_attr3_leaf_hdr_to_disk(state->args->geo, leaf1, &ichdr1);
1833 xfs_attr3_leaf_hdr_to_disk(state->args->geo, leaf2, &ichdr2);
1834 xfs_trans_log_buf(args->trans, blk1->bp, 0, args->geo->blksize - 1);
1835 xfs_trans_log_buf(args->trans, blk2->bp, 0, args->geo->blksize - 1);
1836
1837
1838
1839
1840 entries1 = xfs_attr3_leaf_entryp(leaf1);
1841 entries2 = xfs_attr3_leaf_entryp(leaf2);
1842 blk1->hashval = be32_to_cpu(entries1[ichdr1.count - 1].hashval);
1843 blk2->hashval = be32_to_cpu(entries2[ichdr2.count - 1].hashval);
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857 if (blk1->index > ichdr1.count) {
1858 ASSERT(state->inleaf == 0);
1859 blk2->index = blk1->index - ichdr1.count;
1860 args->index = args->index2 = blk2->index;
1861 args->blkno = args->blkno2 = blk2->blkno;
1862 } else if (blk1->index == ichdr1.count) {
1863 if (state->inleaf) {
1864 args->index = blk1->index;
1865 args->blkno = blk1->blkno;
1866 args->index2 = 0;
1867 args->blkno2 = blk2->blkno;
1868 } else {
1869
1870
1871
1872
1873
1874 blk2->index = blk1->index - ichdr1.count;
1875 args->index = blk2->index;
1876 args->blkno = blk2->blkno;
1877 if (!state->extravalid) {
1878
1879
1880
1881
1882
1883 args->index2 = blk2->index;
1884 args->blkno2 = blk2->blkno;
1885 }
1886 }
1887 } else {
1888 ASSERT(state->inleaf == 1);
1889 args->index = args->index2 = blk1->index;
1890 args->blkno = args->blkno2 = blk1->blkno;
1891 }
1892 }
1893
1894
1895
1896
1897
1898
1899
1900
1901 STATIC int
1902 xfs_attr3_leaf_figure_balance(
1903 struct xfs_da_state *state,
1904 struct xfs_da_state_blk *blk1,
1905 struct xfs_attr3_icleaf_hdr *ichdr1,
1906 struct xfs_da_state_blk *blk2,
1907 struct xfs_attr3_icleaf_hdr *ichdr2,
1908 int *countarg,
1909 int *usedbytesarg)
1910 {
1911 struct xfs_attr_leafblock *leaf1 = blk1->bp->b_addr;
1912 struct xfs_attr_leafblock *leaf2 = blk2->bp->b_addr;
1913 struct xfs_attr_leaf_entry *entry;
1914 int count;
1915 int max;
1916 int index;
1917 int totallen = 0;
1918 int half;
1919 int lastdelta;
1920 int foundit = 0;
1921 int tmp;
1922
1923
1924
1925
1926
1927 max = ichdr1->count + ichdr2->count;
1928 half = (max + 1) * sizeof(*entry);
1929 half += ichdr1->usedbytes + ichdr2->usedbytes +
1930 xfs_attr_leaf_newentsize(state->args, NULL);
1931 half /= 2;
1932 lastdelta = state->args->geo->blksize;
1933 entry = xfs_attr3_leaf_entryp(leaf1);
1934 for (count = index = 0; count < max; entry++, index++, count++) {
1935
1936 #define XFS_ATTR_ABS(A) (((A) < 0) ? -(A) : (A))
1937
1938
1939
1940 if (count == blk1->index) {
1941 tmp = totallen + sizeof(*entry) +
1942 xfs_attr_leaf_newentsize(state->args, NULL);
1943 if (XFS_ATTR_ABS(half - tmp) > lastdelta)
1944 break;
1945 lastdelta = XFS_ATTR_ABS(half - tmp);
1946 totallen = tmp;
1947 foundit = 1;
1948 }
1949
1950
1951
1952
1953 if (count == ichdr1->count) {
1954 leaf1 = leaf2;
1955 entry = xfs_attr3_leaf_entryp(leaf1);
1956 index = 0;
1957 }
1958
1959
1960
1961
1962 tmp = totallen + sizeof(*entry) + xfs_attr_leaf_entsize(leaf1,
1963 index);
1964 if (XFS_ATTR_ABS(half - tmp) > lastdelta)
1965 break;
1966 lastdelta = XFS_ATTR_ABS(half - tmp);
1967 totallen = tmp;
1968 #undef XFS_ATTR_ABS
1969 }
1970
1971
1972
1973
1974
1975 totallen -= count * sizeof(*entry);
1976 if (foundit) {
1977 totallen -= sizeof(*entry) +
1978 xfs_attr_leaf_newentsize(state->args, NULL);
1979 }
1980
1981 *countarg = count;
1982 *usedbytesarg = totallen;
1983 return foundit;
1984 }
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001 int
2002 xfs_attr3_leaf_toosmall(
2003 struct xfs_da_state *state,
2004 int *action)
2005 {
2006 struct xfs_attr_leafblock *leaf;
2007 struct xfs_da_state_blk *blk;
2008 struct xfs_attr3_icleaf_hdr ichdr;
2009 struct xfs_buf *bp;
2010 xfs_dablk_t blkno;
2011 int bytes;
2012 int forward;
2013 int error;
2014 int retval;
2015 int i;
2016
2017 trace_xfs_attr_leaf_toosmall(state->args);
2018
2019
2020
2021
2022
2023
2024 blk = &state->path.blk[ state->path.active-1 ];
2025 leaf = blk->bp->b_addr;
2026 xfs_attr3_leaf_hdr_from_disk(state->args->geo, &ichdr, leaf);
2027 bytes = xfs_attr3_leaf_hdr_size(leaf) +
2028 ichdr.count * sizeof(xfs_attr_leaf_entry_t) +
2029 ichdr.usedbytes;
2030 if (bytes > (state->args->geo->blksize >> 1)) {
2031 *action = 0;
2032 return 0;
2033 }
2034
2035
2036
2037
2038
2039
2040
2041 if (ichdr.count == 0) {
2042
2043
2044
2045
2046 forward = (ichdr.forw != 0);
2047 memcpy(&state->altpath, &state->path, sizeof(state->path));
2048 error = xfs_da3_path_shift(state, &state->altpath, forward,
2049 0, &retval);
2050 if (error)
2051 return error;
2052 if (retval) {
2053 *action = 0;
2054 } else {
2055 *action = 2;
2056 }
2057 return 0;
2058 }
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068 forward = ichdr.forw < ichdr.back;
2069 for (i = 0; i < 2; forward = !forward, i++) {
2070 struct xfs_attr3_icleaf_hdr ichdr2;
2071 if (forward)
2072 blkno = ichdr.forw;
2073 else
2074 blkno = ichdr.back;
2075 if (blkno == 0)
2076 continue;
2077 error = xfs_attr3_leaf_read(state->args->trans, state->args->dp,
2078 blkno, &bp);
2079 if (error)
2080 return error;
2081
2082 xfs_attr3_leaf_hdr_from_disk(state->args->geo, &ichdr2, bp->b_addr);
2083
2084 bytes = state->args->geo->blksize -
2085 (state->args->geo->blksize >> 2) -
2086 ichdr.usedbytes - ichdr2.usedbytes -
2087 ((ichdr.count + ichdr2.count) *
2088 sizeof(xfs_attr_leaf_entry_t)) -
2089 xfs_attr3_leaf_hdr_size(leaf);
2090
2091 xfs_trans_brelse(state->args->trans, bp);
2092 if (bytes >= 0)
2093 break;
2094 }
2095 if (i >= 2) {
2096 *action = 0;
2097 return 0;
2098 }
2099
2100
2101
2102
2103
2104 memcpy(&state->altpath, &state->path, sizeof(state->path));
2105 if (blkno < blk->blkno) {
2106 error = xfs_da3_path_shift(state, &state->altpath, forward,
2107 0, &retval);
2108 } else {
2109 error = xfs_da3_path_shift(state, &state->path, forward,
2110 0, &retval);
2111 }
2112 if (error)
2113 return error;
2114 if (retval) {
2115 *action = 0;
2116 } else {
2117 *action = 1;
2118 }
2119 return 0;
2120 }
2121
2122
2123
2124
2125
2126
2127
2128 int
2129 xfs_attr3_leaf_remove(
2130 struct xfs_buf *bp,
2131 struct xfs_da_args *args)
2132 {
2133 struct xfs_attr_leafblock *leaf;
2134 struct xfs_attr3_icleaf_hdr ichdr;
2135 struct xfs_attr_leaf_entry *entry;
2136 int before;
2137 int after;
2138 int smallest;
2139 int entsize;
2140 int tablesize;
2141 int tmp;
2142 int i;
2143
2144 trace_xfs_attr_leaf_remove(args);
2145
2146 leaf = bp->b_addr;
2147 xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf);
2148
2149 ASSERT(ichdr.count > 0 && ichdr.count < args->geo->blksize / 8);
2150 ASSERT(args->index >= 0 && args->index < ichdr.count);
2151 ASSERT(ichdr.firstused >= ichdr.count * sizeof(*entry) +
2152 xfs_attr3_leaf_hdr_size(leaf));
2153
2154 entry = &xfs_attr3_leaf_entryp(leaf)[args->index];
2155
2156 ASSERT(be16_to_cpu(entry->nameidx) >= ichdr.firstused);
2157 ASSERT(be16_to_cpu(entry->nameidx) < args->geo->blksize);
2158
2159
2160
2161
2162
2163
2164
2165 tablesize = ichdr.count * sizeof(xfs_attr_leaf_entry_t)
2166 + xfs_attr3_leaf_hdr_size(leaf);
2167 tmp = ichdr.freemap[0].size;
2168 before = after = -1;
2169 smallest = XFS_ATTR_LEAF_MAPSIZE - 1;
2170 entsize = xfs_attr_leaf_entsize(leaf, args->index);
2171 for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
2172 ASSERT(ichdr.freemap[i].base < args->geo->blksize);
2173 ASSERT(ichdr.freemap[i].size < args->geo->blksize);
2174 if (ichdr.freemap[i].base == tablesize) {
2175 ichdr.freemap[i].base -= sizeof(xfs_attr_leaf_entry_t);
2176 ichdr.freemap[i].size += sizeof(xfs_attr_leaf_entry_t);
2177 }
2178
2179 if (ichdr.freemap[i].base + ichdr.freemap[i].size ==
2180 be16_to_cpu(entry->nameidx)) {
2181 before = i;
2182 } else if (ichdr.freemap[i].base ==
2183 (be16_to_cpu(entry->nameidx) + entsize)) {
2184 after = i;
2185 } else if (ichdr.freemap[i].size < tmp) {
2186 tmp = ichdr.freemap[i].size;
2187 smallest = i;
2188 }
2189 }
2190
2191
2192
2193
2194
2195 if ((before >= 0) || (after >= 0)) {
2196 if ((before >= 0) && (after >= 0)) {
2197 ichdr.freemap[before].size += entsize;
2198 ichdr.freemap[before].size += ichdr.freemap[after].size;
2199 ichdr.freemap[after].base = 0;
2200 ichdr.freemap[after].size = 0;
2201 } else if (before >= 0) {
2202 ichdr.freemap[before].size += entsize;
2203 } else {
2204 ichdr.freemap[after].base = be16_to_cpu(entry->nameidx);
2205 ichdr.freemap[after].size += entsize;
2206 }
2207 } else {
2208
2209
2210
2211 if (ichdr.freemap[smallest].size < entsize) {
2212 ichdr.freemap[smallest].base = be16_to_cpu(entry->nameidx);
2213 ichdr.freemap[smallest].size = entsize;
2214 }
2215 }
2216
2217
2218
2219
2220 if (be16_to_cpu(entry->nameidx) == ichdr.firstused)
2221 smallest = 1;
2222 else
2223 smallest = 0;
2224
2225
2226
2227
2228 memset(xfs_attr3_leaf_name(leaf, args->index), 0, entsize);
2229 ichdr.usedbytes -= entsize;
2230 xfs_trans_log_buf(args->trans, bp,
2231 XFS_DA_LOGRANGE(leaf, xfs_attr3_leaf_name(leaf, args->index),
2232 entsize));
2233
2234 tmp = (ichdr.count - args->index) * sizeof(xfs_attr_leaf_entry_t);
2235 memmove(entry, entry + 1, tmp);
2236 ichdr.count--;
2237 xfs_trans_log_buf(args->trans, bp,
2238 XFS_DA_LOGRANGE(leaf, entry, tmp + sizeof(xfs_attr_leaf_entry_t)));
2239
2240 entry = &xfs_attr3_leaf_entryp(leaf)[ichdr.count];
2241 memset(entry, 0, sizeof(xfs_attr_leaf_entry_t));
2242
2243
2244
2245
2246
2247
2248
2249 if (smallest) {
2250 tmp = args->geo->blksize;
2251 entry = xfs_attr3_leaf_entryp(leaf);
2252 for (i = ichdr.count - 1; i >= 0; entry++, i--) {
2253 ASSERT(be16_to_cpu(entry->nameidx) >= ichdr.firstused);
2254 ASSERT(be16_to_cpu(entry->nameidx) < args->geo->blksize);
2255
2256 if (be16_to_cpu(entry->nameidx) < tmp)
2257 tmp = be16_to_cpu(entry->nameidx);
2258 }
2259 ichdr.firstused = tmp;
2260 ASSERT(ichdr.firstused != 0);
2261 } else {
2262 ichdr.holes = 1;
2263 }
2264 xfs_attr3_leaf_hdr_to_disk(args->geo, leaf, &ichdr);
2265 xfs_trans_log_buf(args->trans, bp,
2266 XFS_DA_LOGRANGE(leaf, &leaf->hdr,
2267 xfs_attr3_leaf_hdr_size(leaf)));
2268
2269
2270
2271
2272
2273 tmp = ichdr.usedbytes + xfs_attr3_leaf_hdr_size(leaf) +
2274 ichdr.count * sizeof(xfs_attr_leaf_entry_t);
2275
2276 return tmp < args->geo->magicpct;
2277 }
2278
2279
2280
2281
2282 void
2283 xfs_attr3_leaf_unbalance(
2284 struct xfs_da_state *state,
2285 struct xfs_da_state_blk *drop_blk,
2286 struct xfs_da_state_blk *save_blk)
2287 {
2288 struct xfs_attr_leafblock *drop_leaf = drop_blk->bp->b_addr;
2289 struct xfs_attr_leafblock *save_leaf = save_blk->bp->b_addr;
2290 struct xfs_attr3_icleaf_hdr drophdr;
2291 struct xfs_attr3_icleaf_hdr savehdr;
2292 struct xfs_attr_leaf_entry *entry;
2293
2294 trace_xfs_attr_leaf_unbalance(state->args);
2295
2296 drop_leaf = drop_blk->bp->b_addr;
2297 save_leaf = save_blk->bp->b_addr;
2298 xfs_attr3_leaf_hdr_from_disk(state->args->geo, &drophdr, drop_leaf);
2299 xfs_attr3_leaf_hdr_from_disk(state->args->geo, &savehdr, save_leaf);
2300 entry = xfs_attr3_leaf_entryp(drop_leaf);
2301
2302
2303
2304
2305 drop_blk->hashval = be32_to_cpu(entry[drophdr.count - 1].hashval);
2306
2307
2308
2309
2310
2311
2312 if (savehdr.holes == 0) {
2313
2314
2315
2316
2317 if (xfs_attr3_leaf_order(save_blk->bp, &savehdr,
2318 drop_blk->bp, &drophdr)) {
2319 xfs_attr3_leaf_moveents(state->args,
2320 drop_leaf, &drophdr, 0,
2321 save_leaf, &savehdr, 0,
2322 drophdr.count);
2323 } else {
2324 xfs_attr3_leaf_moveents(state->args,
2325 drop_leaf, &drophdr, 0,
2326 save_leaf, &savehdr,
2327 savehdr.count, drophdr.count);
2328 }
2329 } else {
2330
2331
2332
2333
2334 struct xfs_attr_leafblock *tmp_leaf;
2335 struct xfs_attr3_icleaf_hdr tmphdr;
2336
2337 tmp_leaf = kmem_zalloc(state->args->geo->blksize, 0);
2338
2339
2340
2341
2342
2343
2344 memcpy(tmp_leaf, save_leaf, xfs_attr3_leaf_hdr_size(save_leaf));
2345
2346 memset(&tmphdr, 0, sizeof(tmphdr));
2347 tmphdr.magic = savehdr.magic;
2348 tmphdr.forw = savehdr.forw;
2349 tmphdr.back = savehdr.back;
2350 tmphdr.firstused = state->args->geo->blksize;
2351
2352
2353 xfs_attr3_leaf_hdr_to_disk(state->args->geo, tmp_leaf, &tmphdr);
2354
2355 if (xfs_attr3_leaf_order(save_blk->bp, &savehdr,
2356 drop_blk->bp, &drophdr)) {
2357 xfs_attr3_leaf_moveents(state->args,
2358 drop_leaf, &drophdr, 0,
2359 tmp_leaf, &tmphdr, 0,
2360 drophdr.count);
2361 xfs_attr3_leaf_moveents(state->args,
2362 save_leaf, &savehdr, 0,
2363 tmp_leaf, &tmphdr, tmphdr.count,
2364 savehdr.count);
2365 } else {
2366 xfs_attr3_leaf_moveents(state->args,
2367 save_leaf, &savehdr, 0,
2368 tmp_leaf, &tmphdr, 0,
2369 savehdr.count);
2370 xfs_attr3_leaf_moveents(state->args,
2371 drop_leaf, &drophdr, 0,
2372 tmp_leaf, &tmphdr, tmphdr.count,
2373 drophdr.count);
2374 }
2375 memcpy(save_leaf, tmp_leaf, state->args->geo->blksize);
2376 savehdr = tmphdr;
2377 kmem_free(tmp_leaf);
2378 }
2379
2380 xfs_attr3_leaf_hdr_to_disk(state->args->geo, save_leaf, &savehdr);
2381 xfs_trans_log_buf(state->args->trans, save_blk->bp, 0,
2382 state->args->geo->blksize - 1);
2383
2384
2385
2386
2387 entry = xfs_attr3_leaf_entryp(save_leaf);
2388 save_blk->hashval = be32_to_cpu(entry[savehdr.count - 1].hashval);
2389 }
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408 int
2409 xfs_attr3_leaf_lookup_int(
2410 struct xfs_buf *bp,
2411 struct xfs_da_args *args)
2412 {
2413 struct xfs_attr_leafblock *leaf;
2414 struct xfs_attr3_icleaf_hdr ichdr;
2415 struct xfs_attr_leaf_entry *entry;
2416 struct xfs_attr_leaf_entry *entries;
2417 struct xfs_attr_leaf_name_local *name_loc;
2418 struct xfs_attr_leaf_name_remote *name_rmt;
2419 xfs_dahash_t hashval;
2420 int probe;
2421 int span;
2422
2423 trace_xfs_attr_leaf_lookup(args);
2424
2425 leaf = bp->b_addr;
2426 xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf);
2427 entries = xfs_attr3_leaf_entryp(leaf);
2428 if (ichdr.count >= args->geo->blksize / 8) {
2429 xfs_buf_mark_corrupt(bp);
2430 return -EFSCORRUPTED;
2431 }
2432
2433
2434
2435
2436 hashval = args->hashval;
2437 probe = span = ichdr.count / 2;
2438 for (entry = &entries[probe]; span > 4; entry = &entries[probe]) {
2439 span /= 2;
2440 if (be32_to_cpu(entry->hashval) < hashval)
2441 probe += span;
2442 else if (be32_to_cpu(entry->hashval) > hashval)
2443 probe -= span;
2444 else
2445 break;
2446 }
2447 if (!(probe >= 0 && (!ichdr.count || probe < ichdr.count))) {
2448 xfs_buf_mark_corrupt(bp);
2449 return -EFSCORRUPTED;
2450 }
2451 if (!(span <= 4 || be32_to_cpu(entry->hashval) == hashval)) {
2452 xfs_buf_mark_corrupt(bp);
2453 return -EFSCORRUPTED;
2454 }
2455
2456
2457
2458
2459
2460 while (probe > 0 && be32_to_cpu(entry->hashval) >= hashval) {
2461 entry--;
2462 probe--;
2463 }
2464 while (probe < ichdr.count &&
2465 be32_to_cpu(entry->hashval) < hashval) {
2466 entry++;
2467 probe++;
2468 }
2469 if (probe == ichdr.count || be32_to_cpu(entry->hashval) != hashval) {
2470 args->index = probe;
2471 return -ENOATTR;
2472 }
2473
2474
2475
2476
2477 for (; probe < ichdr.count && (be32_to_cpu(entry->hashval) == hashval);
2478 entry++, probe++) {
2479
2480
2481
2482 if (entry->flags & XFS_ATTR_LOCAL) {
2483 name_loc = xfs_attr3_leaf_name_local(leaf, probe);
2484 if (!xfs_attr_match(args, name_loc->namelen,
2485 name_loc->nameval, entry->flags))
2486 continue;
2487 args->index = probe;
2488 return -EEXIST;
2489 } else {
2490 name_rmt = xfs_attr3_leaf_name_remote(leaf, probe);
2491 if (!xfs_attr_match(args, name_rmt->namelen,
2492 name_rmt->name, entry->flags))
2493 continue;
2494 args->index = probe;
2495 args->rmtvaluelen = be32_to_cpu(name_rmt->valuelen);
2496 args->rmtblkno = be32_to_cpu(name_rmt->valueblk);
2497 args->rmtblkcnt = xfs_attr3_rmt_blocks(
2498 args->dp->i_mount,
2499 args->rmtvaluelen);
2500 return -EEXIST;
2501 }
2502 }
2503 args->index = probe;
2504 return -ENOATTR;
2505 }
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515 int
2516 xfs_attr3_leaf_getvalue(
2517 struct xfs_buf *bp,
2518 struct xfs_da_args *args)
2519 {
2520 struct xfs_attr_leafblock *leaf;
2521 struct xfs_attr3_icleaf_hdr ichdr;
2522 struct xfs_attr_leaf_entry *entry;
2523 struct xfs_attr_leaf_name_local *name_loc;
2524 struct xfs_attr_leaf_name_remote *name_rmt;
2525
2526 leaf = bp->b_addr;
2527 xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf);
2528 ASSERT(ichdr.count < args->geo->blksize / 8);
2529 ASSERT(args->index < ichdr.count);
2530
2531 entry = &xfs_attr3_leaf_entryp(leaf)[args->index];
2532 if (entry->flags & XFS_ATTR_LOCAL) {
2533 name_loc = xfs_attr3_leaf_name_local(leaf, args->index);
2534 ASSERT(name_loc->namelen == args->namelen);
2535 ASSERT(memcmp(args->name, name_loc->nameval, args->namelen) == 0);
2536 return xfs_attr_copy_value(args,
2537 &name_loc->nameval[args->namelen],
2538 be16_to_cpu(name_loc->valuelen));
2539 }
2540
2541 name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index);
2542 ASSERT(name_rmt->namelen == args->namelen);
2543 ASSERT(memcmp(args->name, name_rmt->name, args->namelen) == 0);
2544 args->rmtvaluelen = be32_to_cpu(name_rmt->valuelen);
2545 args->rmtblkno = be32_to_cpu(name_rmt->valueblk);
2546 args->rmtblkcnt = xfs_attr3_rmt_blocks(args->dp->i_mount,
2547 args->rmtvaluelen);
2548 return xfs_attr_copy_value(args, NULL, args->rmtvaluelen);
2549 }
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560 STATIC void
2561 xfs_attr3_leaf_moveents(
2562 struct xfs_da_args *args,
2563 struct xfs_attr_leafblock *leaf_s,
2564 struct xfs_attr3_icleaf_hdr *ichdr_s,
2565 int start_s,
2566 struct xfs_attr_leafblock *leaf_d,
2567 struct xfs_attr3_icleaf_hdr *ichdr_d,
2568 int start_d,
2569 int count)
2570 {
2571 struct xfs_attr_leaf_entry *entry_s;
2572 struct xfs_attr_leaf_entry *entry_d;
2573 int desti;
2574 int tmp;
2575 int i;
2576
2577
2578
2579
2580 if (count == 0)
2581 return;
2582
2583
2584
2585
2586 ASSERT(ichdr_s->magic == XFS_ATTR_LEAF_MAGIC ||
2587 ichdr_s->magic == XFS_ATTR3_LEAF_MAGIC);
2588 ASSERT(ichdr_s->magic == ichdr_d->magic);
2589 ASSERT(ichdr_s->count > 0 && ichdr_s->count < args->geo->blksize / 8);
2590 ASSERT(ichdr_s->firstused >= (ichdr_s->count * sizeof(*entry_s))
2591 + xfs_attr3_leaf_hdr_size(leaf_s));
2592 ASSERT(ichdr_d->count < args->geo->blksize / 8);
2593 ASSERT(ichdr_d->firstused >= (ichdr_d->count * sizeof(*entry_d))
2594 + xfs_attr3_leaf_hdr_size(leaf_d));
2595
2596 ASSERT(start_s < ichdr_s->count);
2597 ASSERT(start_d <= ichdr_d->count);
2598 ASSERT(count <= ichdr_s->count);
2599
2600
2601
2602
2603
2604 if (start_d < ichdr_d->count) {
2605 tmp = ichdr_d->count - start_d;
2606 tmp *= sizeof(xfs_attr_leaf_entry_t);
2607 entry_s = &xfs_attr3_leaf_entryp(leaf_d)[start_d];
2608 entry_d = &xfs_attr3_leaf_entryp(leaf_d)[start_d + count];
2609 memmove(entry_d, entry_s, tmp);
2610 }
2611
2612
2613
2614
2615
2616 entry_s = &xfs_attr3_leaf_entryp(leaf_s)[start_s];
2617 entry_d = &xfs_attr3_leaf_entryp(leaf_d)[start_d];
2618 desti = start_d;
2619 for (i = 0; i < count; entry_s++, entry_d++, desti++, i++) {
2620 ASSERT(be16_to_cpu(entry_s->nameidx) >= ichdr_s->firstused);
2621 tmp = xfs_attr_leaf_entsize(leaf_s, start_s + i);
2622 #ifdef GROT
2623
2624
2625
2626
2627
2628 if (entry_s->flags & XFS_ATTR_INCOMPLETE) {
2629 memset(xfs_attr3_leaf_name(leaf_s, start_s + i), 0, tmp);
2630 ichdr_s->usedbytes -= tmp;
2631 ichdr_s->count -= 1;
2632 entry_d--;
2633 desti--;
2634 if ((start_s + i) < offset)
2635 result++;
2636 } else {
2637 #endif
2638 ichdr_d->firstused -= tmp;
2639
2640 entry_d->hashval = entry_s->hashval;
2641 entry_d->nameidx = cpu_to_be16(ichdr_d->firstused);
2642 entry_d->flags = entry_s->flags;
2643 ASSERT(be16_to_cpu(entry_d->nameidx) + tmp
2644 <= args->geo->blksize);
2645 memmove(xfs_attr3_leaf_name(leaf_d, desti),
2646 xfs_attr3_leaf_name(leaf_s, start_s + i), tmp);
2647 ASSERT(be16_to_cpu(entry_s->nameidx) + tmp
2648 <= args->geo->blksize);
2649 memset(xfs_attr3_leaf_name(leaf_s, start_s + i), 0, tmp);
2650 ichdr_s->usedbytes -= tmp;
2651 ichdr_d->usedbytes += tmp;
2652 ichdr_s->count -= 1;
2653 ichdr_d->count += 1;
2654 tmp = ichdr_d->count * sizeof(xfs_attr_leaf_entry_t)
2655 + xfs_attr3_leaf_hdr_size(leaf_d);
2656 ASSERT(ichdr_d->firstused >= tmp);
2657 #ifdef GROT
2658 }
2659 #endif
2660 }
2661
2662
2663
2664
2665 if (start_s == ichdr_s->count) {
2666 tmp = count * sizeof(xfs_attr_leaf_entry_t);
2667 entry_s = &xfs_attr3_leaf_entryp(leaf_s)[start_s];
2668 ASSERT(((char *)entry_s + tmp) <=
2669 ((char *)leaf_s + args->geo->blksize));
2670 memset(entry_s, 0, tmp);
2671 } else {
2672
2673
2674
2675
2676 tmp = (ichdr_s->count - count) * sizeof(xfs_attr_leaf_entry_t);
2677 entry_s = &xfs_attr3_leaf_entryp(leaf_s)[start_s + count];
2678 entry_d = &xfs_attr3_leaf_entryp(leaf_s)[start_s];
2679 memmove(entry_d, entry_s, tmp);
2680
2681 tmp = count * sizeof(xfs_attr_leaf_entry_t);
2682 entry_s = &xfs_attr3_leaf_entryp(leaf_s)[ichdr_s->count];
2683 ASSERT(((char *)entry_s + tmp) <=
2684 ((char *)leaf_s + args->geo->blksize));
2685 memset(entry_s, 0, tmp);
2686 }
2687
2688
2689
2690
2691 ichdr_d->freemap[0].base = xfs_attr3_leaf_hdr_size(leaf_d);
2692 ichdr_d->freemap[0].base += ichdr_d->count * sizeof(xfs_attr_leaf_entry_t);
2693 ichdr_d->freemap[0].size = ichdr_d->firstused - ichdr_d->freemap[0].base;
2694 ichdr_d->freemap[1].base = 0;
2695 ichdr_d->freemap[2].base = 0;
2696 ichdr_d->freemap[1].size = 0;
2697 ichdr_d->freemap[2].size = 0;
2698 ichdr_s->holes = 1;
2699 }
2700
2701
2702
2703
2704 xfs_dahash_t
2705 xfs_attr_leaf_lasthash(
2706 struct xfs_buf *bp,
2707 int *count)
2708 {
2709 struct xfs_attr3_icleaf_hdr ichdr;
2710 struct xfs_attr_leaf_entry *entries;
2711 struct xfs_mount *mp = bp->b_mount;
2712
2713 xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo, &ichdr, bp->b_addr);
2714 entries = xfs_attr3_leaf_entryp(bp->b_addr);
2715 if (count)
2716 *count = ichdr.count;
2717 if (!ichdr.count)
2718 return 0;
2719 return be32_to_cpu(entries[ichdr.count - 1].hashval);
2720 }
2721
2722
2723
2724
2725
2726 STATIC int
2727 xfs_attr_leaf_entsize(xfs_attr_leafblock_t *leaf, int index)
2728 {
2729 struct xfs_attr_leaf_entry *entries;
2730 xfs_attr_leaf_name_local_t *name_loc;
2731 xfs_attr_leaf_name_remote_t *name_rmt;
2732 int size;
2733
2734 entries = xfs_attr3_leaf_entryp(leaf);
2735 if (entries[index].flags & XFS_ATTR_LOCAL) {
2736 name_loc = xfs_attr3_leaf_name_local(leaf, index);
2737 size = xfs_attr_leaf_entsize_local(name_loc->namelen,
2738 be16_to_cpu(name_loc->valuelen));
2739 } else {
2740 name_rmt = xfs_attr3_leaf_name_remote(leaf, index);
2741 size = xfs_attr_leaf_entsize_remote(name_rmt->namelen);
2742 }
2743 return size;
2744 }
2745
2746
2747
2748
2749
2750
2751
2752 int
2753 xfs_attr_leaf_newentsize(
2754 struct xfs_da_args *args,
2755 int *local)
2756 {
2757 int size;
2758
2759 size = xfs_attr_leaf_entsize_local(args->namelen, args->valuelen);
2760 if (size < xfs_attr_leaf_entsize_local_max(args->geo->blksize)) {
2761 if (local)
2762 *local = 1;
2763 return size;
2764 }
2765 if (local)
2766 *local = 0;
2767 return xfs_attr_leaf_entsize_remote(args->namelen);
2768 }
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778 int
2779 xfs_attr3_leaf_clearflag(
2780 struct xfs_da_args *args)
2781 {
2782 struct xfs_attr_leafblock *leaf;
2783 struct xfs_attr_leaf_entry *entry;
2784 struct xfs_attr_leaf_name_remote *name_rmt;
2785 struct xfs_buf *bp;
2786 int error;
2787 #ifdef DEBUG
2788 struct xfs_attr3_icleaf_hdr ichdr;
2789 xfs_attr_leaf_name_local_t *name_loc;
2790 int namelen;
2791 char *name;
2792 #endif
2793
2794 trace_xfs_attr_leaf_clearflag(args);
2795
2796
2797
2798 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, &bp);
2799 if (error)
2800 return error;
2801
2802 leaf = bp->b_addr;
2803 entry = &xfs_attr3_leaf_entryp(leaf)[args->index];
2804 ASSERT(entry->flags & XFS_ATTR_INCOMPLETE);
2805
2806 #ifdef DEBUG
2807 xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf);
2808 ASSERT(args->index < ichdr.count);
2809 ASSERT(args->index >= 0);
2810
2811 if (entry->flags & XFS_ATTR_LOCAL) {
2812 name_loc = xfs_attr3_leaf_name_local(leaf, args->index);
2813 namelen = name_loc->namelen;
2814 name = (char *)name_loc->nameval;
2815 } else {
2816 name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index);
2817 namelen = name_rmt->namelen;
2818 name = (char *)name_rmt->name;
2819 }
2820 ASSERT(be32_to_cpu(entry->hashval) == args->hashval);
2821 ASSERT(namelen == args->namelen);
2822 ASSERT(memcmp(name, args->name, namelen) == 0);
2823 #endif
2824
2825 entry->flags &= ~XFS_ATTR_INCOMPLETE;
2826 xfs_trans_log_buf(args->trans, bp,
2827 XFS_DA_LOGRANGE(leaf, entry, sizeof(*entry)));
2828
2829 if (args->rmtblkno) {
2830 ASSERT((entry->flags & XFS_ATTR_LOCAL) == 0);
2831 name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index);
2832 name_rmt->valueblk = cpu_to_be32(args->rmtblkno);
2833 name_rmt->valuelen = cpu_to_be32(args->rmtvaluelen);
2834 xfs_trans_log_buf(args->trans, bp,
2835 XFS_DA_LOGRANGE(leaf, name_rmt, sizeof(*name_rmt)));
2836 }
2837
2838 return 0;
2839 }
2840
2841
2842
2843
2844 int
2845 xfs_attr3_leaf_setflag(
2846 struct xfs_da_args *args)
2847 {
2848 struct xfs_attr_leafblock *leaf;
2849 struct xfs_attr_leaf_entry *entry;
2850 struct xfs_attr_leaf_name_remote *name_rmt;
2851 struct xfs_buf *bp;
2852 int error;
2853 #ifdef DEBUG
2854 struct xfs_attr3_icleaf_hdr ichdr;
2855 #endif
2856
2857 trace_xfs_attr_leaf_setflag(args);
2858
2859
2860
2861
2862 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, &bp);
2863 if (error)
2864 return error;
2865
2866 leaf = bp->b_addr;
2867 #ifdef DEBUG
2868 xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf);
2869 ASSERT(args->index < ichdr.count);
2870 ASSERT(args->index >= 0);
2871 #endif
2872 entry = &xfs_attr3_leaf_entryp(leaf)[args->index];
2873
2874 ASSERT((entry->flags & XFS_ATTR_INCOMPLETE) == 0);
2875 entry->flags |= XFS_ATTR_INCOMPLETE;
2876 xfs_trans_log_buf(args->trans, bp,
2877 XFS_DA_LOGRANGE(leaf, entry, sizeof(*entry)));
2878 if ((entry->flags & XFS_ATTR_LOCAL) == 0) {
2879 name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index);
2880 name_rmt->valueblk = 0;
2881 name_rmt->valuelen = 0;
2882 xfs_trans_log_buf(args->trans, bp,
2883 XFS_DA_LOGRANGE(leaf, name_rmt, sizeof(*name_rmt)));
2884 }
2885
2886 return 0;
2887 }
2888
2889
2890
2891
2892
2893
2894
2895
2896 int
2897 xfs_attr3_leaf_flipflags(
2898 struct xfs_da_args *args)
2899 {
2900 struct xfs_attr_leafblock *leaf1;
2901 struct xfs_attr_leafblock *leaf2;
2902 struct xfs_attr_leaf_entry *entry1;
2903 struct xfs_attr_leaf_entry *entry2;
2904 struct xfs_attr_leaf_name_remote *name_rmt;
2905 struct xfs_buf *bp1;
2906 struct xfs_buf *bp2;
2907 int error;
2908 #ifdef DEBUG
2909 struct xfs_attr3_icleaf_hdr ichdr1;
2910 struct xfs_attr3_icleaf_hdr ichdr2;
2911 xfs_attr_leaf_name_local_t *name_loc;
2912 int namelen1, namelen2;
2913 char *name1, *name2;
2914 #endif
2915
2916 trace_xfs_attr_leaf_flipflags(args);
2917
2918
2919
2920
2921 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, &bp1);
2922 if (error)
2923 return error;
2924
2925
2926
2927
2928 if (args->blkno2 != args->blkno) {
2929 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno2,
2930 &bp2);
2931 if (error)
2932 return error;
2933 } else {
2934 bp2 = bp1;
2935 }
2936
2937 leaf1 = bp1->b_addr;
2938 entry1 = &xfs_attr3_leaf_entryp(leaf1)[args->index];
2939
2940 leaf2 = bp2->b_addr;
2941 entry2 = &xfs_attr3_leaf_entryp(leaf2)[args->index2];
2942
2943 #ifdef DEBUG
2944 xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr1, leaf1);
2945 ASSERT(args->index < ichdr1.count);
2946 ASSERT(args->index >= 0);
2947
2948 xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr2, leaf2);
2949 ASSERT(args->index2 < ichdr2.count);
2950 ASSERT(args->index2 >= 0);
2951
2952 if (entry1->flags & XFS_ATTR_LOCAL) {
2953 name_loc = xfs_attr3_leaf_name_local(leaf1, args->index);
2954 namelen1 = name_loc->namelen;
2955 name1 = (char *)name_loc->nameval;
2956 } else {
2957 name_rmt = xfs_attr3_leaf_name_remote(leaf1, args->index);
2958 namelen1 = name_rmt->namelen;
2959 name1 = (char *)name_rmt->name;
2960 }
2961 if (entry2->flags & XFS_ATTR_LOCAL) {
2962 name_loc = xfs_attr3_leaf_name_local(leaf2, args->index2);
2963 namelen2 = name_loc->namelen;
2964 name2 = (char *)name_loc->nameval;
2965 } else {
2966 name_rmt = xfs_attr3_leaf_name_remote(leaf2, args->index2);
2967 namelen2 = name_rmt->namelen;
2968 name2 = (char *)name_rmt->name;
2969 }
2970 ASSERT(be32_to_cpu(entry1->hashval) == be32_to_cpu(entry2->hashval));
2971 ASSERT(namelen1 == namelen2);
2972 ASSERT(memcmp(name1, name2, namelen1) == 0);
2973 #endif
2974
2975 ASSERT(entry1->flags & XFS_ATTR_INCOMPLETE);
2976 ASSERT((entry2->flags & XFS_ATTR_INCOMPLETE) == 0);
2977
2978 entry1->flags &= ~XFS_ATTR_INCOMPLETE;
2979 xfs_trans_log_buf(args->trans, bp1,
2980 XFS_DA_LOGRANGE(leaf1, entry1, sizeof(*entry1)));
2981 if (args->rmtblkno) {
2982 ASSERT((entry1->flags & XFS_ATTR_LOCAL) == 0);
2983 name_rmt = xfs_attr3_leaf_name_remote(leaf1, args->index);
2984 name_rmt->valueblk = cpu_to_be32(args->rmtblkno);
2985 name_rmt->valuelen = cpu_to_be32(args->rmtvaluelen);
2986 xfs_trans_log_buf(args->trans, bp1,
2987 XFS_DA_LOGRANGE(leaf1, name_rmt, sizeof(*name_rmt)));
2988 }
2989
2990 entry2->flags |= XFS_ATTR_INCOMPLETE;
2991 xfs_trans_log_buf(args->trans, bp2,
2992 XFS_DA_LOGRANGE(leaf2, entry2, sizeof(*entry2)));
2993 if ((entry2->flags & XFS_ATTR_LOCAL) == 0) {
2994 name_rmt = xfs_attr3_leaf_name_remote(leaf2, args->index2);
2995 name_rmt->valueblk = 0;
2996 name_rmt->valuelen = 0;
2997 xfs_trans_log_buf(args->trans, bp2,
2998 XFS_DA_LOGRANGE(leaf2, name_rmt, sizeof(*name_rmt)));
2999 }
3000
3001 return 0;
3002 }