blob: 3337516feeb08dc8fc797b422a63c98c38f2dc60 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
Dave Chinner517c2222013-04-24 18:58:55 +10003 * Copyright (c) 2013 Red Hat, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11004 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Nathan Scott7b718762005-11-02 14:58:39 +11006 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * published by the Free Software Foundation.
9 *
Nathan Scott7b718762005-11-02 14:58:39 +110010 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 *
Nathan Scott7b718762005-11-02 14:58:39 +110015 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110020#include "xfs_fs.h"
Dave Chinner632b89e2013-10-29 22:11:58 +110021#include "xfs_shared.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110022#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110023#include "xfs_log_format.h"
24#include "xfs_trans_resv.h"
Nathan Scotta844f452005-11-02 14:38:42 +110025#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_sb.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_mount.h"
Dave Chinner57062782013-10-15 09:17:51 +110028#include "xfs_da_format.h"
Nathan Scotta844f452005-11-02 14:38:42 +110029#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_inode.h"
Dave Chinner239880e2013-10-23 10:50:10 +110031#include "xfs_trans.h"
Nathan Scotta844f452005-11-02 14:38:42 +110032#include "xfs_inode_item.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110033#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_bmap.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110035#include "xfs_attr_sf.h"
36#include "xfs_attr_remote.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "xfs_attr.h"
38#include "xfs_attr_leaf.h"
39#include "xfs_error.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000040#include "xfs_trace.h"
Dave Chinner517c2222013-04-24 18:58:55 +100041#include "xfs_buf_item.h"
42#include "xfs_cksum.h"
Dave Chinner4bceb182013-10-29 22:11:51 +110043#include "xfs_dir2.h"
Dave Chinner517c2222013-04-24 18:58:55 +100044
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
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 */
Dave Chinner517c2222013-04-24 18:58:55 +100059STATIC 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,
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 xfs_da_state_blk_t *blk1,
69 xfs_da_state_blk_t *blk2);
Dave Chinner517c2222013-04-24 18:58:55 +100070STATIC 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78/*
79 * Utility routines.
80 */
Dave Chinnerc2c4c472014-06-06 15:21:45 +100081STATIC void xfs_attr3_leaf_moveents(struct xfs_da_args *args,
82 struct xfs_attr_leafblock *src_leaf,
Dave Chinner517c2222013-04-24 18:58:55 +100083 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,
Dave Chinnerc2c4c472014-06-06 15:21:45 +100086 int move_count);
Christoph Hellwigba0f32d2005-06-21 15:36:52 +100087STATIC int xfs_attr_leaf_entsize(xfs_attr_leafblock_t *leaf, int index);
Tim Shimmin726801b2006-09-28 11:01:37 +100088
Dave Chinner517c2222013-04-24 18:58:55 +100089void
90xfs_attr3_leaf_hdr_from_disk(
Brian Foster2f661242015-04-13 11:26:02 +100091 struct xfs_da_geometry *geo,
Dave Chinner517c2222013-04-24 18:58:55 +100092 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(
Brian Foster2f661242015-04-13 11:26:02 +1000133 struct xfs_da_geometry *geo,
Dave Chinner517c2222013-04-24 18:58:55 +1000134 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(
Dave Chinnerad14c332012-11-12 22:54:16 +1100177 struct xfs_buf *bp)
178{
179 struct xfs_mount *mp = bp->b_target->bt_mount;
Dave Chinner517c2222013-04-24 18:58:55 +1000180 struct xfs_attr_leafblock *leaf = bp->b_addr;
181 struct xfs_attr3_icleaf_hdr ichdr;
Dave Chinnerad14c332012-11-12 22:54:16 +1100182
Brian Foster2f661242015-04-13 11:26:02 +1000183 xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo, &ichdr, leaf);
Dave Chinner517c2222013-04-24 18:58:55 +1000184
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;
198 }
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;
206}
207
208static void
209xfs_attr3_leaf_write_verify(
210 struct xfs_buf *bp)
211{
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)) {
Dave Chinner24513372014-06-25 14:58:08 +1000217 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100218 xfs_verifier_error(bp);
Dave Chinner517c2222013-04-24 18:58:55 +1000219 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
Eric Sandeenf1dbcd72014-02-27 15:18:23 +1100228 xfs_buf_update_cksum(bp, XFS_ATTR3_LEAF_CRC_OFF);
Dave Chinner517c2222013-04-24 18:58:55 +1000229}
230
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 */
237static void
238xfs_attr3_leaf_read_verify(
239 struct xfs_buf *bp)
240{
241 struct xfs_mount *mp = bp->b_target->bt_mount;
242
Eric Sandeence5028c2014-02-27 15:23:10 +1100243 if (xfs_sb_version_hascrc(&mp->m_sb) &&
244 !xfs_buf_verify_cksum(bp, XFS_ATTR3_LEAF_CRC_OFF))
Dave Chinner24513372014-06-25 14:58:08 +1000245 xfs_buf_ioerror(bp, -EFSBADCRC);
Eric Sandeence5028c2014-02-27 15:23:10 +1100246 else if (!xfs_attr3_leaf_verify(bp))
Dave Chinner24513372014-06-25 14:58:08 +1000247 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100248
249 if (bp->b_error)
250 xfs_verifier_error(bp);
Dave Chinner612cfbf2012-11-14 17:52:32 +1100251}
Dave Chinnerad14c332012-11-12 22:54:16 +1100252
Dave Chinner517c2222013-04-24 18:58:55 +1000253const 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,
Dave Chinner1813dd62012-11-14 17:54:40 +1100256};
Dave Chinner612cfbf2012-11-14 17:52:32 +1100257
Dave Chinnerad14c332012-11-12 22:54:16 +1100258int
Dave Chinner517c2222013-04-24 18:58:55 +1000259xfs_attr3_leaf_read(
Dave Chinnerad14c332012-11-12 22:54:16 +1100260 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{
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100266 int err;
267
268 err = xfs_da_read_buf(tp, dp, bno, mappedbno, bpp,
Dave Chinner517c2222013-04-24 18:58:55 +1000269 XFS_ATTR_FORK, &xfs_attr3_leaf_buf_ops);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100270 if (!err && tp)
Dave Chinner61fe1352013-04-03 16:11:30 +1100271 xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_ATTR_LEAF_BUF);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100272 return err;
Dave Chinnerad14c332012-11-12 22:54:16 +1100273}
274
Tim Shimmin726801b2006-09-28 11:01:37 +1000275/*========================================================================
276 * Namespace helper routines
277 *========================================================================*/
278
Tim Shimmin726801b2006-09-28 11:01:37 +1000279/*
280 * If namespace bits don't match return 0.
281 * If all match then return 1.
282 */
Christoph Hellwigb8f82a42009-11-14 16:17:22 +0000283STATIC int
Tim Shimmin726801b2006-09-28 11:01:37 +1000284xfs_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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290/*========================================================================
Nathan Scottd8cc8902005-11-02 10:34:53 +1100291 * External routines when attribute fork size < XFS_LITINO(mp).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 *========================================================================*/
293
294/*
Nathan Scottd8cc8902005-11-02 10:34:53 +1100295 * Query whether the requested number of additional bytes of extended
296 * attribute space will be able to fit inline.
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000297 *
Nathan Scottd8cc8902005-11-02 10:34:53 +1100298 * 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.
303 */
304int
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 */
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000310 int dsize;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100311 xfs_mount_t *mp = dp->i_mount;
312
Christoph Hellwig56cea2d2013-03-12 23:30:36 +1100313 /* rounded down */
314 offset = (XFS_LITINO(mp, dp->i_d.di_version) - bytes) >> 3;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100315
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
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000325 /*
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))
Nathan Scottda087ba2005-11-02 15:00:20 +1100344 return 0;
Nathan Scottda087ba2005-11-02 15:00:20 +1100345
Barry Naujoke5889e92007-02-10 18:35:58 +1100346 dsize = dp->i_df.if_bytes;
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000347
Barry Naujoke5889e92007-02-10 18:35:58 +1100348 switch (dp->i_d.di_format) {
349 case XFS_DINODE_FMT_EXTENTS:
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000350 /*
Barry Naujoke5889e92007-02-10 18:35:58 +1100351 * If there is no attr fork and the data fork is extents,
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000352 * 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
Barry Naujoke5889e92007-02-10 18:35:58 +1100355 * the btree root.
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000356 */
Christoph Hellwig1a5902c2009-03-29 19:26:46 +0200357 if (!dp->i_d.di_forkoff && dp->i_df.if_bytes >
358 xfs_default_attroffset(dp))
Barry Naujoke5889e92007-02-10 18:35:58 +1100359 dsize = XFS_BMDR_SPACE_CALC(MINDBTPTRS);
360 break;
Barry Naujoke5889e92007-02-10 18:35:58 +1100361 case XFS_DINODE_FMT_BTREE:
362 /*
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000363 * 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
Barry Naujoke5889e92007-02-10 18:35:58 +1100366 * plenty of room for attrs
367 */
368 if (dp->i_d.di_forkoff) {
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000369 if (offset < dp->i_d.di_forkoff)
Barry Naujoke5889e92007-02-10 18:35:58 +1100370 return 0;
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000371 return dp->i_d.di_forkoff;
372 }
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500373 dsize = XFS_BMAP_BROOT_SPACE(mp, dp->i_df.if_broot);
Barry Naujoke5889e92007-02-10 18:35:58 +1100374 break;
375 }
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000376
377 /*
378 * A data fork btree root must have space for at least
Barry Naujoke5889e92007-02-10 18:35:58 +1100379 * MINDBTPTRS key/ptr pairs if the data fork is small or empty.
380 */
381 minforkoff = MAX(dsize, XFS_BMDR_SPACE_CALC(MINDBTPTRS));
Nathan Scottd8cc8902005-11-02 10:34:53 +1100382 minforkoff = roundup(minforkoff, 8) >> 3;
383
384 /* attr fork btree root can have at least this many key/ptr pairs */
Christoph Hellwig56cea2d2013-03-12 23:30:36 +1100385 maxforkoff = XFS_LITINO(mp, dp->i_d.di_version) -
386 XFS_BMDR_SPACE_CALC(MINABTPTRS);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100387 maxforkoff = maxforkoff >> 3; /* rounded down */
388
Nathan Scottd8cc8902005-11-02 10:34:53 +1100389 if (offset >= maxforkoff)
390 return maxforkoff;
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000391 if (offset >= minforkoff)
392 return offset;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100393 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{
Nathan Scott13059ff2006-01-11 15:32:01 +1100402 if ((mp->m_flags & XFS_MOUNT_ATTR2) &&
Eric Sandeen62118702008-03-06 13:44:28 +1100403 !(xfs_sb_version_hasattr2(&mp->m_sb))) {
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000404 spin_lock(&mp->m_sb_lock);
Eric Sandeen62118702008-03-06 13:44:28 +1100405 if (!xfs_sb_version_hasattr2(&mp->m_sb)) {
406 xfs_sb_version_addattr2(&mp->m_sb);
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000407 spin_unlock(&mp->m_sb_lock);
Dave Chinner61e63ec2015-01-22 09:10:31 +1100408 xfs_log_sb(tp);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100409 } else
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000410 spin_unlock(&mp->m_sb_lock);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100411 }
412}
413
414/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 * Create the initial contents of a shortform attribute list.
416 */
Nathan Scottd8cc8902005-11-02 10:34:53 +1100417void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418xfs_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
Dave Chinner5a5881c2012-03-22 05:15:13 +0000424 trace_xfs_attr_sf_create(args);
425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 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;
Nathan Scott3b244aa2006-03-17 17:29:25 +1100441 hdr->totsize = cpu_to_be16(sizeof(*hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE | XFS_ILOG_ADATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443}
444
445/*
446 * Add a name/value pair to the shortform attribute list.
447 * Overflow from the inode has already been checked for.
448 */
Nathan Scottd8cc8902005-11-02 10:34:53 +1100449void
450xfs_attr_shortform_add(xfs_da_args_t *args, int forkoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{
452 xfs_attr_shortform_t *sf;
453 xfs_attr_sf_entry_t *sfe;
454 int i, offset, size;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100455 xfs_mount_t *mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 xfs_inode_t *dp;
457 xfs_ifork_t *ifp;
458
Dave Chinner5a5881c2012-03-22 05:15:13 +0000459 trace_xfs_attr_sf_add(args);
460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 dp = args->dp;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100462 mp = dp->i_mount;
463 dp->i_d.di_forkoff = forkoff;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 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];
Nathan Scott3b244aa2006-03-17 17:29:25 +1100469 for (i = 0; i < sf->hdr.count; sfe = XFS_ATTR_SF_NEXTENTRY(sfe), i++) {
Nathan Scottd8cc8902005-11-02 10:34:53 +1100470#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 if (sfe->namelen != args->namelen)
472 continue;
473 if (memcmp(args->name, sfe->nameval, args->namelen) != 0)
474 continue;
Tim Shimmin726801b2006-09-28 11:01:37 +1000475 if (!xfs_attr_namesp_match(args->flags, sfe->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 continue;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100477 ASSERT(0);
478#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 }
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;
Nathan Scott3b244aa2006-03-17 17:29:25 +1100488 sfe->valuelen = args->valuelen;
Tim Shimmin726801b2006-09-28 11:01:37 +1000489 sfe->flags = XFS_ATTR_NSP_ARGS_TO_ONDISK(args->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 memcpy(sfe->nameval, args->name, args->namelen);
491 memcpy(&sfe->nameval[args->namelen], args->value, args->valuelen);
Nathan Scott3b244aa2006-03-17 17:29:25 +1100492 sf->hdr.count++;
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800493 be16_add_cpu(&sf->hdr.totsize, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE | XFS_ILOG_ADATA);
495
Nathan Scottd8cc8902005-11-02 10:34:53 +1100496 xfs_sbversion_add_attr2(mp, args->trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497}
498
499/*
Christoph Hellwige1486de2009-02-04 09:36:00 +0100500 * 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
Christoph Hellwige1486de2009-02-04 09:36:00 +0100515 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
516}
517
518/*
Nathan Scottd8cc8902005-11-02 10:34:53 +1100519 * Remove an attribute from the shortform attribute list structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 */
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;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100527 xfs_mount_t *mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 xfs_inode_t *dp;
529
Dave Chinner5a5881c2012-03-22 05:15:13 +0000530 trace_xfs_attr_sf_remove(args);
531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 dp = args->dp;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100533 mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 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];
Nathan Scott3b244aa2006-03-17 17:29:25 +1100537 end = sf->hdr.count;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100538 for (i = 0; i < end; sfe = XFS_ATTR_SF_NEXTENTRY(sfe),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 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;
Tim Shimmin726801b2006-09-28 11:01:37 +1000545 if (!xfs_attr_namesp_match(args->flags, sfe->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 continue;
547 break;
548 }
Nathan Scottd8cc8902005-11-02 10:34:53 +1100549 if (i == end)
Dave Chinner24513372014-06-25 14:58:08 +1000550 return -ENOATTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551
Nathan Scottd8cc8902005-11-02 10:34:53 +1100552 /*
553 * Fix up the attribute fork data, covering the hole
554 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 end = base + size;
Nathan Scott3b244aa2006-03-17 17:29:25 +1100556 totsize = be16_to_cpu(sf->hdr.totsize);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100557 if (end != totsize)
558 memmove(&((char *)sf)[base], &((char *)sf)[end], totsize - end);
Nathan Scott3b244aa2006-03-17 17:29:25 +1100559 sf->hdr.count--;
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800560 be16_add_cpu(&sf->hdr.totsize, -size);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100561
562 /*
563 * Fix up the start offset of the attribute fork
564 */
565 totsize -= size;
Barry Naujok6a178102008-05-21 16:42:05 +1000566 if (totsize == sizeof(xfs_attr_sf_hdr_t) &&
Christoph Hellwige1486de2009-02-04 09:36:00 +0100567 (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);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100571 } 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);
Barry Naujok6a178102008-05-21 16:42:05 +1000575 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);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100579 xfs_trans_log_inode(args->trans, dp,
580 XFS_ILOG_CORE | XFS_ILOG_ADATA);
581 }
582
583 xfs_sbversion_add_attr2(mp, args->trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Eric Sandeend99831f2014-06-22 15:03:54 +1000585 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586}
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
Dave Chinner5a5881c2012-03-22 05:15:13 +0000600 trace_xfs_attr_sf_lookup(args);
601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 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];
Nathan Scott3b244aa2006-03-17 17:29:25 +1100606 for (i = 0; i < sf->hdr.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 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;
Tim Shimmin726801b2006-09-28 11:01:37 +1000612 if (!xfs_attr_namesp_match(args->flags, sfe->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 continue;
Dave Chinner24513372014-06-25 14:58:08 +1000614 return -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 }
Dave Chinner24513372014-06-25 14:58:08 +1000616 return -ENOATTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}
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
Eric Sandeen914ed442012-03-30 11:24:11 -0500630 ASSERT(args->dp->i_afp->if_flags == XFS_IFINLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 sf = (xfs_attr_shortform_t *)args->dp->i_afp->if_u1.if_data;
632 sfe = &sf->list[0];
Nathan Scott3b244aa2006-03-17 17:29:25 +1100633 for (i = 0; i < sf->hdr.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 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;
Tim Shimmin726801b2006-09-28 11:01:37 +1000639 if (!xfs_attr_namesp_match(args->flags, sfe->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 continue;
641 if (args->flags & ATTR_KERNOVAL) {
Nathan Scott3b244aa2006-03-17 17:29:25 +1100642 args->valuelen = sfe->valuelen;
Dave Chinner24513372014-06-25 14:58:08 +1000643 return -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 }
Nathan Scott3b244aa2006-03-17 17:29:25 +1100645 if (args->valuelen < sfe->valuelen) {
646 args->valuelen = sfe->valuelen;
Dave Chinner24513372014-06-25 14:58:08 +1000647 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 }
Nathan Scott3b244aa2006-03-17 17:29:25 +1100649 args->valuelen = sfe->valuelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 memcpy(args->value, &sfe->nameval[args->namelen],
651 args->valuelen);
Dave Chinner24513372014-06-25 14:58:08 +1000652 return -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 }
Dave Chinner24513372014-06-25 14:58:08 +1000654 return -ENOATTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655}
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;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000670 struct xfs_buf *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 xfs_ifork_t *ifp;
672
Dave Chinner5a5881c2012-03-22 05:15:13 +0000673 trace_xfs_attr_sf_to_leaf(args);
674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 dp = args->dp;
676 ifp = dp->i_afp;
677 sf = (xfs_attr_shortform_t *)ifp->if_u1.if_data;
Nathan Scott3b244aa2006-03-17 17:29:25 +1100678 size = be16_to_cpu(sf->hdr.totsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 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);
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000685 xfs_bmap_local_to_extents_empty(dp, XFS_ATTR_FORK);
686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 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 */
Dave Chinner24513372014-06-25 14:58:08 +1000694 if (error == -EIO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 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);
Dave Chinner517c2222013-04-24 18:58:55 +1000702 error = xfs_attr3_leaf_create(args, blkno, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 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;
Dave Chinner0650b552014-06-06 15:01:58 +1000715 nargs.geo = args->geo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 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;
Barry Naujok6a178102008-05-21 16:42:05 +1000721 nargs.op_flags = XFS_DA_OP_OKNOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
723 sfe = &sf->list[0];
Nathan Scott3b244aa2006-03-17 17:29:25 +1100724 for (i = 0; i < sf->hdr.count; i++) {
Dave Chinnera9273ca2010-01-20 10:47:48 +1100725 nargs.name = sfe->nameval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 nargs.namelen = sfe->namelen;
Dave Chinnera9273ca2010-01-20 10:47:48 +1100727 nargs.value = &sfe->nameval[nargs.namelen];
Nathan Scott3b244aa2006-03-17 17:29:25 +1100728 nargs.valuelen = sfe->valuelen;
Dave Chinnera9273ca2010-01-20 10:47:48 +1100729 nargs.hashval = xfs_da_hashname(sfe->nameval,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 sfe->namelen);
Tim Shimmin726801b2006-09-28 11:01:37 +1000731 nargs.flags = XFS_ATTR_NSP_ONDISK_TO_ARGS(sfe->flags);
Dave Chinner517c2222013-04-24 18:58:55 +1000732 error = xfs_attr3_leaf_lookup_int(bp, &nargs); /* set a->index */
Dave Chinner24513372014-06-25 14:58:08 +1000733 ASSERT(error == -ENOATTR);
Dave Chinner517c2222013-04-24 18:58:55 +1000734 error = xfs_attr3_leaf_add(bp, &nargs);
Dave Chinner24513372014-06-25 14:58:08 +1000735 ASSERT(error != -ENOSPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 if (error)
737 goto out;
738 sfe = XFS_ATTR_SF_NEXTENTRY(sfe);
739 }
740 error = 0;
741
742out:
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000743 kmem_free(tmpbuffer);
Eric Sandeend99831f2014-06-22 15:03:54 +1000744 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745}
746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747/*
748 * Check a leaf attribute block to see if all the entries would fit into
749 * a shortform attribute list.
750 */
751int
Dave Chinner1d9025e2012-06-22 18:50:14 +1000752xfs_attr_shortform_allfit(
Dave Chinnerb38958d2013-05-20 09:51:14 +1000753 struct xfs_buf *bp,
754 struct xfs_inode *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755{
Dave Chinnerb38958d2013-05-20 09:51:14 +1000756 struct xfs_attr_leafblock *leaf;
757 struct xfs_attr_leaf_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 xfs_attr_leaf_name_local_t *name_loc;
Dave Chinnerb38958d2013-05-20 09:51:14 +1000759 struct xfs_attr3_icleaf_hdr leafhdr;
760 int bytes;
761 int i;
Brian Foster2f661242015-04-13 11:26:02 +1000762 struct xfs_mount *mp = bp->b_target->bt_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Dave Chinner1d9025e2012-06-22 18:50:14 +1000764 leaf = bp->b_addr;
Brian Foster2f661242015-04-13 11:26:02 +1000765 xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo, &leafhdr, leaf);
Dave Chinnerb38958d2013-05-20 09:51:14 +1000766 entry = xfs_attr3_leaf_entryp(leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 bytes = sizeof(struct xfs_attr_sf_hdr);
Dave Chinnerb38958d2013-05-20 09:51:14 +1000769 for (i = 0; i < leafhdr.count; entry++, i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 if (entry->flags & XFS_ATTR_INCOMPLETE)
771 continue; /* don't copy partial entries */
772 if (!(entry->flags & XFS_ATTR_LOCAL))
Eric Sandeend99831f2014-06-22 15:03:54 +1000773 return 0;
Dave Chinner517c2222013-04-24 18:58:55 +1000774 name_loc = xfs_attr3_leaf_name_local(leaf, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 if (name_loc->namelen >= XFS_ATTR_SF_ENTSIZE_MAX)
Eric Sandeend99831f2014-06-22 15:03:54 +1000776 return 0;
Nathan Scott053b5752006-03-17 17:29:09 +1100777 if (be16_to_cpu(name_loc->valuelen) >= XFS_ATTR_SF_ENTSIZE_MAX)
Eric Sandeend99831f2014-06-22 15:03:54 +1000778 return 0;
Dave Chinnerb38958d2013-05-20 09:51:14 +1000779 bytes += sizeof(struct xfs_attr_sf_entry) - 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 + name_loc->namelen
Nathan Scott053b5752006-03-17 17:29:09 +1100781 + be16_to_cpu(name_loc->valuelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 }
Nathan Scott13059ff2006-01-11 15:32:01 +1100783 if ((dp->i_mount->m_flags & XFS_MOUNT_ATTR2) &&
Barry Naujoke5889e92007-02-10 18:35:58 +1100784 (dp->i_d.di_format != XFS_DINODE_FMT_BTREE) &&
Nathan Scotte0144ca2005-11-25 16:42:22 +1100785 (bytes == sizeof(struct xfs_attr_sf_hdr)))
Dave Chinnerb38958d2013-05-20 09:51:14 +1000786 return -1;
787 return xfs_attr_shortform_bytesfit(dp, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788}
789
790/*
791 * Convert a leaf attribute list to shortform attribute list
792 */
793int
Dave Chinner517c2222013-04-24 18:58:55 +1000794xfs_attr3_leaf_to_shortform(
795 struct xfs_buf *bp,
796 struct xfs_da_args *args,
797 int forkoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798{
Dave Chinner517c2222013-04-24 18:58:55 +1000799 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Dave Chinner5a5881c2012-03-22 05:15:13 +0000809 trace_xfs_attr_leaf_to_sf(args);
810
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000811 tmpbuffer = kmem_alloc(args->geo->blksize, KM_SLEEP);
Dave Chinner517c2222013-04-24 18:58:55 +1000812 if (!tmpbuffer)
Dave Chinner24513372014-06-25 14:58:08 +1000813 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000815 memcpy(tmpbuffer, bp->b_addr, args->geo->blksize);
Dave Chinner517c2222013-04-24 18:58:55 +1000816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 leaf = (xfs_attr_leafblock_t *)tmpbuffer;
Brian Foster2f661242015-04-13 11:26:02 +1000818 xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf);
Dave Chinner517c2222013-04-24 18:58:55 +1000819 entry = xfs_attr3_leaf_entryp(leaf);
820
821 /* XXX (dgc): buffer is about to be marked stale - why zero it? */
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000822 memset(bp->b_addr, 0, args->geo->blksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
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;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100830
831 if (forkoff == -1) {
Nathan Scott13059ff2006-01-11 15:32:01 +1100832 ASSERT(dp->i_mount->m_flags & XFS_MOUNT_ATTR2);
Barry Naujoke5889e92007-02-10 18:35:58 +1100833 ASSERT(dp->i_d.di_format != XFS_DINODE_FMT_BTREE);
Christoph Hellwige1486de2009-02-04 09:36:00 +0100834 xfs_attr_fork_reset(dp, args->trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 goto out;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100836 }
837
838 xfs_attr_shortform_create(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840 /*
841 * Copy the attributes
842 */
843 memset((char *)&nargs, 0, sizeof(nargs));
Dave Chinner0650b552014-06-06 15:01:58 +1000844 nargs.geo = args->geo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 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;
Barry Naujok6a178102008-05-21 16:42:05 +1000851 nargs.op_flags = XFS_DA_OP_OKNOENT;
Dave Chinner517c2222013-04-24 18:58:55 +1000852
853 for (i = 0; i < ichdr.count; entry++, i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 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);
Dave Chinner517c2222013-04-24 18:58:55 +1000859 name_loc = xfs_attr3_leaf_name_local(leaf, i);
Dave Chinnera9273ca2010-01-20 10:47:48 +1100860 nargs.name = name_loc->nameval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 nargs.namelen = name_loc->namelen;
Dave Chinnera9273ca2010-01-20 10:47:48 +1100862 nargs.value = &name_loc->nameval[nargs.namelen];
Nathan Scott053b5752006-03-17 17:29:09 +1100863 nargs.valuelen = be16_to_cpu(name_loc->valuelen);
Nathan Scott6b19f2d2006-03-17 17:29:02 +1100864 nargs.hashval = be32_to_cpu(entry->hashval);
Tim Shimmin726801b2006-09-28 11:01:37 +1000865 nargs.flags = XFS_ATTR_NSP_ONDISK_TO_ARGS(entry->flags);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100866 xfs_attr_shortform_add(&nargs, forkoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 }
868 error = 0;
869
870out:
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000871 kmem_free(tmpbuffer);
Dave Chinner517c2222013-04-24 18:58:55 +1000872 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873}
874
875/*
876 * Convert from using a single leaf to a root node and a leaf.
877 */
878int
Dave Chinner517c2222013-04-24 18:58:55 +1000879xfs_attr3_leaf_to_node(
880 struct xfs_da_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881{
Dave Chinner517c2222013-04-24 18:58:55 +1000882 struct xfs_attr_leafblock *leaf;
883 struct xfs_attr3_icleaf_hdr icleafhdr;
884 struct xfs_attr_leaf_entry *entries;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000885 struct xfs_da_node_entry *btree;
Dave Chinner517c2222013-04-24 18:58:55 +1000886 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
Dave Chinner5a5881c2012-03-22 05:15:13 +0000895 trace_xfs_attr_leaf_to_node(args);
896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 error = xfs_da_grow_inode(args, &blkno);
898 if (error)
899 goto out;
Dave Chinner517c2222013-04-24 18:58:55 +1000900 error = xfs_attr3_leaf_read(args->trans, dp, 0, -1, &bp1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 if (error)
902 goto out;
Dave Chinnerad14c332012-11-12 22:54:16 +1100903
Dave Chinner517c2222013-04-24 18:58:55 +1000904 error = xfs_da_get_buf(args->trans, dp, blkno, -1, &bp2, XFS_ATTR_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 if (error)
906 goto out;
Dave Chinner517c2222013-04-24 18:58:55 +1000907
908 /* copy leaf to new buffer, update identifiers */
Dave Chinner61fe1352013-04-03 16:11:30 +1100909 xfs_trans_buf_set_type(args->trans, bp2, XFS_BLFT_ATTR_LEAF_BUF);
Dave Chinner1813dd62012-11-14 17:54:40 +1100910 bp2->b_ops = bp1->b_ops;
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000911 memcpy(bp2->b_addr, bp1->b_addr, args->geo->blksize);
Dave Chinner517c2222013-04-24 18:58:55 +1000912 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 }
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000916 xfs_trans_log_buf(args->trans, bp2, 0, args->geo->blksize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
918 /*
919 * Set up the new root node.
920 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000921 error = xfs_da3_node_create(args, 0, 1, &bp1, XFS_ATTR_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 if (error)
923 goto out;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000924 node = bp1->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100925 dp->d_ops->node_hdr_from_disk(&icnodehdr, node);
Dave Chinner4bceb182013-10-29 22:11:51 +1100926 btree = dp->d_ops->node_tree_p(node);
Dave Chinner517c2222013-04-24 18:58:55 +1000927
928 leaf = bp2->b_addr;
Brian Foster2f661242015-04-13 11:26:02 +1000929 xfs_attr3_leaf_hdr_from_disk(args->geo, &icleafhdr, leaf);
Dave Chinner517c2222013-04-24 18:58:55 +1000930 entries = xfs_attr3_leaf_entryp(leaf);
931
932 /* both on-disk, don't endian-flip twice */
933 btree[0].hashval = entries[icleafhdr.count - 1].hashval;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000934 btree[0].before = cpu_to_be32(blkno);
Dave Chinner517c2222013-04-24 18:58:55 +1000935 icnodehdr.count = 1;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100936 dp->d_ops->node_hdr_to_disk(node, &icnodehdr);
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000937 xfs_trans_log_buf(args->trans, bp1, 0, args->geo->blksize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 error = 0;
939out:
Dave Chinner517c2222013-04-24 18:58:55 +1000940 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941}
942
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943/*========================================================================
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 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +1000951STATIC int
Dave Chinner517c2222013-04-24 18:58:55 +1000952xfs_attr3_leaf_create(
953 struct xfs_da_args *args,
954 xfs_dablk_t blkno,
955 struct xfs_buf **bpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956{
Dave Chinner517c2222013-04-24 18:58:55 +1000957 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Dave Chinner5a5881c2012-03-22 05:15:13 +0000964 trace_xfs_attr_leaf_create(args);
965
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 error = xfs_da_get_buf(args->trans, args->dp, blkno, -1, &bp,
967 XFS_ATTR_FORK);
968 if (error)
Dave Chinner517c2222013-04-24 18:58:55 +1000969 return error;
970 bp->b_ops = &xfs_attr3_leaf_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100971 xfs_trans_buf_set_type(args->trans, bp, XFS_BLFT_ATTR_LEAF_BUF);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000972 leaf = bp->b_addr;
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000973 memset(leaf, 0, args->geo->blksize);
Dave Chinner517c2222013-04-24 18:58:55 +1000974
975 memset(&ichdr, 0, sizeof(ichdr));
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000976 ichdr.firstused = args->geo->blksize;
Dave Chinner517c2222013-04-24 18:58:55 +1000977
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);
986
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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 }
Dave Chinner517c2222013-04-24 18:58:55 +1000992 ichdr.freemap[0].size = ichdr.firstused - ichdr.freemap[0].base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
Brian Foster2f661242015-04-13 11:26:02 +1000994 xfs_attr3_leaf_hdr_to_disk(args->geo, leaf, &ichdr);
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000995 xfs_trans_log_buf(args->trans, bp, 0, args->geo->blksize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
997 *bpp = bp;
Dave Chinner517c2222013-04-24 18:58:55 +1000998 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999}
1000
1001/*
1002 * Split the leaf node, rebalance, then add the new entry.
1003 */
1004int
Dave Chinner517c2222013-04-24 18:58:55 +10001005xfs_attr3_leaf_split(
1006 struct xfs_da_state *state,
1007 struct xfs_da_state_blk *oldblk,
1008 struct xfs_da_state_blk *newblk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009{
1010 xfs_dablk_t blkno;
1011 int error;
1012
Dave Chinner5a5881c2012-03-22 05:15:13 +00001013 trace_xfs_attr_leaf_split(state->args);
1014
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 /*
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)
Eric Sandeend99831f2014-06-22 15:03:54 +10001021 return error;
Dave Chinner517c2222013-04-24 18:58:55 +10001022 error = xfs_attr3_leaf_create(state->args, blkno, &newblk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10001024 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 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 */
Dave Chinner517c2222013-04-24 18:58:55 +10001032 xfs_attr3_leaf_rebalance(state, oldblk, newblk);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001033 error = xfs_da3_blk_link(state, oldblk, newblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10001035 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
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 */
Dave Chinner5a5881c2012-03-22 05:15:13 +00001044 if (state->inleaf) {
1045 trace_xfs_attr_leaf_add_old(state->args);
Dave Chinner517c2222013-04-24 18:58:55 +10001046 error = xfs_attr3_leaf_add(oldblk->bp, state->args);
Dave Chinner5a5881c2012-03-22 05:15:13 +00001047 } else {
1048 trace_xfs_attr_leaf_add_new(state->args);
Dave Chinner517c2222013-04-24 18:58:55 +10001049 error = xfs_attr3_leaf_add(newblk->bp, state->args);
Dave Chinner5a5881c2012-03-22 05:15:13 +00001050 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
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);
Eric Sandeend99831f2014-06-22 15:03:54 +10001057 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058}
1059
1060/*
1061 * Add a name to the leaf attribute list structure.
1062 */
1063int
Dave Chinner517c2222013-04-24 18:58:55 +10001064xfs_attr3_leaf_add(
Dave Chinner1d9025e2012-06-22 18:50:14 +10001065 struct xfs_buf *bp,
1066 struct xfs_da_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
Dave Chinner517c2222013-04-24 18:58:55 +10001068 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
Dave Chinner5a5881c2012-03-22 05:15:13 +00001076 trace_xfs_attr_leaf_add(args);
1077
Dave Chinner1d9025e2012-06-22 18:50:14 +10001078 leaf = bp->b_addr;
Brian Foster2f661242015-04-13 11:26:02 +10001079 xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf);
Dave Chinner517c2222013-04-24 18:58:55 +10001080 ASSERT(args->index >= 0 && args->index <= ichdr.count);
Dave Chinnerc59f0ad2014-06-06 15:21:27 +10001081 entsize = xfs_attr_leaf_newentsize(args, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
1083 /*
1084 * Search through freemap for first-fit on new name length.
1085 * (may need to figure in size of entry struct too)
1086 */
Dave Chinner517c2222013-04-24 18:58:55 +10001087 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 continue;
1093 }
Dave Chinner517c2222013-04-24 18:58:55 +10001094 if (!ichdr.freemap[i].size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 continue; /* no space in this map */
1096 tmp = entsize;
Dave Chinner517c2222013-04-24 18:58:55 +10001097 if (ichdr.freemap[i].base < ichdr.firstused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 tmp += sizeof(xfs_attr_leaf_entry_t);
Dave Chinner517c2222013-04-24 18:58:55 +10001099 if (ichdr.freemap[i].size >= tmp) {
1100 tmp = xfs_attr3_leaf_add_work(bp, &ichdr, args, i);
1101 goto out_log_hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 }
Dave Chinner517c2222013-04-24 18:58:55 +10001103 sum += ichdr.freemap[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 }
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 */
Dave Chinner517c2222013-04-24 18:58:55 +10001111 if (!ichdr.holes && sum < entsize)
Dave Chinner24513372014-06-25 14:58:08 +10001112 return -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
1114 /*
1115 * Compact the entries to coalesce free space.
1116 * This may change the hdr->count via dropping INCOMPLETE entries.
1117 */
Dave Chinner517c2222013-04-24 18:58:55 +10001118 xfs_attr3_leaf_compact(args, &ichdr, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
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 */
Dave Chinner517c2222013-04-24 18:58:55 +10001124 if (ichdr.freemap[0].size < (entsize + sizeof(xfs_attr_leaf_entry_t))) {
Dave Chinner24513372014-06-25 14:58:08 +10001125 tmp = -ENOSPC;
Dave Chinner517c2222013-04-24 18:58:55 +10001126 goto out_log_hdr;
1127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
Dave Chinner517c2222013-04-24 18:58:55 +10001129 tmp = xfs_attr3_leaf_add_work(bp, &ichdr, args, 0);
1130
1131out_log_hdr:
Brian Foster2f661242015-04-13 11:26:02 +10001132 xfs_attr3_leaf_hdr_to_disk(args->geo, leaf, &ichdr);
Dave Chinner517c2222013-04-24 18:58:55 +10001133 xfs_trans_log_buf(args->trans, bp,
1134 XFS_DA_LOGRANGE(leaf, &leaf->hdr,
1135 xfs_attr3_leaf_hdr_size(leaf)));
1136 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137}
1138
1139/*
1140 * Add a name to a leaf attribute list structure.
1141 */
1142STATIC int
Dave Chinner517c2222013-04-24 18:58:55 +10001143xfs_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)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148{
Dave Chinner517c2222013-04-24 18:58:55 +10001149 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Dave Chinneree732592012-11-12 22:53:53 +11001157 trace_xfs_attr_leaf_add_work(args);
1158
Dave Chinner1d9025e2012-06-22 18:50:14 +10001159 leaf = bp->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10001160 ASSERT(mapindex >= 0 && mapindex < XFS_ATTR_LEAF_MAPSIZE);
1161 ASSERT(args->index >= 0 && args->index <= ichdr->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
1163 /*
1164 * Force open some space in the entry array and fill it in.
1165 */
Dave Chinner517c2222013-04-24 18:58:55 +10001166 entry = &xfs_attr3_leaf_entryp(leaf)[args->index];
1167 if (args->index < ichdr->count) {
1168 tmp = ichdr->count - args->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 tmp *= sizeof(xfs_attr_leaf_entry_t);
Dave Chinner517c2222013-04-24 18:58:55 +10001170 memmove(entry + 1, entry, tmp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001171 xfs_trans_log_buf(args->trans, bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 XFS_DA_LOGRANGE(leaf, entry, tmp + sizeof(*entry)));
1173 }
Dave Chinner517c2222013-04-24 18:58:55 +10001174 ichdr->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
1176 /*
1177 * Allocate space for the new string (at the end of the run).
1178 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 mp = args->trans->t_mountp;
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001180 ASSERT(ichdr->freemap[mapindex].base < args->geo->blksize);
Dave Chinner517c2222013-04-24 18:58:55 +10001181 ASSERT((ichdr->freemap[mapindex].base & 0x3) == 0);
1182 ASSERT(ichdr->freemap[mapindex].size >=
Dave Chinnerc59f0ad2014-06-06 15:21:27 +10001183 xfs_attr_leaf_newentsize(args, NULL));
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001184 ASSERT(ichdr->freemap[mapindex].size < args->geo->blksize);
Dave Chinner517c2222013-04-24 18:58:55 +10001185 ASSERT((ichdr->freemap[mapindex].size & 0x3) == 0);
1186
Dave Chinnerc59f0ad2014-06-06 15:21:27 +10001187 ichdr->freemap[mapindex].size -= xfs_attr_leaf_newentsize(args, &tmp);
Dave Chinner517c2222013-04-24 18:58:55 +10001188
1189 entry->nameidx = cpu_to_be16(ichdr->freemap[mapindex].base +
1190 ichdr->freemap[mapindex].size);
Nathan Scott6b19f2d2006-03-17 17:29:02 +11001191 entry->hashval = cpu_to_be32(args->hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 entry->flags = tmp ? XFS_ATTR_LOCAL : 0;
Tim Shimmin726801b2006-09-28 11:01:37 +10001193 entry->flags |= XFS_ATTR_NSP_ARGS_TO_ONDISK(args->flags);
Barry Naujok6a178102008-05-21 16:42:05 +10001194 if (args->op_flags & XFS_DA_OP_RENAME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 entry->flags |= XFS_ATTR_INCOMPLETE;
1196 if ((args->blkno2 == args->blkno) &&
1197 (args->index2 <= args->index)) {
1198 args->index2++;
1199 }
1200 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10001201 xfs_trans_log_buf(args->trans, bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 XFS_DA_LOGRANGE(leaf, entry, sizeof(*entry)));
Nathan Scott6b19f2d2006-03-17 17:29:02 +11001203 ASSERT((args->index == 0) ||
1204 (be32_to_cpu(entry->hashval) >= be32_to_cpu((entry-1)->hashval)));
Dave Chinner517c2222013-04-24 18:58:55 +10001205 ASSERT((args->index == ichdr->count - 1) ||
Nathan Scott6b19f2d2006-03-17 17:29:02 +11001206 (be32_to_cpu(entry->hashval) <= be32_to_cpu((entry+1)->hashval)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
1208 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 * 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) {
Dave Chinner517c2222013-04-24 18:58:55 +10001216 name_loc = xfs_attr3_leaf_name_local(leaf, args->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 name_loc->namelen = args->namelen;
Nathan Scott053b5752006-03-17 17:29:09 +11001218 name_loc->valuelen = cpu_to_be16(args->valuelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 memcpy((char *)name_loc->nameval, args->name, args->namelen);
1220 memcpy((char *)&name_loc->nameval[args->namelen], args->value,
Nathan Scott053b5752006-03-17 17:29:09 +11001221 be16_to_cpu(name_loc->valuelen));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10001223 name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 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;
Dave Chinnerad1858d2013-05-21 18:02:08 +10001231 args->rmtblkcnt = xfs_attr3_rmt_blocks(mp, args->valuelen);
Dave Chinner8275cdd2014-05-06 07:37:31 +10001232 args->rmtvaluelen = args->valuelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10001234 xfs_trans_log_buf(args->trans, bp,
Dave Chinner517c2222013-04-24 18:58:55 +10001235 XFS_DA_LOGRANGE(leaf, xfs_attr3_leaf_name(leaf, args->index),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 xfs_attr_leaf_entsize(leaf, args->index)));
1237
1238 /*
1239 * Update the control info for this leaf node
1240 */
Dave Chinner517c2222013-04-24 18:58:55 +10001241 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 }
1254 }
Dave Chinner517c2222013-04-24 18:58:55 +10001255 ichdr->usedbytes += xfs_attr_leaf_entsize(leaf, args->index);
1256 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257}
1258
1259/*
1260 * Garbage collect a leaf attribute list block by copying it to a new buffer.
1261 */
1262STATIC void
Dave Chinner517c2222013-04-24 18:58:55 +10001263xfs_attr3_leaf_compact(
Dave Chinneree732592012-11-12 22:53:53 +11001264 struct xfs_da_args *args,
Dave Chinnerd4c712b2013-05-21 18:02:06 +10001265 struct xfs_attr3_icleaf_hdr *ichdr_dst,
Dave Chinneree732592012-11-12 22:53:53 +11001266 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267{
Dave Chinnerd4c712b2013-05-21 18:02:06 +10001268 struct xfs_attr_leafblock *leaf_src;
1269 struct xfs_attr_leafblock *leaf_dst;
1270 struct xfs_attr3_icleaf_hdr ichdr_src;
Dave Chinneree732592012-11-12 22:53:53 +11001271 struct xfs_trans *trans = args->trans;
Dave Chinneree732592012-11-12 22:53:53 +11001272 char *tmpbuffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
Dave Chinneree732592012-11-12 22:53:53 +11001274 trace_xfs_attr_leaf_compact(args);
1275
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001276 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);
Dave Chinnerd4c712b2013-05-21 18:02:06 +10001279 leaf_src = (xfs_attr_leafblock_t *)tmpbuffer;
1280 leaf_dst = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
1282 /*
Dave Chinnerd4c712b2013-05-21 18:02:06 +10001283 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 */
Dave Chinnerd4c712b2013-05-21 18:02:06 +10001287 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 */
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001291 ichdr_dst->firstused = args->geo->blksize;
Dave Chinnerd4c712b2013-05-21 18:02:06 +10001292 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
Dave Chinnerd4c712b2013-05-21 18:02:06 +10001299 /* write the header back to initialise the underlying buffer */
Brian Foster2f661242015-04-13 11:26:02 +10001300 xfs_attr3_leaf_hdr_to_disk(args->geo, leaf_dst, ichdr_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
1302 /*
1303 * Copy all entry's in the same (sorted) order,
1304 * but allocate name/value pairs packed and in sequence.
1305 */
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001306 xfs_attr3_leaf_moveents(args, leaf_src, &ichdr_src, 0,
1307 leaf_dst, ichdr_dst, 0, ichdr_src.count);
Dave Chinner517c2222013-04-24 18:58:55 +10001308 /*
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 */
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001312 xfs_trans_log_buf(trans, bp, 0, args->geo->blksize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001314 kmem_free(tmpbuffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315}
1316
1317/*
Dave Chinner517c2222013-04-24 18:58:55 +10001318 * 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;
Brian Foster2f661242015-04-13 11:26:02 +10001350 struct xfs_mount *mp = leaf1_bp->b_target->bt_mount;
Dave Chinner517c2222013-04-24 18:58:55 +10001351
Brian Foster2f661242015-04-13 11:26:02 +10001352 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);
Dave Chinner517c2222013-04-24 18:58:55 +10001354 return xfs_attr3_leaf_order(leaf1_bp, &ichdr1, leaf2_bp, &ichdr2);
1355}
1356
1357/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 * 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
Dave Chinner517c2222013-04-24 18:58:55 +10001370xfs_attr3_leaf_rebalance(
1371 struct xfs_da_state *state,
1372 struct xfs_da_state_blk *blk1,
1373 struct xfs_da_state_blk *blk2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374{
Dave Chinner517c2222013-04-24 18:58:55 +10001375 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
1388 /*
1389 * Set up environment.
1390 */
1391 ASSERT(blk1->magic == XFS_ATTR_LEAF_MAGIC);
1392 ASSERT(blk2->magic == XFS_ATTR_LEAF_MAGIC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001393 leaf1 = blk1->bp->b_addr;
1394 leaf2 = blk2->bp->b_addr;
Brian Foster2f661242015-04-13 11:26:02 +10001395 xfs_attr3_leaf_hdr_from_disk(state->args->geo, &ichdr1, leaf1);
1396 xfs_attr3_leaf_hdr_from_disk(state->args->geo, &ichdr2, leaf2);
Dave Chinner517c2222013-04-24 18:58:55 +10001397 ASSERT(ichdr2.count == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 args = state->args;
1399
Dave Chinner5a5881c2012-03-22 05:15:13 +00001400 trace_xfs_attr_leaf_rebalance(args);
1401
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 /*
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;
Dave Chinner517c2222013-04-24 18:58:55 +10001409 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
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 tmp_blk = blk1;
1414 blk1 = blk2;
1415 blk2 = tmp_blk;
Dave Chinner517c2222013-04-24 18:58:55 +10001416
1417 /* struct copies to swap them rather than reconverting */
1418 tmp_ichdr = ichdr1;
1419 ichdr1 = ichdr2;
1420 ichdr2 = tmp_ichdr;
1421
Dave Chinner1d9025e2012-06-22 18:50:14 +10001422 leaf1 = blk1->bp->b_addr;
1423 leaf2 = blk2->bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 swap = 1;
1425 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
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 */
Dave Chinner517c2222013-04-24 18:58:55 +10001435 state->inleaf = xfs_attr3_leaf_figure_balance(state, blk1, &ichdr1,
1436 blk2, &ichdr2,
1437 &count, &totallen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 if (swap)
1439 state->inleaf = !state->inleaf;
1440
1441 /*
1442 * Move any entries required from leaf to leaf:
1443 */
Dave Chinner517c2222013-04-24 18:58:55 +10001444 if (count < ichdr1.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 /*
1446 * Figure the total bytes to be added to the destination leaf.
1447 */
1448 /* number entries being moved */
Dave Chinner517c2222013-04-24 18:58:55 +10001449 count = ichdr1.count - count;
1450 space = ichdr1.usedbytes - totallen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 space += count * sizeof(xfs_attr_leaf_entry_t);
1452
1453 /*
1454 * leaf2 is the destination, compact it if it looks tight.
1455 */
Dave Chinner517c2222013-04-24 18:58:55 +10001456 max = ichdr2.firstused - xfs_attr3_leaf_hdr_size(leaf1);
1457 max -= ichdr2.count * sizeof(xfs_attr_leaf_entry_t);
Dave Chinneree732592012-11-12 22:53:53 +11001458 if (space > max)
Dave Chinner517c2222013-04-24 18:58:55 +10001459 xfs_attr3_leaf_compact(args, &ichdr2, blk2->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
1461 /*
1462 * Move high entries from leaf1 to low end of leaf2.
1463 */
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001464 xfs_attr3_leaf_moveents(args, leaf1, &ichdr1,
1465 ichdr1.count - count, leaf2, &ichdr2, 0, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
Dave Chinner517c2222013-04-24 18:58:55 +10001467 } else if (count > ichdr1.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 /*
1469 * I assert that since all callers pass in an empty
1470 * second buffer, this code should never execute.
1471 */
Dave Chinner07428d72012-11-12 22:09:44 +11001472 ASSERT(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
1474 /*
1475 * Figure the total bytes to be added to the destination leaf.
1476 */
1477 /* number entries being moved */
Dave Chinner517c2222013-04-24 18:58:55 +10001478 count -= ichdr1.count;
1479 space = totallen - ichdr1.usedbytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 space += count * sizeof(xfs_attr_leaf_entry_t);
1481
1482 /*
1483 * leaf1 is the destination, compact it if it looks tight.
1484 */
Dave Chinner517c2222013-04-24 18:58:55 +10001485 max = ichdr1.firstused - xfs_attr3_leaf_hdr_size(leaf1);
1486 max -= ichdr1.count * sizeof(xfs_attr_leaf_entry_t);
Dave Chinneree732592012-11-12 22:53:53 +11001487 if (space > max)
Dave Chinner517c2222013-04-24 18:58:55 +10001488 xfs_attr3_leaf_compact(args, &ichdr1, blk1->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
1490 /*
1491 * Move low entries from leaf2 to high end of leaf1.
1492 */
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001493 xfs_attr3_leaf_moveents(args, leaf2, &ichdr2, 0, leaf1, &ichdr1,
1494 ichdr1.count, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 }
1496
Brian Foster2f661242015-04-13 11:26:02 +10001497 xfs_attr3_leaf_hdr_to_disk(state->args->geo, leaf1, &ichdr1);
1498 xfs_attr3_leaf_hdr_to_disk(state->args->geo, leaf2, &ichdr2);
Dave Chinnerb2a21e72014-06-06 15:22:04 +10001499 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);
Dave Chinner517c2222013-04-24 18:58:55 +10001501
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 /*
1503 * Copy out last hashval in each block for B-tree code.
1504 */
Dave Chinner517c2222013-04-24 18:58:55 +10001505 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
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 */
Dave Chinner517c2222013-04-24 18:58:55 +10001522 if (blk1->index > ichdr1.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 ASSERT(state->inleaf == 0);
Dave Chinner517c2222013-04-24 18:58:55 +10001524 blk2->index = blk1->index - ichdr1.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 args->index = args->index2 = blk2->index;
1526 args->blkno = args->blkno2 = blk2->blkno;
Dave Chinner517c2222013-04-24 18:58:55 +10001527 } else if (blk1->index == ichdr1.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 if (state->inleaf) {
1529 args->index = blk1->index;
1530 args->blkno = blk1->blkno;
1531 args->index2 = 0;
1532 args->blkno2 = blk2->blkno;
1533 } else {
Dave Chinner07428d72012-11-12 22:09:44 +11001534 /*
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 */
Dave Chinner517c2222013-04-24 18:58:55 +10001539 blk2->index = blk1->index - ichdr1.count;
Dave Chinner07428d72012-11-12 22:09:44 +11001540 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 }
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
Dave Chinner517c2222013-04-24 18:58:55 +10001567xfs_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)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575{
Dave Chinner517c2222013-04-24 18:58:55 +10001576 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
1588 /*
1589 * Examine entries until we reduce the absolute difference in
1590 * byte usage between the two blocks to a minimum.
1591 */
Dave Chinner517c2222013-04-24 18:58:55 +10001592 max = ichdr1->count + ichdr2->count;
1593 half = (max + 1) * sizeof(*entry);
1594 half += ichdr1->usedbytes + ichdr2->usedbytes +
Dave Chinnerc59f0ad2014-06-06 15:21:27 +10001595 xfs_attr_leaf_newentsize(state->args, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 half /= 2;
Dave Chinnerb2a21e72014-06-06 15:22:04 +10001597 lastdelta = state->args->geo->blksize;
Dave Chinner517c2222013-04-24 18:58:55 +10001598 entry = xfs_attr3_leaf_entryp(leaf1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 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) +
Dave Chinnerc59f0ad2014-06-06 15:21:27 +10001607 xfs_attr_leaf_newentsize(state->args, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 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 */
Dave Chinner517c2222013-04-24 18:58:55 +10001618 if (count == ichdr1->count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 leaf1 = leaf2;
Dave Chinner517c2222013-04-24 18:58:55 +10001620 entry = xfs_attr3_leaf_entryp(leaf1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 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) +
Dave Chinnerc59f0ad2014-06-06 15:21:27 +10001643 xfs_attr_leaf_newentsize(state->args, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 }
1645
1646 *countarg = count;
1647 *usedbytesarg = totallen;
Dave Chinner517c2222013-04-24 18:58:55 +10001648 return foundit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649}
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
Dave Chinner517c2222013-04-24 18:58:55 +10001667xfs_attr3_leaf_toosmall(
1668 struct xfs_da_state *state,
1669 int *action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670{
Dave Chinner517c2222013-04-24 18:58:55 +10001671 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
Dave Chinneree732592012-11-12 22:53:53 +11001682 trace_xfs_attr_leaf_toosmall(state->args);
1683
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 /*
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 ];
Dave Chinner517c2222013-04-24 18:58:55 +10001690 leaf = blk->bp->b_addr;
Brian Foster2f661242015-04-13 11:26:02 +10001691 xfs_attr3_leaf_hdr_from_disk(state->args->geo, &ichdr, leaf);
Dave Chinner517c2222013-04-24 18:58:55 +10001692 bytes = xfs_attr3_leaf_hdr_size(leaf) +
1693 ichdr.count * sizeof(xfs_attr_leaf_entry_t) +
1694 ichdr.usedbytes;
Dave Chinnerb2a21e72014-06-06 15:22:04 +10001695 if (bytes > (state->args->geo->blksize >> 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 *action = 0; /* blk over 50%, don't try to join */
Eric Sandeend99831f2014-06-22 15:03:54 +10001697 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 }
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
Nathan Scottc41564b2006-03-29 08:55:14 +10001703 * coalesce it with a sibling block. We choose (arbitrarily)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 * to merge with the forward block unless it is NULL.
1705 */
Dave Chinner517c2222013-04-24 18:58:55 +10001706 if (ichdr.count == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 /*
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 */
Dave Chinner517c2222013-04-24 18:58:55 +10001711 forward = (ichdr.forw != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 memcpy(&state->altpath, &state->path, sizeof(state->path));
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001713 error = xfs_da3_path_shift(state, &state->altpath, forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 0, &retval);
1715 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10001716 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 if (retval) {
1718 *action = 0;
1719 } else {
1720 *action = 2;
1721 }
Dave Chinner517c2222013-04-24 18:58:55 +10001722 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 }
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 */
Dave Chinner517c2222013-04-24 18:58:55 +10001733 forward = ichdr.forw < ichdr.back;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 for (i = 0; i < 2; forward = !forward, i++) {
Dave Chinner517c2222013-04-24 18:58:55 +10001735 struct xfs_attr3_icleaf_hdr ichdr2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 if (forward)
Dave Chinner517c2222013-04-24 18:58:55 +10001737 blkno = ichdr.forw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 else
Dave Chinner517c2222013-04-24 18:58:55 +10001739 blkno = ichdr.back;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 if (blkno == 0)
1741 continue;
Dave Chinner517c2222013-04-24 18:58:55 +10001742 error = xfs_attr3_leaf_read(state->args->trans, state->args->dp,
Dave Chinnerad14c332012-11-12 22:54:16 +11001743 blkno, -1, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10001745 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
Brian Foster2f661242015-04-13 11:26:02 +10001747 xfs_attr3_leaf_hdr_from_disk(state->args->geo, &ichdr2, bp->b_addr);
Dave Chinner517c2222013-04-24 18:58:55 +10001748
Dave Chinnerb2a21e72014-06-06 15:22:04 +10001749 bytes = state->args->geo->blksize -
1750 (state->args->geo->blksize >> 2) -
Dave Chinner517c2222013-04-24 18:58:55 +10001751 ichdr.usedbytes - ichdr2.usedbytes -
1752 ((ichdr.count + ichdr2.count) *
1753 sizeof(xfs_attr_leaf_entry_t)) -
1754 xfs_attr3_leaf_hdr_size(leaf);
1755
Dave Chinner1d9025e2012-06-22 18:50:14 +10001756 xfs_trans_brelse(state->args->trans, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 if (bytes >= 0)
1758 break; /* fits with at least 25% to spare */
1759 }
1760 if (i >= 2) {
1761 *action = 0;
Eric Sandeend99831f2014-06-22 15:03:54 +10001762 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 }
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) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001771 error = xfs_da3_path_shift(state, &state->altpath, forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 0, &retval);
1773 } else {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001774 error = xfs_da3_path_shift(state, &state->path, forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 0, &retval);
1776 }
1777 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10001778 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 if (retval) {
1780 *action = 0;
1781 } else {
1782 *action = 1;
1783 }
Eric Sandeend99831f2014-06-22 15:03:54 +10001784 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785}
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
Dave Chinner517c2222013-04-24 18:58:55 +10001794xfs_attr3_leaf_remove(
1795 struct xfs_buf *bp,
1796 struct xfs_da_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797{
Dave Chinner517c2222013-04-24 18:58:55 +10001798 struct xfs_attr_leafblock *leaf;
1799 struct xfs_attr3_icleaf_hdr ichdr;
1800 struct xfs_attr_leaf_entry *entry;
Dave Chinner517c2222013-04-24 18:58:55 +10001801 int before;
1802 int after;
1803 int smallest;
1804 int entsize;
1805 int tablesize;
1806 int tmp;
1807 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
Dave Chinneree732592012-11-12 22:53:53 +11001809 trace_xfs_attr_leaf_remove(args);
1810
Dave Chinner1d9025e2012-06-22 18:50:14 +10001811 leaf = bp->b_addr;
Brian Foster2f661242015-04-13 11:26:02 +10001812 xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf);
Dave Chinner517c2222013-04-24 18:58:55 +10001813
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001814 ASSERT(ichdr.count > 0 && ichdr.count < args->geo->blksize / 8);
Dave Chinner517c2222013-04-24 18:58:55 +10001815 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);
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001822 ASSERT(be16_to_cpu(entry->nameidx) < args->geo->blksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
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 */
Dave Chinner517c2222013-04-24 18:58:55 +10001830 tablesize = ichdr.count * sizeof(xfs_attr_leaf_entry_t)
1831 + xfs_attr3_leaf_hdr_size(leaf);
1832 tmp = ichdr.freemap[0].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 before = after = -1;
1834 smallest = XFS_ATTR_LEAF_MAPSIZE - 1;
1835 entsize = xfs_attr_leaf_entsize(leaf, args->index);
Dave Chinner517c2222013-04-24 18:58:55 +10001836 for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001837 ASSERT(ichdr.freemap[i].base < args->geo->blksize);
1838 ASSERT(ichdr.freemap[i].size < args->geo->blksize);
Dave Chinner517c2222013-04-24 18:58:55 +10001839 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 }
1843
Dave Chinner517c2222013-04-24 18:58:55 +10001844 if (ichdr.freemap[i].base + ichdr.freemap[i].size ==
1845 be16_to_cpu(entry->nameidx)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 before = i;
Dave Chinner517c2222013-04-24 18:58:55 +10001847 } else if (ichdr.freemap[i].base ==
1848 (be16_to_cpu(entry->nameidx) + entsize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 after = i;
Dave Chinner517c2222013-04-24 18:58:55 +10001850 } else if (ichdr.freemap[i].size < tmp) {
1851 tmp = ichdr.freemap[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 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)) {
Dave Chinner517c2222013-04-24 18:58:55 +10001862 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 } else if (before >= 0) {
Dave Chinner517c2222013-04-24 18:58:55 +10001867 ichdr.freemap[before].size += entsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10001869 ichdr.freemap[after].base = be16_to_cpu(entry->nameidx);
1870 ichdr.freemap[after].size += entsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 }
1872 } else {
1873 /*
1874 * Replace smallest region (if it is smaller than free'd entry)
1875 */
Dave Chinner517c2222013-04-24 18:58:55 +10001876 if (ichdr.freemap[smallest].size < entsize) {
1877 ichdr.freemap[smallest].base = be16_to_cpu(entry->nameidx);
1878 ichdr.freemap[smallest].size = entsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 }
1880 }
1881
1882 /*
1883 * Did we remove the first entry?
1884 */
Dave Chinner517c2222013-04-24 18:58:55 +10001885 if (be16_to_cpu(entry->nameidx) == ichdr.firstused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 smallest = 1;
1887 else
1888 smallest = 0;
1889
1890 /*
1891 * Compress the remaining entries and zero out the removed stuff.
1892 */
Dave Chinner517c2222013-04-24 18:58:55 +10001893 memset(xfs_attr3_leaf_name(leaf, args->index), 0, entsize);
1894 ichdr.usedbytes -= entsize;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001895 xfs_trans_log_buf(args->trans, bp,
Dave Chinner517c2222013-04-24 18:58:55 +10001896 XFS_DA_LOGRANGE(leaf, xfs_attr3_leaf_name(leaf, args->index),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 entsize));
1898
Dave Chinner517c2222013-04-24 18:58:55 +10001899 tmp = (ichdr.count - args->index) * sizeof(xfs_attr_leaf_entry_t);
1900 memmove(entry, entry + 1, tmp);
1901 ichdr.count--;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001902 xfs_trans_log_buf(args->trans, bp,
Dave Chinner517c2222013-04-24 18:58:55 +10001903 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));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907
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) {
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001915 tmp = args->geo->blksize;
Dave Chinner517c2222013-04-24 18:58:55 +10001916 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);
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001919 ASSERT(be16_to_cpu(entry->nameidx) < args->geo->blksize);
Nathan Scott6b19f2d2006-03-17 17:29:02 +11001920
1921 if (be16_to_cpu(entry->nameidx) < tmp)
1922 tmp = be16_to_cpu(entry->nameidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 }
Dave Chinner517c2222013-04-24 18:58:55 +10001924 ichdr.firstused = tmp;
1925 if (!ichdr.firstused)
1926 ichdr.firstused = tmp - XFS_ATTR_LEAF_NAME_ALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10001928 ichdr.holes = 1; /* mark as needing compaction */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 }
Brian Foster2f661242015-04-13 11:26:02 +10001930 xfs_attr3_leaf_hdr_to_disk(args->geo, leaf, &ichdr);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001931 xfs_trans_log_buf(args->trans, bp,
Dave Chinner517c2222013-04-24 18:58:55 +10001932 XFS_DA_LOGRANGE(leaf, &leaf->hdr,
1933 xfs_attr3_leaf_hdr_size(leaf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
1935 /*
1936 * Check if leaf is less than 50% full, caller may want to
1937 * "join" the leaf with a sibling if so.
1938 */
Dave Chinner517c2222013-04-24 18:58:55 +10001939 tmp = ichdr.usedbytes + xfs_attr3_leaf_hdr_size(leaf) +
1940 ichdr.count * sizeof(xfs_attr_leaf_entry_t);
1941
Dave Chinnered358c02014-06-06 15:18:10 +10001942 return tmp < args->geo->magicpct; /* leaf is < 37% full */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943}
1944
1945/*
1946 * Move all the attribute list entries from drop_leaf into save_leaf.
1947 */
1948void
Dave Chinner517c2222013-04-24 18:58:55 +10001949xfs_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)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953{
Dave Chinner517c2222013-04-24 18:58:55 +10001954 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
Dave Chinner5a5881c2012-03-22 05:15:13 +00001960 trace_xfs_attr_leaf_unbalance(state->args);
1961
Dave Chinner1d9025e2012-06-22 18:50:14 +10001962 drop_leaf = drop_blk->bp->b_addr;
1963 save_leaf = save_blk->bp->b_addr;
Brian Foster2f661242015-04-13 11:26:02 +10001964 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);
Dave Chinner517c2222013-04-24 18:58:55 +10001966 entry = xfs_attr3_leaf_entryp(drop_leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
1968 /*
1969 * Save last hashval from dying block for later Btree fixup.
1970 */
Dave Chinner517c2222013-04-24 18:58:55 +10001971 drop_blk->hashval = be32_to_cpu(entry[drophdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
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 */
Dave Chinner517c2222013-04-24 18:58:55 +10001978 if (savehdr.holes == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 /*
1980 * dest leaf has no holes, so we add there. May need
1981 * to make some room in the entry array.
1982 */
Dave Chinner517c2222013-04-24 18:58:55 +10001983 if (xfs_attr3_leaf_order(save_blk->bp, &savehdr,
1984 drop_blk->bp, &drophdr)) {
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001985 xfs_attr3_leaf_moveents(state->args,
1986 drop_leaf, &drophdr, 0,
Dave Chinner517c2222013-04-24 18:58:55 +10001987 save_leaf, &savehdr, 0,
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001988 drophdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 } else {
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001990 xfs_attr3_leaf_moveents(state->args,
1991 drop_leaf, &drophdr, 0,
Dave Chinner517c2222013-04-24 18:58:55 +10001992 save_leaf, &savehdr,
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001993 savehdr.count, drophdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 }
1995 } else {
1996 /*
1997 * Destination has holes, so we make a temporary copy
1998 * of the leaf and add them both to that.
1999 */
Dave Chinner517c2222013-04-24 18:58:55 +10002000 struct xfs_attr_leafblock *tmp_leaf;
2001 struct xfs_attr3_icleaf_hdr tmphdr;
2002
Dave Chinnerb2a21e72014-06-06 15:22:04 +10002003 tmp_leaf = kmem_zalloc(state->args->geo->blksize, KM_SLEEP);
Dave Chinner517c2222013-04-24 18:58:55 +10002004
Dave Chinner8517de22013-05-21 18:02:05 +10002005 /*
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));
2011
2012 memset(&tmphdr, 0, sizeof(tmphdr));
Dave Chinner517c2222013-04-24 18:58:55 +10002013 tmphdr.magic = savehdr.magic;
2014 tmphdr.forw = savehdr.forw;
2015 tmphdr.back = savehdr.back;
Dave Chinnerb2a21e72014-06-06 15:22:04 +10002016 tmphdr.firstused = state->args->geo->blksize;
Dave Chinner8517de22013-05-21 18:02:05 +10002017
2018 /* write the header to the temp buffer to initialise it */
Brian Foster2f661242015-04-13 11:26:02 +10002019 xfs_attr3_leaf_hdr_to_disk(state->args->geo, tmp_leaf, &tmphdr);
Dave Chinner8517de22013-05-21 18:02:05 +10002020
Dave Chinner517c2222013-04-24 18:58:55 +10002021 if (xfs_attr3_leaf_order(save_blk->bp, &savehdr,
2022 drop_blk->bp, &drophdr)) {
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002023 xfs_attr3_leaf_moveents(state->args,
2024 drop_leaf, &drophdr, 0,
Dave Chinner517c2222013-04-24 18:58:55 +10002025 tmp_leaf, &tmphdr, 0,
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002026 drophdr.count);
2027 xfs_attr3_leaf_moveents(state->args,
2028 save_leaf, &savehdr, 0,
Dave Chinner517c2222013-04-24 18:58:55 +10002029 tmp_leaf, &tmphdr, tmphdr.count,
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002030 savehdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 } else {
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002032 xfs_attr3_leaf_moveents(state->args,
2033 save_leaf, &savehdr, 0,
Dave Chinner517c2222013-04-24 18:58:55 +10002034 tmp_leaf, &tmphdr, 0,
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002035 savehdr.count);
2036 xfs_attr3_leaf_moveents(state->args,
2037 drop_leaf, &drophdr, 0,
Dave Chinner517c2222013-04-24 18:58:55 +10002038 tmp_leaf, &tmphdr, tmphdr.count,
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002039 drophdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 }
Dave Chinnerb2a21e72014-06-06 15:22:04 +10002041 memcpy(save_leaf, tmp_leaf, state->args->geo->blksize);
Dave Chinner517c2222013-04-24 18:58:55 +10002042 savehdr = tmphdr; /* struct copy */
2043 kmem_free(tmp_leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 }
2045
Brian Foster2f661242015-04-13 11:26:02 +10002046 xfs_attr3_leaf_hdr_to_disk(state->args->geo, save_leaf, &savehdr);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002047 xfs_trans_log_buf(state->args->trans, save_blk->bp, 0,
Dave Chinnerb2a21e72014-06-06 15:22:04 +10002048 state->args->geo->blksize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049
2050 /*
2051 * Copy out last hashval in each block for B-tree code.
2052 */
Dave Chinner517c2222013-04-24 18:58:55 +10002053 entry = xfs_attr3_leaf_entryp(save_leaf);
2054 save_blk->hashval = be32_to_cpu(entry[savehdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055}
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
Dave Chinner517c2222013-04-24 18:58:55 +10002075xfs_attr3_leaf_lookup_int(
2076 struct xfs_buf *bp,
2077 struct xfs_da_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078{
Dave Chinner517c2222013-04-24 18:58:55 +10002079 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Dave Chinner5a5881c2012-03-22 05:15:13 +00002089 trace_xfs_attr_leaf_lookup(args);
2090
Dave Chinner1d9025e2012-06-22 18:50:14 +10002091 leaf = bp->b_addr;
Brian Foster2f661242015-04-13 11:26:02 +10002092 xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf);
Dave Chinner517c2222013-04-24 18:58:55 +10002093 entries = xfs_attr3_leaf_entryp(leaf);
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002094 ASSERT(ichdr.count < args->geo->blksize / 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
2096 /*
2097 * Binary search. (note: small blocks will skip this loop)
2098 */
2099 hashval = args->hashval;
Dave Chinner517c2222013-04-24 18:58:55 +10002100 probe = span = ichdr.count / 2;
2101 for (entry = &entries[probe]; span > 4; entry = &entries[probe]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 span /= 2;
Nathan Scott6b19f2d2006-03-17 17:29:02 +11002103 if (be32_to_cpu(entry->hashval) < hashval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 probe += span;
Nathan Scott6b19f2d2006-03-17 17:29:02 +11002105 else if (be32_to_cpu(entry->hashval) > hashval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 probe -= span;
2107 else
2108 break;
2109 }
Dave Chinner517c2222013-04-24 18:58:55 +10002110 ASSERT(probe >= 0 && (!ichdr.count || probe < ichdr.count));
2111 ASSERT(span <= 4 || be32_to_cpu(entry->hashval) == hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112
2113 /*
2114 * Since we may have duplicate hashval's, find the first matching
2115 * hashval in the leaf.
2116 */
Dave Chinner517c2222013-04-24 18:58:55 +10002117 while (probe > 0 && be32_to_cpu(entry->hashval) >= hashval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 entry--;
2119 probe--;
2120 }
Dave Chinner517c2222013-04-24 18:58:55 +10002121 while (probe < ichdr.count &&
2122 be32_to_cpu(entry->hashval) < hashval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123 entry++;
2124 probe++;
2125 }
Dave Chinner517c2222013-04-24 18:58:55 +10002126 if (probe == ichdr.count || be32_to_cpu(entry->hashval) != hashval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 args->index = probe;
Dave Chinner24513372014-06-25 14:58:08 +10002128 return -ENOATTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 }
2130
2131 /*
2132 * Duplicate keys may be present, so search all of them for a match.
2133 */
Dave Chinner517c2222013-04-24 18:58:55 +10002134 for (; probe < ichdr.count && (be32_to_cpu(entry->hashval) == hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 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) {
Dave Chinner517c2222013-04-24 18:58:55 +10002148 name_loc = xfs_attr3_leaf_name_local(leaf, probe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 if (name_loc->namelen != args->namelen)
2150 continue;
Dave Chinner517c2222013-04-24 18:58:55 +10002151 if (memcmp(args->name, name_loc->nameval,
2152 args->namelen) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 continue;
Tim Shimmin726801b2006-09-28 11:01:37 +10002154 if (!xfs_attr_namesp_match(args->flags, entry->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 continue;
2156 args->index = probe;
Dave Chinner24513372014-06-25 14:58:08 +10002157 return -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10002159 name_rmt = xfs_attr3_leaf_name_remote(leaf, probe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 if (name_rmt->namelen != args->namelen)
2161 continue;
Dave Chinner517c2222013-04-24 18:58:55 +10002162 if (memcmp(args->name, name_rmt->name,
2163 args->namelen) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 continue;
Tim Shimmin726801b2006-09-28 11:01:37 +10002165 if (!xfs_attr_namesp_match(args->flags, entry->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 continue;
2167 args->index = probe;
Dave Chinner8275cdd2014-05-06 07:37:31 +10002168 args->rmtvaluelen = be32_to_cpu(name_rmt->valuelen);
Nathan Scottc0f054e2006-03-17 17:29:18 +11002169 args->rmtblkno = be32_to_cpu(name_rmt->valueblk);
Dave Chinnerad1858d2013-05-21 18:02:08 +10002170 args->rmtblkcnt = xfs_attr3_rmt_blocks(
2171 args->dp->i_mount,
Dave Chinner8275cdd2014-05-06 07:37:31 +10002172 args->rmtvaluelen);
Dave Chinner24513372014-06-25 14:58:08 +10002173 return -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 }
2175 }
2176 args->index = probe;
Dave Chinner24513372014-06-25 14:58:08 +10002177 return -ENOATTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178}
2179
2180/*
2181 * Get the value associated with an attribute name from a leaf attribute
2182 * list structure.
2183 */
2184int
Dave Chinner517c2222013-04-24 18:58:55 +10002185xfs_attr3_leaf_getvalue(
2186 struct xfs_buf *bp,
2187 struct xfs_da_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188{
Dave Chinner517c2222013-04-24 18:58:55 +10002189 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
Dave Chinner1d9025e2012-06-22 18:50:14 +10002196 leaf = bp->b_addr;
Brian Foster2f661242015-04-13 11:26:02 +10002197 xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf);
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002198 ASSERT(ichdr.count < args->geo->blksize / 8);
Dave Chinner517c2222013-04-24 18:58:55 +10002199 ASSERT(args->index < ichdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200
Dave Chinner517c2222013-04-24 18:58:55 +10002201 entry = &xfs_attr3_leaf_entryp(leaf)[args->index];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 if (entry->flags & XFS_ATTR_LOCAL) {
Dave Chinner517c2222013-04-24 18:58:55 +10002203 name_loc = xfs_attr3_leaf_name_local(leaf, args->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 ASSERT(name_loc->namelen == args->namelen);
2205 ASSERT(memcmp(args->name, name_loc->nameval, args->namelen) == 0);
Nathan Scott053b5752006-03-17 17:29:09 +11002206 valuelen = be16_to_cpu(name_loc->valuelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 if (args->flags & ATTR_KERNOVAL) {
2208 args->valuelen = valuelen;
Dave Chinner517c2222013-04-24 18:58:55 +10002209 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 }
2211 if (args->valuelen < valuelen) {
2212 args->valuelen = valuelen;
Dave Chinner24513372014-06-25 14:58:08 +10002213 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 }
2215 args->valuelen = valuelen;
2216 memcpy(args->value, &name_loc->nameval[args->namelen], valuelen);
2217 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10002218 name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 ASSERT(name_rmt->namelen == args->namelen);
2220 ASSERT(memcmp(args->name, name_rmt->name, args->namelen) == 0);
Dave Chinner8275cdd2014-05-06 07:37:31 +10002221 args->rmtvaluelen = be32_to_cpu(name_rmt->valuelen);
Nathan Scottc0f054e2006-03-17 17:29:18 +11002222 args->rmtblkno = be32_to_cpu(name_rmt->valueblk);
Dave Chinnerad1858d2013-05-21 18:02:08 +10002223 args->rmtblkcnt = xfs_attr3_rmt_blocks(args->dp->i_mount,
Dave Chinner8275cdd2014-05-06 07:37:31 +10002224 args->rmtvaluelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 if (args->flags & ATTR_KERNOVAL) {
Dave Chinner8275cdd2014-05-06 07:37:31 +10002226 args->valuelen = args->rmtvaluelen;
Dave Chinner517c2222013-04-24 18:58:55 +10002227 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 }
Dave Chinner8275cdd2014-05-06 07:37:31 +10002229 if (args->valuelen < args->rmtvaluelen) {
2230 args->valuelen = args->rmtvaluelen;
Dave Chinner24513372014-06-25 14:58:08 +10002231 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 }
Dave Chinner8275cdd2014-05-06 07:37:31 +10002233 args->valuelen = args->rmtvaluelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 }
Dave Chinner517c2222013-04-24 18:58:55 +10002235 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236}
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
Dave Chinner517c2222013-04-24 18:58:55 +10002248xfs_attr3_leaf_moveents(
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002249 struct xfs_da_args *args,
Dave Chinner517c2222013-04-24 18:58:55 +10002250 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,
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002256 int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257{
Dave Chinner517c2222013-04-24 18:58:55 +10002258 struct xfs_attr_leaf_entry *entry_s;
2259 struct xfs_attr_leaf_entry *entry_d;
2260 int desti;
2261 int tmp;
2262 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263
2264 /*
2265 * Check for nothing to do.
2266 */
2267 if (count == 0)
2268 return;
2269
2270 /*
2271 * Set up environment.
2272 */
Dave Chinner517c2222013-04-24 18:58:55 +10002273 ASSERT(ichdr_s->magic == XFS_ATTR_LEAF_MAGIC ||
2274 ichdr_s->magic == XFS_ATTR3_LEAF_MAGIC);
2275 ASSERT(ichdr_s->magic == ichdr_d->magic);
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002276 ASSERT(ichdr_s->count > 0 && ichdr_s->count < args->geo->blksize / 8);
Dave Chinner517c2222013-04-24 18:58:55 +10002277 ASSERT(ichdr_s->firstused >= (ichdr_s->count * sizeof(*entry_s))
2278 + xfs_attr3_leaf_hdr_size(leaf_s));
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002279 ASSERT(ichdr_d->count < args->geo->blksize / 8);
Dave Chinner517c2222013-04-24 18:58:55 +10002280 ASSERT(ichdr_d->firstused >= (ichdr_d->count * sizeof(*entry_d))
2281 + xfs_attr3_leaf_hdr_size(leaf_d));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
Dave Chinner517c2222013-04-24 18:58:55 +10002283 ASSERT(start_s < ichdr_s->count);
2284 ASSERT(start_d <= ichdr_d->count);
2285 ASSERT(count <= ichdr_s->count);
2286
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
2288 /*
2289 * Move the entries in the destination leaf up to make a hole?
2290 */
Dave Chinner517c2222013-04-24 18:58:55 +10002291 if (start_d < ichdr_d->count) {
2292 tmp = ichdr_d->count - start_d;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 tmp *= sizeof(xfs_attr_leaf_entry_t);
Dave Chinner517c2222013-04-24 18:58:55 +10002294 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 }
2298
2299 /*
2300 * Copy all entry's in the same (sorted) order,
2301 * but allocate attribute info packed and in sequence.
2302 */
Dave Chinner517c2222013-04-24 18:58:55 +10002303 entry_s = &xfs_attr3_leaf_entryp(leaf_s)[start_s];
2304 entry_d = &xfs_attr3_leaf_entryp(leaf_d)[start_d];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 desti = start_d;
2306 for (i = 0; i < count; entry_s++, entry_d++, desti++, i++) {
Dave Chinner517c2222013-04-24 18:58:55 +10002307 ASSERT(be16_to_cpu(entry_s->nameidx) >= ichdr_s->firstused);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 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? */
Dave Chinner517c2222013-04-24 18:58:55 +10002316 memset(xfs_attr3_leaf_name(leaf_s, start_s + i), 0, tmp);
2317 ichdr_s->usedbytes -= tmp;
2318 ichdr_s->count -= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 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 */
Dave Chinner517c2222013-04-24 18:58:55 +10002325 ichdr_d->firstused -= tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 /* both on-disk, don't endian flip twice */
2327 entry_d->hashval = entry_s->hashval;
Dave Chinner517c2222013-04-24 18:58:55 +10002328 entry_d->nameidx = cpu_to_be16(ichdr_d->firstused);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 entry_d->flags = entry_s->flags;
Nathan Scott6b19f2d2006-03-17 17:29:02 +11002330 ASSERT(be16_to_cpu(entry_d->nameidx) + tmp
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002331 <= args->geo->blksize);
Dave Chinner517c2222013-04-24 18:58:55 +10002332 memmove(xfs_attr3_leaf_name(leaf_d, desti),
2333 xfs_attr3_leaf_name(leaf_s, start_s + i), tmp);
Nathan Scott6b19f2d2006-03-17 17:29:02 +11002334 ASSERT(be16_to_cpu(entry_s->nameidx) + tmp
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002335 <= args->geo->blksize);
Dave Chinner517c2222013-04-24 18:58:55 +10002336 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344#ifdef GROT
2345 }
2346#endif /* GROT */
2347 }
2348
2349 /*
2350 * Zero out the entries we just copied.
2351 */
Dave Chinner517c2222013-04-24 18:58:55 +10002352 if (start_s == ichdr_s->count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 tmp = count * sizeof(xfs_attr_leaf_entry_t);
Dave Chinner517c2222013-04-24 18:58:55 +10002354 entry_s = &xfs_attr3_leaf_entryp(leaf_s)[start_s];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 ASSERT(((char *)entry_s + tmp) <=
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002356 ((char *)leaf_s + args->geo->blksize));
Dave Chinner517c2222013-04-24 18:58:55 +10002357 memset(entry_s, 0, tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 } else {
2359 /*
2360 * Move the remaining entries down to fill the hole,
2361 * then zero the entries at the top.
2362 */
Dave Chinner517c2222013-04-24 18:58:55 +10002363 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
2368 tmp = count * sizeof(xfs_attr_leaf_entry_t);
Dave Chinner517c2222013-04-24 18:58:55 +10002369 entry_s = &xfs_attr3_leaf_entryp(leaf_s)[ichdr_s->count];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 ASSERT(((char *)entry_s + tmp) <=
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002371 ((char *)leaf_s + args->geo->blksize));
Dave Chinner517c2222013-04-24 18:58:55 +10002372 memset(entry_s, 0, tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 }
2374
2375 /*
2376 * Fill in the freemap information
2377 */
Dave Chinner517c2222013-04-24 18:58:55 +10002378 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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386}
2387
2388/*
2389 * Pick up the last hashvalue from a leaf block.
2390 */
2391xfs_dahash_t
Dave Chinner1d9025e2012-06-22 18:50:14 +10002392xfs_attr_leaf_lasthash(
2393 struct xfs_buf *bp,
2394 int *count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395{
Dave Chinner517c2222013-04-24 18:58:55 +10002396 struct xfs_attr3_icleaf_hdr ichdr;
2397 struct xfs_attr_leaf_entry *entries;
Brian Foster2f661242015-04-13 11:26:02 +10002398 struct xfs_mount *mp = bp->b_target->bt_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399
Brian Foster2f661242015-04-13 11:26:02 +10002400 xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo, &ichdr, bp->b_addr);
Dave Chinner517c2222013-04-24 18:58:55 +10002401 entries = xfs_attr3_leaf_entryp(bp->b_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 if (count)
Dave Chinner517c2222013-04-24 18:58:55 +10002403 *count = ichdr.count;
2404 if (!ichdr.count)
2405 return 0;
2406 return be32_to_cpu(entries[ichdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407}
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 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10002413STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414xfs_attr_leaf_entsize(xfs_attr_leafblock_t *leaf, int index)
2415{
Dave Chinner517c2222013-04-24 18:58:55 +10002416 struct xfs_attr_leaf_entry *entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 xfs_attr_leaf_name_local_t *name_loc;
2418 xfs_attr_leaf_name_remote_t *name_rmt;
2419 int size;
2420
Dave Chinner517c2222013-04-24 18:58:55 +10002421 entries = xfs_attr3_leaf_entryp(leaf);
2422 if (entries[index].flags & XFS_ATTR_LOCAL) {
2423 name_loc = xfs_attr3_leaf_name_local(leaf, index);
Eric Sandeenc9fb86a2009-01-01 16:40:11 -06002424 size = xfs_attr_leaf_entsize_local(name_loc->namelen,
Nathan Scott053b5752006-03-17 17:29:09 +11002425 be16_to_cpu(name_loc->valuelen));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10002427 name_rmt = xfs_attr3_leaf_name_remote(leaf, index);
Eric Sandeenc9fb86a2009-01-01 16:40:11 -06002428 size = xfs_attr_leaf_entsize_remote(name_rmt->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 }
Dave Chinner517c2222013-04-24 18:58:55 +10002430 return size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431}
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
Dave Chinnerc59f0ad2014-06-06 15:21:27 +10002440xfs_attr_leaf_newentsize(
2441 struct xfs_da_args *args,
2442 int *local)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443{
Dave Chinnerc59f0ad2014-06-06 15:21:27 +10002444 int size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445
Dave Chinnerc59f0ad2014-06-06 15:21:27 +10002446 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)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 *local = 1;
Dave Chinnerc59f0ad2014-06-06 15:21:27 +10002450 return size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 }
Dave Chinnerc59f0ad2014-06-06 15:21:27 +10002452 if (local)
2453 *local = 0;
2454 return xfs_attr_leaf_entsize_remote(args->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455}
2456
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457
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
Dave Chinner517c2222013-04-24 18:58:55 +10002466xfs_attr3_leaf_clearflag(
2467 struct xfs_da_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468{
Dave Chinner517c2222013-04-24 18:58:55 +10002469 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474#ifdef DEBUG
Dave Chinner517c2222013-04-24 18:58:55 +10002475 struct xfs_attr3_icleaf_hdr ichdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 xfs_attr_leaf_name_local_t *name_loc;
2477 int namelen;
2478 char *name;
2479#endif /* DEBUG */
2480
Dave Chinner5a5881c2012-03-22 05:15:13 +00002481 trace_xfs_attr_leaf_clearflag(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 /*
2483 * Set up the operation.
2484 */
Dave Chinner517c2222013-04-24 18:58:55 +10002485 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp);
Dave Chinnerad14c332012-11-12 22:54:16 +11002486 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10002487 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488
Dave Chinner1d9025e2012-06-22 18:50:14 +10002489 leaf = bp->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10002490 entry = &xfs_attr3_leaf_entryp(leaf)[args->index];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 ASSERT(entry->flags & XFS_ATTR_INCOMPLETE);
2492
2493#ifdef DEBUG
Brian Foster2f661242015-04-13 11:26:02 +10002494 xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf);
Dave Chinner517c2222013-04-24 18:58:55 +10002495 ASSERT(args->index < ichdr.count);
2496 ASSERT(args->index >= 0);
2497
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 if (entry->flags & XFS_ATTR_LOCAL) {
Dave Chinner517c2222013-04-24 18:58:55 +10002499 name_loc = xfs_attr3_leaf_name_local(leaf, args->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 namelen = name_loc->namelen;
2501 name = (char *)name_loc->nameval;
2502 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10002503 name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 namelen = name_rmt->namelen;
2505 name = (char *)name_rmt->name;
2506 }
Nathan Scott6b19f2d2006-03-17 17:29:02 +11002507 ASSERT(be32_to_cpu(entry->hashval) == args->hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 ASSERT(namelen == args->namelen);
2509 ASSERT(memcmp(name, args->name, namelen) == 0);
2510#endif /* DEBUG */
2511
2512 entry->flags &= ~XFS_ATTR_INCOMPLETE;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002513 xfs_trans_log_buf(args->trans, bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 XFS_DA_LOGRANGE(leaf, entry, sizeof(*entry)));
2515
2516 if (args->rmtblkno) {
2517 ASSERT((entry->flags & XFS_ATTR_LOCAL) == 0);
Dave Chinner517c2222013-04-24 18:58:55 +10002518 name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index);
Nathan Scottc0f054e2006-03-17 17:29:18 +11002519 name_rmt->valueblk = cpu_to_be32(args->rmtblkno);
Dave Chinner8275cdd2014-05-06 07:37:31 +10002520 name_rmt->valuelen = cpu_to_be32(args->rmtvaluelen);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002521 xfs_trans_log_buf(args->trans, bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 XFS_DA_LOGRANGE(leaf, name_rmt, sizeof(*name_rmt)));
2523 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524
2525 /*
2526 * Commit the flag value change and start the next trans in series.
2527 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10002528 return xfs_trans_roll(&args->trans, args->dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529}
2530
2531/*
2532 * Set the INCOMPLETE flag on an entry in a leaf block.
2533 */
2534int
Dave Chinner517c2222013-04-24 18:58:55 +10002535xfs_attr3_leaf_setflag(
2536 struct xfs_da_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537{
Dave Chinner517c2222013-04-24 18:58:55 +10002538 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 int error;
Dave Chinner517c2222013-04-24 18:58:55 +10002543#ifdef DEBUG
2544 struct xfs_attr3_icleaf_hdr ichdr;
2545#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546
Dave Chinner5a5881c2012-03-22 05:15:13 +00002547 trace_xfs_attr_leaf_setflag(args);
2548
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 /*
2550 * Set up the operation.
2551 */
Dave Chinner517c2222013-04-24 18:58:55 +10002552 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp);
Dave Chinnerad14c332012-11-12 22:54:16 +11002553 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10002554 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555
Dave Chinner1d9025e2012-06-22 18:50:14 +10002556 leaf = bp->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10002557#ifdef DEBUG
Brian Foster2f661242015-04-13 11:26:02 +10002558 xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf);
Dave Chinner517c2222013-04-24 18:58:55 +10002559 ASSERT(args->index < ichdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 ASSERT(args->index >= 0);
Dave Chinner517c2222013-04-24 18:58:55 +10002561#endif
2562 entry = &xfs_attr3_leaf_entryp(leaf)[args->index];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563
2564 ASSERT((entry->flags & XFS_ATTR_INCOMPLETE) == 0);
2565 entry->flags |= XFS_ATTR_INCOMPLETE;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002566 xfs_trans_log_buf(args->trans, bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 XFS_DA_LOGRANGE(leaf, entry, sizeof(*entry)));
2568 if ((entry->flags & XFS_ATTR_LOCAL) == 0) {
Dave Chinner517c2222013-04-24 18:58:55 +10002569 name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 name_rmt->valueblk = 0;
2571 name_rmt->valuelen = 0;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002572 xfs_trans_log_buf(args->trans, bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 XFS_DA_LOGRANGE(leaf, name_rmt, sizeof(*name_rmt)));
2574 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575
2576 /*
2577 * Commit the flag value change and start the next trans in series.
2578 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10002579 return xfs_trans_roll(&args->trans, args->dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580}
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
Dave Chinner517c2222013-04-24 18:58:55 +10002590xfs_attr3_leaf_flipflags(
2591 struct xfs_da_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592{
Dave Chinner517c2222013-04-24 18:58:55 +10002593 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 int error;
2601#ifdef DEBUG
Dave Chinner517c2222013-04-24 18:58:55 +10002602 struct xfs_attr3_icleaf_hdr ichdr1;
2603 struct xfs_attr3_icleaf_hdr ichdr2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 xfs_attr_leaf_name_local_t *name_loc;
2605 int namelen1, namelen2;
2606 char *name1, *name2;
2607#endif /* DEBUG */
2608
Dave Chinner5a5881c2012-03-22 05:15:13 +00002609 trace_xfs_attr_leaf_flipflags(args);
2610
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 /*
2612 * Read the block containing the "old" attr
2613 */
Dave Chinner517c2222013-04-24 18:58:55 +10002614 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp1);
Dave Chinnerad14c332012-11-12 22:54:16 +11002615 if (error)
2616 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617
2618 /*
2619 * Read the block containing the "new" attr, if it is different
2620 */
2621 if (args->blkno2 != args->blkno) {
Dave Chinner517c2222013-04-24 18:58:55 +10002622 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno2,
Dave Chinnerad14c332012-11-12 22:54:16 +11002623 -1, &bp2);
2624 if (error)
2625 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 } else {
2627 bp2 = bp1;
2628 }
2629
Dave Chinner1d9025e2012-06-22 18:50:14 +10002630 leaf1 = bp1->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10002631 entry1 = &xfs_attr3_leaf_entryp(leaf1)[args->index];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632
Dave Chinner1d9025e2012-06-22 18:50:14 +10002633 leaf2 = bp2->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10002634 entry2 = &xfs_attr3_leaf_entryp(leaf2)[args->index2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635
2636#ifdef DEBUG
Brian Foster2f661242015-04-13 11:26:02 +10002637 xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr1, leaf1);
Dave Chinner517c2222013-04-24 18:58:55 +10002638 ASSERT(args->index < ichdr1.count);
2639 ASSERT(args->index >= 0);
2640
Brian Foster2f661242015-04-13 11:26:02 +10002641 xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr2, leaf2);
Dave Chinner517c2222013-04-24 18:58:55 +10002642 ASSERT(args->index2 < ichdr2.count);
2643 ASSERT(args->index2 >= 0);
2644
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 if (entry1->flags & XFS_ATTR_LOCAL) {
Dave Chinner517c2222013-04-24 18:58:55 +10002646 name_loc = xfs_attr3_leaf_name_local(leaf1, args->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 namelen1 = name_loc->namelen;
2648 name1 = (char *)name_loc->nameval;
2649 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10002650 name_rmt = xfs_attr3_leaf_name_remote(leaf1, args->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 namelen1 = name_rmt->namelen;
2652 name1 = (char *)name_rmt->name;
2653 }
2654 if (entry2->flags & XFS_ATTR_LOCAL) {
Dave Chinner517c2222013-04-24 18:58:55 +10002655 name_loc = xfs_attr3_leaf_name_local(leaf2, args->index2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 namelen2 = name_loc->namelen;
2657 name2 = (char *)name_loc->nameval;
2658 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10002659 name_rmt = xfs_attr3_leaf_name_remote(leaf2, args->index2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 namelen2 = name_rmt->namelen;
2661 name2 = (char *)name_rmt->name;
2662 }
Nathan Scott6b19f2d2006-03-17 17:29:02 +11002663 ASSERT(be32_to_cpu(entry1->hashval) == be32_to_cpu(entry2->hashval));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 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;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002672 xfs_trans_log_buf(args->trans, bp1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 XFS_DA_LOGRANGE(leaf1, entry1, sizeof(*entry1)));
2674 if (args->rmtblkno) {
2675 ASSERT((entry1->flags & XFS_ATTR_LOCAL) == 0);
Dave Chinner517c2222013-04-24 18:58:55 +10002676 name_rmt = xfs_attr3_leaf_name_remote(leaf1, args->index);
Nathan Scottc0f054e2006-03-17 17:29:18 +11002677 name_rmt->valueblk = cpu_to_be32(args->rmtblkno);
Dave Chinner8275cdd2014-05-06 07:37:31 +10002678 name_rmt->valuelen = cpu_to_be32(args->rmtvaluelen);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002679 xfs_trans_log_buf(args->trans, bp1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 XFS_DA_LOGRANGE(leaf1, name_rmt, sizeof(*name_rmt)));
2681 }
2682
2683 entry2->flags |= XFS_ATTR_INCOMPLETE;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002684 xfs_trans_log_buf(args->trans, bp2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 XFS_DA_LOGRANGE(leaf2, entry2, sizeof(*entry2)));
2686 if ((entry2->flags & XFS_ATTR_LOCAL) == 0) {
Dave Chinner517c2222013-04-24 18:58:55 +10002687 name_rmt = xfs_attr3_leaf_name_remote(leaf2, args->index2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 name_rmt->valueblk = 0;
2689 name_rmt->valuelen = 0;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002690 xfs_trans_log_buf(args->trans, bp2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 XFS_DA_LOGRANGE(leaf2, name_rmt, sizeof(*name_rmt)));
2692 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693
2694 /*
2695 * Commit the flag value change and start the next trans in series.
2696 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10002697 error = xfs_trans_roll(&args->trans, args->dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698
Dave Chinner517c2222013-04-24 18:58:55 +10002699 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700}