blob: 79ece72976ae9adf50d025c02d0e1c66e4de80ee [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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "xfs_types.h"
Nathan Scotta844f452005-11-02 14:38:42 +110022#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_log.h"
24#include "xfs_trans.h"
25#include "xfs_sb.h"
26#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_mount.h"
Nathan Scotta844f452005-11-02 14:38:42 +110028#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110030#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_ialloc_btree.h"
32#include "xfs_alloc.h"
33#include "xfs_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110034#include "xfs_attr_sf.h"
Dave Chinner95920cd2013-04-03 16:11:27 +110035#include "xfs_attr_remote.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_dinode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110038#include "xfs_inode_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include "xfs_bmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include "xfs_attr.h"
41#include "xfs_attr_leaf.h"
42#include "xfs_error.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000043#include "xfs_trace.h"
Dave Chinner517c2222013-04-24 18:58:55 +100044#include "xfs_buf_item.h"
45#include "xfs_cksum.h"
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48/*
49 * xfs_attr_leaf.c
50 *
51 * Routines to implement leaf blocks of attributes as Btrees of hashed names.
52 */
53
54/*========================================================================
55 * Function prototypes for the kernel.
56 *========================================================================*/
57
58/*
59 * Routines used for growing the Btree.
60 */
Dave Chinner517c2222013-04-24 18:58:55 +100061STATIC int xfs_attr3_leaf_create(struct xfs_da_args *args,
62 xfs_dablk_t which_block, struct xfs_buf **bpp);
63STATIC int xfs_attr3_leaf_add_work(struct xfs_buf *leaf_buffer,
64 struct xfs_attr3_icleaf_hdr *ichdr,
65 struct xfs_da_args *args, int freemap_index);
66STATIC void xfs_attr3_leaf_compact(struct xfs_da_args *args,
67 struct xfs_attr3_icleaf_hdr *ichdr,
68 struct xfs_buf *leaf_buffer);
69STATIC void xfs_attr3_leaf_rebalance(xfs_da_state_t *state,
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 xfs_da_state_blk_t *blk1,
71 xfs_da_state_blk_t *blk2);
Dave Chinner517c2222013-04-24 18:58:55 +100072STATIC int xfs_attr3_leaf_figure_balance(xfs_da_state_t *state,
73 xfs_da_state_blk_t *leaf_blk_1,
74 struct xfs_attr3_icleaf_hdr *ichdr1,
75 xfs_da_state_blk_t *leaf_blk_2,
76 struct xfs_attr3_icleaf_hdr *ichdr2,
77 int *number_entries_in_blk1,
78 int *number_usedbytes_in_blk1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80/*
Christoph Hellwigba0f32d2005-06-21 15:36:52 +100081 * Routines used for shrinking the Btree.
82 */
Dave Chinner517c2222013-04-24 18:58:55 +100083STATIC int xfs_attr3_node_inactive(xfs_trans_t **trans, xfs_inode_t *dp,
Dave Chinner1d9025e2012-06-22 18:50:14 +100084 struct xfs_buf *bp, int level);
Dave Chinner517c2222013-04-24 18:58:55 +100085STATIC int xfs_attr3_leaf_inactive(xfs_trans_t **trans, xfs_inode_t *dp,
Dave Chinner1d9025e2012-06-22 18:50:14 +100086 struct xfs_buf *bp);
Dave Chinner517c2222013-04-24 18:58:55 +100087STATIC int xfs_attr3_leaf_freextent(xfs_trans_t **trans, xfs_inode_t *dp,
Christoph Hellwigba0f32d2005-06-21 15:36:52 +100088 xfs_dablk_t blkno, int blkcnt);
89
90/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 * Utility routines.
92 */
Dave Chinner517c2222013-04-24 18:58:55 +100093STATIC void xfs_attr3_leaf_moveents(struct xfs_attr_leafblock *src_leaf,
94 struct xfs_attr3_icleaf_hdr *src_ichdr, int src_start,
95 struct xfs_attr_leafblock *dst_leaf,
96 struct xfs_attr3_icleaf_hdr *dst_ichdr, int dst_start,
97 int move_count, struct xfs_mount *mp);
Christoph Hellwigba0f32d2005-06-21 15:36:52 +100098STATIC int xfs_attr_leaf_entsize(xfs_attr_leafblock_t *leaf, int index);
Tim Shimmin726801b2006-09-28 11:01:37 +100099
Dave Chinner517c2222013-04-24 18:58:55 +1000100void
101xfs_attr3_leaf_hdr_from_disk(
102 struct xfs_attr3_icleaf_hdr *to,
103 struct xfs_attr_leafblock *from)
104{
105 int i;
106
107 ASSERT(from->hdr.info.magic == cpu_to_be16(XFS_ATTR_LEAF_MAGIC) ||
108 from->hdr.info.magic == cpu_to_be16(XFS_ATTR3_LEAF_MAGIC));
109
110 if (from->hdr.info.magic == cpu_to_be16(XFS_ATTR3_LEAF_MAGIC)) {
111 struct xfs_attr3_leaf_hdr *hdr3 = (struct xfs_attr3_leaf_hdr *)from;
112
113 to->forw = be32_to_cpu(hdr3->info.hdr.forw);
114 to->back = be32_to_cpu(hdr3->info.hdr.back);
115 to->magic = be16_to_cpu(hdr3->info.hdr.magic);
116 to->count = be16_to_cpu(hdr3->count);
117 to->usedbytes = be16_to_cpu(hdr3->usedbytes);
118 to->firstused = be16_to_cpu(hdr3->firstused);
119 to->holes = hdr3->holes;
120
121 for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
122 to->freemap[i].base = be16_to_cpu(hdr3->freemap[i].base);
123 to->freemap[i].size = be16_to_cpu(hdr3->freemap[i].size);
124 }
125 return;
126 }
127 to->forw = be32_to_cpu(from->hdr.info.forw);
128 to->back = be32_to_cpu(from->hdr.info.back);
129 to->magic = be16_to_cpu(from->hdr.info.magic);
130 to->count = be16_to_cpu(from->hdr.count);
131 to->usedbytes = be16_to_cpu(from->hdr.usedbytes);
132 to->firstused = be16_to_cpu(from->hdr.firstused);
133 to->holes = from->hdr.holes;
134
135 for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
136 to->freemap[i].base = be16_to_cpu(from->hdr.freemap[i].base);
137 to->freemap[i].size = be16_to_cpu(from->hdr.freemap[i].size);
138 }
139}
140
141void
142xfs_attr3_leaf_hdr_to_disk(
143 struct xfs_attr_leafblock *to,
144 struct xfs_attr3_icleaf_hdr *from)
145{
146 int i;
147
148 ASSERT(from->magic == XFS_ATTR_LEAF_MAGIC ||
149 from->magic == XFS_ATTR3_LEAF_MAGIC);
150
151 if (from->magic == XFS_ATTR3_LEAF_MAGIC) {
152 struct xfs_attr3_leaf_hdr *hdr3 = (struct xfs_attr3_leaf_hdr *)to;
153
154 hdr3->info.hdr.forw = cpu_to_be32(from->forw);
155 hdr3->info.hdr.back = cpu_to_be32(from->back);
156 hdr3->info.hdr.magic = cpu_to_be16(from->magic);
157 hdr3->count = cpu_to_be16(from->count);
158 hdr3->usedbytes = cpu_to_be16(from->usedbytes);
159 hdr3->firstused = cpu_to_be16(from->firstused);
160 hdr3->holes = from->holes;
161 hdr3->pad1 = 0;
162
163 for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
164 hdr3->freemap[i].base = cpu_to_be16(from->freemap[i].base);
165 hdr3->freemap[i].size = cpu_to_be16(from->freemap[i].size);
166 }
167 return;
168 }
169 to->hdr.info.forw = cpu_to_be32(from->forw);
170 to->hdr.info.back = cpu_to_be32(from->back);
171 to->hdr.info.magic = cpu_to_be16(from->magic);
172 to->hdr.count = cpu_to_be16(from->count);
173 to->hdr.usedbytes = cpu_to_be16(from->usedbytes);
174 to->hdr.firstused = cpu_to_be16(from->firstused);
175 to->hdr.holes = from->holes;
176 to->hdr.pad1 = 0;
177
178 for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
179 to->hdr.freemap[i].base = cpu_to_be16(from->freemap[i].base);
180 to->hdr.freemap[i].size = cpu_to_be16(from->freemap[i].size);
181 }
182}
183
184static bool
185xfs_attr3_leaf_verify(
Dave Chinnerad14c332012-11-12 22:54:16 +1100186 struct xfs_buf *bp)
187{
188 struct xfs_mount *mp = bp->b_target->bt_mount;
Dave Chinner517c2222013-04-24 18:58:55 +1000189 struct xfs_attr_leafblock *leaf = bp->b_addr;
190 struct xfs_attr3_icleaf_hdr ichdr;
Dave Chinnerad14c332012-11-12 22:54:16 +1100191
Dave Chinner517c2222013-04-24 18:58:55 +1000192 xfs_attr3_leaf_hdr_from_disk(&ichdr, leaf);
193
194 if (xfs_sb_version_hascrc(&mp->m_sb)) {
195 struct xfs_da3_node_hdr *hdr3 = bp->b_addr;
196
197 if (ichdr.magic != XFS_ATTR3_LEAF_MAGIC)
198 return false;
199
200 if (!uuid_equal(&hdr3->info.uuid, &mp->m_sb.sb_uuid))
201 return false;
202 if (be64_to_cpu(hdr3->info.blkno) != bp->b_bn)
203 return false;
204 } else {
205 if (ichdr.magic != XFS_ATTR_LEAF_MAGIC)
206 return false;
207 }
208 if (ichdr.count == 0)
209 return false;
210
211 /* XXX: need to range check rest of attr header values */
212 /* XXX: hash order check? */
213
214 return true;
215}
216
217static void
218xfs_attr3_leaf_write_verify(
219 struct xfs_buf *bp)
220{
221 struct xfs_mount *mp = bp->b_target->bt_mount;
222 struct xfs_buf_log_item *bip = bp->b_fspriv;
223 struct xfs_attr3_leaf_hdr *hdr3 = bp->b_addr;
224
225 if (!xfs_attr3_leaf_verify(bp)) {
226 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
227 xfs_buf_ioerror(bp, EFSCORRUPTED);
228 return;
229 }
230
231 if (!xfs_sb_version_hascrc(&mp->m_sb))
232 return;
233
234 if (bip)
235 hdr3->info.lsn = cpu_to_be64(bip->bli_item.li_lsn);
236
237 xfs_update_cksum(bp->b_addr, BBTOB(bp->b_length), XFS_ATTR3_LEAF_CRC_OFF);
238}
239
240/*
241 * leaf/node format detection on trees is sketchy, so a node read can be done on
242 * leaf level blocks when detection identifies the tree as a node format tree
243 * incorrectly. In this case, we need to swap the verifier to match the correct
244 * format of the block being read.
245 */
246static void
247xfs_attr3_leaf_read_verify(
248 struct xfs_buf *bp)
249{
250 struct xfs_mount *mp = bp->b_target->bt_mount;
251
252 if ((xfs_sb_version_hascrc(&mp->m_sb) &&
253 !xfs_verify_cksum(bp->b_addr, BBTOB(bp->b_length),
254 XFS_ATTR3_LEAF_CRC_OFF)) ||
255 !xfs_attr3_leaf_verify(bp)) {
256 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
Dave Chinnerad14c332012-11-12 22:54:16 +1100257 xfs_buf_ioerror(bp, EFSCORRUPTED);
258 }
Dave Chinner612cfbf2012-11-14 17:52:32 +1100259}
Dave Chinnerad14c332012-11-12 22:54:16 +1100260
Dave Chinner517c2222013-04-24 18:58:55 +1000261const struct xfs_buf_ops xfs_attr3_leaf_buf_ops = {
262 .verify_read = xfs_attr3_leaf_read_verify,
263 .verify_write = xfs_attr3_leaf_write_verify,
Dave Chinner1813dd62012-11-14 17:54:40 +1100264};
Dave Chinner612cfbf2012-11-14 17:52:32 +1100265
Dave Chinnerad14c332012-11-12 22:54:16 +1100266int
Dave Chinner517c2222013-04-24 18:58:55 +1000267xfs_attr3_leaf_read(
Dave Chinnerad14c332012-11-12 22:54:16 +1100268 struct xfs_trans *tp,
269 struct xfs_inode *dp,
270 xfs_dablk_t bno,
271 xfs_daddr_t mappedbno,
272 struct xfs_buf **bpp)
273{
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100274 int err;
275
276 err = xfs_da_read_buf(tp, dp, bno, mappedbno, bpp,
Dave Chinner517c2222013-04-24 18:58:55 +1000277 XFS_ATTR_FORK, &xfs_attr3_leaf_buf_ops);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100278 if (!err && tp)
Dave Chinner61fe1352013-04-03 16:11:30 +1100279 xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_ATTR_LEAF_BUF);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100280 return err;
Dave Chinnerad14c332012-11-12 22:54:16 +1100281}
282
Tim Shimmin726801b2006-09-28 11:01:37 +1000283/*========================================================================
284 * Namespace helper routines
285 *========================================================================*/
286
Tim Shimmin726801b2006-09-28 11:01:37 +1000287/*
288 * If namespace bits don't match return 0.
289 * If all match then return 1.
290 */
Christoph Hellwigb8f82a42009-11-14 16:17:22 +0000291STATIC int
Tim Shimmin726801b2006-09-28 11:01:37 +1000292xfs_attr_namesp_match(int arg_flags, int ondisk_flags)
293{
294 return XFS_ATTR_NSP_ONDISK(ondisk_flags) == XFS_ATTR_NSP_ARGS_TO_ONDISK(arg_flags);
295}
296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298/*========================================================================
Nathan Scottd8cc8902005-11-02 10:34:53 +1100299 * External routines when attribute fork size < XFS_LITINO(mp).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 *========================================================================*/
301
302/*
Nathan Scottd8cc8902005-11-02 10:34:53 +1100303 * Query whether the requested number of additional bytes of extended
304 * attribute space will be able to fit inline.
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000305 *
Nathan Scottd8cc8902005-11-02 10:34:53 +1100306 * Returns zero if not, else the di_forkoff fork offset to be used in the
307 * literal area for attribute data once the new bytes have been added.
308 *
309 * di_forkoff must be 8 byte aligned, hence is stored as a >>3 value;
310 * special case for dev/uuid inodes, they have fixed size data forks.
311 */
312int
313xfs_attr_shortform_bytesfit(xfs_inode_t *dp, int bytes)
314{
315 int offset;
316 int minforkoff; /* lower limit on valid forkoff locations */
317 int maxforkoff; /* upper limit on valid forkoff locations */
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000318 int dsize;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100319 xfs_mount_t *mp = dp->i_mount;
320
Christoph Hellwig56cea2d2013-03-12 23:30:36 +1100321 /* rounded down */
322 offset = (XFS_LITINO(mp, dp->i_d.di_version) - bytes) >> 3;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100323
324 switch (dp->i_d.di_format) {
325 case XFS_DINODE_FMT_DEV:
326 minforkoff = roundup(sizeof(xfs_dev_t), 8) >> 3;
327 return (offset >= minforkoff) ? minforkoff : 0;
328 case XFS_DINODE_FMT_UUID:
329 minforkoff = roundup(sizeof(uuid_t), 8) >> 3;
330 return (offset >= minforkoff) ? minforkoff : 0;
331 }
332
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000333 /*
334 * If the requested numbers of bytes is smaller or equal to the
335 * current attribute fork size we can always proceed.
336 *
337 * Note that if_bytes in the data fork might actually be larger than
338 * the current data fork size is due to delalloc extents. In that
339 * case either the extent count will go down when they are converted
340 * to real extents, or the delalloc conversion will take care of the
341 * literal area rebalancing.
342 */
343 if (bytes <= XFS_IFORK_ASIZE(dp))
344 return dp->i_d.di_forkoff;
345
346 /*
347 * For attr2 we can try to move the forkoff if there is space in the
348 * literal area, but for the old format we are done if there is no
349 * space in the fixed attribute fork.
350 */
351 if (!(mp->m_flags & XFS_MOUNT_ATTR2))
Nathan Scottda087ba2005-11-02 15:00:20 +1100352 return 0;
Nathan Scottda087ba2005-11-02 15:00:20 +1100353
Barry Naujoke5889e92007-02-10 18:35:58 +1100354 dsize = dp->i_df.if_bytes;
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000355
Barry Naujoke5889e92007-02-10 18:35:58 +1100356 switch (dp->i_d.di_format) {
357 case XFS_DINODE_FMT_EXTENTS:
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000358 /*
Barry Naujoke5889e92007-02-10 18:35:58 +1100359 * If there is no attr fork and the data fork is extents,
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000360 * determine if creating the default attr fork will result
361 * in the extents form migrating to btree. If so, the
362 * minimum offset only needs to be the space required for
Barry Naujoke5889e92007-02-10 18:35:58 +1100363 * the btree root.
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000364 */
Christoph Hellwig1a5902c2009-03-29 19:26:46 +0200365 if (!dp->i_d.di_forkoff && dp->i_df.if_bytes >
366 xfs_default_attroffset(dp))
Barry Naujoke5889e92007-02-10 18:35:58 +1100367 dsize = XFS_BMDR_SPACE_CALC(MINDBTPTRS);
368 break;
Barry Naujoke5889e92007-02-10 18:35:58 +1100369 case XFS_DINODE_FMT_BTREE:
370 /*
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000371 * If we have a data btree then keep forkoff if we have one,
372 * otherwise we are adding a new attr, so then we set
373 * minforkoff to where the btree root can finish so we have
Barry Naujoke5889e92007-02-10 18:35:58 +1100374 * plenty of room for attrs
375 */
376 if (dp->i_d.di_forkoff) {
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000377 if (offset < dp->i_d.di_forkoff)
Barry Naujoke5889e92007-02-10 18:35:58 +1100378 return 0;
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000379 return dp->i_d.di_forkoff;
380 }
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500381 dsize = XFS_BMAP_BROOT_SPACE(mp, dp->i_df.if_broot);
Barry Naujoke5889e92007-02-10 18:35:58 +1100382 break;
383 }
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000384
385 /*
386 * A data fork btree root must have space for at least
Barry Naujoke5889e92007-02-10 18:35:58 +1100387 * MINDBTPTRS key/ptr pairs if the data fork is small or empty.
388 */
389 minforkoff = MAX(dsize, XFS_BMDR_SPACE_CALC(MINDBTPTRS));
Nathan Scottd8cc8902005-11-02 10:34:53 +1100390 minforkoff = roundup(minforkoff, 8) >> 3;
391
392 /* attr fork btree root can have at least this many key/ptr pairs */
Christoph Hellwig56cea2d2013-03-12 23:30:36 +1100393 maxforkoff = XFS_LITINO(mp, dp->i_d.di_version) -
394 XFS_BMDR_SPACE_CALC(MINABTPTRS);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100395 maxforkoff = maxforkoff >> 3; /* rounded down */
396
Nathan Scottd8cc8902005-11-02 10:34:53 +1100397 if (offset >= maxforkoff)
398 return maxforkoff;
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000399 if (offset >= minforkoff)
400 return offset;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100401 return 0;
402}
403
404/*
405 * Switch on the ATTR2 superblock bit (implies also FEATURES2)
406 */
407STATIC void
408xfs_sbversion_add_attr2(xfs_mount_t *mp, xfs_trans_t *tp)
409{
Nathan Scott13059ff2006-01-11 15:32:01 +1100410 if ((mp->m_flags & XFS_MOUNT_ATTR2) &&
Eric Sandeen62118702008-03-06 13:44:28 +1100411 !(xfs_sb_version_hasattr2(&mp->m_sb))) {
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000412 spin_lock(&mp->m_sb_lock);
Eric Sandeen62118702008-03-06 13:44:28 +1100413 if (!xfs_sb_version_hasattr2(&mp->m_sb)) {
414 xfs_sb_version_addattr2(&mp->m_sb);
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000415 spin_unlock(&mp->m_sb_lock);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100416 xfs_mod_sb(tp, XFS_SB_VERSIONNUM | XFS_SB_FEATURES2);
417 } else
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000418 spin_unlock(&mp->m_sb_lock);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100419 }
420}
421
422/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 * Create the initial contents of a shortform attribute list.
424 */
Nathan Scottd8cc8902005-11-02 10:34:53 +1100425void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426xfs_attr_shortform_create(xfs_da_args_t *args)
427{
428 xfs_attr_sf_hdr_t *hdr;
429 xfs_inode_t *dp;
430 xfs_ifork_t *ifp;
431
Dave Chinner5a5881c2012-03-22 05:15:13 +0000432 trace_xfs_attr_sf_create(args);
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 dp = args->dp;
435 ASSERT(dp != NULL);
436 ifp = dp->i_afp;
437 ASSERT(ifp != NULL);
438 ASSERT(ifp->if_bytes == 0);
439 if (dp->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS) {
440 ifp->if_flags &= ~XFS_IFEXTENTS; /* just in case */
441 dp->i_d.di_aformat = XFS_DINODE_FMT_LOCAL;
442 ifp->if_flags |= XFS_IFINLINE;
443 } else {
444 ASSERT(ifp->if_flags & XFS_IFINLINE);
445 }
446 xfs_idata_realloc(dp, sizeof(*hdr), XFS_ATTR_FORK);
447 hdr = (xfs_attr_sf_hdr_t *)ifp->if_u1.if_data;
448 hdr->count = 0;
Nathan Scott3b244aa2006-03-17 17:29:25 +1100449 hdr->totsize = cpu_to_be16(sizeof(*hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE | XFS_ILOG_ADATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
452
453/*
454 * Add a name/value pair to the shortform attribute list.
455 * Overflow from the inode has already been checked for.
456 */
Nathan Scottd8cc8902005-11-02 10:34:53 +1100457void
458xfs_attr_shortform_add(xfs_da_args_t *args, int forkoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
460 xfs_attr_shortform_t *sf;
461 xfs_attr_sf_entry_t *sfe;
462 int i, offset, size;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100463 xfs_mount_t *mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 xfs_inode_t *dp;
465 xfs_ifork_t *ifp;
466
Dave Chinner5a5881c2012-03-22 05:15:13 +0000467 trace_xfs_attr_sf_add(args);
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 dp = args->dp;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100470 mp = dp->i_mount;
471 dp->i_d.di_forkoff = forkoff;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 ifp = dp->i_afp;
474 ASSERT(ifp->if_flags & XFS_IFINLINE);
475 sf = (xfs_attr_shortform_t *)ifp->if_u1.if_data;
476 sfe = &sf->list[0];
Nathan Scott3b244aa2006-03-17 17:29:25 +1100477 for (i = 0; i < sf->hdr.count; sfe = XFS_ATTR_SF_NEXTENTRY(sfe), i++) {
Nathan Scottd8cc8902005-11-02 10:34:53 +1100478#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 if (sfe->namelen != args->namelen)
480 continue;
481 if (memcmp(args->name, sfe->nameval, args->namelen) != 0)
482 continue;
Tim Shimmin726801b2006-09-28 11:01:37 +1000483 if (!xfs_attr_namesp_match(args->flags, sfe->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 continue;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100485 ASSERT(0);
486#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 }
488
489 offset = (char *)sfe - (char *)sf;
490 size = XFS_ATTR_SF_ENTSIZE_BYNAME(args->namelen, args->valuelen);
491 xfs_idata_realloc(dp, size, XFS_ATTR_FORK);
492 sf = (xfs_attr_shortform_t *)ifp->if_u1.if_data;
493 sfe = (xfs_attr_sf_entry_t *)((char *)sf + offset);
494
495 sfe->namelen = args->namelen;
Nathan Scott3b244aa2006-03-17 17:29:25 +1100496 sfe->valuelen = args->valuelen;
Tim Shimmin726801b2006-09-28 11:01:37 +1000497 sfe->flags = XFS_ATTR_NSP_ARGS_TO_ONDISK(args->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 memcpy(sfe->nameval, args->name, args->namelen);
499 memcpy(&sfe->nameval[args->namelen], args->value, args->valuelen);
Nathan Scott3b244aa2006-03-17 17:29:25 +1100500 sf->hdr.count++;
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800501 be16_add_cpu(&sf->hdr.totsize, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE | XFS_ILOG_ADATA);
503
Nathan Scottd8cc8902005-11-02 10:34:53 +1100504 xfs_sbversion_add_attr2(mp, args->trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505}
506
507/*
Christoph Hellwige1486de2009-02-04 09:36:00 +0100508 * After the last attribute is removed revert to original inode format,
509 * making all literal area available to the data fork once more.
510 */
511STATIC void
512xfs_attr_fork_reset(
513 struct xfs_inode *ip,
514 struct xfs_trans *tp)
515{
516 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
517 ip->i_d.di_forkoff = 0;
518 ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
519
520 ASSERT(ip->i_d.di_anextents == 0);
521 ASSERT(ip->i_afp == NULL);
522
Christoph Hellwige1486de2009-02-04 09:36:00 +0100523 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
524}
525
526/*
Nathan Scottd8cc8902005-11-02 10:34:53 +1100527 * Remove an attribute from the shortform attribute list structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 */
529int
530xfs_attr_shortform_remove(xfs_da_args_t *args)
531{
532 xfs_attr_shortform_t *sf;
533 xfs_attr_sf_entry_t *sfe;
534 int base, size=0, end, totsize, i;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100535 xfs_mount_t *mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 xfs_inode_t *dp;
537
Dave Chinner5a5881c2012-03-22 05:15:13 +0000538 trace_xfs_attr_sf_remove(args);
539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 dp = args->dp;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100541 mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 base = sizeof(xfs_attr_sf_hdr_t);
543 sf = (xfs_attr_shortform_t *)dp->i_afp->if_u1.if_data;
544 sfe = &sf->list[0];
Nathan Scott3b244aa2006-03-17 17:29:25 +1100545 end = sf->hdr.count;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100546 for (i = 0; i < end; sfe = XFS_ATTR_SF_NEXTENTRY(sfe),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 base += size, i++) {
548 size = XFS_ATTR_SF_ENTSIZE(sfe);
549 if (sfe->namelen != args->namelen)
550 continue;
551 if (memcmp(sfe->nameval, args->name, args->namelen) != 0)
552 continue;
Tim Shimmin726801b2006-09-28 11:01:37 +1000553 if (!xfs_attr_namesp_match(args->flags, sfe->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554 continue;
555 break;
556 }
Nathan Scottd8cc8902005-11-02 10:34:53 +1100557 if (i == end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 return(XFS_ERROR(ENOATTR));
559
Nathan Scottd8cc8902005-11-02 10:34:53 +1100560 /*
561 * Fix up the attribute fork data, covering the hole
562 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 end = base + size;
Nathan Scott3b244aa2006-03-17 17:29:25 +1100564 totsize = be16_to_cpu(sf->hdr.totsize);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100565 if (end != totsize)
566 memmove(&((char *)sf)[base], &((char *)sf)[end], totsize - end);
Nathan Scott3b244aa2006-03-17 17:29:25 +1100567 sf->hdr.count--;
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800568 be16_add_cpu(&sf->hdr.totsize, -size);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100569
570 /*
571 * Fix up the start offset of the attribute fork
572 */
573 totsize -= size;
Barry Naujok6a178102008-05-21 16:42:05 +1000574 if (totsize == sizeof(xfs_attr_sf_hdr_t) &&
Christoph Hellwige1486de2009-02-04 09:36:00 +0100575 (mp->m_flags & XFS_MOUNT_ATTR2) &&
576 (dp->i_d.di_format != XFS_DINODE_FMT_BTREE) &&
577 !(args->op_flags & XFS_DA_OP_ADDNAME)) {
578 xfs_attr_fork_reset(dp, args->trans);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100579 } else {
580 xfs_idata_realloc(dp, -size, XFS_ATTR_FORK);
581 dp->i_d.di_forkoff = xfs_attr_shortform_bytesfit(dp, totsize);
582 ASSERT(dp->i_d.di_forkoff);
Barry Naujok6a178102008-05-21 16:42:05 +1000583 ASSERT(totsize > sizeof(xfs_attr_sf_hdr_t) ||
584 (args->op_flags & XFS_DA_OP_ADDNAME) ||
585 !(mp->m_flags & XFS_MOUNT_ATTR2) ||
586 dp->i_d.di_format == XFS_DINODE_FMT_BTREE);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100587 xfs_trans_log_inode(args->trans, dp,
588 XFS_ILOG_CORE | XFS_ILOG_ADATA);
589 }
590
591 xfs_sbversion_add_attr2(mp, args->trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
593 return(0);
594}
595
596/*
597 * Look up a name in a shortform attribute list structure.
598 */
599/*ARGSUSED*/
600int
601xfs_attr_shortform_lookup(xfs_da_args_t *args)
602{
603 xfs_attr_shortform_t *sf;
604 xfs_attr_sf_entry_t *sfe;
605 int i;
606 xfs_ifork_t *ifp;
607
Dave Chinner5a5881c2012-03-22 05:15:13 +0000608 trace_xfs_attr_sf_lookup(args);
609
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 ifp = args->dp->i_afp;
611 ASSERT(ifp->if_flags & XFS_IFINLINE);
612 sf = (xfs_attr_shortform_t *)ifp->if_u1.if_data;
613 sfe = &sf->list[0];
Nathan Scott3b244aa2006-03-17 17:29:25 +1100614 for (i = 0; i < sf->hdr.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 sfe = XFS_ATTR_SF_NEXTENTRY(sfe), i++) {
616 if (sfe->namelen != args->namelen)
617 continue;
618 if (memcmp(args->name, sfe->nameval, args->namelen) != 0)
619 continue;
Tim Shimmin726801b2006-09-28 11:01:37 +1000620 if (!xfs_attr_namesp_match(args->flags, sfe->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 continue;
622 return(XFS_ERROR(EEXIST));
623 }
624 return(XFS_ERROR(ENOATTR));
625}
626
627/*
628 * Look up a name in a shortform attribute list structure.
629 */
630/*ARGSUSED*/
631int
632xfs_attr_shortform_getvalue(xfs_da_args_t *args)
633{
634 xfs_attr_shortform_t *sf;
635 xfs_attr_sf_entry_t *sfe;
636 int i;
637
638 ASSERT(args->dp->i_d.di_aformat == XFS_IFINLINE);
639 sf = (xfs_attr_shortform_t *)args->dp->i_afp->if_u1.if_data;
640 sfe = &sf->list[0];
Nathan Scott3b244aa2006-03-17 17:29:25 +1100641 for (i = 0; i < sf->hdr.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 sfe = XFS_ATTR_SF_NEXTENTRY(sfe), i++) {
643 if (sfe->namelen != args->namelen)
644 continue;
645 if (memcmp(args->name, sfe->nameval, args->namelen) != 0)
646 continue;
Tim Shimmin726801b2006-09-28 11:01:37 +1000647 if (!xfs_attr_namesp_match(args->flags, sfe->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 continue;
649 if (args->flags & ATTR_KERNOVAL) {
Nathan Scott3b244aa2006-03-17 17:29:25 +1100650 args->valuelen = sfe->valuelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 return(XFS_ERROR(EEXIST));
652 }
Nathan Scott3b244aa2006-03-17 17:29:25 +1100653 if (args->valuelen < sfe->valuelen) {
654 args->valuelen = sfe->valuelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 return(XFS_ERROR(ERANGE));
656 }
Nathan Scott3b244aa2006-03-17 17:29:25 +1100657 args->valuelen = sfe->valuelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 memcpy(args->value, &sfe->nameval[args->namelen],
659 args->valuelen);
660 return(XFS_ERROR(EEXIST));
661 }
662 return(XFS_ERROR(ENOATTR));
663}
664
665/*
666 * Convert from using the shortform to the leaf.
667 */
668int
669xfs_attr_shortform_to_leaf(xfs_da_args_t *args)
670{
671 xfs_inode_t *dp;
672 xfs_attr_shortform_t *sf;
673 xfs_attr_sf_entry_t *sfe;
674 xfs_da_args_t nargs;
675 char *tmpbuffer;
676 int error, i, size;
677 xfs_dablk_t blkno;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000678 struct xfs_buf *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 xfs_ifork_t *ifp;
680
Dave Chinner5a5881c2012-03-22 05:15:13 +0000681 trace_xfs_attr_sf_to_leaf(args);
682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 dp = args->dp;
684 ifp = dp->i_afp;
685 sf = (xfs_attr_shortform_t *)ifp->if_u1.if_data;
Nathan Scott3b244aa2006-03-17 17:29:25 +1100686 size = be16_to_cpu(sf->hdr.totsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 tmpbuffer = kmem_alloc(size, KM_SLEEP);
688 ASSERT(tmpbuffer != NULL);
689 memcpy(tmpbuffer, ifp->if_u1.if_data, size);
690 sf = (xfs_attr_shortform_t *)tmpbuffer;
691
692 xfs_idata_realloc(dp, -size, XFS_ATTR_FORK);
693 bp = NULL;
694 error = xfs_da_grow_inode(args, &blkno);
695 if (error) {
696 /*
697 * If we hit an IO error middle of the transaction inside
698 * grow_inode(), we may have inconsistent data. Bail out.
699 */
700 if (error == EIO)
701 goto out;
702 xfs_idata_realloc(dp, size, XFS_ATTR_FORK); /* try to put */
703 memcpy(ifp->if_u1.if_data, tmpbuffer, size); /* it back */
704 goto out;
705 }
706
707 ASSERT(blkno == 0);
Dave Chinner517c2222013-04-24 18:58:55 +1000708 error = xfs_attr3_leaf_create(args, blkno, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 if (error) {
710 error = xfs_da_shrink_inode(args, 0, bp);
711 bp = NULL;
712 if (error)
713 goto out;
714 xfs_idata_realloc(dp, size, XFS_ATTR_FORK); /* try to put */
715 memcpy(ifp->if_u1.if_data, tmpbuffer, size); /* it back */
716 goto out;
717 }
718
719 memset((char *)&nargs, 0, sizeof(nargs));
720 nargs.dp = dp;
721 nargs.firstblock = args->firstblock;
722 nargs.flist = args->flist;
723 nargs.total = args->total;
724 nargs.whichfork = XFS_ATTR_FORK;
725 nargs.trans = args->trans;
Barry Naujok6a178102008-05-21 16:42:05 +1000726 nargs.op_flags = XFS_DA_OP_OKNOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
728 sfe = &sf->list[0];
Nathan Scott3b244aa2006-03-17 17:29:25 +1100729 for (i = 0; i < sf->hdr.count; i++) {
Dave Chinnera9273ca2010-01-20 10:47:48 +1100730 nargs.name = sfe->nameval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 nargs.namelen = sfe->namelen;
Dave Chinnera9273ca2010-01-20 10:47:48 +1100732 nargs.value = &sfe->nameval[nargs.namelen];
Nathan Scott3b244aa2006-03-17 17:29:25 +1100733 nargs.valuelen = sfe->valuelen;
Dave Chinnera9273ca2010-01-20 10:47:48 +1100734 nargs.hashval = xfs_da_hashname(sfe->nameval,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 sfe->namelen);
Tim Shimmin726801b2006-09-28 11:01:37 +1000736 nargs.flags = XFS_ATTR_NSP_ONDISK_TO_ARGS(sfe->flags);
Dave Chinner517c2222013-04-24 18:58:55 +1000737 error = xfs_attr3_leaf_lookup_int(bp, &nargs); /* set a->index */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 ASSERT(error == ENOATTR);
Dave Chinner517c2222013-04-24 18:58:55 +1000739 error = xfs_attr3_leaf_add(bp, &nargs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 ASSERT(error != ENOSPC);
741 if (error)
742 goto out;
743 sfe = XFS_ATTR_SF_NEXTENTRY(sfe);
744 }
745 error = 0;
746
747out:
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000748 kmem_free(tmpbuffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 return(error);
750}
751
752STATIC int
753xfs_attr_shortform_compare(const void *a, const void *b)
754{
755 xfs_attr_sf_sort_t *sa, *sb;
756
757 sa = (xfs_attr_sf_sort_t *)a;
758 sb = (xfs_attr_sf_sort_t *)b;
Nathan Scott984a0812006-03-17 17:29:31 +1100759 if (sa->hash < sb->hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 return(-1);
Nathan Scott984a0812006-03-17 17:29:31 +1100761 } else if (sa->hash > sb->hash) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 return(1);
763 } else {
764 return(sa->entno - sb->entno);
765 }
766}
767
Tim Shimmin726801b2006-09-28 11:01:37 +1000768
769#define XFS_ISRESET_CURSOR(cursor) \
770 (!((cursor)->initted) && !((cursor)->hashval) && \
771 !((cursor)->blkno) && !((cursor)->offset))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772/*
773 * Copy out entries of shortform attribute lists for attr_list().
Nathan Scottc41564b2006-03-29 08:55:14 +1000774 * Shortform attribute lists are not stored in hashval sorted order.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 * If the output buffer is not large enough to hold them all, then we
776 * we have to calculate each entries' hashvalue and sort them before
777 * we can begin returning them to the user.
778 */
779/*ARGSUSED*/
780int
781xfs_attr_shortform_list(xfs_attr_list_context_t *context)
782{
783 attrlist_cursor_kern_t *cursor;
784 xfs_attr_sf_sort_t *sbuf, *sbp;
785 xfs_attr_shortform_t *sf;
786 xfs_attr_sf_entry_t *sfe;
787 xfs_inode_t *dp;
788 int sbsize, nsbuf, count, i;
Tim Shimmin726801b2006-09-28 11:01:37 +1000789 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
791 ASSERT(context != NULL);
792 dp = context->dp;
793 ASSERT(dp != NULL);
794 ASSERT(dp->i_afp != NULL);
795 sf = (xfs_attr_shortform_t *)dp->i_afp->if_u1.if_data;
796 ASSERT(sf != NULL);
797 if (!sf->hdr.count)
798 return(0);
799 cursor = context->cursor;
800 ASSERT(cursor != NULL);
801
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000802 trace_xfs_attr_list_sf(context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 /*
Tim Shimmin726801b2006-09-28 11:01:37 +1000805 * If the buffer is large enough and the cursor is at the start,
806 * do not bother with sorting since we will return everything in
807 * one buffer and another call using the cursor won't need to be
808 * made.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 * Note the generous fudge factor of 16 overhead bytes per entry.
Tim Shimmin726801b2006-09-28 11:01:37 +1000810 * If bufsize is zero then put_listent must be a search function
811 * and can just scan through what we have.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 */
Tim Shimmin726801b2006-09-28 11:01:37 +1000813 if (context->bufsize == 0 ||
814 (XFS_ISRESET_CURSOR(cursor) &&
815 (dp->i_afp->if_bytes + sf->hdr.count * 16) < context->bufsize)) {
Nathan Scott3b244aa2006-03-17 17:29:25 +1100816 for (i = 0, sfe = &sf->list[0]; i < sf->hdr.count; i++) {
Tim Shimmin726801b2006-09-28 11:01:37 +1000817 error = context->put_listent(context,
Christoph Hellwigad9b4632008-06-23 13:23:48 +1000818 sfe->flags,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100819 sfe->nameval,
Tim Shimmin726801b2006-09-28 11:01:37 +1000820 (int)sfe->namelen,
821 (int)sfe->valuelen,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100822 &sfe->nameval[sfe->namelen]);
Tim Shimmin726801b2006-09-28 11:01:37 +1000823
824 /*
825 * Either search callback finished early or
826 * didn't fit it all in the buffer after all.
827 */
828 if (context->seen_enough)
829 break;
830
831 if (error)
832 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 sfe = XFS_ATTR_SF_NEXTENTRY(sfe);
834 }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000835 trace_xfs_attr_list_sf_all(context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 return(0);
837 }
838
Tim Shimmin726801b2006-09-28 11:01:37 +1000839 /* do no more for a search callback */
840 if (context->bufsize == 0)
841 return 0;
842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 /*
844 * It didn't all fit, so we have to sort everything on hashval.
845 */
Nathan Scott3b244aa2006-03-17 17:29:25 +1100846 sbsize = sf->hdr.count * sizeof(*sbuf);
Dave Chinner622d8142010-12-23 11:57:37 +1100847 sbp = sbuf = kmem_alloc(sbsize, KM_SLEEP | KM_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
849 /*
850 * Scan the attribute list for the rest of the entries, storing
851 * the relevant info from only those that match into a buffer.
852 */
853 nsbuf = 0;
Nathan Scott3b244aa2006-03-17 17:29:25 +1100854 for (i = 0, sfe = &sf->list[0]; i < sf->hdr.count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 if (unlikely(
856 ((char *)sfe < (char *)sf) ||
857 ((char *)sfe >= ((char *)sf + dp->i_afp->if_bytes)))) {
858 XFS_CORRUPTION_ERROR("xfs_attr_shortform_list",
859 XFS_ERRLEVEL_LOW,
860 context->dp->i_mount, sfe);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000861 kmem_free(sbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 return XFS_ERROR(EFSCORRUPTED);
863 }
Christoph Hellwigad9b4632008-06-23 13:23:48 +1000864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 sbp->entno = i;
Dave Chinnera9273ca2010-01-20 10:47:48 +1100866 sbp->hash = xfs_da_hashname(sfe->nameval, sfe->namelen);
867 sbp->name = sfe->nameval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 sbp->namelen = sfe->namelen;
869 /* These are bytes, and both on-disk, don't endian-flip */
870 sbp->valuelen = sfe->valuelen;
871 sbp->flags = sfe->flags;
872 sfe = XFS_ATTR_SF_NEXTENTRY(sfe);
873 sbp++;
874 nsbuf++;
875 }
876
877 /*
878 * Sort the entries on hash then entno.
879 */
Nathan Scott380b5dc2005-11-02 11:43:18 +1100880 xfs_sort(sbuf, nsbuf, sizeof(*sbuf), xfs_attr_shortform_compare);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
882 /*
883 * Re-find our place IN THE SORTED LIST.
884 */
885 count = 0;
886 cursor->initted = 1;
887 cursor->blkno = 0;
888 for (sbp = sbuf, i = 0; i < nsbuf; i++, sbp++) {
Nathan Scott984a0812006-03-17 17:29:31 +1100889 if (sbp->hash == cursor->hashval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 if (cursor->offset == count) {
891 break;
892 }
893 count++;
Nathan Scott984a0812006-03-17 17:29:31 +1100894 } else if (sbp->hash > cursor->hashval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 break;
896 }
897 }
898 if (i == nsbuf) {
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000899 kmem_free(sbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 return(0);
901 }
902
903 /*
904 * Loop putting entries into the user buffer.
905 */
906 for ( ; i < nsbuf; i++, sbp++) {
Nathan Scott984a0812006-03-17 17:29:31 +1100907 if (cursor->hashval != sbp->hash) {
908 cursor->hashval = sbp->hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 cursor->offset = 0;
910 }
Tim Shimmin726801b2006-09-28 11:01:37 +1000911 error = context->put_listent(context,
Christoph Hellwigad9b4632008-06-23 13:23:48 +1000912 sbp->flags,
Tim Shimmin726801b2006-09-28 11:01:37 +1000913 sbp->name,
914 sbp->namelen,
915 sbp->valuelen,
916 &sbp->name[sbp->namelen]);
917 if (error)
918 return error;
919 if (context->seen_enough)
920 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 cursor->offset++;
922 }
923
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000924 kmem_free(sbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 return(0);
926}
927
928/*
929 * Check a leaf attribute block to see if all the entries would fit into
930 * a shortform attribute list.
931 */
932int
Dave Chinner1d9025e2012-06-22 18:50:14 +1000933xfs_attr_shortform_allfit(
Dave Chinnerb38958d2013-05-20 09:51:14 +1000934 struct xfs_buf *bp,
935 struct xfs_inode *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936{
Dave Chinnerb38958d2013-05-20 09:51:14 +1000937 struct xfs_attr_leafblock *leaf;
938 struct xfs_attr_leaf_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 xfs_attr_leaf_name_local_t *name_loc;
Dave Chinnerb38958d2013-05-20 09:51:14 +1000940 struct xfs_attr3_icleaf_hdr leafhdr;
941 int bytes;
942 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
Dave Chinner1d9025e2012-06-22 18:50:14 +1000944 leaf = bp->b_addr;
Dave Chinnerb38958d2013-05-20 09:51:14 +1000945 xfs_attr3_leaf_hdr_from_disk(&leafhdr, leaf);
946 entry = xfs_attr3_leaf_entryp(leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 bytes = sizeof(struct xfs_attr_sf_hdr);
Dave Chinnerb38958d2013-05-20 09:51:14 +1000949 for (i = 0; i < leafhdr.count; entry++, i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 if (entry->flags & XFS_ATTR_INCOMPLETE)
951 continue; /* don't copy partial entries */
952 if (!(entry->flags & XFS_ATTR_LOCAL))
953 return(0);
Dave Chinner517c2222013-04-24 18:58:55 +1000954 name_loc = xfs_attr3_leaf_name_local(leaf, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 if (name_loc->namelen >= XFS_ATTR_SF_ENTSIZE_MAX)
956 return(0);
Nathan Scott053b5752006-03-17 17:29:09 +1100957 if (be16_to_cpu(name_loc->valuelen) >= XFS_ATTR_SF_ENTSIZE_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 return(0);
Dave Chinnerb38958d2013-05-20 09:51:14 +1000959 bytes += sizeof(struct xfs_attr_sf_entry) - 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 + name_loc->namelen
Nathan Scott053b5752006-03-17 17:29:09 +1100961 + be16_to_cpu(name_loc->valuelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 }
Nathan Scott13059ff2006-01-11 15:32:01 +1100963 if ((dp->i_mount->m_flags & XFS_MOUNT_ATTR2) &&
Barry Naujoke5889e92007-02-10 18:35:58 +1100964 (dp->i_d.di_format != XFS_DINODE_FMT_BTREE) &&
Nathan Scotte0144ca2005-11-25 16:42:22 +1100965 (bytes == sizeof(struct xfs_attr_sf_hdr)))
Dave Chinnerb38958d2013-05-20 09:51:14 +1000966 return -1;
967 return xfs_attr_shortform_bytesfit(dp, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968}
969
970/*
971 * Convert a leaf attribute list to shortform attribute list
972 */
973int
Dave Chinner517c2222013-04-24 18:58:55 +1000974xfs_attr3_leaf_to_shortform(
975 struct xfs_buf *bp,
976 struct xfs_da_args *args,
977 int forkoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978{
Dave Chinner517c2222013-04-24 18:58:55 +1000979 struct xfs_attr_leafblock *leaf;
980 struct xfs_attr3_icleaf_hdr ichdr;
981 struct xfs_attr_leaf_entry *entry;
982 struct xfs_attr_leaf_name_local *name_loc;
983 struct xfs_da_args nargs;
984 struct xfs_inode *dp = args->dp;
985 char *tmpbuffer;
986 int error;
987 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
Dave Chinner5a5881c2012-03-22 05:15:13 +0000989 trace_xfs_attr_leaf_to_sf(args);
990
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 tmpbuffer = kmem_alloc(XFS_LBSIZE(dp->i_mount), KM_SLEEP);
Dave Chinner517c2222013-04-24 18:58:55 +1000992 if (!tmpbuffer)
993 return ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
Dave Chinner1d9025e2012-06-22 18:50:14 +1000995 memcpy(tmpbuffer, bp->b_addr, XFS_LBSIZE(dp->i_mount));
Dave Chinner517c2222013-04-24 18:58:55 +1000996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 leaf = (xfs_attr_leafblock_t *)tmpbuffer;
Dave Chinner517c2222013-04-24 18:58:55 +1000998 xfs_attr3_leaf_hdr_from_disk(&ichdr, leaf);
999 entry = xfs_attr3_leaf_entryp(leaf);
1000
1001 /* XXX (dgc): buffer is about to be marked stale - why zero it? */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001002 memset(bp->b_addr, 0, XFS_LBSIZE(dp->i_mount));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004 /*
1005 * Clean out the prior contents of the attribute list.
1006 */
1007 error = xfs_da_shrink_inode(args, 0, bp);
1008 if (error)
1009 goto out;
Nathan Scottd8cc8902005-11-02 10:34:53 +11001010
1011 if (forkoff == -1) {
Nathan Scott13059ff2006-01-11 15:32:01 +11001012 ASSERT(dp->i_mount->m_flags & XFS_MOUNT_ATTR2);
Barry Naujoke5889e92007-02-10 18:35:58 +11001013 ASSERT(dp->i_d.di_format != XFS_DINODE_FMT_BTREE);
Christoph Hellwige1486de2009-02-04 09:36:00 +01001014 xfs_attr_fork_reset(dp, args->trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 goto out;
Nathan Scottd8cc8902005-11-02 10:34:53 +11001016 }
1017
1018 xfs_attr_shortform_create(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
1020 /*
1021 * Copy the attributes
1022 */
1023 memset((char *)&nargs, 0, sizeof(nargs));
1024 nargs.dp = dp;
1025 nargs.firstblock = args->firstblock;
1026 nargs.flist = args->flist;
1027 nargs.total = args->total;
1028 nargs.whichfork = XFS_ATTR_FORK;
1029 nargs.trans = args->trans;
Barry Naujok6a178102008-05-21 16:42:05 +10001030 nargs.op_flags = XFS_DA_OP_OKNOENT;
Dave Chinner517c2222013-04-24 18:58:55 +10001031
1032 for (i = 0; i < ichdr.count; entry++, i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 if (entry->flags & XFS_ATTR_INCOMPLETE)
1034 continue; /* don't copy partial entries */
1035 if (!entry->nameidx)
1036 continue;
1037 ASSERT(entry->flags & XFS_ATTR_LOCAL);
Dave Chinner517c2222013-04-24 18:58:55 +10001038 name_loc = xfs_attr3_leaf_name_local(leaf, i);
Dave Chinnera9273ca2010-01-20 10:47:48 +11001039 nargs.name = name_loc->nameval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 nargs.namelen = name_loc->namelen;
Dave Chinnera9273ca2010-01-20 10:47:48 +11001041 nargs.value = &name_loc->nameval[nargs.namelen];
Nathan Scott053b5752006-03-17 17:29:09 +11001042 nargs.valuelen = be16_to_cpu(name_loc->valuelen);
Nathan Scott6b19f2d2006-03-17 17:29:02 +11001043 nargs.hashval = be32_to_cpu(entry->hashval);
Tim Shimmin726801b2006-09-28 11:01:37 +10001044 nargs.flags = XFS_ATTR_NSP_ONDISK_TO_ARGS(entry->flags);
Nathan Scottd8cc8902005-11-02 10:34:53 +11001045 xfs_attr_shortform_add(&nargs, forkoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 }
1047 error = 0;
1048
1049out:
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001050 kmem_free(tmpbuffer);
Dave Chinner517c2222013-04-24 18:58:55 +10001051 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052}
1053
1054/*
1055 * Convert from using a single leaf to a root node and a leaf.
1056 */
1057int
Dave Chinner517c2222013-04-24 18:58:55 +10001058xfs_attr3_leaf_to_node(
1059 struct xfs_da_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060{
Dave Chinner517c2222013-04-24 18:58:55 +10001061 struct xfs_attr_leafblock *leaf;
1062 struct xfs_attr3_icleaf_hdr icleafhdr;
1063 struct xfs_attr_leaf_entry *entries;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001064 struct xfs_da_node_entry *btree;
Dave Chinner517c2222013-04-24 18:58:55 +10001065 struct xfs_da3_icnode_hdr icnodehdr;
1066 struct xfs_da_intnode *node;
1067 struct xfs_inode *dp = args->dp;
1068 struct xfs_mount *mp = dp->i_mount;
1069 struct xfs_buf *bp1 = NULL;
1070 struct xfs_buf *bp2 = NULL;
1071 xfs_dablk_t blkno;
1072 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
Dave Chinner5a5881c2012-03-22 05:15:13 +00001074 trace_xfs_attr_leaf_to_node(args);
1075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 error = xfs_da_grow_inode(args, &blkno);
1077 if (error)
1078 goto out;
Dave Chinner517c2222013-04-24 18:58:55 +10001079 error = xfs_attr3_leaf_read(args->trans, dp, 0, -1, &bp1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 if (error)
1081 goto out;
Dave Chinnerad14c332012-11-12 22:54:16 +11001082
Dave Chinner517c2222013-04-24 18:58:55 +10001083 error = xfs_da_get_buf(args->trans, dp, blkno, -1, &bp2, XFS_ATTR_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 if (error)
1085 goto out;
Dave Chinner517c2222013-04-24 18:58:55 +10001086
1087 /* copy leaf to new buffer, update identifiers */
Dave Chinner61fe1352013-04-03 16:11:30 +11001088 xfs_trans_buf_set_type(args->trans, bp2, XFS_BLFT_ATTR_LEAF_BUF);
Dave Chinner1813dd62012-11-14 17:54:40 +11001089 bp2->b_ops = bp1->b_ops;
Dave Chinner517c2222013-04-24 18:58:55 +10001090 memcpy(bp2->b_addr, bp1->b_addr, XFS_LBSIZE(mp));
1091 if (xfs_sb_version_hascrc(&mp->m_sb)) {
1092 struct xfs_da3_blkinfo *hdr3 = bp2->b_addr;
1093 hdr3->blkno = cpu_to_be64(bp2->b_bn);
1094 }
1095 xfs_trans_log_buf(args->trans, bp2, 0, XFS_LBSIZE(mp) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
1097 /*
1098 * Set up the new root node.
1099 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001100 error = xfs_da3_node_create(args, 0, 1, &bp1, XFS_ATTR_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 if (error)
1102 goto out;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001103 node = bp1->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10001104 xfs_da3_node_hdr_from_disk(&icnodehdr, node);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001105 btree = xfs_da3_node_tree_p(node);
Dave Chinner517c2222013-04-24 18:58:55 +10001106
1107 leaf = bp2->b_addr;
1108 xfs_attr3_leaf_hdr_from_disk(&icleafhdr, leaf);
1109 entries = xfs_attr3_leaf_entryp(leaf);
1110
1111 /* both on-disk, don't endian-flip twice */
1112 btree[0].hashval = entries[icleafhdr.count - 1].hashval;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001113 btree[0].before = cpu_to_be32(blkno);
Dave Chinner517c2222013-04-24 18:58:55 +10001114 icnodehdr.count = 1;
1115 xfs_da3_node_hdr_to_disk(node, &icnodehdr);
1116 xfs_trans_log_buf(args->trans, bp1, 0, XFS_LBSIZE(mp) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 error = 0;
1118out:
Dave Chinner517c2222013-04-24 18:58:55 +10001119 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120}
1121
1122
1123/*========================================================================
1124 * Routines used for growing the Btree.
1125 *========================================================================*/
1126
1127/*
1128 * Create the initial contents of a leaf attribute list
1129 * or a leaf in a node attribute list.
1130 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001131STATIC int
Dave Chinner517c2222013-04-24 18:58:55 +10001132xfs_attr3_leaf_create(
1133 struct xfs_da_args *args,
1134 xfs_dablk_t blkno,
1135 struct xfs_buf **bpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136{
Dave Chinner517c2222013-04-24 18:58:55 +10001137 struct xfs_attr_leafblock *leaf;
1138 struct xfs_attr3_icleaf_hdr ichdr;
1139 struct xfs_inode *dp = args->dp;
1140 struct xfs_mount *mp = dp->i_mount;
1141 struct xfs_buf *bp;
1142 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
Dave Chinner5a5881c2012-03-22 05:15:13 +00001144 trace_xfs_attr_leaf_create(args);
1145
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 error = xfs_da_get_buf(args->trans, args->dp, blkno, -1, &bp,
1147 XFS_ATTR_FORK);
1148 if (error)
Dave Chinner517c2222013-04-24 18:58:55 +10001149 return error;
1150 bp->b_ops = &xfs_attr3_leaf_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +11001151 xfs_trans_buf_set_type(args->trans, bp, XFS_BLFT_ATTR_LEAF_BUF);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001152 leaf = bp->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10001153 memset(leaf, 0, XFS_LBSIZE(mp));
1154
1155 memset(&ichdr, 0, sizeof(ichdr));
1156 ichdr.firstused = XFS_LBSIZE(mp);
1157
1158 if (xfs_sb_version_hascrc(&mp->m_sb)) {
1159 struct xfs_da3_blkinfo *hdr3 = bp->b_addr;
1160
1161 ichdr.magic = XFS_ATTR3_LEAF_MAGIC;
1162
1163 hdr3->blkno = cpu_to_be64(bp->b_bn);
1164 hdr3->owner = cpu_to_be64(dp->i_ino);
1165 uuid_copy(&hdr3->uuid, &mp->m_sb.sb_uuid);
1166
1167 ichdr.freemap[0].base = sizeof(struct xfs_attr3_leaf_hdr);
1168 } else {
1169 ichdr.magic = XFS_ATTR_LEAF_MAGIC;
1170 ichdr.freemap[0].base = sizeof(struct xfs_attr_leaf_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 }
Dave Chinner517c2222013-04-24 18:58:55 +10001172 ichdr.freemap[0].size = ichdr.firstused - ichdr.freemap[0].base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
Dave Chinner517c2222013-04-24 18:58:55 +10001174 xfs_attr3_leaf_hdr_to_disk(leaf, &ichdr);
1175 xfs_trans_log_buf(args->trans, bp, 0, XFS_LBSIZE(mp) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
1177 *bpp = bp;
Dave Chinner517c2222013-04-24 18:58:55 +10001178 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179}
1180
1181/*
1182 * Split the leaf node, rebalance, then add the new entry.
1183 */
1184int
Dave Chinner517c2222013-04-24 18:58:55 +10001185xfs_attr3_leaf_split(
1186 struct xfs_da_state *state,
1187 struct xfs_da_state_blk *oldblk,
1188 struct xfs_da_state_blk *newblk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189{
1190 xfs_dablk_t blkno;
1191 int error;
1192
Dave Chinner5a5881c2012-03-22 05:15:13 +00001193 trace_xfs_attr_leaf_split(state->args);
1194
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 /*
1196 * Allocate space for a new leaf node.
1197 */
1198 ASSERT(oldblk->magic == XFS_ATTR_LEAF_MAGIC);
1199 error = xfs_da_grow_inode(state->args, &blkno);
1200 if (error)
1201 return(error);
Dave Chinner517c2222013-04-24 18:58:55 +10001202 error = xfs_attr3_leaf_create(state->args, blkno, &newblk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 if (error)
1204 return(error);
1205 newblk->blkno = blkno;
1206 newblk->magic = XFS_ATTR_LEAF_MAGIC;
1207
1208 /*
1209 * Rebalance the entries across the two leaves.
1210 * NOTE: rebalance() currently depends on the 2nd block being empty.
1211 */
Dave Chinner517c2222013-04-24 18:58:55 +10001212 xfs_attr3_leaf_rebalance(state, oldblk, newblk);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001213 error = xfs_da3_blk_link(state, oldblk, newblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 if (error)
1215 return(error);
1216
1217 /*
1218 * Save info on "old" attribute for "atomic rename" ops, leaf_add()
1219 * modifies the index/blkno/rmtblk/rmtblkcnt fields to show the
1220 * "new" attrs info. Will need the "old" info to remove it later.
1221 *
1222 * Insert the "new" entry in the correct block.
1223 */
Dave Chinner5a5881c2012-03-22 05:15:13 +00001224 if (state->inleaf) {
1225 trace_xfs_attr_leaf_add_old(state->args);
Dave Chinner517c2222013-04-24 18:58:55 +10001226 error = xfs_attr3_leaf_add(oldblk->bp, state->args);
Dave Chinner5a5881c2012-03-22 05:15:13 +00001227 } else {
1228 trace_xfs_attr_leaf_add_new(state->args);
Dave Chinner517c2222013-04-24 18:58:55 +10001229 error = xfs_attr3_leaf_add(newblk->bp, state->args);
Dave Chinner5a5881c2012-03-22 05:15:13 +00001230 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
1232 /*
1233 * Update last hashval in each block since we added the name.
1234 */
1235 oldblk->hashval = xfs_attr_leaf_lasthash(oldblk->bp, NULL);
1236 newblk->hashval = xfs_attr_leaf_lasthash(newblk->bp, NULL);
1237 return(error);
1238}
1239
1240/*
1241 * Add a name to the leaf attribute list structure.
1242 */
1243int
Dave Chinner517c2222013-04-24 18:58:55 +10001244xfs_attr3_leaf_add(
Dave Chinner1d9025e2012-06-22 18:50:14 +10001245 struct xfs_buf *bp,
1246 struct xfs_da_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247{
Dave Chinner517c2222013-04-24 18:58:55 +10001248 struct xfs_attr_leafblock *leaf;
1249 struct xfs_attr3_icleaf_hdr ichdr;
1250 int tablesize;
1251 int entsize;
1252 int sum;
1253 int tmp;
1254 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Dave Chinner5a5881c2012-03-22 05:15:13 +00001256 trace_xfs_attr_leaf_add(args);
1257
Dave Chinner1d9025e2012-06-22 18:50:14 +10001258 leaf = bp->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10001259 xfs_attr3_leaf_hdr_from_disk(&ichdr, leaf);
1260 ASSERT(args->index >= 0 && args->index <= ichdr.count);
Nathan Scottaa82daa2005-11-02 10:33:33 +11001261 entsize = xfs_attr_leaf_newentsize(args->namelen, args->valuelen,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 args->trans->t_mountp->m_sb.sb_blocksize, NULL);
1263
1264 /*
1265 * Search through freemap for first-fit on new name length.
1266 * (may need to figure in size of entry struct too)
1267 */
Dave Chinner517c2222013-04-24 18:58:55 +10001268 tablesize = (ichdr.count + 1) * sizeof(xfs_attr_leaf_entry_t)
1269 + xfs_attr3_leaf_hdr_size(leaf);
1270 for (sum = 0, i = XFS_ATTR_LEAF_MAPSIZE - 1; i >= 0; i--) {
1271 if (tablesize > ichdr.firstused) {
1272 sum += ichdr.freemap[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 continue;
1274 }
Dave Chinner517c2222013-04-24 18:58:55 +10001275 if (!ichdr.freemap[i].size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 continue; /* no space in this map */
1277 tmp = entsize;
Dave Chinner517c2222013-04-24 18:58:55 +10001278 if (ichdr.freemap[i].base < ichdr.firstused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 tmp += sizeof(xfs_attr_leaf_entry_t);
Dave Chinner517c2222013-04-24 18:58:55 +10001280 if (ichdr.freemap[i].size >= tmp) {
1281 tmp = xfs_attr3_leaf_add_work(bp, &ichdr, args, i);
1282 goto out_log_hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 }
Dave Chinner517c2222013-04-24 18:58:55 +10001284 sum += ichdr.freemap[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 }
1286
1287 /*
1288 * If there are no holes in the address space of the block,
1289 * and we don't have enough freespace, then compaction will do us
1290 * no good and we should just give up.
1291 */
Dave Chinner517c2222013-04-24 18:58:55 +10001292 if (!ichdr.holes && sum < entsize)
1293 return XFS_ERROR(ENOSPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
1295 /*
1296 * Compact the entries to coalesce free space.
1297 * This may change the hdr->count via dropping INCOMPLETE entries.
1298 */
Dave Chinner517c2222013-04-24 18:58:55 +10001299 xfs_attr3_leaf_compact(args, &ichdr, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
1301 /*
1302 * After compaction, the block is guaranteed to have only one
1303 * free region, in freemap[0]. If it is not big enough, give up.
1304 */
Dave Chinner517c2222013-04-24 18:58:55 +10001305 if (ichdr.freemap[0].size < (entsize + sizeof(xfs_attr_leaf_entry_t))) {
1306 tmp = ENOSPC;
1307 goto out_log_hdr;
1308 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
Dave Chinner517c2222013-04-24 18:58:55 +10001310 tmp = xfs_attr3_leaf_add_work(bp, &ichdr, args, 0);
1311
1312out_log_hdr:
1313 xfs_attr3_leaf_hdr_to_disk(leaf, &ichdr);
1314 xfs_trans_log_buf(args->trans, bp,
1315 XFS_DA_LOGRANGE(leaf, &leaf->hdr,
1316 xfs_attr3_leaf_hdr_size(leaf)));
1317 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318}
1319
1320/*
1321 * Add a name to a leaf attribute list structure.
1322 */
1323STATIC int
Dave Chinner517c2222013-04-24 18:58:55 +10001324xfs_attr3_leaf_add_work(
1325 struct xfs_buf *bp,
1326 struct xfs_attr3_icleaf_hdr *ichdr,
1327 struct xfs_da_args *args,
1328 int mapindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329{
Dave Chinner517c2222013-04-24 18:58:55 +10001330 struct xfs_attr_leafblock *leaf;
1331 struct xfs_attr_leaf_entry *entry;
1332 struct xfs_attr_leaf_name_local *name_loc;
1333 struct xfs_attr_leaf_name_remote *name_rmt;
1334 struct xfs_mount *mp;
1335 int tmp;
1336 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Dave Chinneree732592012-11-12 22:53:53 +11001338 trace_xfs_attr_leaf_add_work(args);
1339
Dave Chinner1d9025e2012-06-22 18:50:14 +10001340 leaf = bp->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10001341 ASSERT(mapindex >= 0 && mapindex < XFS_ATTR_LEAF_MAPSIZE);
1342 ASSERT(args->index >= 0 && args->index <= ichdr->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
1344 /*
1345 * Force open some space in the entry array and fill it in.
1346 */
Dave Chinner517c2222013-04-24 18:58:55 +10001347 entry = &xfs_attr3_leaf_entryp(leaf)[args->index];
1348 if (args->index < ichdr->count) {
1349 tmp = ichdr->count - args->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 tmp *= sizeof(xfs_attr_leaf_entry_t);
Dave Chinner517c2222013-04-24 18:58:55 +10001351 memmove(entry + 1, entry, tmp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001352 xfs_trans_log_buf(args->trans, bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 XFS_DA_LOGRANGE(leaf, entry, tmp + sizeof(*entry)));
1354 }
Dave Chinner517c2222013-04-24 18:58:55 +10001355 ichdr->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
1357 /*
1358 * Allocate space for the new string (at the end of the run).
1359 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 mp = args->trans->t_mountp;
Dave Chinner517c2222013-04-24 18:58:55 +10001361 ASSERT(ichdr->freemap[mapindex].base < XFS_LBSIZE(mp));
1362 ASSERT((ichdr->freemap[mapindex].base & 0x3) == 0);
1363 ASSERT(ichdr->freemap[mapindex].size >=
Nathan Scottaa82daa2005-11-02 10:33:33 +11001364 xfs_attr_leaf_newentsize(args->namelen, args->valuelen,
1365 mp->m_sb.sb_blocksize, NULL));
Dave Chinner517c2222013-04-24 18:58:55 +10001366 ASSERT(ichdr->freemap[mapindex].size < XFS_LBSIZE(mp));
1367 ASSERT((ichdr->freemap[mapindex].size & 0x3) == 0);
1368
1369 ichdr->freemap[mapindex].size -=
1370 xfs_attr_leaf_newentsize(args->namelen, args->valuelen,
1371 mp->m_sb.sb_blocksize, &tmp);
1372
1373 entry->nameidx = cpu_to_be16(ichdr->freemap[mapindex].base +
1374 ichdr->freemap[mapindex].size);
Nathan Scott6b19f2d2006-03-17 17:29:02 +11001375 entry->hashval = cpu_to_be32(args->hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 entry->flags = tmp ? XFS_ATTR_LOCAL : 0;
Tim Shimmin726801b2006-09-28 11:01:37 +10001377 entry->flags |= XFS_ATTR_NSP_ARGS_TO_ONDISK(args->flags);
Barry Naujok6a178102008-05-21 16:42:05 +10001378 if (args->op_flags & XFS_DA_OP_RENAME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 entry->flags |= XFS_ATTR_INCOMPLETE;
1380 if ((args->blkno2 == args->blkno) &&
1381 (args->index2 <= args->index)) {
1382 args->index2++;
1383 }
1384 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10001385 xfs_trans_log_buf(args->trans, bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 XFS_DA_LOGRANGE(leaf, entry, sizeof(*entry)));
Nathan Scott6b19f2d2006-03-17 17:29:02 +11001387 ASSERT((args->index == 0) ||
1388 (be32_to_cpu(entry->hashval) >= be32_to_cpu((entry-1)->hashval)));
Dave Chinner517c2222013-04-24 18:58:55 +10001389 ASSERT((args->index == ichdr->count - 1) ||
Nathan Scott6b19f2d2006-03-17 17:29:02 +11001390 (be32_to_cpu(entry->hashval) <= be32_to_cpu((entry+1)->hashval)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
1392 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 * For "remote" attribute values, simply note that we need to
1394 * allocate space for the "remote" value. We can't actually
1395 * allocate the extents in this transaction, and we can't decide
1396 * which blocks they should be as we might allocate more blocks
1397 * as part of this transaction (a split operation for example).
1398 */
1399 if (entry->flags & XFS_ATTR_LOCAL) {
Dave Chinner517c2222013-04-24 18:58:55 +10001400 name_loc = xfs_attr3_leaf_name_local(leaf, args->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 name_loc->namelen = args->namelen;
Nathan Scott053b5752006-03-17 17:29:09 +11001402 name_loc->valuelen = cpu_to_be16(args->valuelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 memcpy((char *)name_loc->nameval, args->name, args->namelen);
1404 memcpy((char *)&name_loc->nameval[args->namelen], args->value,
Nathan Scott053b5752006-03-17 17:29:09 +11001405 be16_to_cpu(name_loc->valuelen));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10001407 name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 name_rmt->namelen = args->namelen;
1409 memcpy((char *)name_rmt->name, args->name, args->namelen);
1410 entry->flags |= XFS_ATTR_INCOMPLETE;
1411 /* just in case */
1412 name_rmt->valuelen = 0;
1413 name_rmt->valueblk = 0;
1414 args->rmtblkno = 1;
1415 args->rmtblkcnt = XFS_B_TO_FSB(mp, args->valuelen);
1416 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10001417 xfs_trans_log_buf(args->trans, bp,
Dave Chinner517c2222013-04-24 18:58:55 +10001418 XFS_DA_LOGRANGE(leaf, xfs_attr3_leaf_name(leaf, args->index),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 xfs_attr_leaf_entsize(leaf, args->index)));
1420
1421 /*
1422 * Update the control info for this leaf node
1423 */
Dave Chinner517c2222013-04-24 18:58:55 +10001424 if (be16_to_cpu(entry->nameidx) < ichdr->firstused)
1425 ichdr->firstused = be16_to_cpu(entry->nameidx);
1426
1427 ASSERT(ichdr->firstused >= ichdr->count * sizeof(xfs_attr_leaf_entry_t)
1428 + xfs_attr3_leaf_hdr_size(leaf));
1429 tmp = (ichdr->count - 1) * sizeof(xfs_attr_leaf_entry_t)
1430 + xfs_attr3_leaf_hdr_size(leaf);
1431
1432 for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
1433 if (ichdr->freemap[i].base == tmp) {
1434 ichdr->freemap[i].base += sizeof(xfs_attr_leaf_entry_t);
1435 ichdr->freemap[i].size -= sizeof(xfs_attr_leaf_entry_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 }
1437 }
Dave Chinner517c2222013-04-24 18:58:55 +10001438 ichdr->usedbytes += xfs_attr_leaf_entsize(leaf, args->index);
1439 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440}
1441
1442/*
1443 * Garbage collect a leaf attribute list block by copying it to a new buffer.
1444 */
1445STATIC void
Dave Chinner517c2222013-04-24 18:58:55 +10001446xfs_attr3_leaf_compact(
Dave Chinneree732592012-11-12 22:53:53 +11001447 struct xfs_da_args *args,
Dave Chinner517c2222013-04-24 18:58:55 +10001448 struct xfs_attr3_icleaf_hdr *ichdr_d,
Dave Chinneree732592012-11-12 22:53:53 +11001449 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450{
Dave Chinneree732592012-11-12 22:53:53 +11001451 xfs_attr_leafblock_t *leaf_s, *leaf_d;
Dave Chinner517c2222013-04-24 18:58:55 +10001452 struct xfs_attr3_icleaf_hdr ichdr_s;
Dave Chinneree732592012-11-12 22:53:53 +11001453 struct xfs_trans *trans = args->trans;
1454 struct xfs_mount *mp = trans->t_mountp;
1455 char *tmpbuffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Dave Chinneree732592012-11-12 22:53:53 +11001457 trace_xfs_attr_leaf_compact(args);
1458
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 tmpbuffer = kmem_alloc(XFS_LBSIZE(mp), KM_SLEEP);
1460 ASSERT(tmpbuffer != NULL);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001461 memcpy(tmpbuffer, bp->b_addr, XFS_LBSIZE(mp));
1462 memset(bp->b_addr, 0, XFS_LBSIZE(mp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
1464 /*
1465 * Copy basic information
1466 */
1467 leaf_s = (xfs_attr_leafblock_t *)tmpbuffer;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001468 leaf_d = bp->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10001469 ichdr_s = *ichdr_d; /* struct copy */
1470 ichdr_d->firstused = XFS_LBSIZE(mp);
1471 ichdr_d->usedbytes = 0;
1472 ichdr_d->count = 0;
1473 ichdr_d->holes = 0;
1474 ichdr_d->freemap[0].base = xfs_attr3_leaf_hdr_size(leaf_s);
1475 ichdr_d->freemap[0].size = ichdr_d->firstused - ichdr_d->freemap[0].base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
1477 /*
1478 * Copy all entry's in the same (sorted) order,
1479 * but allocate name/value pairs packed and in sequence.
1480 */
Dave Chinner517c2222013-04-24 18:58:55 +10001481 xfs_attr3_leaf_moveents(leaf_s, &ichdr_s, 0, leaf_d, ichdr_d, 0,
1482 ichdr_s.count, mp);
1483 /*
1484 * this logs the entire buffer, but the caller must write the header
1485 * back to the buffer when it is finished modifying it.
1486 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001487 xfs_trans_log_buf(trans, bp, 0, XFS_LBSIZE(mp) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001489 kmem_free(tmpbuffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490}
1491
1492/*
Dave Chinner517c2222013-04-24 18:58:55 +10001493 * Compare two leaf blocks "order".
1494 * Return 0 unless leaf2 should go before leaf1.
1495 */
1496static int
1497xfs_attr3_leaf_order(
1498 struct xfs_buf *leaf1_bp,
1499 struct xfs_attr3_icleaf_hdr *leaf1hdr,
1500 struct xfs_buf *leaf2_bp,
1501 struct xfs_attr3_icleaf_hdr *leaf2hdr)
1502{
1503 struct xfs_attr_leaf_entry *entries1;
1504 struct xfs_attr_leaf_entry *entries2;
1505
1506 entries1 = xfs_attr3_leaf_entryp(leaf1_bp->b_addr);
1507 entries2 = xfs_attr3_leaf_entryp(leaf2_bp->b_addr);
1508 if (leaf1hdr->count > 0 && leaf2hdr->count > 0 &&
1509 ((be32_to_cpu(entries2[0].hashval) <
1510 be32_to_cpu(entries1[0].hashval)) ||
1511 (be32_to_cpu(entries2[leaf2hdr->count - 1].hashval) <
1512 be32_to_cpu(entries1[leaf1hdr->count - 1].hashval)))) {
1513 return 1;
1514 }
1515 return 0;
1516}
1517
1518int
1519xfs_attr_leaf_order(
1520 struct xfs_buf *leaf1_bp,
1521 struct xfs_buf *leaf2_bp)
1522{
1523 struct xfs_attr3_icleaf_hdr ichdr1;
1524 struct xfs_attr3_icleaf_hdr ichdr2;
1525
1526 xfs_attr3_leaf_hdr_from_disk(&ichdr1, leaf1_bp->b_addr);
1527 xfs_attr3_leaf_hdr_from_disk(&ichdr2, leaf2_bp->b_addr);
1528 return xfs_attr3_leaf_order(leaf1_bp, &ichdr1, leaf2_bp, &ichdr2);
1529}
1530
1531/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 * Redistribute the attribute list entries between two leaf nodes,
1533 * taking into account the size of the new entry.
1534 *
1535 * NOTE: if new block is empty, then it will get the upper half of the
1536 * old block. At present, all (one) callers pass in an empty second block.
1537 *
1538 * This code adjusts the args->index/blkno and args->index2/blkno2 fields
1539 * to match what it is doing in splitting the attribute leaf block. Those
1540 * values are used in "atomic rename" operations on attributes. Note that
1541 * the "new" and "old" values can end up in different blocks.
1542 */
1543STATIC void
Dave Chinner517c2222013-04-24 18:58:55 +10001544xfs_attr3_leaf_rebalance(
1545 struct xfs_da_state *state,
1546 struct xfs_da_state_blk *blk1,
1547 struct xfs_da_state_blk *blk2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548{
Dave Chinner517c2222013-04-24 18:58:55 +10001549 struct xfs_da_args *args;
1550 struct xfs_attr_leafblock *leaf1;
1551 struct xfs_attr_leafblock *leaf2;
1552 struct xfs_attr3_icleaf_hdr ichdr1;
1553 struct xfs_attr3_icleaf_hdr ichdr2;
1554 struct xfs_attr_leaf_entry *entries1;
1555 struct xfs_attr_leaf_entry *entries2;
1556 int count;
1557 int totallen;
1558 int max;
1559 int space;
1560 int swap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
1562 /*
1563 * Set up environment.
1564 */
1565 ASSERT(blk1->magic == XFS_ATTR_LEAF_MAGIC);
1566 ASSERT(blk2->magic == XFS_ATTR_LEAF_MAGIC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001567 leaf1 = blk1->bp->b_addr;
1568 leaf2 = blk2->bp->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10001569 xfs_attr3_leaf_hdr_from_disk(&ichdr1, leaf1);
1570 xfs_attr3_leaf_hdr_from_disk(&ichdr2, leaf2);
1571 ASSERT(ichdr2.count == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 args = state->args;
1573
Dave Chinner5a5881c2012-03-22 05:15:13 +00001574 trace_xfs_attr_leaf_rebalance(args);
1575
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 /*
1577 * Check ordering of blocks, reverse if it makes things simpler.
1578 *
1579 * NOTE: Given that all (current) callers pass in an empty
1580 * second block, this code should never set "swap".
1581 */
1582 swap = 0;
Dave Chinner517c2222013-04-24 18:58:55 +10001583 if (xfs_attr3_leaf_order(blk1->bp, &ichdr1, blk2->bp, &ichdr2)) {
1584 struct xfs_da_state_blk *tmp_blk;
1585 struct xfs_attr3_icleaf_hdr tmp_ichdr;
1586
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 tmp_blk = blk1;
1588 blk1 = blk2;
1589 blk2 = tmp_blk;
Dave Chinner517c2222013-04-24 18:58:55 +10001590
1591 /* struct copies to swap them rather than reconverting */
1592 tmp_ichdr = ichdr1;
1593 ichdr1 = ichdr2;
1594 ichdr2 = tmp_ichdr;
1595
Dave Chinner1d9025e2012-06-22 18:50:14 +10001596 leaf1 = blk1->bp->b_addr;
1597 leaf2 = blk2->bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 swap = 1;
1599 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
1601 /*
1602 * Examine entries until we reduce the absolute difference in
1603 * byte usage between the two blocks to a minimum. Then get
1604 * the direction to copy and the number of elements to move.
1605 *
1606 * "inleaf" is true if the new entry should be inserted into blk1.
1607 * If "swap" is also true, then reverse the sense of "inleaf".
1608 */
Dave Chinner517c2222013-04-24 18:58:55 +10001609 state->inleaf = xfs_attr3_leaf_figure_balance(state, blk1, &ichdr1,
1610 blk2, &ichdr2,
1611 &count, &totallen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 if (swap)
1613 state->inleaf = !state->inleaf;
1614
1615 /*
1616 * Move any entries required from leaf to leaf:
1617 */
Dave Chinner517c2222013-04-24 18:58:55 +10001618 if (count < ichdr1.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 /*
1620 * Figure the total bytes to be added to the destination leaf.
1621 */
1622 /* number entries being moved */
Dave Chinner517c2222013-04-24 18:58:55 +10001623 count = ichdr1.count - count;
1624 space = ichdr1.usedbytes - totallen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 space += count * sizeof(xfs_attr_leaf_entry_t);
1626
1627 /*
1628 * leaf2 is the destination, compact it if it looks tight.
1629 */
Dave Chinner517c2222013-04-24 18:58:55 +10001630 max = ichdr2.firstused - xfs_attr3_leaf_hdr_size(leaf1);
1631 max -= ichdr2.count * sizeof(xfs_attr_leaf_entry_t);
Dave Chinneree732592012-11-12 22:53:53 +11001632 if (space > max)
Dave Chinner517c2222013-04-24 18:58:55 +10001633 xfs_attr3_leaf_compact(args, &ichdr2, blk2->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
1635 /*
1636 * Move high entries from leaf1 to low end of leaf2.
1637 */
Dave Chinner517c2222013-04-24 18:58:55 +10001638 xfs_attr3_leaf_moveents(leaf1, &ichdr1, ichdr1.count - count,
1639 leaf2, &ichdr2, 0, count, state->mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
Dave Chinner517c2222013-04-24 18:58:55 +10001641 } else if (count > ichdr1.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 /*
1643 * I assert that since all callers pass in an empty
1644 * second buffer, this code should never execute.
1645 */
Dave Chinner07428d72012-11-12 22:09:44 +11001646 ASSERT(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
1648 /*
1649 * Figure the total bytes to be added to the destination leaf.
1650 */
1651 /* number entries being moved */
Dave Chinner517c2222013-04-24 18:58:55 +10001652 count -= ichdr1.count;
1653 space = totallen - ichdr1.usedbytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 space += count * sizeof(xfs_attr_leaf_entry_t);
1655
1656 /*
1657 * leaf1 is the destination, compact it if it looks tight.
1658 */
Dave Chinner517c2222013-04-24 18:58:55 +10001659 max = ichdr1.firstused - xfs_attr3_leaf_hdr_size(leaf1);
1660 max -= ichdr1.count * sizeof(xfs_attr_leaf_entry_t);
Dave Chinneree732592012-11-12 22:53:53 +11001661 if (space > max)
Dave Chinner517c2222013-04-24 18:58:55 +10001662 xfs_attr3_leaf_compact(args, &ichdr1, blk1->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663
1664 /*
1665 * Move low entries from leaf2 to high end of leaf1.
1666 */
Dave Chinner517c2222013-04-24 18:58:55 +10001667 xfs_attr3_leaf_moveents(leaf2, &ichdr2, 0, leaf1, &ichdr1,
1668 ichdr1.count, count, state->mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 }
1670
Dave Chinner517c2222013-04-24 18:58:55 +10001671 xfs_attr3_leaf_hdr_to_disk(leaf1, &ichdr1);
1672 xfs_attr3_leaf_hdr_to_disk(leaf2, &ichdr2);
1673 xfs_trans_log_buf(args->trans, blk1->bp, 0, state->blocksize-1);
1674 xfs_trans_log_buf(args->trans, blk2->bp, 0, state->blocksize-1);
1675
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 /*
1677 * Copy out last hashval in each block for B-tree code.
1678 */
Dave Chinner517c2222013-04-24 18:58:55 +10001679 entries1 = xfs_attr3_leaf_entryp(leaf1);
1680 entries2 = xfs_attr3_leaf_entryp(leaf2);
1681 blk1->hashval = be32_to_cpu(entries1[ichdr1.count - 1].hashval);
1682 blk2->hashval = be32_to_cpu(entries2[ichdr2.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
1684 /*
1685 * Adjust the expected index for insertion.
1686 * NOTE: this code depends on the (current) situation that the
1687 * second block was originally empty.
1688 *
1689 * If the insertion point moved to the 2nd block, we must adjust
1690 * the index. We must also track the entry just following the
1691 * new entry for use in an "atomic rename" operation, that entry
1692 * is always the "old" entry and the "new" entry is what we are
1693 * inserting. The index/blkno fields refer to the "old" entry,
1694 * while the index2/blkno2 fields refer to the "new" entry.
1695 */
Dave Chinner517c2222013-04-24 18:58:55 +10001696 if (blk1->index > ichdr1.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 ASSERT(state->inleaf == 0);
Dave Chinner517c2222013-04-24 18:58:55 +10001698 blk2->index = blk1->index - ichdr1.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 args->index = args->index2 = blk2->index;
1700 args->blkno = args->blkno2 = blk2->blkno;
Dave Chinner517c2222013-04-24 18:58:55 +10001701 } else if (blk1->index == ichdr1.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 if (state->inleaf) {
1703 args->index = blk1->index;
1704 args->blkno = blk1->blkno;
1705 args->index2 = 0;
1706 args->blkno2 = blk2->blkno;
1707 } else {
Dave Chinner07428d72012-11-12 22:09:44 +11001708 /*
1709 * On a double leaf split, the original attr location
1710 * is already stored in blkno2/index2, so don't
1711 * overwrite it overwise we corrupt the tree.
1712 */
Dave Chinner517c2222013-04-24 18:58:55 +10001713 blk2->index = blk1->index - ichdr1.count;
Dave Chinner07428d72012-11-12 22:09:44 +11001714 args->index = blk2->index;
1715 args->blkno = blk2->blkno;
1716 if (!state->extravalid) {
1717 /*
1718 * set the new attr location to match the old
1719 * one and let the higher level split code
1720 * decide where in the leaf to place it.
1721 */
1722 args->index2 = blk2->index;
1723 args->blkno2 = blk2->blkno;
1724 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 }
1726 } else {
1727 ASSERT(state->inleaf == 1);
1728 args->index = args->index2 = blk1->index;
1729 args->blkno = args->blkno2 = blk1->blkno;
1730 }
1731}
1732
1733/*
1734 * Examine entries until we reduce the absolute difference in
1735 * byte usage between the two blocks to a minimum.
1736 * GROT: Is this really necessary? With other than a 512 byte blocksize,
1737 * GROT: there will always be enough room in either block for a new entry.
1738 * GROT: Do a double-split for this case?
1739 */
1740STATIC int
Dave Chinner517c2222013-04-24 18:58:55 +10001741xfs_attr3_leaf_figure_balance(
1742 struct xfs_da_state *state,
1743 struct xfs_da_state_blk *blk1,
1744 struct xfs_attr3_icleaf_hdr *ichdr1,
1745 struct xfs_da_state_blk *blk2,
1746 struct xfs_attr3_icleaf_hdr *ichdr2,
1747 int *countarg,
1748 int *usedbytesarg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749{
Dave Chinner517c2222013-04-24 18:58:55 +10001750 struct xfs_attr_leafblock *leaf1 = blk1->bp->b_addr;
1751 struct xfs_attr_leafblock *leaf2 = blk2->bp->b_addr;
1752 struct xfs_attr_leaf_entry *entry;
1753 int count;
1754 int max;
1755 int index;
1756 int totallen = 0;
1757 int half;
1758 int lastdelta;
1759 int foundit = 0;
1760 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
1762 /*
1763 * Examine entries until we reduce the absolute difference in
1764 * byte usage between the two blocks to a minimum.
1765 */
Dave Chinner517c2222013-04-24 18:58:55 +10001766 max = ichdr1->count + ichdr2->count;
1767 half = (max + 1) * sizeof(*entry);
1768 half += ichdr1->usedbytes + ichdr2->usedbytes +
1769 xfs_attr_leaf_newentsize(state->args->namelen,
1770 state->args->valuelen,
1771 state->blocksize, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 half /= 2;
1773 lastdelta = state->blocksize;
Dave Chinner517c2222013-04-24 18:58:55 +10001774 entry = xfs_attr3_leaf_entryp(leaf1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 for (count = index = 0; count < max; entry++, index++, count++) {
1776
1777#define XFS_ATTR_ABS(A) (((A) < 0) ? -(A) : (A))
1778 /*
1779 * The new entry is in the first block, account for it.
1780 */
1781 if (count == blk1->index) {
1782 tmp = totallen + sizeof(*entry) +
Nathan Scottaa82daa2005-11-02 10:33:33 +11001783 xfs_attr_leaf_newentsize(
1784 state->args->namelen,
1785 state->args->valuelen,
1786 state->blocksize, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 if (XFS_ATTR_ABS(half - tmp) > lastdelta)
1788 break;
1789 lastdelta = XFS_ATTR_ABS(half - tmp);
1790 totallen = tmp;
1791 foundit = 1;
1792 }
1793
1794 /*
1795 * Wrap around into the second block if necessary.
1796 */
Dave Chinner517c2222013-04-24 18:58:55 +10001797 if (count == ichdr1->count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 leaf1 = leaf2;
Dave Chinner517c2222013-04-24 18:58:55 +10001799 entry = xfs_attr3_leaf_entryp(leaf1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 index = 0;
1801 }
1802
1803 /*
1804 * Figure out if next leaf entry would be too much.
1805 */
1806 tmp = totallen + sizeof(*entry) + xfs_attr_leaf_entsize(leaf1,
1807 index);
1808 if (XFS_ATTR_ABS(half - tmp) > lastdelta)
1809 break;
1810 lastdelta = XFS_ATTR_ABS(half - tmp);
1811 totallen = tmp;
1812#undef XFS_ATTR_ABS
1813 }
1814
1815 /*
1816 * Calculate the number of usedbytes that will end up in lower block.
1817 * If new entry not in lower block, fix up the count.
1818 */
1819 totallen -= count * sizeof(*entry);
1820 if (foundit) {
1821 totallen -= sizeof(*entry) +
Nathan Scottaa82daa2005-11-02 10:33:33 +11001822 xfs_attr_leaf_newentsize(
1823 state->args->namelen,
1824 state->args->valuelen,
1825 state->blocksize, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 }
1827
1828 *countarg = count;
1829 *usedbytesarg = totallen;
Dave Chinner517c2222013-04-24 18:58:55 +10001830 return foundit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831}
1832
1833/*========================================================================
1834 * Routines used for shrinking the Btree.
1835 *========================================================================*/
1836
1837/*
1838 * Check a leaf block and its neighbors to see if the block should be
1839 * collapsed into one or the other neighbor. Always keep the block
1840 * with the smaller block number.
1841 * If the current block is over 50% full, don't try to join it, return 0.
1842 * If the block is empty, fill in the state structure and return 2.
1843 * If it can be collapsed, fill in the state structure and return 1.
1844 * If nothing can be done, return 0.
1845 *
1846 * GROT: allow for INCOMPLETE entries in calculation.
1847 */
1848int
Dave Chinner517c2222013-04-24 18:58:55 +10001849xfs_attr3_leaf_toosmall(
1850 struct xfs_da_state *state,
1851 int *action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852{
Dave Chinner517c2222013-04-24 18:58:55 +10001853 struct xfs_attr_leafblock *leaf;
1854 struct xfs_da_state_blk *blk;
1855 struct xfs_attr3_icleaf_hdr ichdr;
1856 struct xfs_buf *bp;
1857 xfs_dablk_t blkno;
1858 int bytes;
1859 int forward;
1860 int error;
1861 int retval;
1862 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
Dave Chinneree732592012-11-12 22:53:53 +11001864 trace_xfs_attr_leaf_toosmall(state->args);
1865
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 /*
1867 * Check for the degenerate case of the block being over 50% full.
1868 * If so, it's not worth even looking to see if we might be able
1869 * to coalesce with a sibling.
1870 */
1871 blk = &state->path.blk[ state->path.active-1 ];
Dave Chinner517c2222013-04-24 18:58:55 +10001872 leaf = blk->bp->b_addr;
1873 xfs_attr3_leaf_hdr_from_disk(&ichdr, leaf);
1874 bytes = xfs_attr3_leaf_hdr_size(leaf) +
1875 ichdr.count * sizeof(xfs_attr_leaf_entry_t) +
1876 ichdr.usedbytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 if (bytes > (state->blocksize >> 1)) {
1878 *action = 0; /* blk over 50%, don't try to join */
1879 return(0);
1880 }
1881
1882 /*
1883 * Check for the degenerate case of the block being empty.
1884 * If the block is empty, we'll simply delete it, no need to
Nathan Scottc41564b2006-03-29 08:55:14 +10001885 * coalesce it with a sibling block. We choose (arbitrarily)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 * to merge with the forward block unless it is NULL.
1887 */
Dave Chinner517c2222013-04-24 18:58:55 +10001888 if (ichdr.count == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 /*
1890 * Make altpath point to the block we want to keep and
1891 * path point to the block we want to drop (this one).
1892 */
Dave Chinner517c2222013-04-24 18:58:55 +10001893 forward = (ichdr.forw != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 memcpy(&state->altpath, &state->path, sizeof(state->path));
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001895 error = xfs_da3_path_shift(state, &state->altpath, forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 0, &retval);
1897 if (error)
1898 return(error);
1899 if (retval) {
1900 *action = 0;
1901 } else {
1902 *action = 2;
1903 }
Dave Chinner517c2222013-04-24 18:58:55 +10001904 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 }
1906
1907 /*
1908 * Examine each sibling block to see if we can coalesce with
1909 * at least 25% free space to spare. We need to figure out
1910 * whether to merge with the forward or the backward block.
1911 * We prefer coalescing with the lower numbered sibling so as
1912 * to shrink an attribute list over time.
1913 */
1914 /* start with smaller blk num */
Dave Chinner517c2222013-04-24 18:58:55 +10001915 forward = ichdr.forw < ichdr.back;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 for (i = 0; i < 2; forward = !forward, i++) {
Dave Chinner517c2222013-04-24 18:58:55 +10001917 struct xfs_attr3_icleaf_hdr ichdr2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 if (forward)
Dave Chinner517c2222013-04-24 18:58:55 +10001919 blkno = ichdr.forw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 else
Dave Chinner517c2222013-04-24 18:58:55 +10001921 blkno = ichdr.back;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 if (blkno == 0)
1923 continue;
Dave Chinner517c2222013-04-24 18:58:55 +10001924 error = xfs_attr3_leaf_read(state->args->trans, state->args->dp,
Dave Chinnerad14c332012-11-12 22:54:16 +11001925 blkno, -1, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 if (error)
1927 return(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
Dave Chinner517c2222013-04-24 18:58:55 +10001929 xfs_attr3_leaf_hdr_from_disk(&ichdr2, bp->b_addr);
1930
1931 bytes = state->blocksize - (state->blocksize >> 2) -
1932 ichdr.usedbytes - ichdr2.usedbytes -
1933 ((ichdr.count + ichdr2.count) *
1934 sizeof(xfs_attr_leaf_entry_t)) -
1935 xfs_attr3_leaf_hdr_size(leaf);
1936
Dave Chinner1d9025e2012-06-22 18:50:14 +10001937 xfs_trans_brelse(state->args->trans, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 if (bytes >= 0)
1939 break; /* fits with at least 25% to spare */
1940 }
1941 if (i >= 2) {
1942 *action = 0;
1943 return(0);
1944 }
1945
1946 /*
1947 * Make altpath point to the block we want to keep (the lower
1948 * numbered block) and path point to the block we want to drop.
1949 */
1950 memcpy(&state->altpath, &state->path, sizeof(state->path));
1951 if (blkno < blk->blkno) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001952 error = xfs_da3_path_shift(state, &state->altpath, forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 0, &retval);
1954 } else {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001955 error = xfs_da3_path_shift(state, &state->path, forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 0, &retval);
1957 }
1958 if (error)
1959 return(error);
1960 if (retval) {
1961 *action = 0;
1962 } else {
1963 *action = 1;
1964 }
1965 return(0);
1966}
1967
1968/*
1969 * Remove a name from the leaf attribute list structure.
1970 *
1971 * Return 1 if leaf is less than 37% full, 0 if >= 37% full.
1972 * If two leaves are 37% full, when combined they will leave 25% free.
1973 */
1974int
Dave Chinner517c2222013-04-24 18:58:55 +10001975xfs_attr3_leaf_remove(
1976 struct xfs_buf *bp,
1977 struct xfs_da_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978{
Dave Chinner517c2222013-04-24 18:58:55 +10001979 struct xfs_attr_leafblock *leaf;
1980 struct xfs_attr3_icleaf_hdr ichdr;
1981 struct xfs_attr_leaf_entry *entry;
1982 struct xfs_mount *mp = args->trans->t_mountp;
1983 int before;
1984 int after;
1985 int smallest;
1986 int entsize;
1987 int tablesize;
1988 int tmp;
1989 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
Dave Chinneree732592012-11-12 22:53:53 +11001991 trace_xfs_attr_leaf_remove(args);
1992
Dave Chinner1d9025e2012-06-22 18:50:14 +10001993 leaf = bp->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10001994 xfs_attr3_leaf_hdr_from_disk(&ichdr, leaf);
1995
1996 ASSERT(ichdr.count > 0 && ichdr.count < XFS_LBSIZE(mp) / 8);
1997 ASSERT(args->index >= 0 && args->index < ichdr.count);
1998 ASSERT(ichdr.firstused >= ichdr.count * sizeof(*entry) +
1999 xfs_attr3_leaf_hdr_size(leaf));
2000
2001 entry = &xfs_attr3_leaf_entryp(leaf)[args->index];
2002
2003 ASSERT(be16_to_cpu(entry->nameidx) >= ichdr.firstused);
Nathan Scott6b19f2d2006-03-17 17:29:02 +11002004 ASSERT(be16_to_cpu(entry->nameidx) < XFS_LBSIZE(mp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005
2006 /*
2007 * Scan through free region table:
2008 * check for adjacency of free'd entry with an existing one,
2009 * find smallest free region in case we need to replace it,
2010 * adjust any map that borders the entry table,
2011 */
Dave Chinner517c2222013-04-24 18:58:55 +10002012 tablesize = ichdr.count * sizeof(xfs_attr_leaf_entry_t)
2013 + xfs_attr3_leaf_hdr_size(leaf);
2014 tmp = ichdr.freemap[0].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 before = after = -1;
2016 smallest = XFS_ATTR_LEAF_MAPSIZE - 1;
2017 entsize = xfs_attr_leaf_entsize(leaf, args->index);
Dave Chinner517c2222013-04-24 18:58:55 +10002018 for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
2019 ASSERT(ichdr.freemap[i].base < XFS_LBSIZE(mp));
2020 ASSERT(ichdr.freemap[i].size < XFS_LBSIZE(mp));
2021 if (ichdr.freemap[i].base == tablesize) {
2022 ichdr.freemap[i].base -= sizeof(xfs_attr_leaf_entry_t);
2023 ichdr.freemap[i].size += sizeof(xfs_attr_leaf_entry_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 }
2025
Dave Chinner517c2222013-04-24 18:58:55 +10002026 if (ichdr.freemap[i].base + ichdr.freemap[i].size ==
2027 be16_to_cpu(entry->nameidx)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 before = i;
Dave Chinner517c2222013-04-24 18:58:55 +10002029 } else if (ichdr.freemap[i].base ==
2030 (be16_to_cpu(entry->nameidx) + entsize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 after = i;
Dave Chinner517c2222013-04-24 18:58:55 +10002032 } else if (ichdr.freemap[i].size < tmp) {
2033 tmp = ichdr.freemap[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 smallest = i;
2035 }
2036 }
2037
2038 /*
2039 * Coalesce adjacent freemap regions,
2040 * or replace the smallest region.
2041 */
2042 if ((before >= 0) || (after >= 0)) {
2043 if ((before >= 0) && (after >= 0)) {
Dave Chinner517c2222013-04-24 18:58:55 +10002044 ichdr.freemap[before].size += entsize;
2045 ichdr.freemap[before].size += ichdr.freemap[after].size;
2046 ichdr.freemap[after].base = 0;
2047 ichdr.freemap[after].size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 } else if (before >= 0) {
Dave Chinner517c2222013-04-24 18:58:55 +10002049 ichdr.freemap[before].size += entsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10002051 ichdr.freemap[after].base = be16_to_cpu(entry->nameidx);
2052 ichdr.freemap[after].size += entsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 }
2054 } else {
2055 /*
2056 * Replace smallest region (if it is smaller than free'd entry)
2057 */
Dave Chinner517c2222013-04-24 18:58:55 +10002058 if (ichdr.freemap[smallest].size < entsize) {
2059 ichdr.freemap[smallest].base = be16_to_cpu(entry->nameidx);
2060 ichdr.freemap[smallest].size = entsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 }
2062 }
2063
2064 /*
2065 * Did we remove the first entry?
2066 */
Dave Chinner517c2222013-04-24 18:58:55 +10002067 if (be16_to_cpu(entry->nameidx) == ichdr.firstused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 smallest = 1;
2069 else
2070 smallest = 0;
2071
2072 /*
2073 * Compress the remaining entries and zero out the removed stuff.
2074 */
Dave Chinner517c2222013-04-24 18:58:55 +10002075 memset(xfs_attr3_leaf_name(leaf, args->index), 0, entsize);
2076 ichdr.usedbytes -= entsize;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002077 xfs_trans_log_buf(args->trans, bp,
Dave Chinner517c2222013-04-24 18:58:55 +10002078 XFS_DA_LOGRANGE(leaf, xfs_attr3_leaf_name(leaf, args->index),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 entsize));
2080
Dave Chinner517c2222013-04-24 18:58:55 +10002081 tmp = (ichdr.count - args->index) * sizeof(xfs_attr_leaf_entry_t);
2082 memmove(entry, entry + 1, tmp);
2083 ichdr.count--;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002084 xfs_trans_log_buf(args->trans, bp,
Dave Chinner517c2222013-04-24 18:58:55 +10002085 XFS_DA_LOGRANGE(leaf, entry, tmp + sizeof(xfs_attr_leaf_entry_t)));
2086
2087 entry = &xfs_attr3_leaf_entryp(leaf)[ichdr.count];
2088 memset(entry, 0, sizeof(xfs_attr_leaf_entry_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
2090 /*
2091 * If we removed the first entry, re-find the first used byte
2092 * in the name area. Note that if the entry was the "firstused",
2093 * then we don't have a "hole" in our block resulting from
2094 * removing the name.
2095 */
2096 if (smallest) {
2097 tmp = XFS_LBSIZE(mp);
Dave Chinner517c2222013-04-24 18:58:55 +10002098 entry = xfs_attr3_leaf_entryp(leaf);
2099 for (i = ichdr.count - 1; i >= 0; entry++, i--) {
2100 ASSERT(be16_to_cpu(entry->nameidx) >= ichdr.firstused);
Nathan Scott6b19f2d2006-03-17 17:29:02 +11002101 ASSERT(be16_to_cpu(entry->nameidx) < XFS_LBSIZE(mp));
2102
2103 if (be16_to_cpu(entry->nameidx) < tmp)
2104 tmp = be16_to_cpu(entry->nameidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 }
Dave Chinner517c2222013-04-24 18:58:55 +10002106 ichdr.firstused = tmp;
2107 if (!ichdr.firstused)
2108 ichdr.firstused = tmp - XFS_ATTR_LEAF_NAME_ALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10002110 ichdr.holes = 1; /* mark as needing compaction */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 }
Dave Chinner517c2222013-04-24 18:58:55 +10002112 xfs_attr3_leaf_hdr_to_disk(leaf, &ichdr);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002113 xfs_trans_log_buf(args->trans, bp,
Dave Chinner517c2222013-04-24 18:58:55 +10002114 XFS_DA_LOGRANGE(leaf, &leaf->hdr,
2115 xfs_attr3_leaf_hdr_size(leaf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
2117 /*
2118 * Check if leaf is less than 50% full, caller may want to
2119 * "join" the leaf with a sibling if so.
2120 */
Dave Chinner517c2222013-04-24 18:58:55 +10002121 tmp = ichdr.usedbytes + xfs_attr3_leaf_hdr_size(leaf) +
2122 ichdr.count * sizeof(xfs_attr_leaf_entry_t);
2123
2124 return tmp < mp->m_attr_magicpct; /* leaf is < 37% full */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125}
2126
2127/*
2128 * Move all the attribute list entries from drop_leaf into save_leaf.
2129 */
2130void
Dave Chinner517c2222013-04-24 18:58:55 +10002131xfs_attr3_leaf_unbalance(
2132 struct xfs_da_state *state,
2133 struct xfs_da_state_blk *drop_blk,
2134 struct xfs_da_state_blk *save_blk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135{
Dave Chinner517c2222013-04-24 18:58:55 +10002136 struct xfs_attr_leafblock *drop_leaf = drop_blk->bp->b_addr;
2137 struct xfs_attr_leafblock *save_leaf = save_blk->bp->b_addr;
2138 struct xfs_attr3_icleaf_hdr drophdr;
2139 struct xfs_attr3_icleaf_hdr savehdr;
2140 struct xfs_attr_leaf_entry *entry;
2141 struct xfs_mount *mp = state->mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
Dave Chinner5a5881c2012-03-22 05:15:13 +00002143 trace_xfs_attr_leaf_unbalance(state->args);
2144
Dave Chinner1d9025e2012-06-22 18:50:14 +10002145 drop_leaf = drop_blk->bp->b_addr;
2146 save_leaf = save_blk->bp->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10002147 xfs_attr3_leaf_hdr_from_disk(&drophdr, drop_leaf);
2148 xfs_attr3_leaf_hdr_from_disk(&savehdr, save_leaf);
2149 entry = xfs_attr3_leaf_entryp(drop_leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
2151 /*
2152 * Save last hashval from dying block for later Btree fixup.
2153 */
Dave Chinner517c2222013-04-24 18:58:55 +10002154 drop_blk->hashval = be32_to_cpu(entry[drophdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
2156 /*
2157 * Check if we need a temp buffer, or can we do it in place.
2158 * Note that we don't check "leaf" for holes because we will
2159 * always be dropping it, toosmall() decided that for us already.
2160 */
Dave Chinner517c2222013-04-24 18:58:55 +10002161 if (savehdr.holes == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 /*
2163 * dest leaf has no holes, so we add there. May need
2164 * to make some room in the entry array.
2165 */
Dave Chinner517c2222013-04-24 18:58:55 +10002166 if (xfs_attr3_leaf_order(save_blk->bp, &savehdr,
2167 drop_blk->bp, &drophdr)) {
2168 xfs_attr3_leaf_moveents(drop_leaf, &drophdr, 0,
2169 save_leaf, &savehdr, 0,
2170 drophdr.count, mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10002172 xfs_attr3_leaf_moveents(drop_leaf, &drophdr, 0,
2173 save_leaf, &savehdr,
2174 savehdr.count, drophdr.count, mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 }
2176 } else {
2177 /*
2178 * Destination has holes, so we make a temporary copy
2179 * of the leaf and add them both to that.
2180 */
Dave Chinner517c2222013-04-24 18:58:55 +10002181 struct xfs_attr_leafblock *tmp_leaf;
2182 struct xfs_attr3_icleaf_hdr tmphdr;
2183
Dave Chinner8517de22013-05-21 18:02:05 +10002184 tmp_leaf = kmem_zalloc(state->blocksize, KM_SLEEP);
Dave Chinner517c2222013-04-24 18:58:55 +10002185
Dave Chinner8517de22013-05-21 18:02:05 +10002186 /*
2187 * Copy the header into the temp leaf so that all the stuff
2188 * not in the incore header is present and gets copied back in
2189 * once we've moved all the entries.
2190 */
2191 memcpy(tmp_leaf, save_leaf, xfs_attr3_leaf_hdr_size(save_leaf));
2192
2193 memset(&tmphdr, 0, sizeof(tmphdr));
Dave Chinner517c2222013-04-24 18:58:55 +10002194 tmphdr.magic = savehdr.magic;
2195 tmphdr.forw = savehdr.forw;
2196 tmphdr.back = savehdr.back;
2197 tmphdr.firstused = state->blocksize;
Dave Chinner8517de22013-05-21 18:02:05 +10002198
2199 /* write the header to the temp buffer to initialise it */
2200 xfs_attr3_leaf_hdr_to_disk(tmp_leaf, &tmphdr);
2201
Dave Chinner517c2222013-04-24 18:58:55 +10002202 if (xfs_attr3_leaf_order(save_blk->bp, &savehdr,
2203 drop_blk->bp, &drophdr)) {
2204 xfs_attr3_leaf_moveents(drop_leaf, &drophdr, 0,
2205 tmp_leaf, &tmphdr, 0,
2206 drophdr.count, mp);
2207 xfs_attr3_leaf_moveents(save_leaf, &savehdr, 0,
2208 tmp_leaf, &tmphdr, tmphdr.count,
2209 savehdr.count, mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10002211 xfs_attr3_leaf_moveents(save_leaf, &savehdr, 0,
2212 tmp_leaf, &tmphdr, 0,
2213 savehdr.count, mp);
2214 xfs_attr3_leaf_moveents(drop_leaf, &drophdr, 0,
2215 tmp_leaf, &tmphdr, tmphdr.count,
2216 drophdr.count, mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 }
Dave Chinner517c2222013-04-24 18:58:55 +10002218 memcpy(save_leaf, tmp_leaf, state->blocksize);
2219 savehdr = tmphdr; /* struct copy */
2220 kmem_free(tmp_leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 }
2222
Dave Chinner517c2222013-04-24 18:58:55 +10002223 xfs_attr3_leaf_hdr_to_disk(save_leaf, &savehdr);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002224 xfs_trans_log_buf(state->args->trans, save_blk->bp, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 state->blocksize - 1);
2226
2227 /*
2228 * Copy out last hashval in each block for B-tree code.
2229 */
Dave Chinner517c2222013-04-24 18:58:55 +10002230 entry = xfs_attr3_leaf_entryp(save_leaf);
2231 save_blk->hashval = be32_to_cpu(entry[savehdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232}
2233
2234/*========================================================================
2235 * Routines used for finding things in the Btree.
2236 *========================================================================*/
2237
2238/*
2239 * Look up a name in a leaf attribute list structure.
2240 * This is the internal routine, it uses the caller's buffer.
2241 *
2242 * Note that duplicate keys are allowed, but only check within the
2243 * current leaf node. The Btree code must check in adjacent leaf nodes.
2244 *
2245 * Return in args->index the index into the entry[] array of either
2246 * the found entry, or where the entry should have been (insert before
2247 * that entry).
2248 *
2249 * Don't change the args->value unless we find the attribute.
2250 */
2251int
Dave Chinner517c2222013-04-24 18:58:55 +10002252xfs_attr3_leaf_lookup_int(
2253 struct xfs_buf *bp,
2254 struct xfs_da_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255{
Dave Chinner517c2222013-04-24 18:58:55 +10002256 struct xfs_attr_leafblock *leaf;
2257 struct xfs_attr3_icleaf_hdr ichdr;
2258 struct xfs_attr_leaf_entry *entry;
2259 struct xfs_attr_leaf_entry *entries;
2260 struct xfs_attr_leaf_name_local *name_loc;
2261 struct xfs_attr_leaf_name_remote *name_rmt;
2262 xfs_dahash_t hashval;
2263 int probe;
2264 int span;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265
Dave Chinner5a5881c2012-03-22 05:15:13 +00002266 trace_xfs_attr_leaf_lookup(args);
2267
Dave Chinner1d9025e2012-06-22 18:50:14 +10002268 leaf = bp->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10002269 xfs_attr3_leaf_hdr_from_disk(&ichdr, leaf);
2270 entries = xfs_attr3_leaf_entryp(leaf);
2271 ASSERT(ichdr.count < XFS_LBSIZE(args->dp->i_mount) / 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272
2273 /*
2274 * Binary search. (note: small blocks will skip this loop)
2275 */
2276 hashval = args->hashval;
Dave Chinner517c2222013-04-24 18:58:55 +10002277 probe = span = ichdr.count / 2;
2278 for (entry = &entries[probe]; span > 4; entry = &entries[probe]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 span /= 2;
Nathan Scott6b19f2d2006-03-17 17:29:02 +11002280 if (be32_to_cpu(entry->hashval) < hashval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 probe += span;
Nathan Scott6b19f2d2006-03-17 17:29:02 +11002282 else if (be32_to_cpu(entry->hashval) > hashval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 probe -= span;
2284 else
2285 break;
2286 }
Dave Chinner517c2222013-04-24 18:58:55 +10002287 ASSERT(probe >= 0 && (!ichdr.count || probe < ichdr.count));
2288 ASSERT(span <= 4 || be32_to_cpu(entry->hashval) == hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289
2290 /*
2291 * Since we may have duplicate hashval's, find the first matching
2292 * hashval in the leaf.
2293 */
Dave Chinner517c2222013-04-24 18:58:55 +10002294 while (probe > 0 && be32_to_cpu(entry->hashval) >= hashval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 entry--;
2296 probe--;
2297 }
Dave Chinner517c2222013-04-24 18:58:55 +10002298 while (probe < ichdr.count &&
2299 be32_to_cpu(entry->hashval) < hashval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 entry++;
2301 probe++;
2302 }
Dave Chinner517c2222013-04-24 18:58:55 +10002303 if (probe == ichdr.count || be32_to_cpu(entry->hashval) != hashval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 args->index = probe;
Dave Chinner517c2222013-04-24 18:58:55 +10002305 return XFS_ERROR(ENOATTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 }
2307
2308 /*
2309 * Duplicate keys may be present, so search all of them for a match.
2310 */
Dave Chinner517c2222013-04-24 18:58:55 +10002311 for (; probe < ichdr.count && (be32_to_cpu(entry->hashval) == hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 entry++, probe++) {
2313/*
2314 * GROT: Add code to remove incomplete entries.
2315 */
2316 /*
2317 * If we are looking for INCOMPLETE entries, show only those.
2318 * If we are looking for complete entries, show only those.
2319 */
2320 if ((args->flags & XFS_ATTR_INCOMPLETE) !=
2321 (entry->flags & XFS_ATTR_INCOMPLETE)) {
2322 continue;
2323 }
2324 if (entry->flags & XFS_ATTR_LOCAL) {
Dave Chinner517c2222013-04-24 18:58:55 +10002325 name_loc = xfs_attr3_leaf_name_local(leaf, probe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 if (name_loc->namelen != args->namelen)
2327 continue;
Dave Chinner517c2222013-04-24 18:58:55 +10002328 if (memcmp(args->name, name_loc->nameval,
2329 args->namelen) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 continue;
Tim Shimmin726801b2006-09-28 11:01:37 +10002331 if (!xfs_attr_namesp_match(args->flags, entry->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 continue;
2333 args->index = probe;
Dave Chinner517c2222013-04-24 18:58:55 +10002334 return XFS_ERROR(EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10002336 name_rmt = xfs_attr3_leaf_name_remote(leaf, probe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 if (name_rmt->namelen != args->namelen)
2338 continue;
Dave Chinner517c2222013-04-24 18:58:55 +10002339 if (memcmp(args->name, name_rmt->name,
2340 args->namelen) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 continue;
Tim Shimmin726801b2006-09-28 11:01:37 +10002342 if (!xfs_attr_namesp_match(args->flags, entry->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 continue;
2344 args->index = probe;
Dave Chinnere461fcb2013-05-20 09:51:16 +10002345 args->valuelen = be32_to_cpu(name_rmt->valuelen);
Nathan Scottc0f054e2006-03-17 17:29:18 +11002346 args->rmtblkno = be32_to_cpu(name_rmt->valueblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 args->rmtblkcnt = XFS_B_TO_FSB(args->dp->i_mount,
Dave Chinnere461fcb2013-05-20 09:51:16 +10002348 args->valuelen);
Dave Chinner517c2222013-04-24 18:58:55 +10002349 return XFS_ERROR(EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 }
2351 }
2352 args->index = probe;
Dave Chinner517c2222013-04-24 18:58:55 +10002353 return XFS_ERROR(ENOATTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354}
2355
2356/*
2357 * Get the value associated with an attribute name from a leaf attribute
2358 * list structure.
2359 */
2360int
Dave Chinner517c2222013-04-24 18:58:55 +10002361xfs_attr3_leaf_getvalue(
2362 struct xfs_buf *bp,
2363 struct xfs_da_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364{
Dave Chinner517c2222013-04-24 18:58:55 +10002365 struct xfs_attr_leafblock *leaf;
2366 struct xfs_attr3_icleaf_hdr ichdr;
2367 struct xfs_attr_leaf_entry *entry;
2368 struct xfs_attr_leaf_name_local *name_loc;
2369 struct xfs_attr_leaf_name_remote *name_rmt;
2370 int valuelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371
Dave Chinner1d9025e2012-06-22 18:50:14 +10002372 leaf = bp->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10002373 xfs_attr3_leaf_hdr_from_disk(&ichdr, leaf);
2374 ASSERT(ichdr.count < XFS_LBSIZE(args->dp->i_mount) / 8);
2375 ASSERT(args->index < ichdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
Dave Chinner517c2222013-04-24 18:58:55 +10002377 entry = &xfs_attr3_leaf_entryp(leaf)[args->index];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 if (entry->flags & XFS_ATTR_LOCAL) {
Dave Chinner517c2222013-04-24 18:58:55 +10002379 name_loc = xfs_attr3_leaf_name_local(leaf, args->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 ASSERT(name_loc->namelen == args->namelen);
2381 ASSERT(memcmp(args->name, name_loc->nameval, args->namelen) == 0);
Nathan Scott053b5752006-03-17 17:29:09 +11002382 valuelen = be16_to_cpu(name_loc->valuelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 if (args->flags & ATTR_KERNOVAL) {
2384 args->valuelen = valuelen;
Dave Chinner517c2222013-04-24 18:58:55 +10002385 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 }
2387 if (args->valuelen < valuelen) {
2388 args->valuelen = valuelen;
Dave Chinner517c2222013-04-24 18:58:55 +10002389 return XFS_ERROR(ERANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 }
2391 args->valuelen = valuelen;
2392 memcpy(args->value, &name_loc->nameval[args->namelen], valuelen);
2393 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10002394 name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 ASSERT(name_rmt->namelen == args->namelen);
2396 ASSERT(memcmp(args->name, name_rmt->name, args->namelen) == 0);
Nathan Scottc0f054e2006-03-17 17:29:18 +11002397 valuelen = be32_to_cpu(name_rmt->valuelen);
2398 args->rmtblkno = be32_to_cpu(name_rmt->valueblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 args->rmtblkcnt = XFS_B_TO_FSB(args->dp->i_mount, valuelen);
2400 if (args->flags & ATTR_KERNOVAL) {
2401 args->valuelen = valuelen;
Dave Chinner517c2222013-04-24 18:58:55 +10002402 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 }
2404 if (args->valuelen < valuelen) {
2405 args->valuelen = valuelen;
Dave Chinner517c2222013-04-24 18:58:55 +10002406 return XFS_ERROR(ERANGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 }
2408 args->valuelen = valuelen;
2409 }
Dave Chinner517c2222013-04-24 18:58:55 +10002410 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411}
2412
2413/*========================================================================
2414 * Utility routines.
2415 *========================================================================*/
2416
2417/*
2418 * Move the indicated entries from one leaf to another.
2419 * NOTE: this routine modifies both source and destination leaves.
2420 */
2421/*ARGSUSED*/
2422STATIC void
Dave Chinner517c2222013-04-24 18:58:55 +10002423xfs_attr3_leaf_moveents(
2424 struct xfs_attr_leafblock *leaf_s,
2425 struct xfs_attr3_icleaf_hdr *ichdr_s,
2426 int start_s,
2427 struct xfs_attr_leafblock *leaf_d,
2428 struct xfs_attr3_icleaf_hdr *ichdr_d,
2429 int start_d,
2430 int count,
2431 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432{
Dave Chinner517c2222013-04-24 18:58:55 +10002433 struct xfs_attr_leaf_entry *entry_s;
2434 struct xfs_attr_leaf_entry *entry_d;
2435 int desti;
2436 int tmp;
2437 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438
2439 /*
2440 * Check for nothing to do.
2441 */
2442 if (count == 0)
2443 return;
2444
2445 /*
2446 * Set up environment.
2447 */
Dave Chinner517c2222013-04-24 18:58:55 +10002448 ASSERT(ichdr_s->magic == XFS_ATTR_LEAF_MAGIC ||
2449 ichdr_s->magic == XFS_ATTR3_LEAF_MAGIC);
2450 ASSERT(ichdr_s->magic == ichdr_d->magic);
2451 ASSERT(ichdr_s->count > 0 && ichdr_s->count < XFS_LBSIZE(mp) / 8);
2452 ASSERT(ichdr_s->firstused >= (ichdr_s->count * sizeof(*entry_s))
2453 + xfs_attr3_leaf_hdr_size(leaf_s));
2454 ASSERT(ichdr_d->count < XFS_LBSIZE(mp) / 8);
2455 ASSERT(ichdr_d->firstused >= (ichdr_d->count * sizeof(*entry_d))
2456 + xfs_attr3_leaf_hdr_size(leaf_d));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457
Dave Chinner517c2222013-04-24 18:58:55 +10002458 ASSERT(start_s < ichdr_s->count);
2459 ASSERT(start_d <= ichdr_d->count);
2460 ASSERT(count <= ichdr_s->count);
2461
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462
2463 /*
2464 * Move the entries in the destination leaf up to make a hole?
2465 */
Dave Chinner517c2222013-04-24 18:58:55 +10002466 if (start_d < ichdr_d->count) {
2467 tmp = ichdr_d->count - start_d;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 tmp *= sizeof(xfs_attr_leaf_entry_t);
Dave Chinner517c2222013-04-24 18:58:55 +10002469 entry_s = &xfs_attr3_leaf_entryp(leaf_d)[start_d];
2470 entry_d = &xfs_attr3_leaf_entryp(leaf_d)[start_d + count];
2471 memmove(entry_d, entry_s, tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 }
2473
2474 /*
2475 * Copy all entry's in the same (sorted) order,
2476 * but allocate attribute info packed and in sequence.
2477 */
Dave Chinner517c2222013-04-24 18:58:55 +10002478 entry_s = &xfs_attr3_leaf_entryp(leaf_s)[start_s];
2479 entry_d = &xfs_attr3_leaf_entryp(leaf_d)[start_d];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480 desti = start_d;
2481 for (i = 0; i < count; entry_s++, entry_d++, desti++, i++) {
Dave Chinner517c2222013-04-24 18:58:55 +10002482 ASSERT(be16_to_cpu(entry_s->nameidx) >= ichdr_s->firstused);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 tmp = xfs_attr_leaf_entsize(leaf_s, start_s + i);
2484#ifdef GROT
2485 /*
2486 * Code to drop INCOMPLETE entries. Difficult to use as we
2487 * may also need to change the insertion index. Code turned
2488 * off for 6.2, should be revisited later.
2489 */
2490 if (entry_s->flags & XFS_ATTR_INCOMPLETE) { /* skip partials? */
Dave Chinner517c2222013-04-24 18:58:55 +10002491 memset(xfs_attr3_leaf_name(leaf_s, start_s + i), 0, tmp);
2492 ichdr_s->usedbytes -= tmp;
2493 ichdr_s->count -= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 entry_d--; /* to compensate for ++ in loop hdr */
2495 desti--;
2496 if ((start_s + i) < offset)
2497 result++; /* insertion index adjustment */
2498 } else {
2499#endif /* GROT */
Dave Chinner517c2222013-04-24 18:58:55 +10002500 ichdr_d->firstused -= tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 /* both on-disk, don't endian flip twice */
2502 entry_d->hashval = entry_s->hashval;
Dave Chinner517c2222013-04-24 18:58:55 +10002503 entry_d->nameidx = cpu_to_be16(ichdr_d->firstused);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 entry_d->flags = entry_s->flags;
Nathan Scott6b19f2d2006-03-17 17:29:02 +11002505 ASSERT(be16_to_cpu(entry_d->nameidx) + tmp
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 <= XFS_LBSIZE(mp));
Dave Chinner517c2222013-04-24 18:58:55 +10002507 memmove(xfs_attr3_leaf_name(leaf_d, desti),
2508 xfs_attr3_leaf_name(leaf_s, start_s + i), tmp);
Nathan Scott6b19f2d2006-03-17 17:29:02 +11002509 ASSERT(be16_to_cpu(entry_s->nameidx) + tmp
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 <= XFS_LBSIZE(mp));
Dave Chinner517c2222013-04-24 18:58:55 +10002511 memset(xfs_attr3_leaf_name(leaf_s, start_s + i), 0, tmp);
2512 ichdr_s->usedbytes -= tmp;
2513 ichdr_d->usedbytes += tmp;
2514 ichdr_s->count -= 1;
2515 ichdr_d->count += 1;
2516 tmp = ichdr_d->count * sizeof(xfs_attr_leaf_entry_t)
2517 + xfs_attr3_leaf_hdr_size(leaf_d);
2518 ASSERT(ichdr_d->firstused >= tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519#ifdef GROT
2520 }
2521#endif /* GROT */
2522 }
2523
2524 /*
2525 * Zero out the entries we just copied.
2526 */
Dave Chinner517c2222013-04-24 18:58:55 +10002527 if (start_s == ichdr_s->count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 tmp = count * sizeof(xfs_attr_leaf_entry_t);
Dave Chinner517c2222013-04-24 18:58:55 +10002529 entry_s = &xfs_attr3_leaf_entryp(leaf_s)[start_s];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 ASSERT(((char *)entry_s + tmp) <=
2531 ((char *)leaf_s + XFS_LBSIZE(mp)));
Dave Chinner517c2222013-04-24 18:58:55 +10002532 memset(entry_s, 0, tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 } else {
2534 /*
2535 * Move the remaining entries down to fill the hole,
2536 * then zero the entries at the top.
2537 */
Dave Chinner517c2222013-04-24 18:58:55 +10002538 tmp = (ichdr_s->count - count) * sizeof(xfs_attr_leaf_entry_t);
2539 entry_s = &xfs_attr3_leaf_entryp(leaf_s)[start_s + count];
2540 entry_d = &xfs_attr3_leaf_entryp(leaf_s)[start_s];
2541 memmove(entry_d, entry_s, tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542
2543 tmp = count * sizeof(xfs_attr_leaf_entry_t);
Dave Chinner517c2222013-04-24 18:58:55 +10002544 entry_s = &xfs_attr3_leaf_entryp(leaf_s)[ichdr_s->count];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 ASSERT(((char *)entry_s + tmp) <=
2546 ((char *)leaf_s + XFS_LBSIZE(mp)));
Dave Chinner517c2222013-04-24 18:58:55 +10002547 memset(entry_s, 0, tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 }
2549
2550 /*
2551 * Fill in the freemap information
2552 */
Dave Chinner517c2222013-04-24 18:58:55 +10002553 ichdr_d->freemap[0].base = xfs_attr3_leaf_hdr_size(leaf_d);
2554 ichdr_d->freemap[0].base += ichdr_d->count * sizeof(xfs_attr_leaf_entry_t);
2555 ichdr_d->freemap[0].size = ichdr_d->firstused - ichdr_d->freemap[0].base;
2556 ichdr_d->freemap[1].base = 0;
2557 ichdr_d->freemap[2].base = 0;
2558 ichdr_d->freemap[1].size = 0;
2559 ichdr_d->freemap[2].size = 0;
2560 ichdr_s->holes = 1; /* leaf may not be compact */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561}
2562
2563/*
2564 * Pick up the last hashvalue from a leaf block.
2565 */
2566xfs_dahash_t
Dave Chinner1d9025e2012-06-22 18:50:14 +10002567xfs_attr_leaf_lasthash(
2568 struct xfs_buf *bp,
2569 int *count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570{
Dave Chinner517c2222013-04-24 18:58:55 +10002571 struct xfs_attr3_icleaf_hdr ichdr;
2572 struct xfs_attr_leaf_entry *entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573
Dave Chinner517c2222013-04-24 18:58:55 +10002574 xfs_attr3_leaf_hdr_from_disk(&ichdr, bp->b_addr);
2575 entries = xfs_attr3_leaf_entryp(bp->b_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 if (count)
Dave Chinner517c2222013-04-24 18:58:55 +10002577 *count = ichdr.count;
2578 if (!ichdr.count)
2579 return 0;
2580 return be32_to_cpu(entries[ichdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581}
2582
2583/*
2584 * Calculate the number of bytes used to store the indicated attribute
2585 * (whether local or remote only calculate bytes in this block).
2586 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10002587STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588xfs_attr_leaf_entsize(xfs_attr_leafblock_t *leaf, int index)
2589{
Dave Chinner517c2222013-04-24 18:58:55 +10002590 struct xfs_attr_leaf_entry *entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 xfs_attr_leaf_name_local_t *name_loc;
2592 xfs_attr_leaf_name_remote_t *name_rmt;
2593 int size;
2594
Dave Chinner517c2222013-04-24 18:58:55 +10002595 entries = xfs_attr3_leaf_entryp(leaf);
2596 if (entries[index].flags & XFS_ATTR_LOCAL) {
2597 name_loc = xfs_attr3_leaf_name_local(leaf, index);
Eric Sandeenc9fb86a2009-01-01 16:40:11 -06002598 size = xfs_attr_leaf_entsize_local(name_loc->namelen,
Nathan Scott053b5752006-03-17 17:29:09 +11002599 be16_to_cpu(name_loc->valuelen));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10002601 name_rmt = xfs_attr3_leaf_name_remote(leaf, index);
Eric Sandeenc9fb86a2009-01-01 16:40:11 -06002602 size = xfs_attr_leaf_entsize_remote(name_rmt->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 }
Dave Chinner517c2222013-04-24 18:58:55 +10002604 return size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605}
2606
2607/*
2608 * Calculate the number of bytes that would be required to store the new
2609 * attribute (whether local or remote only calculate bytes in this block).
2610 * This routine decides as a side effect whether the attribute will be
2611 * a "local" or a "remote" attribute.
2612 */
2613int
Nathan Scottaa82daa2005-11-02 10:33:33 +11002614xfs_attr_leaf_newentsize(int namelen, int valuelen, int blocksize, int *local)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615{
2616 int size;
2617
Eric Sandeenc9fb86a2009-01-01 16:40:11 -06002618 size = xfs_attr_leaf_entsize_local(namelen, valuelen);
2619 if (size < xfs_attr_leaf_entsize_local_max(blocksize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 if (local) {
2621 *local = 1;
2622 }
2623 } else {
Eric Sandeenc9fb86a2009-01-01 16:40:11 -06002624 size = xfs_attr_leaf_entsize_remote(namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 if (local) {
2626 *local = 0;
2627 }
2628 }
Dave Chinner517c2222013-04-24 18:58:55 +10002629 return size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630}
2631
2632/*
2633 * Copy out attribute list entries for attr_list(), for leaf attribute lists.
2634 */
2635int
Dave Chinner517c2222013-04-24 18:58:55 +10002636xfs_attr3_leaf_list_int(
2637 struct xfs_buf *bp,
2638 struct xfs_attr_list_context *context)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639{
Dave Chinner517c2222013-04-24 18:58:55 +10002640 struct attrlist_cursor_kern *cursor;
2641 struct xfs_attr_leafblock *leaf;
2642 struct xfs_attr3_icleaf_hdr ichdr;
2643 struct xfs_attr_leaf_entry *entries;
2644 struct xfs_attr_leaf_entry *entry;
2645 int retval;
2646 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002648 trace_xfs_attr_list_leaf(context);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649
Dave Chinner517c2222013-04-24 18:58:55 +10002650 leaf = bp->b_addr;
2651 xfs_attr3_leaf_hdr_from_disk(&ichdr, leaf);
2652 entries = xfs_attr3_leaf_entryp(leaf);
2653
2654 cursor = context->cursor;
2655 cursor->initted = 1;
2656
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 /*
2658 * Re-find our place in the leaf block if this is a new syscall.
2659 */
2660 if (context->resynch) {
Dave Chinner517c2222013-04-24 18:58:55 +10002661 entry = &entries[0];
2662 for (i = 0; i < ichdr.count; entry++, i++) {
Nathan Scott6b19f2d2006-03-17 17:29:02 +11002663 if (be32_to_cpu(entry->hashval) == cursor->hashval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 if (cursor->offset == context->dupcnt) {
2665 context->dupcnt = 0;
2666 break;
2667 }
2668 context->dupcnt++;
Nathan Scott6b19f2d2006-03-17 17:29:02 +11002669 } else if (be32_to_cpu(entry->hashval) >
2670 cursor->hashval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 context->dupcnt = 0;
2672 break;
2673 }
2674 }
Dave Chinner517c2222013-04-24 18:58:55 +10002675 if (i == ichdr.count) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002676 trace_xfs_attr_list_notfound(context);
Dave Chinner517c2222013-04-24 18:58:55 +10002677 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 }
2679 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10002680 entry = &entries[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 i = 0;
2682 }
2683 context->resynch = 0;
2684
2685 /*
2686 * We have found our place, start copying out the new attributes.
2687 */
2688 retval = 0;
Dave Chinner517c2222013-04-24 18:58:55 +10002689 for (; i < ichdr.count; entry++, i++) {
Nathan Scott6b19f2d2006-03-17 17:29:02 +11002690 if (be32_to_cpu(entry->hashval) != cursor->hashval) {
2691 cursor->hashval = be32_to_cpu(entry->hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 cursor->offset = 0;
2693 }
2694
2695 if (entry->flags & XFS_ATTR_INCOMPLETE)
2696 continue; /* skip incomplete entries */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697
2698 if (entry->flags & XFS_ATTR_LOCAL) {
Tim Shimmin726801b2006-09-28 11:01:37 +10002699 xfs_attr_leaf_name_local_t *name_loc =
Dave Chinner517c2222013-04-24 18:58:55 +10002700 xfs_attr3_leaf_name_local(leaf, i);
Tim Shimmin726801b2006-09-28 11:01:37 +10002701
2702 retval = context->put_listent(context,
Christoph Hellwigad9b4632008-06-23 13:23:48 +10002703 entry->flags,
Dave Chinnera9273ca2010-01-20 10:47:48 +11002704 name_loc->nameval,
Tim Shimmin726801b2006-09-28 11:01:37 +10002705 (int)name_loc->namelen,
2706 be16_to_cpu(name_loc->valuelen),
Dave Chinnera9273ca2010-01-20 10:47:48 +11002707 &name_loc->nameval[name_loc->namelen]);
Tim Shimmin726801b2006-09-28 11:01:37 +10002708 if (retval)
2709 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 } else {
Tim Shimmin726801b2006-09-28 11:01:37 +10002711 xfs_attr_leaf_name_remote_t *name_rmt =
Dave Chinner517c2222013-04-24 18:58:55 +10002712 xfs_attr3_leaf_name_remote(leaf, i);
Tim Shimmin726801b2006-09-28 11:01:37 +10002713
2714 int valuelen = be32_to_cpu(name_rmt->valuelen);
2715
2716 if (context->put_value) {
2717 xfs_da_args_t args;
2718
2719 memset((char *)&args, 0, sizeof(args));
2720 args.dp = context->dp;
2721 args.whichfork = XFS_ATTR_FORK;
2722 args.valuelen = valuelen;
Dave Chinner622d8142010-12-23 11:57:37 +11002723 args.value = kmem_alloc(valuelen, KM_SLEEP | KM_NOFS);
Tim Shimmin726801b2006-09-28 11:01:37 +10002724 args.rmtblkno = be32_to_cpu(name_rmt->valueblk);
2725 args.rmtblkcnt = XFS_B_TO_FSB(args.dp->i_mount, valuelen);
2726 retval = xfs_attr_rmtval_get(&args);
2727 if (retval)
2728 return retval;
2729 retval = context->put_listent(context,
Christoph Hellwigad9b4632008-06-23 13:23:48 +10002730 entry->flags,
Dave Chinnera9273ca2010-01-20 10:47:48 +11002731 name_rmt->name,
Tim Shimmin726801b2006-09-28 11:01:37 +10002732 (int)name_rmt->namelen,
2733 valuelen,
Dave Chinnera9273ca2010-01-20 10:47:48 +11002734 args.value);
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10002735 kmem_free(args.value);
Christoph Hellwigad9b4632008-06-23 13:23:48 +10002736 } else {
Tim Shimmin726801b2006-09-28 11:01:37 +10002737 retval = context->put_listent(context,
Christoph Hellwigad9b4632008-06-23 13:23:48 +10002738 entry->flags,
Dave Chinnera9273ca2010-01-20 10:47:48 +11002739 name_rmt->name,
Tim Shimmin726801b2006-09-28 11:01:37 +10002740 (int)name_rmt->namelen,
2741 valuelen,
2742 NULL);
2743 }
2744 if (retval)
2745 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 }
Tim Shimmin726801b2006-09-28 11:01:37 +10002747 if (context->seen_enough)
2748 break;
2749 cursor->offset++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002751 trace_xfs_attr_list_leaf_end(context);
Dave Chinner517c2222013-04-24 18:58:55 +10002752 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753}
2754
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755
2756/*========================================================================
2757 * Manage the INCOMPLETE flag in a leaf entry
2758 *========================================================================*/
2759
2760/*
2761 * Clear the INCOMPLETE flag on an entry in a leaf block.
2762 */
2763int
Dave Chinner517c2222013-04-24 18:58:55 +10002764xfs_attr3_leaf_clearflag(
2765 struct xfs_da_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766{
Dave Chinner517c2222013-04-24 18:58:55 +10002767 struct xfs_attr_leafblock *leaf;
2768 struct xfs_attr_leaf_entry *entry;
2769 struct xfs_attr_leaf_name_remote *name_rmt;
2770 struct xfs_buf *bp;
2771 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772#ifdef DEBUG
Dave Chinner517c2222013-04-24 18:58:55 +10002773 struct xfs_attr3_icleaf_hdr ichdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 xfs_attr_leaf_name_local_t *name_loc;
2775 int namelen;
2776 char *name;
2777#endif /* DEBUG */
2778
Dave Chinner5a5881c2012-03-22 05:15:13 +00002779 trace_xfs_attr_leaf_clearflag(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 /*
2781 * Set up the operation.
2782 */
Dave Chinner517c2222013-04-24 18:58:55 +10002783 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp);
Dave Chinnerad14c332012-11-12 22:54:16 +11002784 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 return(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786
Dave Chinner1d9025e2012-06-22 18:50:14 +10002787 leaf = bp->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10002788 entry = &xfs_attr3_leaf_entryp(leaf)[args->index];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 ASSERT(entry->flags & XFS_ATTR_INCOMPLETE);
2790
2791#ifdef DEBUG
Dave Chinner517c2222013-04-24 18:58:55 +10002792 xfs_attr3_leaf_hdr_from_disk(&ichdr, leaf);
2793 ASSERT(args->index < ichdr.count);
2794 ASSERT(args->index >= 0);
2795
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 if (entry->flags & XFS_ATTR_LOCAL) {
Dave Chinner517c2222013-04-24 18:58:55 +10002797 name_loc = xfs_attr3_leaf_name_local(leaf, args->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 namelen = name_loc->namelen;
2799 name = (char *)name_loc->nameval;
2800 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10002801 name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 namelen = name_rmt->namelen;
2803 name = (char *)name_rmt->name;
2804 }
Nathan Scott6b19f2d2006-03-17 17:29:02 +11002805 ASSERT(be32_to_cpu(entry->hashval) == args->hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 ASSERT(namelen == args->namelen);
2807 ASSERT(memcmp(name, args->name, namelen) == 0);
2808#endif /* DEBUG */
2809
2810 entry->flags &= ~XFS_ATTR_INCOMPLETE;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002811 xfs_trans_log_buf(args->trans, bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 XFS_DA_LOGRANGE(leaf, entry, sizeof(*entry)));
2813
2814 if (args->rmtblkno) {
2815 ASSERT((entry->flags & XFS_ATTR_LOCAL) == 0);
Dave Chinner517c2222013-04-24 18:58:55 +10002816 name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index);
Nathan Scottc0f054e2006-03-17 17:29:18 +11002817 name_rmt->valueblk = cpu_to_be32(args->rmtblkno);
2818 name_rmt->valuelen = cpu_to_be32(args->valuelen);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002819 xfs_trans_log_buf(args->trans, bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 XFS_DA_LOGRANGE(leaf, name_rmt, sizeof(*name_rmt)));
2821 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822
2823 /*
2824 * Commit the flag value change and start the next trans in series.
2825 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10002826 return xfs_trans_roll(&args->trans, args->dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827}
2828
2829/*
2830 * Set the INCOMPLETE flag on an entry in a leaf block.
2831 */
2832int
Dave Chinner517c2222013-04-24 18:58:55 +10002833xfs_attr3_leaf_setflag(
2834 struct xfs_da_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835{
Dave Chinner517c2222013-04-24 18:58:55 +10002836 struct xfs_attr_leafblock *leaf;
2837 struct xfs_attr_leaf_entry *entry;
2838 struct xfs_attr_leaf_name_remote *name_rmt;
2839 struct xfs_buf *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 int error;
Dave Chinner517c2222013-04-24 18:58:55 +10002841#ifdef DEBUG
2842 struct xfs_attr3_icleaf_hdr ichdr;
2843#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844
Dave Chinner5a5881c2012-03-22 05:15:13 +00002845 trace_xfs_attr_leaf_setflag(args);
2846
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 /*
2848 * Set up the operation.
2849 */
Dave Chinner517c2222013-04-24 18:58:55 +10002850 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp);
Dave Chinnerad14c332012-11-12 22:54:16 +11002851 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 return(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853
Dave Chinner1d9025e2012-06-22 18:50:14 +10002854 leaf = bp->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10002855#ifdef DEBUG
2856 xfs_attr3_leaf_hdr_from_disk(&ichdr, leaf);
2857 ASSERT(args->index < ichdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 ASSERT(args->index >= 0);
Dave Chinner517c2222013-04-24 18:58:55 +10002859#endif
2860 entry = &xfs_attr3_leaf_entryp(leaf)[args->index];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861
2862 ASSERT((entry->flags & XFS_ATTR_INCOMPLETE) == 0);
2863 entry->flags |= XFS_ATTR_INCOMPLETE;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002864 xfs_trans_log_buf(args->trans, bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 XFS_DA_LOGRANGE(leaf, entry, sizeof(*entry)));
2866 if ((entry->flags & XFS_ATTR_LOCAL) == 0) {
Dave Chinner517c2222013-04-24 18:58:55 +10002867 name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 name_rmt->valueblk = 0;
2869 name_rmt->valuelen = 0;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002870 xfs_trans_log_buf(args->trans, bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 XFS_DA_LOGRANGE(leaf, name_rmt, sizeof(*name_rmt)));
2872 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873
2874 /*
2875 * Commit the flag value change and start the next trans in series.
2876 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10002877 return xfs_trans_roll(&args->trans, args->dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878}
2879
2880/*
2881 * In a single transaction, clear the INCOMPLETE flag on the leaf entry
2882 * given by args->blkno/index and set the INCOMPLETE flag on the leaf
2883 * entry given by args->blkno2/index2.
2884 *
2885 * Note that they could be in different blocks, or in the same block.
2886 */
2887int
Dave Chinner517c2222013-04-24 18:58:55 +10002888xfs_attr3_leaf_flipflags(
2889 struct xfs_da_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890{
Dave Chinner517c2222013-04-24 18:58:55 +10002891 struct xfs_attr_leafblock *leaf1;
2892 struct xfs_attr_leafblock *leaf2;
2893 struct xfs_attr_leaf_entry *entry1;
2894 struct xfs_attr_leaf_entry *entry2;
2895 struct xfs_attr_leaf_name_remote *name_rmt;
2896 struct xfs_buf *bp1;
2897 struct xfs_buf *bp2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 int error;
2899#ifdef DEBUG
Dave Chinner517c2222013-04-24 18:58:55 +10002900 struct xfs_attr3_icleaf_hdr ichdr1;
2901 struct xfs_attr3_icleaf_hdr ichdr2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 xfs_attr_leaf_name_local_t *name_loc;
2903 int namelen1, namelen2;
2904 char *name1, *name2;
2905#endif /* DEBUG */
2906
Dave Chinner5a5881c2012-03-22 05:15:13 +00002907 trace_xfs_attr_leaf_flipflags(args);
2908
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 /*
2910 * Read the block containing the "old" attr
2911 */
Dave Chinner517c2222013-04-24 18:58:55 +10002912 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp1);
Dave Chinnerad14c332012-11-12 22:54:16 +11002913 if (error)
2914 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915
2916 /*
2917 * Read the block containing the "new" attr, if it is different
2918 */
2919 if (args->blkno2 != args->blkno) {
Dave Chinner517c2222013-04-24 18:58:55 +10002920 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno2,
Dave Chinnerad14c332012-11-12 22:54:16 +11002921 -1, &bp2);
2922 if (error)
2923 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 } else {
2925 bp2 = bp1;
2926 }
2927
Dave Chinner1d9025e2012-06-22 18:50:14 +10002928 leaf1 = bp1->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10002929 entry1 = &xfs_attr3_leaf_entryp(leaf1)[args->index];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930
Dave Chinner1d9025e2012-06-22 18:50:14 +10002931 leaf2 = bp2->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10002932 entry2 = &xfs_attr3_leaf_entryp(leaf2)[args->index2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933
2934#ifdef DEBUG
Dave Chinner517c2222013-04-24 18:58:55 +10002935 xfs_attr3_leaf_hdr_from_disk(&ichdr1, leaf1);
2936 ASSERT(args->index < ichdr1.count);
2937 ASSERT(args->index >= 0);
2938
2939 xfs_attr3_leaf_hdr_from_disk(&ichdr2, leaf2);
2940 ASSERT(args->index2 < ichdr2.count);
2941 ASSERT(args->index2 >= 0);
2942
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 if (entry1->flags & XFS_ATTR_LOCAL) {
Dave Chinner517c2222013-04-24 18:58:55 +10002944 name_loc = xfs_attr3_leaf_name_local(leaf1, args->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 namelen1 = name_loc->namelen;
2946 name1 = (char *)name_loc->nameval;
2947 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10002948 name_rmt = xfs_attr3_leaf_name_remote(leaf1, args->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 namelen1 = name_rmt->namelen;
2950 name1 = (char *)name_rmt->name;
2951 }
2952 if (entry2->flags & XFS_ATTR_LOCAL) {
Dave Chinner517c2222013-04-24 18:58:55 +10002953 name_loc = xfs_attr3_leaf_name_local(leaf2, args->index2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 namelen2 = name_loc->namelen;
2955 name2 = (char *)name_loc->nameval;
2956 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10002957 name_rmt = xfs_attr3_leaf_name_remote(leaf2, args->index2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 namelen2 = name_rmt->namelen;
2959 name2 = (char *)name_rmt->name;
2960 }
Nathan Scott6b19f2d2006-03-17 17:29:02 +11002961 ASSERT(be32_to_cpu(entry1->hashval) == be32_to_cpu(entry2->hashval));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 ASSERT(namelen1 == namelen2);
2963 ASSERT(memcmp(name1, name2, namelen1) == 0);
2964#endif /* DEBUG */
2965
2966 ASSERT(entry1->flags & XFS_ATTR_INCOMPLETE);
2967 ASSERT((entry2->flags & XFS_ATTR_INCOMPLETE) == 0);
2968
2969 entry1->flags &= ~XFS_ATTR_INCOMPLETE;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002970 xfs_trans_log_buf(args->trans, bp1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 XFS_DA_LOGRANGE(leaf1, entry1, sizeof(*entry1)));
2972 if (args->rmtblkno) {
2973 ASSERT((entry1->flags & XFS_ATTR_LOCAL) == 0);
Dave Chinner517c2222013-04-24 18:58:55 +10002974 name_rmt = xfs_attr3_leaf_name_remote(leaf1, args->index);
Nathan Scottc0f054e2006-03-17 17:29:18 +11002975 name_rmt->valueblk = cpu_to_be32(args->rmtblkno);
2976 name_rmt->valuelen = cpu_to_be32(args->valuelen);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002977 xfs_trans_log_buf(args->trans, bp1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 XFS_DA_LOGRANGE(leaf1, name_rmt, sizeof(*name_rmt)));
2979 }
2980
2981 entry2->flags |= XFS_ATTR_INCOMPLETE;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002982 xfs_trans_log_buf(args->trans, bp2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 XFS_DA_LOGRANGE(leaf2, entry2, sizeof(*entry2)));
2984 if ((entry2->flags & XFS_ATTR_LOCAL) == 0) {
Dave Chinner517c2222013-04-24 18:58:55 +10002985 name_rmt = xfs_attr3_leaf_name_remote(leaf2, args->index2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 name_rmt->valueblk = 0;
2987 name_rmt->valuelen = 0;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002988 xfs_trans_log_buf(args->trans, bp2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 XFS_DA_LOGRANGE(leaf2, name_rmt, sizeof(*name_rmt)));
2990 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991
2992 /*
2993 * Commit the flag value change and start the next trans in series.
2994 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10002995 error = xfs_trans_roll(&args->trans, args->dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996
Dave Chinner517c2222013-04-24 18:58:55 +10002997 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998}
2999
3000/*========================================================================
3001 * Indiscriminately delete the entire attribute fork
3002 *========================================================================*/
3003
3004/*
3005 * Recurse (gasp!) through the attribute nodes until we find leaves.
3006 * We're doing a depth-first traversal in order to invalidate everything.
3007 */
3008int
Dave Chinner517c2222013-04-24 18:58:55 +10003009xfs_attr3_root_inactive(
3010 struct xfs_trans **trans,
3011 struct xfs_inode *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012{
Dave Chinner517c2222013-04-24 18:58:55 +10003013 struct xfs_da_blkinfo *info;
3014 struct xfs_buf *bp;
3015 xfs_daddr_t blkno;
3016 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017
3018 /*
3019 * Read block 0 to see what we have to work with.
3020 * We only get here if we have extents, since we remove
3021 * the extents in reverse order the extent containing
3022 * block 0 must still be there.
3023 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10003024 error = xfs_da3_node_read(*trans, dp, 0, -1, &bp, XFS_ATTR_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 if (error)
Dave Chinner517c2222013-04-24 18:58:55 +10003026 return error;
3027 blkno = bp->b_bn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028
3029 /*
3030 * Invalidate the tree, even if the "tree" is only a single leaf block.
3031 * This is a depth-first traversal!
3032 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10003033 info = bp->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10003034 switch (info->magic) {
3035 case cpu_to_be16(XFS_DA_NODE_MAGIC):
3036 case cpu_to_be16(XFS_DA3_NODE_MAGIC):
3037 error = xfs_attr3_node_inactive(trans, dp, bp, 1);
3038 break;
3039 case cpu_to_be16(XFS_ATTR_LEAF_MAGIC):
3040 case cpu_to_be16(XFS_ATTR3_LEAF_MAGIC):
3041 error = xfs_attr3_leaf_inactive(trans, dp, bp);
3042 break;
3043 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 error = XFS_ERROR(EIO);
Dave Chinner1d9025e2012-06-22 18:50:14 +10003045 xfs_trans_brelse(*trans, bp);
Dave Chinner517c2222013-04-24 18:58:55 +10003046 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 }
3048 if (error)
Dave Chinner517c2222013-04-24 18:58:55 +10003049 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050
3051 /*
3052 * Invalidate the incore copy of the root block.
3053 */
3054 error = xfs_da_get_buf(*trans, dp, 0, blkno, &bp, XFS_ATTR_FORK);
3055 if (error)
Dave Chinner517c2222013-04-24 18:58:55 +10003056 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10003057 xfs_trans_binval(*trans, bp); /* remove from cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058 /*
3059 * Commit the invalidate and start the next transaction.
3060 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10003061 error = xfs_trans_roll(trans, dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062
Dave Chinner517c2222013-04-24 18:58:55 +10003063 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064}
3065
3066/*
3067 * Recurse (gasp!) through the attribute nodes until we find leaves.
3068 * We're doing a depth-first traversal in order to invalidate everything.
3069 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10003070STATIC int
Dave Chinner517c2222013-04-24 18:58:55 +10003071xfs_attr3_node_inactive(
Dave Chinner1d9025e2012-06-22 18:50:14 +10003072 struct xfs_trans **trans,
3073 struct xfs_inode *dp,
3074 struct xfs_buf *bp,
3075 int level)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076{
3077 xfs_da_blkinfo_t *info;
3078 xfs_da_intnode_t *node;
3079 xfs_dablk_t child_fsb;
3080 xfs_daddr_t parent_blkno, child_blkno;
Dave Chinner517c2222013-04-24 18:58:55 +10003081 int error, i;
Dave Chinner1d9025e2012-06-22 18:50:14 +10003082 struct xfs_buf *child_bp;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10003083 struct xfs_da_node_entry *btree;
Dave Chinner517c2222013-04-24 18:58:55 +10003084 struct xfs_da3_icnode_hdr ichdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085
3086 /*
3087 * Since this code is recursive (gasp!) we must protect ourselves.
3088 */
3089 if (level > XFS_DA_NODE_MAXDEPTH) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10003090 xfs_trans_brelse(*trans, bp); /* no locks for later trans */
Dave Chinner517c2222013-04-24 18:58:55 +10003091 return XFS_ERROR(EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092 }
3093
Dave Chinner1d9025e2012-06-22 18:50:14 +10003094 node = bp->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10003095 xfs_da3_node_hdr_from_disk(&ichdr, node);
3096 parent_blkno = bp->b_bn;
3097 if (!ichdr.count) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10003098 xfs_trans_brelse(*trans, bp);
Dave Chinner517c2222013-04-24 18:58:55 +10003099 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +10003101 btree = xfs_da3_node_tree_p(node);
3102 child_fsb = be32_to_cpu(btree[0].before);
Dave Chinner1d9025e2012-06-22 18:50:14 +10003103 xfs_trans_brelse(*trans, bp); /* no locks for later trans */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104
3105 /*
3106 * If this is the node level just above the leaves, simply loop
3107 * over the leaves removing all of them. If this is higher up
3108 * in the tree, recurse downward.
3109 */
Dave Chinner517c2222013-04-24 18:58:55 +10003110 for (i = 0; i < ichdr.count; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 /*
3112 * Read the subsidiary block to see what we have to work with.
3113 * Don't do this in a transaction. This is a depth-first
3114 * traversal of the tree so we may deal with many blocks
3115 * before we come back to this one.
3116 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10003117 error = xfs_da3_node_read(*trans, dp, child_fsb, -2, &child_bp,
Dave Chinnerd9392a42012-11-12 22:54:17 +11003118 XFS_ATTR_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 if (error)
3120 return(error);
3121 if (child_bp) {
3122 /* save for re-read later */
Dave Chinner1d9025e2012-06-22 18:50:14 +10003123 child_blkno = XFS_BUF_ADDR(child_bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124
3125 /*
3126 * Invalidate the subtree, however we have to.
3127 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10003128 info = child_bp->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10003129 switch (info->magic) {
3130 case cpu_to_be16(XFS_DA_NODE_MAGIC):
3131 case cpu_to_be16(XFS_DA3_NODE_MAGIC):
3132 error = xfs_attr3_node_inactive(trans, dp,
3133 child_bp, level + 1);
3134 break;
3135 case cpu_to_be16(XFS_ATTR_LEAF_MAGIC):
3136 case cpu_to_be16(XFS_ATTR3_LEAF_MAGIC):
3137 error = xfs_attr3_leaf_inactive(trans, dp,
3138 child_bp);
3139 break;
3140 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 error = XFS_ERROR(EIO);
Dave Chinner1d9025e2012-06-22 18:50:14 +10003142 xfs_trans_brelse(*trans, child_bp);
Dave Chinner517c2222013-04-24 18:58:55 +10003143 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144 }
3145 if (error)
Dave Chinner517c2222013-04-24 18:58:55 +10003146 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147
3148 /*
3149 * Remove the subsidiary block from the cache
3150 * and from the log.
3151 */
3152 error = xfs_da_get_buf(*trans, dp, 0, child_blkno,
3153 &child_bp, XFS_ATTR_FORK);
3154 if (error)
Dave Chinner517c2222013-04-24 18:58:55 +10003155 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10003156 xfs_trans_binval(*trans, child_bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 }
3158
3159 /*
3160 * If we're not done, re-read the parent to get the next
3161 * child block number.
3162 */
Dave Chinner517c2222013-04-24 18:58:55 +10003163 if (i + 1 < ichdr.count) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10003164 error = xfs_da3_node_read(*trans, dp, 0, parent_blkno,
Dave Chinnerd9392a42012-11-12 22:54:17 +11003165 &bp, XFS_ATTR_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 if (error)
Dave Chinner517c2222013-04-24 18:58:55 +10003167 return error;
3168 child_fsb = be32_to_cpu(btree[i + 1].before);
Dave Chinner1d9025e2012-06-22 18:50:14 +10003169 xfs_trans_brelse(*trans, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 }
3171 /*
3172 * Atomically commit the whole invalidate stuff.
3173 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10003174 error = xfs_trans_roll(trans, dp);
3175 if (error)
Dave Chinner517c2222013-04-24 18:58:55 +10003176 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177 }
3178
Dave Chinner517c2222013-04-24 18:58:55 +10003179 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180}
3181
3182/*
3183 * Invalidate all of the "remote" value regions pointed to by a particular
3184 * leaf block.
3185 * Note that we must release the lock on the buffer so that we are not
3186 * caught holding something that the logging code wants to flush to disk.
3187 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10003188STATIC int
Dave Chinner517c2222013-04-24 18:58:55 +10003189xfs_attr3_leaf_inactive(
3190 struct xfs_trans **trans,
3191 struct xfs_inode *dp,
3192 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193{
Dave Chinner517c2222013-04-24 18:58:55 +10003194 struct xfs_attr_leafblock *leaf;
3195 struct xfs_attr3_icleaf_hdr ichdr;
3196 struct xfs_attr_leaf_entry *entry;
3197 struct xfs_attr_leaf_name_remote *name_rmt;
3198 struct xfs_attr_inactive_list *list;
3199 struct xfs_attr_inactive_list *lp;
3200 int error;
3201 int count;
3202 int size;
3203 int tmp;
3204 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205
Dave Chinner1d9025e2012-06-22 18:50:14 +10003206 leaf = bp->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10003207 xfs_attr3_leaf_hdr_from_disk(&ichdr, leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208
3209 /*
3210 * Count the number of "remote" value extents.
3211 */
3212 count = 0;
Dave Chinner517c2222013-04-24 18:58:55 +10003213 entry = xfs_attr3_leaf_entryp(leaf);
3214 for (i = 0; i < ichdr.count; entry++, i++) {
Nathan Scott6b19f2d2006-03-17 17:29:02 +11003215 if (be16_to_cpu(entry->nameidx) &&
3216 ((entry->flags & XFS_ATTR_LOCAL) == 0)) {
Dave Chinner517c2222013-04-24 18:58:55 +10003217 name_rmt = xfs_attr3_leaf_name_remote(leaf, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218 if (name_rmt->valueblk)
3219 count++;
3220 }
3221 }
3222
3223 /*
3224 * If there are no "remote" values, we're done.
3225 */
3226 if (count == 0) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10003227 xfs_trans_brelse(*trans, bp);
Dave Chinner517c2222013-04-24 18:58:55 +10003228 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229 }
3230
3231 /*
3232 * Allocate storage for a list of all the "remote" value extents.
3233 */
3234 size = count * sizeof(xfs_attr_inactive_list_t);
Dave Chinner517c2222013-04-24 18:58:55 +10003235 list = kmem_alloc(size, KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236
3237 /*
3238 * Identify each of the "remote" value extents.
3239 */
3240 lp = list;
Dave Chinner517c2222013-04-24 18:58:55 +10003241 entry = xfs_attr3_leaf_entryp(leaf);
3242 for (i = 0; i < ichdr.count; entry++, i++) {
Nathan Scott6b19f2d2006-03-17 17:29:02 +11003243 if (be16_to_cpu(entry->nameidx) &&
3244 ((entry->flags & XFS_ATTR_LOCAL) == 0)) {
Dave Chinner517c2222013-04-24 18:58:55 +10003245 name_rmt = xfs_attr3_leaf_name_remote(leaf, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 if (name_rmt->valueblk) {
Nathan Scottd7929ff2006-03-17 17:29:36 +11003247 lp->valueblk = be32_to_cpu(name_rmt->valueblk);
3248 lp->valuelen = XFS_B_TO_FSB(dp->i_mount,
3249 be32_to_cpu(name_rmt->valuelen));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 lp++;
3251 }
3252 }
3253 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10003254 xfs_trans_brelse(*trans, bp); /* unlock for trans. in freextent() */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255
3256 /*
3257 * Invalidate each of the "remote" value extents.
3258 */
3259 error = 0;
3260 for (lp = list, i = 0; i < count; i++, lp++) {
Dave Chinner517c2222013-04-24 18:58:55 +10003261 tmp = xfs_attr3_leaf_freextent(trans, dp,
Nathan Scottd7929ff2006-03-17 17:29:36 +11003262 lp->valueblk, lp->valuelen);
3263
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264 if (error == 0)
3265 error = tmp; /* save only the 1st errno */
3266 }
3267
Dave Chinner517c2222013-04-24 18:58:55 +10003268 kmem_free(list);
3269 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270}
3271
3272/*
3273 * Look at all the extents for this logical region,
3274 * invalidate any buffers that are incore/in transactions.
3275 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10003276STATIC int
Dave Chinner517c2222013-04-24 18:58:55 +10003277xfs_attr3_leaf_freextent(
3278 struct xfs_trans **trans,
3279 struct xfs_inode *dp,
3280 xfs_dablk_t blkno,
3281 int blkcnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282{
Dave Chinner517c2222013-04-24 18:58:55 +10003283 struct xfs_bmbt_irec map;
3284 struct xfs_buf *bp;
3285 xfs_dablk_t tblkno;
3286 xfs_daddr_t dblkno;
3287 int tblkcnt;
3288 int dblkcnt;
3289 int nmap;
3290 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291
3292 /*
3293 * Roll through the "value", invalidating the attribute value's
3294 * blocks.
3295 */
3296 tblkno = blkno;
3297 tblkcnt = blkcnt;
3298 while (tblkcnt > 0) {
3299 /*
3300 * Try to remember where we decided to put the value.
3301 */
3302 nmap = 1;
Dave Chinner5c8ed202011-09-18 20:40:45 +00003303 error = xfs_bmapi_read(dp, (xfs_fileoff_t)tblkno, tblkcnt,
3304 &map, &nmap, XFS_BMAPI_ATTRFORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 if (error) {
3306 return(error);
3307 }
3308 ASSERT(nmap == 1);
3309 ASSERT(map.br_startblock != DELAYSTARTBLOCK);
3310
3311 /*
3312 * If it's a hole, these are already unmapped
3313 * so there's nothing to invalidate.
3314 */
3315 if (map.br_startblock != HOLESTARTBLOCK) {
3316
3317 dblkno = XFS_FSB_TO_DADDR(dp->i_mount,
3318 map.br_startblock);
3319 dblkcnt = XFS_FSB_TO_BB(dp->i_mount,
3320 map.br_blockcount);
3321 bp = xfs_trans_get_buf(*trans,
3322 dp->i_mount->m_ddev_targp,
Dave Chinnera8acad72012-04-23 15:58:54 +10003323 dblkno, dblkcnt, 0);
Chandra Seetharaman2a30f36d2011-09-20 13:56:55 +00003324 if (!bp)
3325 return ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326 xfs_trans_binval(*trans, bp);
3327 /*
3328 * Roll to next transaction.
3329 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10003330 error = xfs_trans_roll(trans, dp);
3331 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332 return (error);
3333 }
3334
3335 tblkno += map.br_blockcount;
3336 tblkcnt -= map.br_blockcount;
3337 }
3338
3339 return(0);
3340}