blob: fdf9992dcbbcb450d805d1beac19281abaa105b9 [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 Chinnera4fbe6a2013-10-23 10:51:50 +110021#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110022#include "xfs_log_format.h"
23#include "xfs_trans_resv.h"
Nathan Scotta844f452005-11-02 14:38:42 +110024#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_sb.h"
26#include "xfs_ag.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 Chinnera4fbe6a2013-10-23 10:51:50 +110043#include "xfs_dinode.h"
Dave Chinner4bceb182013-10-29 22:11:51 +110044#include "xfs_dir2.h"
Dave Chinner517c2222013-04-24 18:58:55 +100045
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47/*
48 * xfs_attr_leaf.c
49 *
50 * Routines to implement leaf blocks of attributes as Btrees of hashed names.
51 */
52
53/*========================================================================
54 * Function prototypes for the kernel.
55 *========================================================================*/
56
57/*
58 * Routines used for growing the Btree.
59 */
Dave Chinner517c2222013-04-24 18:58:55 +100060STATIC int xfs_attr3_leaf_create(struct xfs_da_args *args,
61 xfs_dablk_t which_block, struct xfs_buf **bpp);
62STATIC int xfs_attr3_leaf_add_work(struct xfs_buf *leaf_buffer,
63 struct xfs_attr3_icleaf_hdr *ichdr,
64 struct xfs_da_args *args, int freemap_index);
65STATIC void xfs_attr3_leaf_compact(struct xfs_da_args *args,
66 struct xfs_attr3_icleaf_hdr *ichdr,
67 struct xfs_buf *leaf_buffer);
68STATIC void xfs_attr3_leaf_rebalance(xfs_da_state_t *state,
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 xfs_da_state_blk_t *blk1,
70 xfs_da_state_blk_t *blk2);
Dave Chinner517c2222013-04-24 18:58:55 +100071STATIC int xfs_attr3_leaf_figure_balance(xfs_da_state_t *state,
72 xfs_da_state_blk_t *leaf_blk_1,
73 struct xfs_attr3_icleaf_hdr *ichdr1,
74 xfs_da_state_blk_t *leaf_blk_2,
75 struct xfs_attr3_icleaf_hdr *ichdr2,
76 int *number_entries_in_blk1,
77 int *number_usedbytes_in_blk1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79/*
80 * Utility routines.
81 */
Dave Chinner517c2222013-04-24 18:58:55 +100082STATIC void xfs_attr3_leaf_moveents(struct xfs_attr_leafblock *src_leaf,
83 struct xfs_attr3_icleaf_hdr *src_ichdr, int src_start,
84 struct xfs_attr_leafblock *dst_leaf,
85 struct xfs_attr3_icleaf_hdr *dst_ichdr, int dst_start,
86 int move_count, struct xfs_mount *mp);
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(
91 struct xfs_attr3_icleaf_hdr *to,
92 struct xfs_attr_leafblock *from)
93{
94 int i;
95
96 ASSERT(from->hdr.info.magic == cpu_to_be16(XFS_ATTR_LEAF_MAGIC) ||
97 from->hdr.info.magic == cpu_to_be16(XFS_ATTR3_LEAF_MAGIC));
98
99 if (from->hdr.info.magic == cpu_to_be16(XFS_ATTR3_LEAF_MAGIC)) {
100 struct xfs_attr3_leaf_hdr *hdr3 = (struct xfs_attr3_leaf_hdr *)from;
101
102 to->forw = be32_to_cpu(hdr3->info.hdr.forw);
103 to->back = be32_to_cpu(hdr3->info.hdr.back);
104 to->magic = be16_to_cpu(hdr3->info.hdr.magic);
105 to->count = be16_to_cpu(hdr3->count);
106 to->usedbytes = be16_to_cpu(hdr3->usedbytes);
107 to->firstused = be16_to_cpu(hdr3->firstused);
108 to->holes = hdr3->holes;
109
110 for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
111 to->freemap[i].base = be16_to_cpu(hdr3->freemap[i].base);
112 to->freemap[i].size = be16_to_cpu(hdr3->freemap[i].size);
113 }
114 return;
115 }
116 to->forw = be32_to_cpu(from->hdr.info.forw);
117 to->back = be32_to_cpu(from->hdr.info.back);
118 to->magic = be16_to_cpu(from->hdr.info.magic);
119 to->count = be16_to_cpu(from->hdr.count);
120 to->usedbytes = be16_to_cpu(from->hdr.usedbytes);
121 to->firstused = be16_to_cpu(from->hdr.firstused);
122 to->holes = from->hdr.holes;
123
124 for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
125 to->freemap[i].base = be16_to_cpu(from->hdr.freemap[i].base);
126 to->freemap[i].size = be16_to_cpu(from->hdr.freemap[i].size);
127 }
128}
129
130void
131xfs_attr3_leaf_hdr_to_disk(
132 struct xfs_attr_leafblock *to,
133 struct xfs_attr3_icleaf_hdr *from)
134{
135 int i;
136
137 ASSERT(from->magic == XFS_ATTR_LEAF_MAGIC ||
138 from->magic == XFS_ATTR3_LEAF_MAGIC);
139
140 if (from->magic == XFS_ATTR3_LEAF_MAGIC) {
141 struct xfs_attr3_leaf_hdr *hdr3 = (struct xfs_attr3_leaf_hdr *)to;
142
143 hdr3->info.hdr.forw = cpu_to_be32(from->forw);
144 hdr3->info.hdr.back = cpu_to_be32(from->back);
145 hdr3->info.hdr.magic = cpu_to_be16(from->magic);
146 hdr3->count = cpu_to_be16(from->count);
147 hdr3->usedbytes = cpu_to_be16(from->usedbytes);
148 hdr3->firstused = cpu_to_be16(from->firstused);
149 hdr3->holes = from->holes;
150 hdr3->pad1 = 0;
151
152 for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
153 hdr3->freemap[i].base = cpu_to_be16(from->freemap[i].base);
154 hdr3->freemap[i].size = cpu_to_be16(from->freemap[i].size);
155 }
156 return;
157 }
158 to->hdr.info.forw = cpu_to_be32(from->forw);
159 to->hdr.info.back = cpu_to_be32(from->back);
160 to->hdr.info.magic = cpu_to_be16(from->magic);
161 to->hdr.count = cpu_to_be16(from->count);
162 to->hdr.usedbytes = cpu_to_be16(from->usedbytes);
163 to->hdr.firstused = cpu_to_be16(from->firstused);
164 to->hdr.holes = from->holes;
165 to->hdr.pad1 = 0;
166
167 for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
168 to->hdr.freemap[i].base = cpu_to_be16(from->freemap[i].base);
169 to->hdr.freemap[i].size = cpu_to_be16(from->freemap[i].size);
170 }
171}
172
173static bool
174xfs_attr3_leaf_verify(
Dave Chinnerad14c332012-11-12 22:54:16 +1100175 struct xfs_buf *bp)
176{
177 struct xfs_mount *mp = bp->b_target->bt_mount;
Dave Chinner517c2222013-04-24 18:58:55 +1000178 struct xfs_attr_leafblock *leaf = bp->b_addr;
179 struct xfs_attr3_icleaf_hdr ichdr;
Dave Chinnerad14c332012-11-12 22:54:16 +1100180
Dave Chinner517c2222013-04-24 18:58:55 +1000181 xfs_attr3_leaf_hdr_from_disk(&ichdr, leaf);
182
183 if (xfs_sb_version_hascrc(&mp->m_sb)) {
184 struct xfs_da3_node_hdr *hdr3 = bp->b_addr;
185
186 if (ichdr.magic != XFS_ATTR3_LEAF_MAGIC)
187 return false;
188
189 if (!uuid_equal(&hdr3->info.uuid, &mp->m_sb.sb_uuid))
190 return false;
191 if (be64_to_cpu(hdr3->info.blkno) != bp->b_bn)
192 return false;
193 } else {
194 if (ichdr.magic != XFS_ATTR_LEAF_MAGIC)
195 return false;
196 }
197 if (ichdr.count == 0)
198 return false;
199
200 /* XXX: need to range check rest of attr header values */
201 /* XXX: hash order check? */
202
203 return true;
204}
205
206static void
207xfs_attr3_leaf_write_verify(
208 struct xfs_buf *bp)
209{
210 struct xfs_mount *mp = bp->b_target->bt_mount;
211 struct xfs_buf_log_item *bip = bp->b_fspriv;
212 struct xfs_attr3_leaf_hdr *hdr3 = bp->b_addr;
213
214 if (!xfs_attr3_leaf_verify(bp)) {
215 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
216 xfs_buf_ioerror(bp, EFSCORRUPTED);
217 return;
218 }
219
220 if (!xfs_sb_version_hascrc(&mp->m_sb))
221 return;
222
223 if (bip)
224 hdr3->info.lsn = cpu_to_be64(bip->bli_item.li_lsn);
225
226 xfs_update_cksum(bp->b_addr, BBTOB(bp->b_length), XFS_ATTR3_LEAF_CRC_OFF);
227}
228
229/*
230 * leaf/node format detection on trees is sketchy, so a node read can be done on
231 * leaf level blocks when detection identifies the tree as a node format tree
232 * incorrectly. In this case, we need to swap the verifier to match the correct
233 * format of the block being read.
234 */
235static void
236xfs_attr3_leaf_read_verify(
237 struct xfs_buf *bp)
238{
239 struct xfs_mount *mp = bp->b_target->bt_mount;
240
241 if ((xfs_sb_version_hascrc(&mp->m_sb) &&
242 !xfs_verify_cksum(bp->b_addr, BBTOB(bp->b_length),
243 XFS_ATTR3_LEAF_CRC_OFF)) ||
244 !xfs_attr3_leaf_verify(bp)) {
245 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
Dave Chinnerad14c332012-11-12 22:54:16 +1100246 xfs_buf_ioerror(bp, EFSCORRUPTED);
247 }
Dave Chinner612cfbf2012-11-14 17:52:32 +1100248}
Dave Chinnerad14c332012-11-12 22:54:16 +1100249
Dave Chinner517c2222013-04-24 18:58:55 +1000250const struct xfs_buf_ops xfs_attr3_leaf_buf_ops = {
251 .verify_read = xfs_attr3_leaf_read_verify,
252 .verify_write = xfs_attr3_leaf_write_verify,
Dave Chinner1813dd62012-11-14 17:54:40 +1100253};
Dave Chinner612cfbf2012-11-14 17:52:32 +1100254
Dave Chinnerad14c332012-11-12 22:54:16 +1100255int
Dave Chinner517c2222013-04-24 18:58:55 +1000256xfs_attr3_leaf_read(
Dave Chinnerad14c332012-11-12 22:54:16 +1100257 struct xfs_trans *tp,
258 struct xfs_inode *dp,
259 xfs_dablk_t bno,
260 xfs_daddr_t mappedbno,
261 struct xfs_buf **bpp)
262{
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100263 int err;
264
265 err = xfs_da_read_buf(tp, dp, bno, mappedbno, bpp,
Dave Chinner517c2222013-04-24 18:58:55 +1000266 XFS_ATTR_FORK, &xfs_attr3_leaf_buf_ops);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100267 if (!err && tp)
Dave Chinner61fe1352013-04-03 16:11:30 +1100268 xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_ATTR_LEAF_BUF);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100269 return err;
Dave Chinnerad14c332012-11-12 22:54:16 +1100270}
271
Tim Shimmin726801b2006-09-28 11:01:37 +1000272/*========================================================================
273 * Namespace helper routines
274 *========================================================================*/
275
Tim Shimmin726801b2006-09-28 11:01:37 +1000276/*
277 * If namespace bits don't match return 0.
278 * If all match then return 1.
279 */
Christoph Hellwigb8f82a42009-11-14 16:17:22 +0000280STATIC int
Tim Shimmin726801b2006-09-28 11:01:37 +1000281xfs_attr_namesp_match(int arg_flags, int ondisk_flags)
282{
283 return XFS_ATTR_NSP_ONDISK(ondisk_flags) == XFS_ATTR_NSP_ARGS_TO_ONDISK(arg_flags);
284}
285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287/*========================================================================
Nathan Scottd8cc8902005-11-02 10:34:53 +1100288 * External routines when attribute fork size < XFS_LITINO(mp).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 *========================================================================*/
290
291/*
Nathan Scottd8cc8902005-11-02 10:34:53 +1100292 * Query whether the requested number of additional bytes of extended
293 * attribute space will be able to fit inline.
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000294 *
Nathan Scottd8cc8902005-11-02 10:34:53 +1100295 * Returns zero if not, else the di_forkoff fork offset to be used in the
296 * literal area for attribute data once the new bytes have been added.
297 *
298 * di_forkoff must be 8 byte aligned, hence is stored as a >>3 value;
299 * special case for dev/uuid inodes, they have fixed size data forks.
300 */
301int
302xfs_attr_shortform_bytesfit(xfs_inode_t *dp, int bytes)
303{
304 int offset;
305 int minforkoff; /* lower limit on valid forkoff locations */
306 int maxforkoff; /* upper limit on valid forkoff locations */
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000307 int dsize;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100308 xfs_mount_t *mp = dp->i_mount;
309
Christoph Hellwig56cea2d2013-03-12 23:30:36 +1100310 /* rounded down */
311 offset = (XFS_LITINO(mp, dp->i_d.di_version) - bytes) >> 3;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100312
313 switch (dp->i_d.di_format) {
314 case XFS_DINODE_FMT_DEV:
315 minforkoff = roundup(sizeof(xfs_dev_t), 8) >> 3;
316 return (offset >= minforkoff) ? minforkoff : 0;
317 case XFS_DINODE_FMT_UUID:
318 minforkoff = roundup(sizeof(uuid_t), 8) >> 3;
319 return (offset >= minforkoff) ? minforkoff : 0;
320 }
321
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000322 /*
323 * If the requested numbers of bytes is smaller or equal to the
324 * current attribute fork size we can always proceed.
325 *
326 * Note that if_bytes in the data fork might actually be larger than
327 * the current data fork size is due to delalloc extents. In that
328 * case either the extent count will go down when they are converted
329 * to real extents, or the delalloc conversion will take care of the
330 * literal area rebalancing.
331 */
332 if (bytes <= XFS_IFORK_ASIZE(dp))
333 return dp->i_d.di_forkoff;
334
335 /*
336 * For attr2 we can try to move the forkoff if there is space in the
337 * literal area, but for the old format we are done if there is no
338 * space in the fixed attribute fork.
339 */
340 if (!(mp->m_flags & XFS_MOUNT_ATTR2))
Nathan Scottda087ba2005-11-02 15:00:20 +1100341 return 0;
Nathan Scottda087ba2005-11-02 15:00:20 +1100342
Barry Naujoke5889e92007-02-10 18:35:58 +1100343 dsize = dp->i_df.if_bytes;
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000344
Barry Naujoke5889e92007-02-10 18:35:58 +1100345 switch (dp->i_d.di_format) {
346 case XFS_DINODE_FMT_EXTENTS:
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000347 /*
Barry Naujoke5889e92007-02-10 18:35:58 +1100348 * If there is no attr fork and the data fork is extents,
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000349 * determine if creating the default attr fork will result
350 * in the extents form migrating to btree. If so, the
351 * minimum offset only needs to be the space required for
Barry Naujoke5889e92007-02-10 18:35:58 +1100352 * the btree root.
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000353 */
Christoph Hellwig1a5902c2009-03-29 19:26:46 +0200354 if (!dp->i_d.di_forkoff && dp->i_df.if_bytes >
355 xfs_default_attroffset(dp))
Barry Naujoke5889e92007-02-10 18:35:58 +1100356 dsize = XFS_BMDR_SPACE_CALC(MINDBTPTRS);
357 break;
Barry Naujoke5889e92007-02-10 18:35:58 +1100358 case XFS_DINODE_FMT_BTREE:
359 /*
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000360 * If we have a data btree then keep forkoff if we have one,
361 * otherwise we are adding a new attr, so then we set
362 * minforkoff to where the btree root can finish so we have
Barry Naujoke5889e92007-02-10 18:35:58 +1100363 * plenty of room for attrs
364 */
365 if (dp->i_d.di_forkoff) {
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000366 if (offset < dp->i_d.di_forkoff)
Barry Naujoke5889e92007-02-10 18:35:58 +1100367 return 0;
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000368 return dp->i_d.di_forkoff;
369 }
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500370 dsize = XFS_BMAP_BROOT_SPACE(mp, dp->i_df.if_broot);
Barry Naujoke5889e92007-02-10 18:35:58 +1100371 break;
372 }
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000373
374 /*
375 * A data fork btree root must have space for at least
Barry Naujoke5889e92007-02-10 18:35:58 +1100376 * MINDBTPTRS key/ptr pairs if the data fork is small or empty.
377 */
378 minforkoff = MAX(dsize, XFS_BMDR_SPACE_CALC(MINDBTPTRS));
Nathan Scottd8cc8902005-11-02 10:34:53 +1100379 minforkoff = roundup(minforkoff, 8) >> 3;
380
381 /* attr fork btree root can have at least this many key/ptr pairs */
Christoph Hellwig56cea2d2013-03-12 23:30:36 +1100382 maxforkoff = XFS_LITINO(mp, dp->i_d.di_version) -
383 XFS_BMDR_SPACE_CALC(MINABTPTRS);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100384 maxforkoff = maxforkoff >> 3; /* rounded down */
385
Nathan Scottd8cc8902005-11-02 10:34:53 +1100386 if (offset >= maxforkoff)
387 return maxforkoff;
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000388 if (offset >= minforkoff)
389 return offset;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100390 return 0;
391}
392
393/*
394 * Switch on the ATTR2 superblock bit (implies also FEATURES2)
395 */
396STATIC void
397xfs_sbversion_add_attr2(xfs_mount_t *mp, xfs_trans_t *tp)
398{
Nathan Scott13059ff2006-01-11 15:32:01 +1100399 if ((mp->m_flags & XFS_MOUNT_ATTR2) &&
Eric Sandeen62118702008-03-06 13:44:28 +1100400 !(xfs_sb_version_hasattr2(&mp->m_sb))) {
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000401 spin_lock(&mp->m_sb_lock);
Eric Sandeen62118702008-03-06 13:44:28 +1100402 if (!xfs_sb_version_hasattr2(&mp->m_sb)) {
403 xfs_sb_version_addattr2(&mp->m_sb);
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000404 spin_unlock(&mp->m_sb_lock);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100405 xfs_mod_sb(tp, XFS_SB_VERSIONNUM | XFS_SB_FEATURES2);
406 } else
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000407 spin_unlock(&mp->m_sb_lock);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100408 }
409}
410
411/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 * Create the initial contents of a shortform attribute list.
413 */
Nathan Scottd8cc8902005-11-02 10:34:53 +1100414void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415xfs_attr_shortform_create(xfs_da_args_t *args)
416{
417 xfs_attr_sf_hdr_t *hdr;
418 xfs_inode_t *dp;
419 xfs_ifork_t *ifp;
420
Dave Chinner5a5881c2012-03-22 05:15:13 +0000421 trace_xfs_attr_sf_create(args);
422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 dp = args->dp;
424 ASSERT(dp != NULL);
425 ifp = dp->i_afp;
426 ASSERT(ifp != NULL);
427 ASSERT(ifp->if_bytes == 0);
428 if (dp->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS) {
429 ifp->if_flags &= ~XFS_IFEXTENTS; /* just in case */
430 dp->i_d.di_aformat = XFS_DINODE_FMT_LOCAL;
431 ifp->if_flags |= XFS_IFINLINE;
432 } else {
433 ASSERT(ifp->if_flags & XFS_IFINLINE);
434 }
435 xfs_idata_realloc(dp, sizeof(*hdr), XFS_ATTR_FORK);
436 hdr = (xfs_attr_sf_hdr_t *)ifp->if_u1.if_data;
437 hdr->count = 0;
Nathan Scott3b244aa2006-03-17 17:29:25 +1100438 hdr->totsize = cpu_to_be16(sizeof(*hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE | XFS_ILOG_ADATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
441
442/*
443 * Add a name/value pair to the shortform attribute list.
444 * Overflow from the inode has already been checked for.
445 */
Nathan Scottd8cc8902005-11-02 10:34:53 +1100446void
447xfs_attr_shortform_add(xfs_da_args_t *args, int forkoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448{
449 xfs_attr_shortform_t *sf;
450 xfs_attr_sf_entry_t *sfe;
451 int i, offset, size;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100452 xfs_mount_t *mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 xfs_inode_t *dp;
454 xfs_ifork_t *ifp;
455
Dave Chinner5a5881c2012-03-22 05:15:13 +0000456 trace_xfs_attr_sf_add(args);
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 dp = args->dp;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100459 mp = dp->i_mount;
460 dp->i_d.di_forkoff = forkoff;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 ifp = dp->i_afp;
463 ASSERT(ifp->if_flags & XFS_IFINLINE);
464 sf = (xfs_attr_shortform_t *)ifp->if_u1.if_data;
465 sfe = &sf->list[0];
Nathan Scott3b244aa2006-03-17 17:29:25 +1100466 for (i = 0; i < sf->hdr.count; sfe = XFS_ATTR_SF_NEXTENTRY(sfe), i++) {
Nathan Scottd8cc8902005-11-02 10:34:53 +1100467#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 if (sfe->namelen != args->namelen)
469 continue;
470 if (memcmp(args->name, sfe->nameval, args->namelen) != 0)
471 continue;
Tim Shimmin726801b2006-09-28 11:01:37 +1000472 if (!xfs_attr_namesp_match(args->flags, sfe->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 continue;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100474 ASSERT(0);
475#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 }
477
478 offset = (char *)sfe - (char *)sf;
479 size = XFS_ATTR_SF_ENTSIZE_BYNAME(args->namelen, args->valuelen);
480 xfs_idata_realloc(dp, size, XFS_ATTR_FORK);
481 sf = (xfs_attr_shortform_t *)ifp->if_u1.if_data;
482 sfe = (xfs_attr_sf_entry_t *)((char *)sf + offset);
483
484 sfe->namelen = args->namelen;
Nathan Scott3b244aa2006-03-17 17:29:25 +1100485 sfe->valuelen = args->valuelen;
Tim Shimmin726801b2006-09-28 11:01:37 +1000486 sfe->flags = XFS_ATTR_NSP_ARGS_TO_ONDISK(args->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 memcpy(sfe->nameval, args->name, args->namelen);
488 memcpy(&sfe->nameval[args->namelen], args->value, args->valuelen);
Nathan Scott3b244aa2006-03-17 17:29:25 +1100489 sf->hdr.count++;
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800490 be16_add_cpu(&sf->hdr.totsize, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE | XFS_ILOG_ADATA);
492
Nathan Scottd8cc8902005-11-02 10:34:53 +1100493 xfs_sbversion_add_attr2(mp, args->trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494}
495
496/*
Christoph Hellwige1486de2009-02-04 09:36:00 +0100497 * After the last attribute is removed revert to original inode format,
498 * making all literal area available to the data fork once more.
499 */
500STATIC void
501xfs_attr_fork_reset(
502 struct xfs_inode *ip,
503 struct xfs_trans *tp)
504{
505 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
506 ip->i_d.di_forkoff = 0;
507 ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
508
509 ASSERT(ip->i_d.di_anextents == 0);
510 ASSERT(ip->i_afp == NULL);
511
Christoph Hellwige1486de2009-02-04 09:36:00 +0100512 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
513}
514
515/*
Nathan Scottd8cc8902005-11-02 10:34:53 +1100516 * Remove an attribute from the shortform attribute list structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 */
518int
519xfs_attr_shortform_remove(xfs_da_args_t *args)
520{
521 xfs_attr_shortform_t *sf;
522 xfs_attr_sf_entry_t *sfe;
523 int base, size=0, end, totsize, i;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100524 xfs_mount_t *mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 xfs_inode_t *dp;
526
Dave Chinner5a5881c2012-03-22 05:15:13 +0000527 trace_xfs_attr_sf_remove(args);
528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 dp = args->dp;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100530 mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 base = sizeof(xfs_attr_sf_hdr_t);
532 sf = (xfs_attr_shortform_t *)dp->i_afp->if_u1.if_data;
533 sfe = &sf->list[0];
Nathan Scott3b244aa2006-03-17 17:29:25 +1100534 end = sf->hdr.count;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100535 for (i = 0; i < end; sfe = XFS_ATTR_SF_NEXTENTRY(sfe),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 base += size, i++) {
537 size = XFS_ATTR_SF_ENTSIZE(sfe);
538 if (sfe->namelen != args->namelen)
539 continue;
540 if (memcmp(sfe->nameval, args->name, args->namelen) != 0)
541 continue;
Tim Shimmin726801b2006-09-28 11:01:37 +1000542 if (!xfs_attr_namesp_match(args->flags, sfe->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 continue;
544 break;
545 }
Nathan Scottd8cc8902005-11-02 10:34:53 +1100546 if (i == end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 return(XFS_ERROR(ENOATTR));
548
Nathan Scottd8cc8902005-11-02 10:34:53 +1100549 /*
550 * Fix up the attribute fork data, covering the hole
551 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 end = base + size;
Nathan Scott3b244aa2006-03-17 17:29:25 +1100553 totsize = be16_to_cpu(sf->hdr.totsize);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100554 if (end != totsize)
555 memmove(&((char *)sf)[base], &((char *)sf)[end], totsize - end);
Nathan Scott3b244aa2006-03-17 17:29:25 +1100556 sf->hdr.count--;
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800557 be16_add_cpu(&sf->hdr.totsize, -size);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100558
559 /*
560 * Fix up the start offset of the attribute fork
561 */
562 totsize -= size;
Barry Naujok6a178102008-05-21 16:42:05 +1000563 if (totsize == sizeof(xfs_attr_sf_hdr_t) &&
Christoph Hellwige1486de2009-02-04 09:36:00 +0100564 (mp->m_flags & XFS_MOUNT_ATTR2) &&
565 (dp->i_d.di_format != XFS_DINODE_FMT_BTREE) &&
566 !(args->op_flags & XFS_DA_OP_ADDNAME)) {
567 xfs_attr_fork_reset(dp, args->trans);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100568 } else {
569 xfs_idata_realloc(dp, -size, XFS_ATTR_FORK);
570 dp->i_d.di_forkoff = xfs_attr_shortform_bytesfit(dp, totsize);
571 ASSERT(dp->i_d.di_forkoff);
Barry Naujok6a178102008-05-21 16:42:05 +1000572 ASSERT(totsize > sizeof(xfs_attr_sf_hdr_t) ||
573 (args->op_flags & XFS_DA_OP_ADDNAME) ||
574 !(mp->m_flags & XFS_MOUNT_ATTR2) ||
575 dp->i_d.di_format == XFS_DINODE_FMT_BTREE);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100576 xfs_trans_log_inode(args->trans, dp,
577 XFS_ILOG_CORE | XFS_ILOG_ADATA);
578 }
579
580 xfs_sbversion_add_attr2(mp, args->trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582 return(0);
583}
584
585/*
586 * Look up a name in a shortform attribute list structure.
587 */
588/*ARGSUSED*/
589int
590xfs_attr_shortform_lookup(xfs_da_args_t *args)
591{
592 xfs_attr_shortform_t *sf;
593 xfs_attr_sf_entry_t *sfe;
594 int i;
595 xfs_ifork_t *ifp;
596
Dave Chinner5a5881c2012-03-22 05:15:13 +0000597 trace_xfs_attr_sf_lookup(args);
598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 ifp = args->dp->i_afp;
600 ASSERT(ifp->if_flags & XFS_IFINLINE);
601 sf = (xfs_attr_shortform_t *)ifp->if_u1.if_data;
602 sfe = &sf->list[0];
Nathan Scott3b244aa2006-03-17 17:29:25 +1100603 for (i = 0; i < sf->hdr.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 sfe = XFS_ATTR_SF_NEXTENTRY(sfe), i++) {
605 if (sfe->namelen != args->namelen)
606 continue;
607 if (memcmp(args->name, sfe->nameval, args->namelen) != 0)
608 continue;
Tim Shimmin726801b2006-09-28 11:01:37 +1000609 if (!xfs_attr_namesp_match(args->flags, sfe->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 continue;
611 return(XFS_ERROR(EEXIST));
612 }
613 return(XFS_ERROR(ENOATTR));
614}
615
616/*
617 * Look up a name in a shortform attribute list structure.
618 */
619/*ARGSUSED*/
620int
621xfs_attr_shortform_getvalue(xfs_da_args_t *args)
622{
623 xfs_attr_shortform_t *sf;
624 xfs_attr_sf_entry_t *sfe;
625 int i;
626
Eric Sandeen914ed442012-03-30 11:24:11 -0500627 ASSERT(args->dp->i_afp->if_flags == XFS_IFINLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 sf = (xfs_attr_shortform_t *)args->dp->i_afp->if_u1.if_data;
629 sfe = &sf->list[0];
Nathan Scott3b244aa2006-03-17 17:29:25 +1100630 for (i = 0; i < sf->hdr.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 sfe = XFS_ATTR_SF_NEXTENTRY(sfe), i++) {
632 if (sfe->namelen != args->namelen)
633 continue;
634 if (memcmp(args->name, sfe->nameval, args->namelen) != 0)
635 continue;
Tim Shimmin726801b2006-09-28 11:01:37 +1000636 if (!xfs_attr_namesp_match(args->flags, sfe->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 continue;
638 if (args->flags & ATTR_KERNOVAL) {
Nathan Scott3b244aa2006-03-17 17:29:25 +1100639 args->valuelen = sfe->valuelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return(XFS_ERROR(EEXIST));
641 }
Nathan Scott3b244aa2006-03-17 17:29:25 +1100642 if (args->valuelen < sfe->valuelen) {
643 args->valuelen = sfe->valuelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 return(XFS_ERROR(ERANGE));
645 }
Nathan Scott3b244aa2006-03-17 17:29:25 +1100646 args->valuelen = sfe->valuelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 memcpy(args->value, &sfe->nameval[args->namelen],
648 args->valuelen);
649 return(XFS_ERROR(EEXIST));
650 }
651 return(XFS_ERROR(ENOATTR));
652}
653
654/*
655 * Convert from using the shortform to the leaf.
656 */
657int
658xfs_attr_shortform_to_leaf(xfs_da_args_t *args)
659{
660 xfs_inode_t *dp;
661 xfs_attr_shortform_t *sf;
662 xfs_attr_sf_entry_t *sfe;
663 xfs_da_args_t nargs;
664 char *tmpbuffer;
665 int error, i, size;
666 xfs_dablk_t blkno;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000667 struct xfs_buf *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 xfs_ifork_t *ifp;
669
Dave Chinner5a5881c2012-03-22 05:15:13 +0000670 trace_xfs_attr_sf_to_leaf(args);
671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 dp = args->dp;
673 ifp = dp->i_afp;
674 sf = (xfs_attr_shortform_t *)ifp->if_u1.if_data;
Nathan Scott3b244aa2006-03-17 17:29:25 +1100675 size = be16_to_cpu(sf->hdr.totsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 tmpbuffer = kmem_alloc(size, KM_SLEEP);
677 ASSERT(tmpbuffer != NULL);
678 memcpy(tmpbuffer, ifp->if_u1.if_data, size);
679 sf = (xfs_attr_shortform_t *)tmpbuffer;
680
681 xfs_idata_realloc(dp, -size, XFS_ATTR_FORK);
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000682 xfs_bmap_local_to_extents_empty(dp, XFS_ATTR_FORK);
683
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 bp = NULL;
685 error = xfs_da_grow_inode(args, &blkno);
686 if (error) {
687 /*
688 * If we hit an IO error middle of the transaction inside
689 * grow_inode(), we may have inconsistent data. Bail out.
690 */
691 if (error == EIO)
692 goto out;
693 xfs_idata_realloc(dp, size, XFS_ATTR_FORK); /* try to put */
694 memcpy(ifp->if_u1.if_data, tmpbuffer, size); /* it back */
695 goto out;
696 }
697
698 ASSERT(blkno == 0);
Dave Chinner517c2222013-04-24 18:58:55 +1000699 error = xfs_attr3_leaf_create(args, blkno, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 if (error) {
701 error = xfs_da_shrink_inode(args, 0, bp);
702 bp = NULL;
703 if (error)
704 goto out;
705 xfs_idata_realloc(dp, size, XFS_ATTR_FORK); /* try to put */
706 memcpy(ifp->if_u1.if_data, tmpbuffer, size); /* it back */
707 goto out;
708 }
709
710 memset((char *)&nargs, 0, sizeof(nargs));
711 nargs.dp = dp;
712 nargs.firstblock = args->firstblock;
713 nargs.flist = args->flist;
714 nargs.total = args->total;
715 nargs.whichfork = XFS_ATTR_FORK;
716 nargs.trans = args->trans;
Barry Naujok6a178102008-05-21 16:42:05 +1000717 nargs.op_flags = XFS_DA_OP_OKNOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 sfe = &sf->list[0];
Nathan Scott3b244aa2006-03-17 17:29:25 +1100720 for (i = 0; i < sf->hdr.count; i++) {
Dave Chinnera9273ca2010-01-20 10:47:48 +1100721 nargs.name = sfe->nameval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 nargs.namelen = sfe->namelen;
Dave Chinnera9273ca2010-01-20 10:47:48 +1100723 nargs.value = &sfe->nameval[nargs.namelen];
Nathan Scott3b244aa2006-03-17 17:29:25 +1100724 nargs.valuelen = sfe->valuelen;
Dave Chinnera9273ca2010-01-20 10:47:48 +1100725 nargs.hashval = xfs_da_hashname(sfe->nameval,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 sfe->namelen);
Tim Shimmin726801b2006-09-28 11:01:37 +1000727 nargs.flags = XFS_ATTR_NSP_ONDISK_TO_ARGS(sfe->flags);
Dave Chinner517c2222013-04-24 18:58:55 +1000728 error = xfs_attr3_leaf_lookup_int(bp, &nargs); /* set a->index */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 ASSERT(error == ENOATTR);
Dave Chinner517c2222013-04-24 18:58:55 +1000730 error = xfs_attr3_leaf_add(bp, &nargs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 ASSERT(error != ENOSPC);
732 if (error)
733 goto out;
734 sfe = XFS_ATTR_SF_NEXTENTRY(sfe);
735 }
736 error = 0;
737
738out:
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000739 kmem_free(tmpbuffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 return(error);
741}
742
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743/*
744 * Check a leaf attribute block to see if all the entries would fit into
745 * a shortform attribute list.
746 */
747int
Dave Chinner1d9025e2012-06-22 18:50:14 +1000748xfs_attr_shortform_allfit(
Dave Chinnerb38958d2013-05-20 09:51:14 +1000749 struct xfs_buf *bp,
750 struct xfs_inode *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751{
Dave Chinnerb38958d2013-05-20 09:51:14 +1000752 struct xfs_attr_leafblock *leaf;
753 struct xfs_attr_leaf_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 xfs_attr_leaf_name_local_t *name_loc;
Dave Chinnerb38958d2013-05-20 09:51:14 +1000755 struct xfs_attr3_icleaf_hdr leafhdr;
756 int bytes;
757 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Dave Chinner1d9025e2012-06-22 18:50:14 +1000759 leaf = bp->b_addr;
Dave Chinnerb38958d2013-05-20 09:51:14 +1000760 xfs_attr3_leaf_hdr_from_disk(&leafhdr, leaf);
761 entry = xfs_attr3_leaf_entryp(leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 bytes = sizeof(struct xfs_attr_sf_hdr);
Dave Chinnerb38958d2013-05-20 09:51:14 +1000764 for (i = 0; i < leafhdr.count; entry++, i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 if (entry->flags & XFS_ATTR_INCOMPLETE)
766 continue; /* don't copy partial entries */
767 if (!(entry->flags & XFS_ATTR_LOCAL))
768 return(0);
Dave Chinner517c2222013-04-24 18:58:55 +1000769 name_loc = xfs_attr3_leaf_name_local(leaf, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 if (name_loc->namelen >= XFS_ATTR_SF_ENTSIZE_MAX)
771 return(0);
Nathan Scott053b5752006-03-17 17:29:09 +1100772 if (be16_to_cpu(name_loc->valuelen) >= XFS_ATTR_SF_ENTSIZE_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 return(0);
Dave Chinnerb38958d2013-05-20 09:51:14 +1000774 bytes += sizeof(struct xfs_attr_sf_entry) - 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 + name_loc->namelen
Nathan Scott053b5752006-03-17 17:29:09 +1100776 + be16_to_cpu(name_loc->valuelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 }
Nathan Scott13059ff2006-01-11 15:32:01 +1100778 if ((dp->i_mount->m_flags & XFS_MOUNT_ATTR2) &&
Barry Naujoke5889e92007-02-10 18:35:58 +1100779 (dp->i_d.di_format != XFS_DINODE_FMT_BTREE) &&
Nathan Scotte0144ca2005-11-25 16:42:22 +1100780 (bytes == sizeof(struct xfs_attr_sf_hdr)))
Dave Chinnerb38958d2013-05-20 09:51:14 +1000781 return -1;
782 return xfs_attr_shortform_bytesfit(dp, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783}
784
785/*
786 * Convert a leaf attribute list to shortform attribute list
787 */
788int
Dave Chinner517c2222013-04-24 18:58:55 +1000789xfs_attr3_leaf_to_shortform(
790 struct xfs_buf *bp,
791 struct xfs_da_args *args,
792 int forkoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793{
Dave Chinner517c2222013-04-24 18:58:55 +1000794 struct xfs_attr_leafblock *leaf;
795 struct xfs_attr3_icleaf_hdr ichdr;
796 struct xfs_attr_leaf_entry *entry;
797 struct xfs_attr_leaf_name_local *name_loc;
798 struct xfs_da_args nargs;
799 struct xfs_inode *dp = args->dp;
800 char *tmpbuffer;
801 int error;
802 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Dave Chinner5a5881c2012-03-22 05:15:13 +0000804 trace_xfs_attr_leaf_to_sf(args);
805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 tmpbuffer = kmem_alloc(XFS_LBSIZE(dp->i_mount), KM_SLEEP);
Dave Chinner517c2222013-04-24 18:58:55 +1000807 if (!tmpbuffer)
808 return ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Dave Chinner1d9025e2012-06-22 18:50:14 +1000810 memcpy(tmpbuffer, bp->b_addr, XFS_LBSIZE(dp->i_mount));
Dave Chinner517c2222013-04-24 18:58:55 +1000811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 leaf = (xfs_attr_leafblock_t *)tmpbuffer;
Dave Chinner517c2222013-04-24 18:58:55 +1000813 xfs_attr3_leaf_hdr_from_disk(&ichdr, leaf);
814 entry = xfs_attr3_leaf_entryp(leaf);
815
816 /* XXX (dgc): buffer is about to be marked stale - why zero it? */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000817 memset(bp->b_addr, 0, XFS_LBSIZE(dp->i_mount));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 /*
820 * Clean out the prior contents of the attribute list.
821 */
822 error = xfs_da_shrink_inode(args, 0, bp);
823 if (error)
824 goto out;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100825
826 if (forkoff == -1) {
Nathan Scott13059ff2006-01-11 15:32:01 +1100827 ASSERT(dp->i_mount->m_flags & XFS_MOUNT_ATTR2);
Barry Naujoke5889e92007-02-10 18:35:58 +1100828 ASSERT(dp->i_d.di_format != XFS_DINODE_FMT_BTREE);
Christoph Hellwige1486de2009-02-04 09:36:00 +0100829 xfs_attr_fork_reset(dp, args->trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 goto out;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100831 }
832
833 xfs_attr_shortform_create(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834
835 /*
836 * Copy the attributes
837 */
838 memset((char *)&nargs, 0, sizeof(nargs));
839 nargs.dp = dp;
840 nargs.firstblock = args->firstblock;
841 nargs.flist = args->flist;
842 nargs.total = args->total;
843 nargs.whichfork = XFS_ATTR_FORK;
844 nargs.trans = args->trans;
Barry Naujok6a178102008-05-21 16:42:05 +1000845 nargs.op_flags = XFS_DA_OP_OKNOENT;
Dave Chinner517c2222013-04-24 18:58:55 +1000846
847 for (i = 0; i < ichdr.count; entry++, i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 if (entry->flags & XFS_ATTR_INCOMPLETE)
849 continue; /* don't copy partial entries */
850 if (!entry->nameidx)
851 continue;
852 ASSERT(entry->flags & XFS_ATTR_LOCAL);
Dave Chinner517c2222013-04-24 18:58:55 +1000853 name_loc = xfs_attr3_leaf_name_local(leaf, i);
Dave Chinnera9273ca2010-01-20 10:47:48 +1100854 nargs.name = name_loc->nameval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 nargs.namelen = name_loc->namelen;
Dave Chinnera9273ca2010-01-20 10:47:48 +1100856 nargs.value = &name_loc->nameval[nargs.namelen];
Nathan Scott053b5752006-03-17 17:29:09 +1100857 nargs.valuelen = be16_to_cpu(name_loc->valuelen);
Nathan Scott6b19f2d2006-03-17 17:29:02 +1100858 nargs.hashval = be32_to_cpu(entry->hashval);
Tim Shimmin726801b2006-09-28 11:01:37 +1000859 nargs.flags = XFS_ATTR_NSP_ONDISK_TO_ARGS(entry->flags);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100860 xfs_attr_shortform_add(&nargs, forkoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 }
862 error = 0;
863
864out:
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000865 kmem_free(tmpbuffer);
Dave Chinner517c2222013-04-24 18:58:55 +1000866 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867}
868
869/*
870 * Convert from using a single leaf to a root node and a leaf.
871 */
872int
Dave Chinner517c2222013-04-24 18:58:55 +1000873xfs_attr3_leaf_to_node(
874 struct xfs_da_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875{
Dave Chinner517c2222013-04-24 18:58:55 +1000876 struct xfs_attr_leafblock *leaf;
877 struct xfs_attr3_icleaf_hdr icleafhdr;
878 struct xfs_attr_leaf_entry *entries;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000879 struct xfs_da_node_entry *btree;
Dave Chinner517c2222013-04-24 18:58:55 +1000880 struct xfs_da3_icnode_hdr icnodehdr;
881 struct xfs_da_intnode *node;
882 struct xfs_inode *dp = args->dp;
883 struct xfs_mount *mp = dp->i_mount;
884 struct xfs_buf *bp1 = NULL;
885 struct xfs_buf *bp2 = NULL;
886 xfs_dablk_t blkno;
887 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Dave Chinner5a5881c2012-03-22 05:15:13 +0000889 trace_xfs_attr_leaf_to_node(args);
890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 error = xfs_da_grow_inode(args, &blkno);
892 if (error)
893 goto out;
Dave Chinner517c2222013-04-24 18:58:55 +1000894 error = xfs_attr3_leaf_read(args->trans, dp, 0, -1, &bp1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 if (error)
896 goto out;
Dave Chinnerad14c332012-11-12 22:54:16 +1100897
Dave Chinner517c2222013-04-24 18:58:55 +1000898 error = xfs_da_get_buf(args->trans, dp, blkno, -1, &bp2, XFS_ATTR_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 if (error)
900 goto out;
Dave Chinner517c2222013-04-24 18:58:55 +1000901
902 /* copy leaf to new buffer, update identifiers */
Dave Chinner61fe1352013-04-03 16:11:30 +1100903 xfs_trans_buf_set_type(args->trans, bp2, XFS_BLFT_ATTR_LEAF_BUF);
Dave Chinner1813dd62012-11-14 17:54:40 +1100904 bp2->b_ops = bp1->b_ops;
Dave Chinner517c2222013-04-24 18:58:55 +1000905 memcpy(bp2->b_addr, bp1->b_addr, XFS_LBSIZE(mp));
906 if (xfs_sb_version_hascrc(&mp->m_sb)) {
907 struct xfs_da3_blkinfo *hdr3 = bp2->b_addr;
908 hdr3->blkno = cpu_to_be64(bp2->b_bn);
909 }
910 xfs_trans_log_buf(args->trans, bp2, 0, XFS_LBSIZE(mp) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
912 /*
913 * Set up the new root node.
914 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000915 error = xfs_da3_node_create(args, 0, 1, &bp1, XFS_ATTR_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 if (error)
917 goto out;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000918 node = bp1->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100919 dp->d_ops->node_hdr_from_disk(&icnodehdr, node);
Dave Chinner4bceb182013-10-29 22:11:51 +1100920 btree = dp->d_ops->node_tree_p(node);
Dave Chinner517c2222013-04-24 18:58:55 +1000921
922 leaf = bp2->b_addr;
923 xfs_attr3_leaf_hdr_from_disk(&icleafhdr, leaf);
924 entries = xfs_attr3_leaf_entryp(leaf);
925
926 /* both on-disk, don't endian-flip twice */
927 btree[0].hashval = entries[icleafhdr.count - 1].hashval;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000928 btree[0].before = cpu_to_be32(blkno);
Dave Chinner517c2222013-04-24 18:58:55 +1000929 icnodehdr.count = 1;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100930 dp->d_ops->node_hdr_to_disk(node, &icnodehdr);
Dave Chinner517c2222013-04-24 18:58:55 +1000931 xfs_trans_log_buf(args->trans, bp1, 0, XFS_LBSIZE(mp) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 error = 0;
933out:
Dave Chinner517c2222013-04-24 18:58:55 +1000934 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935}
936
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937/*========================================================================
938 * Routines used for growing the Btree.
939 *========================================================================*/
940
941/*
942 * Create the initial contents of a leaf attribute list
943 * or a leaf in a node attribute list.
944 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +1000945STATIC int
Dave Chinner517c2222013-04-24 18:58:55 +1000946xfs_attr3_leaf_create(
947 struct xfs_da_args *args,
948 xfs_dablk_t blkno,
949 struct xfs_buf **bpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
Dave Chinner517c2222013-04-24 18:58:55 +1000951 struct xfs_attr_leafblock *leaf;
952 struct xfs_attr3_icleaf_hdr ichdr;
953 struct xfs_inode *dp = args->dp;
954 struct xfs_mount *mp = dp->i_mount;
955 struct xfs_buf *bp;
956 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Dave Chinner5a5881c2012-03-22 05:15:13 +0000958 trace_xfs_attr_leaf_create(args);
959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 error = xfs_da_get_buf(args->trans, args->dp, blkno, -1, &bp,
961 XFS_ATTR_FORK);
962 if (error)
Dave Chinner517c2222013-04-24 18:58:55 +1000963 return error;
964 bp->b_ops = &xfs_attr3_leaf_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100965 xfs_trans_buf_set_type(args->trans, bp, XFS_BLFT_ATTR_LEAF_BUF);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000966 leaf = bp->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +1000967 memset(leaf, 0, XFS_LBSIZE(mp));
968
969 memset(&ichdr, 0, sizeof(ichdr));
970 ichdr.firstused = XFS_LBSIZE(mp);
971
972 if (xfs_sb_version_hascrc(&mp->m_sb)) {
973 struct xfs_da3_blkinfo *hdr3 = bp->b_addr;
974
975 ichdr.magic = XFS_ATTR3_LEAF_MAGIC;
976
977 hdr3->blkno = cpu_to_be64(bp->b_bn);
978 hdr3->owner = cpu_to_be64(dp->i_ino);
979 uuid_copy(&hdr3->uuid, &mp->m_sb.sb_uuid);
980
981 ichdr.freemap[0].base = sizeof(struct xfs_attr3_leaf_hdr);
982 } else {
983 ichdr.magic = XFS_ATTR_LEAF_MAGIC;
984 ichdr.freemap[0].base = sizeof(struct xfs_attr_leaf_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 }
Dave Chinner517c2222013-04-24 18:58:55 +1000986 ichdr.freemap[0].size = ichdr.firstused - ichdr.freemap[0].base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Dave Chinner517c2222013-04-24 18:58:55 +1000988 xfs_attr3_leaf_hdr_to_disk(leaf, &ichdr);
989 xfs_trans_log_buf(args->trans, bp, 0, XFS_LBSIZE(mp) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
991 *bpp = bp;
Dave Chinner517c2222013-04-24 18:58:55 +1000992 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993}
994
995/*
996 * Split the leaf node, rebalance, then add the new entry.
997 */
998int
Dave Chinner517c2222013-04-24 18:58:55 +1000999xfs_attr3_leaf_split(
1000 struct xfs_da_state *state,
1001 struct xfs_da_state_blk *oldblk,
1002 struct xfs_da_state_blk *newblk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003{
1004 xfs_dablk_t blkno;
1005 int error;
1006
Dave Chinner5a5881c2012-03-22 05:15:13 +00001007 trace_xfs_attr_leaf_split(state->args);
1008
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 /*
1010 * Allocate space for a new leaf node.
1011 */
1012 ASSERT(oldblk->magic == XFS_ATTR_LEAF_MAGIC);
1013 error = xfs_da_grow_inode(state->args, &blkno);
1014 if (error)
1015 return(error);
Dave Chinner517c2222013-04-24 18:58:55 +10001016 error = xfs_attr3_leaf_create(state->args, blkno, &newblk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 if (error)
1018 return(error);
1019 newblk->blkno = blkno;
1020 newblk->magic = XFS_ATTR_LEAF_MAGIC;
1021
1022 /*
1023 * Rebalance the entries across the two leaves.
1024 * NOTE: rebalance() currently depends on the 2nd block being empty.
1025 */
Dave Chinner517c2222013-04-24 18:58:55 +10001026 xfs_attr3_leaf_rebalance(state, oldblk, newblk);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001027 error = xfs_da3_blk_link(state, oldblk, newblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 if (error)
1029 return(error);
1030
1031 /*
1032 * Save info on "old" attribute for "atomic rename" ops, leaf_add()
1033 * modifies the index/blkno/rmtblk/rmtblkcnt fields to show the
1034 * "new" attrs info. Will need the "old" info to remove it later.
1035 *
1036 * Insert the "new" entry in the correct block.
1037 */
Dave Chinner5a5881c2012-03-22 05:15:13 +00001038 if (state->inleaf) {
1039 trace_xfs_attr_leaf_add_old(state->args);
Dave Chinner517c2222013-04-24 18:58:55 +10001040 error = xfs_attr3_leaf_add(oldblk->bp, state->args);
Dave Chinner5a5881c2012-03-22 05:15:13 +00001041 } else {
1042 trace_xfs_attr_leaf_add_new(state->args);
Dave Chinner517c2222013-04-24 18:58:55 +10001043 error = xfs_attr3_leaf_add(newblk->bp, state->args);
Dave Chinner5a5881c2012-03-22 05:15:13 +00001044 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
1046 /*
1047 * Update last hashval in each block since we added the name.
1048 */
1049 oldblk->hashval = xfs_attr_leaf_lasthash(oldblk->bp, NULL);
1050 newblk->hashval = xfs_attr_leaf_lasthash(newblk->bp, NULL);
1051 return(error);
1052}
1053
1054/*
1055 * Add a name to the leaf attribute list structure.
1056 */
1057int
Dave Chinner517c2222013-04-24 18:58:55 +10001058xfs_attr3_leaf_add(
Dave Chinner1d9025e2012-06-22 18:50:14 +10001059 struct xfs_buf *bp,
1060 struct xfs_da_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061{
Dave Chinner517c2222013-04-24 18:58:55 +10001062 struct xfs_attr_leafblock *leaf;
1063 struct xfs_attr3_icleaf_hdr ichdr;
1064 int tablesize;
1065 int entsize;
1066 int sum;
1067 int tmp;
1068 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
Dave Chinner5a5881c2012-03-22 05:15:13 +00001070 trace_xfs_attr_leaf_add(args);
1071
Dave Chinner1d9025e2012-06-22 18:50:14 +10001072 leaf = bp->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10001073 xfs_attr3_leaf_hdr_from_disk(&ichdr, leaf);
1074 ASSERT(args->index >= 0 && args->index <= ichdr.count);
Nathan Scottaa82daa2005-11-02 10:33:33 +11001075 entsize = xfs_attr_leaf_newentsize(args->namelen, args->valuelen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 args->trans->t_mountp->m_sb.sb_blocksize, NULL);
1077
1078 /*
1079 * Search through freemap for first-fit on new name length.
1080 * (may need to figure in size of entry struct too)
1081 */
Dave Chinner517c2222013-04-24 18:58:55 +10001082 tablesize = (ichdr.count + 1) * sizeof(xfs_attr_leaf_entry_t)
1083 + xfs_attr3_leaf_hdr_size(leaf);
1084 for (sum = 0, i = XFS_ATTR_LEAF_MAPSIZE - 1; i >= 0; i--) {
1085 if (tablesize > ichdr.firstused) {
1086 sum += ichdr.freemap[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 continue;
1088 }
Dave Chinner517c2222013-04-24 18:58:55 +10001089 if (!ichdr.freemap[i].size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 continue; /* no space in this map */
1091 tmp = entsize;
Dave Chinner517c2222013-04-24 18:58:55 +10001092 if (ichdr.freemap[i].base < ichdr.firstused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 tmp += sizeof(xfs_attr_leaf_entry_t);
Dave Chinner517c2222013-04-24 18:58:55 +10001094 if (ichdr.freemap[i].size >= tmp) {
1095 tmp = xfs_attr3_leaf_add_work(bp, &ichdr, args, i);
1096 goto out_log_hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 }
Dave Chinner517c2222013-04-24 18:58:55 +10001098 sum += ichdr.freemap[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 }
1100
1101 /*
1102 * If there are no holes in the address space of the block,
1103 * and we don't have enough freespace, then compaction will do us
1104 * no good and we should just give up.
1105 */
Dave Chinner517c2222013-04-24 18:58:55 +10001106 if (!ichdr.holes && sum < entsize)
1107 return XFS_ERROR(ENOSPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
1109 /*
1110 * Compact the entries to coalesce free space.
1111 * This may change the hdr->count via dropping INCOMPLETE entries.
1112 */
Dave Chinner517c2222013-04-24 18:58:55 +10001113 xfs_attr3_leaf_compact(args, &ichdr, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
1115 /*
1116 * After compaction, the block is guaranteed to have only one
1117 * free region, in freemap[0]. If it is not big enough, give up.
1118 */
Dave Chinner517c2222013-04-24 18:58:55 +10001119 if (ichdr.freemap[0].size < (entsize + sizeof(xfs_attr_leaf_entry_t))) {
1120 tmp = ENOSPC;
1121 goto out_log_hdr;
1122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
Dave Chinner517c2222013-04-24 18:58:55 +10001124 tmp = xfs_attr3_leaf_add_work(bp, &ichdr, args, 0);
1125
1126out_log_hdr:
1127 xfs_attr3_leaf_hdr_to_disk(leaf, &ichdr);
1128 xfs_trans_log_buf(args->trans, bp,
1129 XFS_DA_LOGRANGE(leaf, &leaf->hdr,
1130 xfs_attr3_leaf_hdr_size(leaf)));
1131 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132}
1133
1134/*
1135 * Add a name to a leaf attribute list structure.
1136 */
1137STATIC int
Dave Chinner517c2222013-04-24 18:58:55 +10001138xfs_attr3_leaf_add_work(
1139 struct xfs_buf *bp,
1140 struct xfs_attr3_icleaf_hdr *ichdr,
1141 struct xfs_da_args *args,
1142 int mapindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143{
Dave Chinner517c2222013-04-24 18:58:55 +10001144 struct xfs_attr_leafblock *leaf;
1145 struct xfs_attr_leaf_entry *entry;
1146 struct xfs_attr_leaf_name_local *name_loc;
1147 struct xfs_attr_leaf_name_remote *name_rmt;
1148 struct xfs_mount *mp;
1149 int tmp;
1150 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
Dave Chinneree732592012-11-12 22:53:53 +11001152 trace_xfs_attr_leaf_add_work(args);
1153
Dave Chinner1d9025e2012-06-22 18:50:14 +10001154 leaf = bp->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10001155 ASSERT(mapindex >= 0 && mapindex < XFS_ATTR_LEAF_MAPSIZE);
1156 ASSERT(args->index >= 0 && args->index <= ichdr->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
1158 /*
1159 * Force open some space in the entry array and fill it in.
1160 */
Dave Chinner517c2222013-04-24 18:58:55 +10001161 entry = &xfs_attr3_leaf_entryp(leaf)[args->index];
1162 if (args->index < ichdr->count) {
1163 tmp = ichdr->count - args->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 tmp *= sizeof(xfs_attr_leaf_entry_t);
Dave Chinner517c2222013-04-24 18:58:55 +10001165 memmove(entry + 1, entry, tmp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001166 xfs_trans_log_buf(args->trans, bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 XFS_DA_LOGRANGE(leaf, entry, tmp + sizeof(*entry)));
1168 }
Dave Chinner517c2222013-04-24 18:58:55 +10001169 ichdr->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
1171 /*
1172 * Allocate space for the new string (at the end of the run).
1173 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 mp = args->trans->t_mountp;
Dave Chinner517c2222013-04-24 18:58:55 +10001175 ASSERT(ichdr->freemap[mapindex].base < XFS_LBSIZE(mp));
1176 ASSERT((ichdr->freemap[mapindex].base & 0x3) == 0);
1177 ASSERT(ichdr->freemap[mapindex].size >=
Nathan Scottaa82daa2005-11-02 10:33:33 +11001178 xfs_attr_leaf_newentsize(args->namelen, args->valuelen,
1179 mp->m_sb.sb_blocksize, NULL));
Dave Chinner517c2222013-04-24 18:58:55 +10001180 ASSERT(ichdr->freemap[mapindex].size < XFS_LBSIZE(mp));
1181 ASSERT((ichdr->freemap[mapindex].size & 0x3) == 0);
1182
1183 ichdr->freemap[mapindex].size -=
1184 xfs_attr_leaf_newentsize(args->namelen, args->valuelen,
1185 mp->m_sb.sb_blocksize, &tmp);
1186
1187 entry->nameidx = cpu_to_be16(ichdr->freemap[mapindex].base +
1188 ichdr->freemap[mapindex].size);
Nathan Scott6b19f2d2006-03-17 17:29:02 +11001189 entry->hashval = cpu_to_be32(args->hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 entry->flags = tmp ? XFS_ATTR_LOCAL : 0;
Tim Shimmin726801b2006-09-28 11:01:37 +10001191 entry->flags |= XFS_ATTR_NSP_ARGS_TO_ONDISK(args->flags);
Barry Naujok6a178102008-05-21 16:42:05 +10001192 if (args->op_flags & XFS_DA_OP_RENAME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 entry->flags |= XFS_ATTR_INCOMPLETE;
1194 if ((args->blkno2 == args->blkno) &&
1195 (args->index2 <= args->index)) {
1196 args->index2++;
1197 }
1198 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10001199 xfs_trans_log_buf(args->trans, bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 XFS_DA_LOGRANGE(leaf, entry, sizeof(*entry)));
Nathan Scott6b19f2d2006-03-17 17:29:02 +11001201 ASSERT((args->index == 0) ||
1202 (be32_to_cpu(entry->hashval) >= be32_to_cpu((entry-1)->hashval)));
Dave Chinner517c2222013-04-24 18:58:55 +10001203 ASSERT((args->index == ichdr->count - 1) ||
Nathan Scott6b19f2d2006-03-17 17:29:02 +11001204 (be32_to_cpu(entry->hashval) <= be32_to_cpu((entry+1)->hashval)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
1206 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 * For "remote" attribute values, simply note that we need to
1208 * allocate space for the "remote" value. We can't actually
1209 * allocate the extents in this transaction, and we can't decide
1210 * which blocks they should be as we might allocate more blocks
1211 * as part of this transaction (a split operation for example).
1212 */
1213 if (entry->flags & XFS_ATTR_LOCAL) {
Dave Chinner517c2222013-04-24 18:58:55 +10001214 name_loc = xfs_attr3_leaf_name_local(leaf, args->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 name_loc->namelen = args->namelen;
Nathan Scott053b5752006-03-17 17:29:09 +11001216 name_loc->valuelen = cpu_to_be16(args->valuelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 memcpy((char *)name_loc->nameval, args->name, args->namelen);
1218 memcpy((char *)&name_loc->nameval[args->namelen], args->value,
Nathan Scott053b5752006-03-17 17:29:09 +11001219 be16_to_cpu(name_loc->valuelen));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10001221 name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 name_rmt->namelen = args->namelen;
1223 memcpy((char *)name_rmt->name, args->name, args->namelen);
1224 entry->flags |= XFS_ATTR_INCOMPLETE;
1225 /* just in case */
1226 name_rmt->valuelen = 0;
1227 name_rmt->valueblk = 0;
1228 args->rmtblkno = 1;
Dave Chinnerad1858d2013-05-21 18:02:08 +10001229 args->rmtblkcnt = xfs_attr3_rmt_blocks(mp, args->valuelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10001231 xfs_trans_log_buf(args->trans, bp,
Dave Chinner517c2222013-04-24 18:58:55 +10001232 XFS_DA_LOGRANGE(leaf, xfs_attr3_leaf_name(leaf, args->index),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 xfs_attr_leaf_entsize(leaf, args->index)));
1234
1235 /*
1236 * Update the control info for this leaf node
1237 */
Dave Chinner517c2222013-04-24 18:58:55 +10001238 if (be16_to_cpu(entry->nameidx) < ichdr->firstused)
1239 ichdr->firstused = be16_to_cpu(entry->nameidx);
1240
1241 ASSERT(ichdr->firstused >= ichdr->count * sizeof(xfs_attr_leaf_entry_t)
1242 + xfs_attr3_leaf_hdr_size(leaf));
1243 tmp = (ichdr->count - 1) * sizeof(xfs_attr_leaf_entry_t)
1244 + xfs_attr3_leaf_hdr_size(leaf);
1245
1246 for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
1247 if (ichdr->freemap[i].base == tmp) {
1248 ichdr->freemap[i].base += sizeof(xfs_attr_leaf_entry_t);
1249 ichdr->freemap[i].size -= sizeof(xfs_attr_leaf_entry_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 }
1251 }
Dave Chinner517c2222013-04-24 18:58:55 +10001252 ichdr->usedbytes += xfs_attr_leaf_entsize(leaf, args->index);
1253 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254}
1255
1256/*
1257 * Garbage collect a leaf attribute list block by copying it to a new buffer.
1258 */
1259STATIC void
Dave Chinner517c2222013-04-24 18:58:55 +10001260xfs_attr3_leaf_compact(
Dave Chinneree732592012-11-12 22:53:53 +11001261 struct xfs_da_args *args,
Dave Chinnerd4c712b2013-05-21 18:02:06 +10001262 struct xfs_attr3_icleaf_hdr *ichdr_dst,
Dave Chinneree732592012-11-12 22:53:53 +11001263 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264{
Dave Chinnerd4c712b2013-05-21 18:02:06 +10001265 struct xfs_attr_leafblock *leaf_src;
1266 struct xfs_attr_leafblock *leaf_dst;
1267 struct xfs_attr3_icleaf_hdr ichdr_src;
Dave Chinneree732592012-11-12 22:53:53 +11001268 struct xfs_trans *trans = args->trans;
1269 struct xfs_mount *mp = trans->t_mountp;
1270 char *tmpbuffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
Dave Chinneree732592012-11-12 22:53:53 +11001272 trace_xfs_attr_leaf_compact(args);
1273
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 tmpbuffer = kmem_alloc(XFS_LBSIZE(mp), KM_SLEEP);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001275 memcpy(tmpbuffer, bp->b_addr, XFS_LBSIZE(mp));
1276 memset(bp->b_addr, 0, XFS_LBSIZE(mp));
Dave Chinnerd4c712b2013-05-21 18:02:06 +10001277 leaf_src = (xfs_attr_leafblock_t *)tmpbuffer;
1278 leaf_dst = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
1280 /*
Dave Chinnerd4c712b2013-05-21 18:02:06 +10001281 * Copy the on-disk header back into the destination buffer to ensure
1282 * all the information in the header that is not part of the incore
1283 * header structure is preserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 */
Dave Chinnerd4c712b2013-05-21 18:02:06 +10001285 memcpy(bp->b_addr, tmpbuffer, xfs_attr3_leaf_hdr_size(leaf_src));
1286
1287 /* Initialise the incore headers */
1288 ichdr_src = *ichdr_dst; /* struct copy */
1289 ichdr_dst->firstused = XFS_LBSIZE(mp);
1290 ichdr_dst->usedbytes = 0;
1291 ichdr_dst->count = 0;
1292 ichdr_dst->holes = 0;
1293 ichdr_dst->freemap[0].base = xfs_attr3_leaf_hdr_size(leaf_src);
1294 ichdr_dst->freemap[0].size = ichdr_dst->firstused -
1295 ichdr_dst->freemap[0].base;
1296
Dave Chinnerd4c712b2013-05-21 18:02:06 +10001297 /* write the header back to initialise the underlying buffer */
1298 xfs_attr3_leaf_hdr_to_disk(leaf_dst, ichdr_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
1300 /*
1301 * Copy all entry's in the same (sorted) order,
1302 * but allocate name/value pairs packed and in sequence.
1303 */
Dave Chinnerd4c712b2013-05-21 18:02:06 +10001304 xfs_attr3_leaf_moveents(leaf_src, &ichdr_src, 0, leaf_dst, ichdr_dst, 0,
1305 ichdr_src.count, mp);
Dave Chinner517c2222013-04-24 18:58:55 +10001306 /*
1307 * this logs the entire buffer, but the caller must write the header
1308 * back to the buffer when it is finished modifying it.
1309 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001310 xfs_trans_log_buf(trans, bp, 0, XFS_LBSIZE(mp) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001312 kmem_free(tmpbuffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313}
1314
1315/*
Dave Chinner517c2222013-04-24 18:58:55 +10001316 * Compare two leaf blocks "order".
1317 * Return 0 unless leaf2 should go before leaf1.
1318 */
1319static int
1320xfs_attr3_leaf_order(
1321 struct xfs_buf *leaf1_bp,
1322 struct xfs_attr3_icleaf_hdr *leaf1hdr,
1323 struct xfs_buf *leaf2_bp,
1324 struct xfs_attr3_icleaf_hdr *leaf2hdr)
1325{
1326 struct xfs_attr_leaf_entry *entries1;
1327 struct xfs_attr_leaf_entry *entries2;
1328
1329 entries1 = xfs_attr3_leaf_entryp(leaf1_bp->b_addr);
1330 entries2 = xfs_attr3_leaf_entryp(leaf2_bp->b_addr);
1331 if (leaf1hdr->count > 0 && leaf2hdr->count > 0 &&
1332 ((be32_to_cpu(entries2[0].hashval) <
1333 be32_to_cpu(entries1[0].hashval)) ||
1334 (be32_to_cpu(entries2[leaf2hdr->count - 1].hashval) <
1335 be32_to_cpu(entries1[leaf1hdr->count - 1].hashval)))) {
1336 return 1;
1337 }
1338 return 0;
1339}
1340
1341int
1342xfs_attr_leaf_order(
1343 struct xfs_buf *leaf1_bp,
1344 struct xfs_buf *leaf2_bp)
1345{
1346 struct xfs_attr3_icleaf_hdr ichdr1;
1347 struct xfs_attr3_icleaf_hdr ichdr2;
1348
1349 xfs_attr3_leaf_hdr_from_disk(&ichdr1, leaf1_bp->b_addr);
1350 xfs_attr3_leaf_hdr_from_disk(&ichdr2, leaf2_bp->b_addr);
1351 return xfs_attr3_leaf_order(leaf1_bp, &ichdr1, leaf2_bp, &ichdr2);
1352}
1353
1354/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 * Redistribute the attribute list entries between two leaf nodes,
1356 * taking into account the size of the new entry.
1357 *
1358 * NOTE: if new block is empty, then it will get the upper half of the
1359 * old block. At present, all (one) callers pass in an empty second block.
1360 *
1361 * This code adjusts the args->index/blkno and args->index2/blkno2 fields
1362 * to match what it is doing in splitting the attribute leaf block. Those
1363 * values are used in "atomic rename" operations on attributes. Note that
1364 * the "new" and "old" values can end up in different blocks.
1365 */
1366STATIC void
Dave Chinner517c2222013-04-24 18:58:55 +10001367xfs_attr3_leaf_rebalance(
1368 struct xfs_da_state *state,
1369 struct xfs_da_state_blk *blk1,
1370 struct xfs_da_state_blk *blk2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371{
Dave Chinner517c2222013-04-24 18:58:55 +10001372 struct xfs_da_args *args;
1373 struct xfs_attr_leafblock *leaf1;
1374 struct xfs_attr_leafblock *leaf2;
1375 struct xfs_attr3_icleaf_hdr ichdr1;
1376 struct xfs_attr3_icleaf_hdr ichdr2;
1377 struct xfs_attr_leaf_entry *entries1;
1378 struct xfs_attr_leaf_entry *entries2;
1379 int count;
1380 int totallen;
1381 int max;
1382 int space;
1383 int swap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
1385 /*
1386 * Set up environment.
1387 */
1388 ASSERT(blk1->magic == XFS_ATTR_LEAF_MAGIC);
1389 ASSERT(blk2->magic == XFS_ATTR_LEAF_MAGIC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001390 leaf1 = blk1->bp->b_addr;
1391 leaf2 = blk2->bp->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10001392 xfs_attr3_leaf_hdr_from_disk(&ichdr1, leaf1);
1393 xfs_attr3_leaf_hdr_from_disk(&ichdr2, leaf2);
1394 ASSERT(ichdr2.count == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 args = state->args;
1396
Dave Chinner5a5881c2012-03-22 05:15:13 +00001397 trace_xfs_attr_leaf_rebalance(args);
1398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 /*
1400 * Check ordering of blocks, reverse if it makes things simpler.
1401 *
1402 * NOTE: Given that all (current) callers pass in an empty
1403 * second block, this code should never set "swap".
1404 */
1405 swap = 0;
Dave Chinner517c2222013-04-24 18:58:55 +10001406 if (xfs_attr3_leaf_order(blk1->bp, &ichdr1, blk2->bp, &ichdr2)) {
1407 struct xfs_da_state_blk *tmp_blk;
1408 struct xfs_attr3_icleaf_hdr tmp_ichdr;
1409
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 tmp_blk = blk1;
1411 blk1 = blk2;
1412 blk2 = tmp_blk;
Dave Chinner517c2222013-04-24 18:58:55 +10001413
1414 /* struct copies to swap them rather than reconverting */
1415 tmp_ichdr = ichdr1;
1416 ichdr1 = ichdr2;
1417 ichdr2 = tmp_ichdr;
1418
Dave Chinner1d9025e2012-06-22 18:50:14 +10001419 leaf1 = blk1->bp->b_addr;
1420 leaf2 = blk2->bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 swap = 1;
1422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
1424 /*
1425 * Examine entries until we reduce the absolute difference in
1426 * byte usage between the two blocks to a minimum. Then get
1427 * the direction to copy and the number of elements to move.
1428 *
1429 * "inleaf" is true if the new entry should be inserted into blk1.
1430 * If "swap" is also true, then reverse the sense of "inleaf".
1431 */
Dave Chinner517c2222013-04-24 18:58:55 +10001432 state->inleaf = xfs_attr3_leaf_figure_balance(state, blk1, &ichdr1,
1433 blk2, &ichdr2,
1434 &count, &totallen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 if (swap)
1436 state->inleaf = !state->inleaf;
1437
1438 /*
1439 * Move any entries required from leaf to leaf:
1440 */
Dave Chinner517c2222013-04-24 18:58:55 +10001441 if (count < ichdr1.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 /*
1443 * Figure the total bytes to be added to the destination leaf.
1444 */
1445 /* number entries being moved */
Dave Chinner517c2222013-04-24 18:58:55 +10001446 count = ichdr1.count - count;
1447 space = ichdr1.usedbytes - totallen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 space += count * sizeof(xfs_attr_leaf_entry_t);
1449
1450 /*
1451 * leaf2 is the destination, compact it if it looks tight.
1452 */
Dave Chinner517c2222013-04-24 18:58:55 +10001453 max = ichdr2.firstused - xfs_attr3_leaf_hdr_size(leaf1);
1454 max -= ichdr2.count * sizeof(xfs_attr_leaf_entry_t);
Dave Chinneree732592012-11-12 22:53:53 +11001455 if (space > max)
Dave Chinner517c2222013-04-24 18:58:55 +10001456 xfs_attr3_leaf_compact(args, &ichdr2, blk2->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
1458 /*
1459 * Move high entries from leaf1 to low end of leaf2.
1460 */
Dave Chinner517c2222013-04-24 18:58:55 +10001461 xfs_attr3_leaf_moveents(leaf1, &ichdr1, ichdr1.count - count,
1462 leaf2, &ichdr2, 0, count, state->mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
Dave Chinner517c2222013-04-24 18:58:55 +10001464 } else if (count > ichdr1.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 /*
1466 * I assert that since all callers pass in an empty
1467 * second buffer, this code should never execute.
1468 */
Dave Chinner07428d72012-11-12 22:09:44 +11001469 ASSERT(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
1471 /*
1472 * Figure the total bytes to be added to the destination leaf.
1473 */
1474 /* number entries being moved */
Dave Chinner517c2222013-04-24 18:58:55 +10001475 count -= ichdr1.count;
1476 space = totallen - ichdr1.usedbytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 space += count * sizeof(xfs_attr_leaf_entry_t);
1478
1479 /*
1480 * leaf1 is the destination, compact it if it looks tight.
1481 */
Dave Chinner517c2222013-04-24 18:58:55 +10001482 max = ichdr1.firstused - xfs_attr3_leaf_hdr_size(leaf1);
1483 max -= ichdr1.count * sizeof(xfs_attr_leaf_entry_t);
Dave Chinneree732592012-11-12 22:53:53 +11001484 if (space > max)
Dave Chinner517c2222013-04-24 18:58:55 +10001485 xfs_attr3_leaf_compact(args, &ichdr1, blk1->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
1487 /*
1488 * Move low entries from leaf2 to high end of leaf1.
1489 */
Dave Chinner517c2222013-04-24 18:58:55 +10001490 xfs_attr3_leaf_moveents(leaf2, &ichdr2, 0, leaf1, &ichdr1,
1491 ichdr1.count, count, state->mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 }
1493
Dave Chinner517c2222013-04-24 18:58:55 +10001494 xfs_attr3_leaf_hdr_to_disk(leaf1, &ichdr1);
1495 xfs_attr3_leaf_hdr_to_disk(leaf2, &ichdr2);
1496 xfs_trans_log_buf(args->trans, blk1->bp, 0, state->blocksize-1);
1497 xfs_trans_log_buf(args->trans, blk2->bp, 0, state->blocksize-1);
1498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 /*
1500 * Copy out last hashval in each block for B-tree code.
1501 */
Dave Chinner517c2222013-04-24 18:58:55 +10001502 entries1 = xfs_attr3_leaf_entryp(leaf1);
1503 entries2 = xfs_attr3_leaf_entryp(leaf2);
1504 blk1->hashval = be32_to_cpu(entries1[ichdr1.count - 1].hashval);
1505 blk2->hashval = be32_to_cpu(entries2[ichdr2.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
1507 /*
1508 * Adjust the expected index for insertion.
1509 * NOTE: this code depends on the (current) situation that the
1510 * second block was originally empty.
1511 *
1512 * If the insertion point moved to the 2nd block, we must adjust
1513 * the index. We must also track the entry just following the
1514 * new entry for use in an "atomic rename" operation, that entry
1515 * is always the "old" entry and the "new" entry is what we are
1516 * inserting. The index/blkno fields refer to the "old" entry,
1517 * while the index2/blkno2 fields refer to the "new" entry.
1518 */
Dave Chinner517c2222013-04-24 18:58:55 +10001519 if (blk1->index > ichdr1.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 ASSERT(state->inleaf == 0);
Dave Chinner517c2222013-04-24 18:58:55 +10001521 blk2->index = blk1->index - ichdr1.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 args->index = args->index2 = blk2->index;
1523 args->blkno = args->blkno2 = blk2->blkno;
Dave Chinner517c2222013-04-24 18:58:55 +10001524 } else if (blk1->index == ichdr1.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 if (state->inleaf) {
1526 args->index = blk1->index;
1527 args->blkno = blk1->blkno;
1528 args->index2 = 0;
1529 args->blkno2 = blk2->blkno;
1530 } else {
Dave Chinner07428d72012-11-12 22:09:44 +11001531 /*
1532 * On a double leaf split, the original attr location
1533 * is already stored in blkno2/index2, so don't
1534 * overwrite it overwise we corrupt the tree.
1535 */
Dave Chinner517c2222013-04-24 18:58:55 +10001536 blk2->index = blk1->index - ichdr1.count;
Dave Chinner07428d72012-11-12 22:09:44 +11001537 args->index = blk2->index;
1538 args->blkno = blk2->blkno;
1539 if (!state->extravalid) {
1540 /*
1541 * set the new attr location to match the old
1542 * one and let the higher level split code
1543 * decide where in the leaf to place it.
1544 */
1545 args->index2 = blk2->index;
1546 args->blkno2 = blk2->blkno;
1547 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 }
1549 } else {
1550 ASSERT(state->inleaf == 1);
1551 args->index = args->index2 = blk1->index;
1552 args->blkno = args->blkno2 = blk1->blkno;
1553 }
1554}
1555
1556/*
1557 * Examine entries until we reduce the absolute difference in
1558 * byte usage between the two blocks to a minimum.
1559 * GROT: Is this really necessary? With other than a 512 byte blocksize,
1560 * GROT: there will always be enough room in either block for a new entry.
1561 * GROT: Do a double-split for this case?
1562 */
1563STATIC int
Dave Chinner517c2222013-04-24 18:58:55 +10001564xfs_attr3_leaf_figure_balance(
1565 struct xfs_da_state *state,
1566 struct xfs_da_state_blk *blk1,
1567 struct xfs_attr3_icleaf_hdr *ichdr1,
1568 struct xfs_da_state_blk *blk2,
1569 struct xfs_attr3_icleaf_hdr *ichdr2,
1570 int *countarg,
1571 int *usedbytesarg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572{
Dave Chinner517c2222013-04-24 18:58:55 +10001573 struct xfs_attr_leafblock *leaf1 = blk1->bp->b_addr;
1574 struct xfs_attr_leafblock *leaf2 = blk2->bp->b_addr;
1575 struct xfs_attr_leaf_entry *entry;
1576 int count;
1577 int max;
1578 int index;
1579 int totallen = 0;
1580 int half;
1581 int lastdelta;
1582 int foundit = 0;
1583 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
1585 /*
1586 * Examine entries until we reduce the absolute difference in
1587 * byte usage between the two blocks to a minimum.
1588 */
Dave Chinner517c2222013-04-24 18:58:55 +10001589 max = ichdr1->count + ichdr2->count;
1590 half = (max + 1) * sizeof(*entry);
1591 half += ichdr1->usedbytes + ichdr2->usedbytes +
1592 xfs_attr_leaf_newentsize(state->args->namelen,
1593 state->args->valuelen,
1594 state->blocksize, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 half /= 2;
1596 lastdelta = state->blocksize;
Dave Chinner517c2222013-04-24 18:58:55 +10001597 entry = xfs_attr3_leaf_entryp(leaf1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 for (count = index = 0; count < max; entry++, index++, count++) {
1599
1600#define XFS_ATTR_ABS(A) (((A) < 0) ? -(A) : (A))
1601 /*
1602 * The new entry is in the first block, account for it.
1603 */
1604 if (count == blk1->index) {
1605 tmp = totallen + sizeof(*entry) +
Nathan Scottaa82daa2005-11-02 10:33:33 +11001606 xfs_attr_leaf_newentsize(
1607 state->args->namelen,
1608 state->args->valuelen,
1609 state->blocksize, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 if (XFS_ATTR_ABS(half - tmp) > lastdelta)
1611 break;
1612 lastdelta = XFS_ATTR_ABS(half - tmp);
1613 totallen = tmp;
1614 foundit = 1;
1615 }
1616
1617 /*
1618 * Wrap around into the second block if necessary.
1619 */
Dave Chinner517c2222013-04-24 18:58:55 +10001620 if (count == ichdr1->count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 leaf1 = leaf2;
Dave Chinner517c2222013-04-24 18:58:55 +10001622 entry = xfs_attr3_leaf_entryp(leaf1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 index = 0;
1624 }
1625
1626 /*
1627 * Figure out if next leaf entry would be too much.
1628 */
1629 tmp = totallen + sizeof(*entry) + xfs_attr_leaf_entsize(leaf1,
1630 index);
1631 if (XFS_ATTR_ABS(half - tmp) > lastdelta)
1632 break;
1633 lastdelta = XFS_ATTR_ABS(half - tmp);
1634 totallen = tmp;
1635#undef XFS_ATTR_ABS
1636 }
1637
1638 /*
1639 * Calculate the number of usedbytes that will end up in lower block.
1640 * If new entry not in lower block, fix up the count.
1641 */
1642 totallen -= count * sizeof(*entry);
1643 if (foundit) {
1644 totallen -= sizeof(*entry) +
Nathan Scottaa82daa2005-11-02 10:33:33 +11001645 xfs_attr_leaf_newentsize(
1646 state->args->namelen,
1647 state->args->valuelen,
1648 state->blocksize, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 }
1650
1651 *countarg = count;
1652 *usedbytesarg = totallen;
Dave Chinner517c2222013-04-24 18:58:55 +10001653 return foundit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654}
1655
1656/*========================================================================
1657 * Routines used for shrinking the Btree.
1658 *========================================================================*/
1659
1660/*
1661 * Check a leaf block and its neighbors to see if the block should be
1662 * collapsed into one or the other neighbor. Always keep the block
1663 * with the smaller block number.
1664 * If the current block is over 50% full, don't try to join it, return 0.
1665 * If the block is empty, fill in the state structure and return 2.
1666 * If it can be collapsed, fill in the state structure and return 1.
1667 * If nothing can be done, return 0.
1668 *
1669 * GROT: allow for INCOMPLETE entries in calculation.
1670 */
1671int
Dave Chinner517c2222013-04-24 18:58:55 +10001672xfs_attr3_leaf_toosmall(
1673 struct xfs_da_state *state,
1674 int *action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675{
Dave Chinner517c2222013-04-24 18:58:55 +10001676 struct xfs_attr_leafblock *leaf;
1677 struct xfs_da_state_blk *blk;
1678 struct xfs_attr3_icleaf_hdr ichdr;
1679 struct xfs_buf *bp;
1680 xfs_dablk_t blkno;
1681 int bytes;
1682 int forward;
1683 int error;
1684 int retval;
1685 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
Dave Chinneree732592012-11-12 22:53:53 +11001687 trace_xfs_attr_leaf_toosmall(state->args);
1688
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 /*
1690 * Check for the degenerate case of the block being over 50% full.
1691 * If so, it's not worth even looking to see if we might be able
1692 * to coalesce with a sibling.
1693 */
1694 blk = &state->path.blk[ state->path.active-1 ];
Dave Chinner517c2222013-04-24 18:58:55 +10001695 leaf = blk->bp->b_addr;
1696 xfs_attr3_leaf_hdr_from_disk(&ichdr, leaf);
1697 bytes = xfs_attr3_leaf_hdr_size(leaf) +
1698 ichdr.count * sizeof(xfs_attr_leaf_entry_t) +
1699 ichdr.usedbytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 if (bytes > (state->blocksize >> 1)) {
1701 *action = 0; /* blk over 50%, don't try to join */
1702 return(0);
1703 }
1704
1705 /*
1706 * Check for the degenerate case of the block being empty.
1707 * If the block is empty, we'll simply delete it, no need to
Nathan Scottc41564b2006-03-29 08:55:14 +10001708 * coalesce it with a sibling block. We choose (arbitrarily)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 * to merge with the forward block unless it is NULL.
1710 */
Dave Chinner517c2222013-04-24 18:58:55 +10001711 if (ichdr.count == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 /*
1713 * Make altpath point to the block we want to keep and
1714 * path point to the block we want to drop (this one).
1715 */
Dave Chinner517c2222013-04-24 18:58:55 +10001716 forward = (ichdr.forw != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 memcpy(&state->altpath, &state->path, sizeof(state->path));
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001718 error = xfs_da3_path_shift(state, &state->altpath, forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 0, &retval);
1720 if (error)
1721 return(error);
1722 if (retval) {
1723 *action = 0;
1724 } else {
1725 *action = 2;
1726 }
Dave Chinner517c2222013-04-24 18:58:55 +10001727 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 }
1729
1730 /*
1731 * Examine each sibling block to see if we can coalesce with
1732 * at least 25% free space to spare. We need to figure out
1733 * whether to merge with the forward or the backward block.
1734 * We prefer coalescing with the lower numbered sibling so as
1735 * to shrink an attribute list over time.
1736 */
1737 /* start with smaller blk num */
Dave Chinner517c2222013-04-24 18:58:55 +10001738 forward = ichdr.forw < ichdr.back;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 for (i = 0; i < 2; forward = !forward, i++) {
Dave Chinner517c2222013-04-24 18:58:55 +10001740 struct xfs_attr3_icleaf_hdr ichdr2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 if (forward)
Dave Chinner517c2222013-04-24 18:58:55 +10001742 blkno = ichdr.forw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 else
Dave Chinner517c2222013-04-24 18:58:55 +10001744 blkno = ichdr.back;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 if (blkno == 0)
1746 continue;
Dave Chinner517c2222013-04-24 18:58:55 +10001747 error = xfs_attr3_leaf_read(state->args->trans, state->args->dp,
Dave Chinnerad14c332012-11-12 22:54:16 +11001748 blkno, -1, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 if (error)
1750 return(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
Dave Chinner517c2222013-04-24 18:58:55 +10001752 xfs_attr3_leaf_hdr_from_disk(&ichdr2, bp->b_addr);
1753
1754 bytes = state->blocksize - (state->blocksize >> 2) -
1755 ichdr.usedbytes - ichdr2.usedbytes -
1756 ((ichdr.count + ichdr2.count) *
1757 sizeof(xfs_attr_leaf_entry_t)) -
1758 xfs_attr3_leaf_hdr_size(leaf);
1759
Dave Chinner1d9025e2012-06-22 18:50:14 +10001760 xfs_trans_brelse(state->args->trans, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 if (bytes >= 0)
1762 break; /* fits with at least 25% to spare */
1763 }
1764 if (i >= 2) {
1765 *action = 0;
1766 return(0);
1767 }
1768
1769 /*
1770 * Make altpath point to the block we want to keep (the lower
1771 * numbered block) and path point to the block we want to drop.
1772 */
1773 memcpy(&state->altpath, &state->path, sizeof(state->path));
1774 if (blkno < blk->blkno) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001775 error = xfs_da3_path_shift(state, &state->altpath, forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 0, &retval);
1777 } else {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001778 error = xfs_da3_path_shift(state, &state->path, forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 0, &retval);
1780 }
1781 if (error)
1782 return(error);
1783 if (retval) {
1784 *action = 0;
1785 } else {
1786 *action = 1;
1787 }
1788 return(0);
1789}
1790
1791/*
1792 * Remove a name from the leaf attribute list structure.
1793 *
1794 * Return 1 if leaf is less than 37% full, 0 if >= 37% full.
1795 * If two leaves are 37% full, when combined they will leave 25% free.
1796 */
1797int
Dave Chinner517c2222013-04-24 18:58:55 +10001798xfs_attr3_leaf_remove(
1799 struct xfs_buf *bp,
1800 struct xfs_da_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801{
Dave Chinner517c2222013-04-24 18:58:55 +10001802 struct xfs_attr_leafblock *leaf;
1803 struct xfs_attr3_icleaf_hdr ichdr;
1804 struct xfs_attr_leaf_entry *entry;
1805 struct xfs_mount *mp = args->trans->t_mountp;
1806 int before;
1807 int after;
1808 int smallest;
1809 int entsize;
1810 int tablesize;
1811 int tmp;
1812 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813
Dave Chinneree732592012-11-12 22:53:53 +11001814 trace_xfs_attr_leaf_remove(args);
1815
Dave Chinner1d9025e2012-06-22 18:50:14 +10001816 leaf = bp->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10001817 xfs_attr3_leaf_hdr_from_disk(&ichdr, leaf);
1818
1819 ASSERT(ichdr.count > 0 && ichdr.count < XFS_LBSIZE(mp) / 8);
1820 ASSERT(args->index >= 0 && args->index < ichdr.count);
1821 ASSERT(ichdr.firstused >= ichdr.count * sizeof(*entry) +
1822 xfs_attr3_leaf_hdr_size(leaf));
1823
1824 entry = &xfs_attr3_leaf_entryp(leaf)[args->index];
1825
1826 ASSERT(be16_to_cpu(entry->nameidx) >= ichdr.firstused);
Nathan Scott6b19f2d2006-03-17 17:29:02 +11001827 ASSERT(be16_to_cpu(entry->nameidx) < XFS_LBSIZE(mp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
1829 /*
1830 * Scan through free region table:
1831 * check for adjacency of free'd entry with an existing one,
1832 * find smallest free region in case we need to replace it,
1833 * adjust any map that borders the entry table,
1834 */
Dave Chinner517c2222013-04-24 18:58:55 +10001835 tablesize = ichdr.count * sizeof(xfs_attr_leaf_entry_t)
1836 + xfs_attr3_leaf_hdr_size(leaf);
1837 tmp = ichdr.freemap[0].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 before = after = -1;
1839 smallest = XFS_ATTR_LEAF_MAPSIZE - 1;
1840 entsize = xfs_attr_leaf_entsize(leaf, args->index);
Dave Chinner517c2222013-04-24 18:58:55 +10001841 for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
1842 ASSERT(ichdr.freemap[i].base < XFS_LBSIZE(mp));
1843 ASSERT(ichdr.freemap[i].size < XFS_LBSIZE(mp));
1844 if (ichdr.freemap[i].base == tablesize) {
1845 ichdr.freemap[i].base -= sizeof(xfs_attr_leaf_entry_t);
1846 ichdr.freemap[i].size += sizeof(xfs_attr_leaf_entry_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 }
1848
Dave Chinner517c2222013-04-24 18:58:55 +10001849 if (ichdr.freemap[i].base + ichdr.freemap[i].size ==
1850 be16_to_cpu(entry->nameidx)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 before = i;
Dave Chinner517c2222013-04-24 18:58:55 +10001852 } else if (ichdr.freemap[i].base ==
1853 (be16_to_cpu(entry->nameidx) + entsize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 after = i;
Dave Chinner517c2222013-04-24 18:58:55 +10001855 } else if (ichdr.freemap[i].size < tmp) {
1856 tmp = ichdr.freemap[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 smallest = i;
1858 }
1859 }
1860
1861 /*
1862 * Coalesce adjacent freemap regions,
1863 * or replace the smallest region.
1864 */
1865 if ((before >= 0) || (after >= 0)) {
1866 if ((before >= 0) && (after >= 0)) {
Dave Chinner517c2222013-04-24 18:58:55 +10001867 ichdr.freemap[before].size += entsize;
1868 ichdr.freemap[before].size += ichdr.freemap[after].size;
1869 ichdr.freemap[after].base = 0;
1870 ichdr.freemap[after].size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 } else if (before >= 0) {
Dave Chinner517c2222013-04-24 18:58:55 +10001872 ichdr.freemap[before].size += entsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10001874 ichdr.freemap[after].base = be16_to_cpu(entry->nameidx);
1875 ichdr.freemap[after].size += entsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 }
1877 } else {
1878 /*
1879 * Replace smallest region (if it is smaller than free'd entry)
1880 */
Dave Chinner517c2222013-04-24 18:58:55 +10001881 if (ichdr.freemap[smallest].size < entsize) {
1882 ichdr.freemap[smallest].base = be16_to_cpu(entry->nameidx);
1883 ichdr.freemap[smallest].size = entsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 }
1885 }
1886
1887 /*
1888 * Did we remove the first entry?
1889 */
Dave Chinner517c2222013-04-24 18:58:55 +10001890 if (be16_to_cpu(entry->nameidx) == ichdr.firstused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 smallest = 1;
1892 else
1893 smallest = 0;
1894
1895 /*
1896 * Compress the remaining entries and zero out the removed stuff.
1897 */
Dave Chinner517c2222013-04-24 18:58:55 +10001898 memset(xfs_attr3_leaf_name(leaf, args->index), 0, entsize);
1899 ichdr.usedbytes -= entsize;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001900 xfs_trans_log_buf(args->trans, bp,
Dave Chinner517c2222013-04-24 18:58:55 +10001901 XFS_DA_LOGRANGE(leaf, xfs_attr3_leaf_name(leaf, args->index),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 entsize));
1903
Dave Chinner517c2222013-04-24 18:58:55 +10001904 tmp = (ichdr.count - args->index) * sizeof(xfs_attr_leaf_entry_t);
1905 memmove(entry, entry + 1, tmp);
1906 ichdr.count--;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001907 xfs_trans_log_buf(args->trans, bp,
Dave Chinner517c2222013-04-24 18:58:55 +10001908 XFS_DA_LOGRANGE(leaf, entry, tmp + sizeof(xfs_attr_leaf_entry_t)));
1909
1910 entry = &xfs_attr3_leaf_entryp(leaf)[ichdr.count];
1911 memset(entry, 0, sizeof(xfs_attr_leaf_entry_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912
1913 /*
1914 * If we removed the first entry, re-find the first used byte
1915 * in the name area. Note that if the entry was the "firstused",
1916 * then we don't have a "hole" in our block resulting from
1917 * removing the name.
1918 */
1919 if (smallest) {
1920 tmp = XFS_LBSIZE(mp);
Dave Chinner517c2222013-04-24 18:58:55 +10001921 entry = xfs_attr3_leaf_entryp(leaf);
1922 for (i = ichdr.count - 1; i >= 0; entry++, i--) {
1923 ASSERT(be16_to_cpu(entry->nameidx) >= ichdr.firstused);
Nathan Scott6b19f2d2006-03-17 17:29:02 +11001924 ASSERT(be16_to_cpu(entry->nameidx) < XFS_LBSIZE(mp));
1925
1926 if (be16_to_cpu(entry->nameidx) < tmp)
1927 tmp = be16_to_cpu(entry->nameidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 }
Dave Chinner517c2222013-04-24 18:58:55 +10001929 ichdr.firstused = tmp;
1930 if (!ichdr.firstused)
1931 ichdr.firstused = tmp - XFS_ATTR_LEAF_NAME_ALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10001933 ichdr.holes = 1; /* mark as needing compaction */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 }
Dave Chinner517c2222013-04-24 18:58:55 +10001935 xfs_attr3_leaf_hdr_to_disk(leaf, &ichdr);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001936 xfs_trans_log_buf(args->trans, bp,
Dave Chinner517c2222013-04-24 18:58:55 +10001937 XFS_DA_LOGRANGE(leaf, &leaf->hdr,
1938 xfs_attr3_leaf_hdr_size(leaf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
1940 /*
1941 * Check if leaf is less than 50% full, caller may want to
1942 * "join" the leaf with a sibling if so.
1943 */
Dave Chinner517c2222013-04-24 18:58:55 +10001944 tmp = ichdr.usedbytes + xfs_attr3_leaf_hdr_size(leaf) +
1945 ichdr.count * sizeof(xfs_attr_leaf_entry_t);
1946
1947 return tmp < mp->m_attr_magicpct; /* leaf is < 37% full */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948}
1949
1950/*
1951 * Move all the attribute list entries from drop_leaf into save_leaf.
1952 */
1953void
Dave Chinner517c2222013-04-24 18:58:55 +10001954xfs_attr3_leaf_unbalance(
1955 struct xfs_da_state *state,
1956 struct xfs_da_state_blk *drop_blk,
1957 struct xfs_da_state_blk *save_blk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958{
Dave Chinner517c2222013-04-24 18:58:55 +10001959 struct xfs_attr_leafblock *drop_leaf = drop_blk->bp->b_addr;
1960 struct xfs_attr_leafblock *save_leaf = save_blk->bp->b_addr;
1961 struct xfs_attr3_icleaf_hdr drophdr;
1962 struct xfs_attr3_icleaf_hdr savehdr;
1963 struct xfs_attr_leaf_entry *entry;
1964 struct xfs_mount *mp = state->mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
Dave Chinner5a5881c2012-03-22 05:15:13 +00001966 trace_xfs_attr_leaf_unbalance(state->args);
1967
Dave Chinner1d9025e2012-06-22 18:50:14 +10001968 drop_leaf = drop_blk->bp->b_addr;
1969 save_leaf = save_blk->bp->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10001970 xfs_attr3_leaf_hdr_from_disk(&drophdr, drop_leaf);
1971 xfs_attr3_leaf_hdr_from_disk(&savehdr, save_leaf);
1972 entry = xfs_attr3_leaf_entryp(drop_leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
1974 /*
1975 * Save last hashval from dying block for later Btree fixup.
1976 */
Dave Chinner517c2222013-04-24 18:58:55 +10001977 drop_blk->hashval = be32_to_cpu(entry[drophdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978
1979 /*
1980 * Check if we need a temp buffer, or can we do it in place.
1981 * Note that we don't check "leaf" for holes because we will
1982 * always be dropping it, toosmall() decided that for us already.
1983 */
Dave Chinner517c2222013-04-24 18:58:55 +10001984 if (savehdr.holes == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 /*
1986 * dest leaf has no holes, so we add there. May need
1987 * to make some room in the entry array.
1988 */
Dave Chinner517c2222013-04-24 18:58:55 +10001989 if (xfs_attr3_leaf_order(save_blk->bp, &savehdr,
1990 drop_blk->bp, &drophdr)) {
1991 xfs_attr3_leaf_moveents(drop_leaf, &drophdr, 0,
1992 save_leaf, &savehdr, 0,
1993 drophdr.count, mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10001995 xfs_attr3_leaf_moveents(drop_leaf, &drophdr, 0,
1996 save_leaf, &savehdr,
1997 savehdr.count, drophdr.count, mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 }
1999 } else {
2000 /*
2001 * Destination has holes, so we make a temporary copy
2002 * of the leaf and add them both to that.
2003 */
Dave Chinner517c2222013-04-24 18:58:55 +10002004 struct xfs_attr_leafblock *tmp_leaf;
2005 struct xfs_attr3_icleaf_hdr tmphdr;
2006
Dave Chinner8517de22013-05-21 18:02:05 +10002007 tmp_leaf = kmem_zalloc(state->blocksize, KM_SLEEP);
Dave Chinner517c2222013-04-24 18:58:55 +10002008
Dave Chinner8517de22013-05-21 18:02:05 +10002009 /*
2010 * Copy the header into the temp leaf so that all the stuff
2011 * not in the incore header is present and gets copied back in
2012 * once we've moved all the entries.
2013 */
2014 memcpy(tmp_leaf, save_leaf, xfs_attr3_leaf_hdr_size(save_leaf));
2015
2016 memset(&tmphdr, 0, sizeof(tmphdr));
Dave Chinner517c2222013-04-24 18:58:55 +10002017 tmphdr.magic = savehdr.magic;
2018 tmphdr.forw = savehdr.forw;
2019 tmphdr.back = savehdr.back;
2020 tmphdr.firstused = state->blocksize;
Dave Chinner8517de22013-05-21 18:02:05 +10002021
2022 /* write the header to the temp buffer to initialise it */
2023 xfs_attr3_leaf_hdr_to_disk(tmp_leaf, &tmphdr);
2024
Dave Chinner517c2222013-04-24 18:58:55 +10002025 if (xfs_attr3_leaf_order(save_blk->bp, &savehdr,
2026 drop_blk->bp, &drophdr)) {
2027 xfs_attr3_leaf_moveents(drop_leaf, &drophdr, 0,
2028 tmp_leaf, &tmphdr, 0,
2029 drophdr.count, mp);
2030 xfs_attr3_leaf_moveents(save_leaf, &savehdr, 0,
2031 tmp_leaf, &tmphdr, tmphdr.count,
2032 savehdr.count, mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10002034 xfs_attr3_leaf_moveents(save_leaf, &savehdr, 0,
2035 tmp_leaf, &tmphdr, 0,
2036 savehdr.count, mp);
2037 xfs_attr3_leaf_moveents(drop_leaf, &drophdr, 0,
2038 tmp_leaf, &tmphdr, tmphdr.count,
2039 drophdr.count, mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 }
Dave Chinner517c2222013-04-24 18:58:55 +10002041 memcpy(save_leaf, tmp_leaf, state->blocksize);
2042 savehdr = tmphdr; /* struct copy */
2043 kmem_free(tmp_leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 }
2045
Dave Chinner517c2222013-04-24 18:58:55 +10002046 xfs_attr3_leaf_hdr_to_disk(save_leaf, &savehdr);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002047 xfs_trans_log_buf(state->args->trans, save_blk->bp, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 state->blocksize - 1);
2049
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;
Dave Chinner517c2222013-04-24 18:58:55 +10002092 xfs_attr3_leaf_hdr_from_disk(&ichdr, leaf);
2093 entries = xfs_attr3_leaf_entryp(leaf);
2094 ASSERT(ichdr.count < XFS_LBSIZE(args->dp->i_mount) / 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 Chinner517c2222013-04-24 18:58:55 +10002128 return XFS_ERROR(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 Chinner517c2222013-04-24 18:58:55 +10002157 return XFS_ERROR(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 Chinnere461fcb2013-05-20 09:51:16 +10002168 args->valuelen = 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,
2172 args->valuelen);
Dave Chinner517c2222013-04-24 18:58:55 +10002173 return XFS_ERROR(EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 }
2175 }
2176 args->index = probe;
Dave Chinner517c2222013-04-24 18:58:55 +10002177 return XFS_ERROR(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;
Dave Chinner517c2222013-04-24 18:58:55 +10002197 xfs_attr3_leaf_hdr_from_disk(&ichdr, leaf);
2198 ASSERT(ichdr.count < XFS_LBSIZE(args->dp->i_mount) / 8);
2199 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 Chinner517c2222013-04-24 18:58:55 +10002213 return XFS_ERROR(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);
Nathan Scottc0f054e2006-03-17 17:29:18 +11002221 valuelen = be32_to_cpu(name_rmt->valuelen);
2222 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,
2224 valuelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 if (args->flags & ATTR_KERNOVAL) {
2226 args->valuelen = valuelen;
Dave Chinner517c2222013-04-24 18:58:55 +10002227 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 }
2229 if (args->valuelen < valuelen) {
2230 args->valuelen = valuelen;
Dave Chinner517c2222013-04-24 18:58:55 +10002231 return XFS_ERROR(ERANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 }
2233 args->valuelen = valuelen;
2234 }
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(
2249 struct xfs_attr_leafblock *leaf_s,
2250 struct xfs_attr3_icleaf_hdr *ichdr_s,
2251 int start_s,
2252 struct xfs_attr_leafblock *leaf_d,
2253 struct xfs_attr3_icleaf_hdr *ichdr_d,
2254 int start_d,
2255 int count,
2256 struct xfs_mount *mp)
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);
2276 ASSERT(ichdr_s->count > 0 && ichdr_s->count < XFS_LBSIZE(mp) / 8);
2277 ASSERT(ichdr_s->firstused >= (ichdr_s->count * sizeof(*entry_s))
2278 + xfs_attr3_leaf_hdr_size(leaf_s));
2279 ASSERT(ichdr_d->count < XFS_LBSIZE(mp) / 8);
2280 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
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 <= XFS_LBSIZE(mp));
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
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 <= XFS_LBSIZE(mp));
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) <=
2356 ((char *)leaf_s + XFS_LBSIZE(mp)));
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) <=
2371 ((char *)leaf_s + XFS_LBSIZE(mp)));
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;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398
Dave Chinner517c2222013-04-24 18:58:55 +10002399 xfs_attr3_leaf_hdr_from_disk(&ichdr, bp->b_addr);
2400 entries = xfs_attr3_leaf_entryp(bp->b_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 if (count)
Dave Chinner517c2222013-04-24 18:58:55 +10002402 *count = ichdr.count;
2403 if (!ichdr.count)
2404 return 0;
2405 return be32_to_cpu(entries[ichdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406}
2407
2408/*
2409 * Calculate the number of bytes used to store the indicated attribute
2410 * (whether local or remote only calculate bytes in this block).
2411 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10002412STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413xfs_attr_leaf_entsize(xfs_attr_leafblock_t *leaf, int index)
2414{
Dave Chinner517c2222013-04-24 18:58:55 +10002415 struct xfs_attr_leaf_entry *entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 xfs_attr_leaf_name_local_t *name_loc;
2417 xfs_attr_leaf_name_remote_t *name_rmt;
2418 int size;
2419
Dave Chinner517c2222013-04-24 18:58:55 +10002420 entries = xfs_attr3_leaf_entryp(leaf);
2421 if (entries[index].flags & XFS_ATTR_LOCAL) {
2422 name_loc = xfs_attr3_leaf_name_local(leaf, index);
Eric Sandeenc9fb86a2009-01-01 16:40:11 -06002423 size = xfs_attr_leaf_entsize_local(name_loc->namelen,
Nathan Scott053b5752006-03-17 17:29:09 +11002424 be16_to_cpu(name_loc->valuelen));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10002426 name_rmt = xfs_attr3_leaf_name_remote(leaf, index);
Eric Sandeenc9fb86a2009-01-01 16:40:11 -06002427 size = xfs_attr_leaf_entsize_remote(name_rmt->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 }
Dave Chinner517c2222013-04-24 18:58:55 +10002429 return size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430}
2431
2432/*
2433 * Calculate the number of bytes that would be required to store the new
2434 * attribute (whether local or remote only calculate bytes in this block).
2435 * This routine decides as a side effect whether the attribute will be
2436 * a "local" or a "remote" attribute.
2437 */
2438int
Nathan Scottaa82daa2005-11-02 10:33:33 +11002439xfs_attr_leaf_newentsize(int namelen, int valuelen, int blocksize, int *local)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440{
2441 int size;
2442
Eric Sandeenc9fb86a2009-01-01 16:40:11 -06002443 size = xfs_attr_leaf_entsize_local(namelen, valuelen);
2444 if (size < xfs_attr_leaf_entsize_local_max(blocksize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 if (local) {
2446 *local = 1;
2447 }
2448 } else {
Eric Sandeenc9fb86a2009-01-01 16:40:11 -06002449 size = xfs_attr_leaf_entsize_remote(namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 if (local) {
2451 *local = 0;
2452 }
2453 }
Dave Chinner517c2222013-04-24 18:58:55 +10002454 return size;
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)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 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
Dave Chinner517c2222013-04-24 18:58:55 +10002494 xfs_attr3_leaf_hdr_from_disk(&ichdr, leaf);
2495 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);
2520 name_rmt->valuelen = cpu_to_be32(args->valuelen);
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)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 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
2558 xfs_attr3_leaf_hdr_from_disk(&ichdr, leaf);
2559 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
Dave Chinner517c2222013-04-24 18:58:55 +10002637 xfs_attr3_leaf_hdr_from_disk(&ichdr1, leaf1);
2638 ASSERT(args->index < ichdr1.count);
2639 ASSERT(args->index >= 0);
2640
2641 xfs_attr3_leaf_hdr_from_disk(&ichdr2, leaf2);
2642 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);
2678 name_rmt->valuelen = cpu_to_be32(args->valuelen);
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}