blob: 99e0f5749dba9f5f086ee2fbfba756c50c9badf5 [file] [log] [blame]
Dave Chinner0b61f8a2018-06-05 19:42:14 -07001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Nathan Scott7b718762005-11-02 14:58:39 +11003 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
Dave Chinner517c2222013-04-24 18:58:55 +10004 * Copyright (c) 2013 Red Hat, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11005 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +11008#include "xfs_fs.h"
Dave Chinner632b89e2013-10-29 22:11:58 +11009#include "xfs_shared.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110010#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110011#include "xfs_log_format.h"
12#include "xfs_trans_resv.h"
Nathan Scotta844f452005-11-02 14:38:42 +110013#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include "xfs_sb.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include "xfs_mount.h"
Dave Chinner57062782013-10-15 09:17:51 +110016#include "xfs_da_format.h"
Nathan Scotta844f452005-11-02 14:38:42 +110017#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs_inode.h"
Dave Chinner239880e2013-10-23 10:50:10 +110019#include "xfs_trans.h"
Nathan Scotta844f452005-11-02 14:38:42 +110020#include "xfs_inode_item.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110021#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_bmap.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110023#include "xfs_attr_sf.h"
24#include "xfs_attr_remote.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_attr.h"
26#include "xfs_attr_leaf.h"
27#include "xfs_error.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000028#include "xfs_trace.h"
Dave Chinner517c2222013-04-24 18:58:55 +100029#include "xfs_buf_item.h"
30#include "xfs_cksum.h"
Dave Chinner4bceb182013-10-29 22:11:51 +110031#include "xfs_dir2.h"
Brian Fostera45086e2015-10-12 15:59:25 +110032#include "xfs_log.h"
Dave Chinner517c2222013-04-24 18:58:55 +100033
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35/*
36 * xfs_attr_leaf.c
37 *
38 * Routines to implement leaf blocks of attributes as Btrees of hashed names.
39 */
40
41/*========================================================================
42 * Function prototypes for the kernel.
43 *========================================================================*/
44
45/*
46 * Routines used for growing the Btree.
47 */
Dave Chinner517c2222013-04-24 18:58:55 +100048STATIC int xfs_attr3_leaf_create(struct xfs_da_args *args,
49 xfs_dablk_t which_block, struct xfs_buf **bpp);
50STATIC int xfs_attr3_leaf_add_work(struct xfs_buf *leaf_buffer,
51 struct xfs_attr3_icleaf_hdr *ichdr,
52 struct xfs_da_args *args, int freemap_index);
53STATIC void xfs_attr3_leaf_compact(struct xfs_da_args *args,
54 struct xfs_attr3_icleaf_hdr *ichdr,
55 struct xfs_buf *leaf_buffer);
56STATIC void xfs_attr3_leaf_rebalance(xfs_da_state_t *state,
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 xfs_da_state_blk_t *blk1,
58 xfs_da_state_blk_t *blk2);
Dave Chinner517c2222013-04-24 18:58:55 +100059STATIC int xfs_attr3_leaf_figure_balance(xfs_da_state_t *state,
60 xfs_da_state_blk_t *leaf_blk_1,
61 struct xfs_attr3_icleaf_hdr *ichdr1,
62 xfs_da_state_blk_t *leaf_blk_2,
63 struct xfs_attr3_icleaf_hdr *ichdr2,
64 int *number_entries_in_blk1,
65 int *number_usedbytes_in_blk1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67/*
68 * Utility routines.
69 */
Dave Chinnerc2c4c472014-06-06 15:21:45 +100070STATIC void xfs_attr3_leaf_moveents(struct xfs_da_args *args,
71 struct xfs_attr_leafblock *src_leaf,
Dave Chinner517c2222013-04-24 18:58:55 +100072 struct xfs_attr3_icleaf_hdr *src_ichdr, int src_start,
73 struct xfs_attr_leafblock *dst_leaf,
74 struct xfs_attr3_icleaf_hdr *dst_ichdr, int dst_start,
Dave Chinnerc2c4c472014-06-06 15:21:45 +100075 int move_count);
Christoph Hellwigba0f32d2005-06-21 15:36:52 +100076STATIC int xfs_attr_leaf_entsize(xfs_attr_leafblock_t *leaf, int index);
Tim Shimmin726801b2006-09-28 11:01:37 +100077
Brian Fostere87021a2015-04-13 11:27:10 +100078/*
79 * attr3 block 'firstused' conversion helpers.
80 *
81 * firstused refers to the offset of the first used byte of the nameval region
82 * of an attr leaf block. The region starts at the tail of the block and expands
83 * backwards towards the middle. As such, firstused is initialized to the block
84 * size for an empty leaf block and is reduced from there.
85 *
86 * The attr3 block size is pegged to the fsb size and the maximum fsb is 64k.
87 * The in-core firstused field is 32-bit and thus supports the maximum fsb size.
88 * The on-disk field is only 16-bit, however, and overflows at 64k. Since this
89 * only occurs at exactly 64k, we use zero as a magic on-disk value to represent
90 * the attr block size. The following helpers manage the conversion between the
91 * in-core and on-disk formats.
92 */
93
94static void
95xfs_attr3_leaf_firstused_from_disk(
96 struct xfs_da_geometry *geo,
97 struct xfs_attr3_icleaf_hdr *to,
98 struct xfs_attr_leafblock *from)
99{
100 struct xfs_attr3_leaf_hdr *hdr3;
101
102 if (from->hdr.info.magic == cpu_to_be16(XFS_ATTR3_LEAF_MAGIC)) {
103 hdr3 = (struct xfs_attr3_leaf_hdr *) from;
104 to->firstused = be16_to_cpu(hdr3->firstused);
105 } else {
106 to->firstused = be16_to_cpu(from->hdr.firstused);
107 }
108
109 /*
110 * Convert from the magic fsb size value to actual blocksize. This
111 * should only occur for empty blocks when the block size overflows
112 * 16-bits.
113 */
114 if (to->firstused == XFS_ATTR3_LEAF_NULLOFF) {
115 ASSERT(!to->count && !to->usedbytes);
116 ASSERT(geo->blksize > USHRT_MAX);
117 to->firstused = geo->blksize;
118 }
119}
120
121static void
122xfs_attr3_leaf_firstused_to_disk(
123 struct xfs_da_geometry *geo,
124 struct xfs_attr_leafblock *to,
125 struct xfs_attr3_icleaf_hdr *from)
126{
127 struct xfs_attr3_leaf_hdr *hdr3;
128 uint32_t firstused;
129
130 /* magic value should only be seen on disk */
131 ASSERT(from->firstused != XFS_ATTR3_LEAF_NULLOFF);
132
133 /*
134 * Scale down the 32-bit in-core firstused value to the 16-bit on-disk
135 * value. This only overflows at the max supported value of 64k. Use the
136 * magic on-disk value to represent block size in this case.
137 */
138 firstused = from->firstused;
139 if (firstused > USHRT_MAX) {
140 ASSERT(from->firstused == geo->blksize);
141 firstused = XFS_ATTR3_LEAF_NULLOFF;
142 }
143
144 if (from->magic == XFS_ATTR3_LEAF_MAGIC) {
145 hdr3 = (struct xfs_attr3_leaf_hdr *) to;
146 hdr3->firstused = cpu_to_be16(firstused);
147 } else {
148 to->hdr.firstused = cpu_to_be16(firstused);
149 }
150}
151
Dave Chinner517c2222013-04-24 18:58:55 +1000152void
153xfs_attr3_leaf_hdr_from_disk(
Brian Foster2f661242015-04-13 11:26:02 +1000154 struct xfs_da_geometry *geo,
Dave Chinner517c2222013-04-24 18:58:55 +1000155 struct xfs_attr3_icleaf_hdr *to,
156 struct xfs_attr_leafblock *from)
157{
158 int i;
159
160 ASSERT(from->hdr.info.magic == cpu_to_be16(XFS_ATTR_LEAF_MAGIC) ||
161 from->hdr.info.magic == cpu_to_be16(XFS_ATTR3_LEAF_MAGIC));
162
163 if (from->hdr.info.magic == cpu_to_be16(XFS_ATTR3_LEAF_MAGIC)) {
164 struct xfs_attr3_leaf_hdr *hdr3 = (struct xfs_attr3_leaf_hdr *)from;
165
166 to->forw = be32_to_cpu(hdr3->info.hdr.forw);
167 to->back = be32_to_cpu(hdr3->info.hdr.back);
168 to->magic = be16_to_cpu(hdr3->info.hdr.magic);
169 to->count = be16_to_cpu(hdr3->count);
170 to->usedbytes = be16_to_cpu(hdr3->usedbytes);
Brian Fostere87021a2015-04-13 11:27:10 +1000171 xfs_attr3_leaf_firstused_from_disk(geo, to, from);
Dave Chinner517c2222013-04-24 18:58:55 +1000172 to->holes = hdr3->holes;
173
174 for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
175 to->freemap[i].base = be16_to_cpu(hdr3->freemap[i].base);
176 to->freemap[i].size = be16_to_cpu(hdr3->freemap[i].size);
177 }
178 return;
179 }
180 to->forw = be32_to_cpu(from->hdr.info.forw);
181 to->back = be32_to_cpu(from->hdr.info.back);
182 to->magic = be16_to_cpu(from->hdr.info.magic);
183 to->count = be16_to_cpu(from->hdr.count);
184 to->usedbytes = be16_to_cpu(from->hdr.usedbytes);
Brian Fostere87021a2015-04-13 11:27:10 +1000185 xfs_attr3_leaf_firstused_from_disk(geo, to, from);
Dave Chinner517c2222013-04-24 18:58:55 +1000186 to->holes = from->hdr.holes;
187
188 for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
189 to->freemap[i].base = be16_to_cpu(from->hdr.freemap[i].base);
190 to->freemap[i].size = be16_to_cpu(from->hdr.freemap[i].size);
191 }
192}
193
194void
195xfs_attr3_leaf_hdr_to_disk(
Brian Foster2f661242015-04-13 11:26:02 +1000196 struct xfs_da_geometry *geo,
Dave Chinner517c2222013-04-24 18:58:55 +1000197 struct xfs_attr_leafblock *to,
198 struct xfs_attr3_icleaf_hdr *from)
199{
Brian Fostere87021a2015-04-13 11:27:10 +1000200 int i;
Dave Chinner517c2222013-04-24 18:58:55 +1000201
202 ASSERT(from->magic == XFS_ATTR_LEAF_MAGIC ||
203 from->magic == XFS_ATTR3_LEAF_MAGIC);
204
205 if (from->magic == XFS_ATTR3_LEAF_MAGIC) {
206 struct xfs_attr3_leaf_hdr *hdr3 = (struct xfs_attr3_leaf_hdr *)to;
207
208 hdr3->info.hdr.forw = cpu_to_be32(from->forw);
209 hdr3->info.hdr.back = cpu_to_be32(from->back);
210 hdr3->info.hdr.magic = cpu_to_be16(from->magic);
211 hdr3->count = cpu_to_be16(from->count);
212 hdr3->usedbytes = cpu_to_be16(from->usedbytes);
Brian Fostere87021a2015-04-13 11:27:10 +1000213 xfs_attr3_leaf_firstused_to_disk(geo, to, from);
Dave Chinner517c2222013-04-24 18:58:55 +1000214 hdr3->holes = from->holes;
215 hdr3->pad1 = 0;
216
217 for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
218 hdr3->freemap[i].base = cpu_to_be16(from->freemap[i].base);
219 hdr3->freemap[i].size = cpu_to_be16(from->freemap[i].size);
220 }
221 return;
222 }
223 to->hdr.info.forw = cpu_to_be32(from->forw);
224 to->hdr.info.back = cpu_to_be32(from->back);
225 to->hdr.info.magic = cpu_to_be16(from->magic);
226 to->hdr.count = cpu_to_be16(from->count);
227 to->hdr.usedbytes = cpu_to_be16(from->usedbytes);
Brian Fostere87021a2015-04-13 11:27:10 +1000228 xfs_attr3_leaf_firstused_to_disk(geo, to, from);
Dave Chinner517c2222013-04-24 18:58:55 +1000229 to->hdr.holes = from->holes;
230 to->hdr.pad1 = 0;
231
232 for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
233 to->hdr.freemap[i].base = cpu_to_be16(from->freemap[i].base);
234 to->hdr.freemap[i].size = cpu_to_be16(from->freemap[i].size);
235 }
236}
237
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800238static xfs_failaddr_t
Dave Chinner517c2222013-04-24 18:58:55 +1000239xfs_attr3_leaf_verify(
Darrick J. Wong79a69bf2018-01-16 18:54:12 -0800240 struct xfs_buf *bp)
Dave Chinnerad14c332012-11-12 22:54:16 +1100241{
Darrick J. Wong79a69bf2018-01-16 18:54:12 -0800242 struct xfs_attr3_icleaf_hdr ichdr;
243 struct xfs_mount *mp = bp->b_target->bt_mount;
244 struct xfs_attr_leafblock *leaf = bp->b_addr;
245 struct xfs_perag *pag = bp->b_pag;
246 struct xfs_attr_leaf_entry *entries;
Dave Chinnerad14c332012-11-12 22:54:16 +1100247
Brian Foster2f661242015-04-13 11:26:02 +1000248 xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo, &ichdr, leaf);
Dave Chinner517c2222013-04-24 18:58:55 +1000249
250 if (xfs_sb_version_hascrc(&mp->m_sb)) {
251 struct xfs_da3_node_hdr *hdr3 = bp->b_addr;
252
253 if (ichdr.magic != XFS_ATTR3_LEAF_MAGIC)
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800254 return __this_address;
Dave Chinner517c2222013-04-24 18:58:55 +1000255
Eric Sandeence748ea2015-07-29 11:53:31 +1000256 if (!uuid_equal(&hdr3->info.uuid, &mp->m_sb.sb_meta_uuid))
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800257 return __this_address;
Dave Chinner517c2222013-04-24 18:58:55 +1000258 if (be64_to_cpu(hdr3->info.blkno) != bp->b_bn)
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800259 return __this_address;
Brian Fostera45086e2015-10-12 15:59:25 +1100260 if (!xfs_log_check_lsn(mp, be64_to_cpu(hdr3->info.lsn)))
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800261 return __this_address;
Dave Chinner517c2222013-04-24 18:58:55 +1000262 } else {
263 if (ichdr.magic != XFS_ATTR_LEAF_MAGIC)
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800264 return __this_address;
Dave Chinner517c2222013-04-24 18:58:55 +1000265 }
Eric Sandeen2e1d2332016-12-09 16:49:47 +1100266 /*
267 * In recovery there is a transient state where count == 0 is valid
268 * because we may have transitioned an empty shortform attr to a leaf
269 * if the attr didn't fit in shortform.
270 */
271 if (pag && pag->pagf_init && ichdr.count == 0)
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800272 return __this_address;
Dave Chinner517c2222013-04-24 18:58:55 +1000273
Darrick J. Wong79a69bf2018-01-16 18:54:12 -0800274 /*
275 * firstused is the block offset of the first name info structure.
276 * Make sure it doesn't go off the block or crash into the header.
277 */
278 if (ichdr.firstused > mp->m_attr_geo->blksize)
279 return __this_address;
280 if (ichdr.firstused < xfs_attr3_leaf_hdr_size(leaf))
281 return __this_address;
282
283 /* Make sure the entries array doesn't crash into the name info. */
284 entries = xfs_attr3_leaf_entryp(bp->b_addr);
285 if ((char *)&entries[ichdr.count] >
286 (char *)bp->b_addr + ichdr.firstused)
287 return __this_address;
288
Dave Chinner517c2222013-04-24 18:58:55 +1000289 /* XXX: need to range check rest of attr header values */
290 /* XXX: hash order check? */
291
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800292 return NULL;
Dave Chinner517c2222013-04-24 18:58:55 +1000293}
294
295static void
296xfs_attr3_leaf_write_verify(
297 struct xfs_buf *bp)
298{
299 struct xfs_mount *mp = bp->b_target->bt_mount;
Carlos Maiolinofb1755a2018-01-24 13:38:48 -0800300 struct xfs_buf_log_item *bip = bp->b_log_item;
Dave Chinner517c2222013-04-24 18:58:55 +1000301 struct xfs_attr3_leaf_hdr *hdr3 = bp->b_addr;
Darrick J. Wongbc1a09b2018-01-08 10:51:03 -0800302 xfs_failaddr_t fa;
Dave Chinner517c2222013-04-24 18:58:55 +1000303
Darrick J. Wongbc1a09b2018-01-08 10:51:03 -0800304 fa = xfs_attr3_leaf_verify(bp);
305 if (fa) {
306 xfs_verifier_error(bp, -EFSCORRUPTED, fa);
Dave Chinner517c2222013-04-24 18:58:55 +1000307 return;
308 }
309
310 if (!xfs_sb_version_hascrc(&mp->m_sb))
311 return;
312
313 if (bip)
314 hdr3->info.lsn = cpu_to_be64(bip->bli_item.li_lsn);
315
Eric Sandeenf1dbcd72014-02-27 15:18:23 +1100316 xfs_buf_update_cksum(bp, XFS_ATTR3_LEAF_CRC_OFF);
Dave Chinner517c2222013-04-24 18:58:55 +1000317}
318
319/*
320 * leaf/node format detection on trees is sketchy, so a node read can be done on
321 * leaf level blocks when detection identifies the tree as a node format tree
322 * incorrectly. In this case, we need to swap the verifier to match the correct
323 * format of the block being read.
324 */
325static void
326xfs_attr3_leaf_read_verify(
327 struct xfs_buf *bp)
328{
329 struct xfs_mount *mp = bp->b_target->bt_mount;
Darrick J. Wongbc1a09b2018-01-08 10:51:03 -0800330 xfs_failaddr_t fa;
Dave Chinner517c2222013-04-24 18:58:55 +1000331
Eric Sandeence5028c2014-02-27 15:23:10 +1100332 if (xfs_sb_version_hascrc(&mp->m_sb) &&
333 !xfs_buf_verify_cksum(bp, XFS_ATTR3_LEAF_CRC_OFF))
Darrick J. Wongbc1a09b2018-01-08 10:51:03 -0800334 xfs_verifier_error(bp, -EFSBADCRC, __this_address);
335 else {
336 fa = xfs_attr3_leaf_verify(bp);
337 if (fa)
338 xfs_verifier_error(bp, -EFSCORRUPTED, fa);
339 }
Dave Chinner612cfbf2012-11-14 17:52:32 +1100340}
Dave Chinnerad14c332012-11-12 22:54:16 +1100341
Dave Chinner517c2222013-04-24 18:58:55 +1000342const struct xfs_buf_ops xfs_attr3_leaf_buf_ops = {
Eric Sandeen233135b2016-01-04 16:10:19 +1100343 .name = "xfs_attr3_leaf",
Dave Chinner517c2222013-04-24 18:58:55 +1000344 .verify_read = xfs_attr3_leaf_read_verify,
345 .verify_write = xfs_attr3_leaf_write_verify,
Darrick J. Wongb5572592018-01-08 10:51:08 -0800346 .verify_struct = xfs_attr3_leaf_verify,
Dave Chinner1813dd62012-11-14 17:54:40 +1100347};
Dave Chinner612cfbf2012-11-14 17:52:32 +1100348
Dave Chinnerad14c332012-11-12 22:54:16 +1100349int
Dave Chinner517c2222013-04-24 18:58:55 +1000350xfs_attr3_leaf_read(
Dave Chinnerad14c332012-11-12 22:54:16 +1100351 struct xfs_trans *tp,
352 struct xfs_inode *dp,
353 xfs_dablk_t bno,
354 xfs_daddr_t mappedbno,
355 struct xfs_buf **bpp)
356{
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100357 int err;
358
359 err = xfs_da_read_buf(tp, dp, bno, mappedbno, bpp,
Dave Chinner517c2222013-04-24 18:58:55 +1000360 XFS_ATTR_FORK, &xfs_attr3_leaf_buf_ops);
Darrick J. Wongcd87d862017-07-07 18:55:17 -0700361 if (!err && tp && *bpp)
Dave Chinner61fe1352013-04-03 16:11:30 +1100362 xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_ATTR_LEAF_BUF);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100363 return err;
Dave Chinnerad14c332012-11-12 22:54:16 +1100364}
365
Tim Shimmin726801b2006-09-28 11:01:37 +1000366/*========================================================================
367 * Namespace helper routines
368 *========================================================================*/
369
Tim Shimmin726801b2006-09-28 11:01:37 +1000370/*
371 * If namespace bits don't match return 0.
372 * If all match then return 1.
373 */
Christoph Hellwigb8f82a42009-11-14 16:17:22 +0000374STATIC int
Tim Shimmin726801b2006-09-28 11:01:37 +1000375xfs_attr_namesp_match(int arg_flags, int ondisk_flags)
376{
377 return XFS_ATTR_NSP_ONDISK(ondisk_flags) == XFS_ATTR_NSP_ARGS_TO_ONDISK(arg_flags);
378}
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381/*========================================================================
Nathan Scottd8cc8902005-11-02 10:34:53 +1100382 * External routines when attribute fork size < XFS_LITINO(mp).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 *========================================================================*/
384
385/*
Nathan Scottd8cc8902005-11-02 10:34:53 +1100386 * Query whether the requested number of additional bytes of extended
387 * attribute space will be able to fit inline.
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000388 *
Nathan Scottd8cc8902005-11-02 10:34:53 +1100389 * Returns zero if not, else the di_forkoff fork offset to be used in the
390 * literal area for attribute data once the new bytes have been added.
391 *
392 * di_forkoff must be 8 byte aligned, hence is stored as a >>3 value;
393 * special case for dev/uuid inodes, they have fixed size data forks.
394 */
395int
396xfs_attr_shortform_bytesfit(xfs_inode_t *dp, int bytes)
397{
398 int offset;
399 int minforkoff; /* lower limit on valid forkoff locations */
400 int maxforkoff; /* upper limit on valid forkoff locations */
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000401 int dsize;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100402 xfs_mount_t *mp = dp->i_mount;
403
Christoph Hellwig56cea2d2013-03-12 23:30:36 +1100404 /* rounded down */
405 offset = (XFS_LITINO(mp, dp->i_d.di_version) - bytes) >> 3;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100406
Christoph Hellwig42b67dc2017-10-19 11:07:09 -0700407 if (dp->i_d.di_format == XFS_DINODE_FMT_DEV) {
Nathan Scottd8cc8902005-11-02 10:34:53 +1100408 minforkoff = roundup(sizeof(xfs_dev_t), 8) >> 3;
409 return (offset >= minforkoff) ? minforkoff : 0;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100410 }
411
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000412 /*
413 * If the requested numbers of bytes is smaller or equal to the
414 * current attribute fork size we can always proceed.
415 *
416 * Note that if_bytes in the data fork might actually be larger than
417 * the current data fork size is due to delalloc extents. In that
418 * case either the extent count will go down when they are converted
419 * to real extents, or the delalloc conversion will take care of the
420 * literal area rebalancing.
421 */
422 if (bytes <= XFS_IFORK_ASIZE(dp))
423 return dp->i_d.di_forkoff;
424
425 /*
426 * For attr2 we can try to move the forkoff if there is space in the
427 * literal area, but for the old format we are done if there is no
428 * space in the fixed attribute fork.
429 */
430 if (!(mp->m_flags & XFS_MOUNT_ATTR2))
Nathan Scottda087ba2005-11-02 15:00:20 +1100431 return 0;
Nathan Scottda087ba2005-11-02 15:00:20 +1100432
Barry Naujoke5889e92007-02-10 18:35:58 +1100433 dsize = dp->i_df.if_bytes;
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000434
Barry Naujoke5889e92007-02-10 18:35:58 +1100435 switch (dp->i_d.di_format) {
436 case XFS_DINODE_FMT_EXTENTS:
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000437 /*
Barry Naujoke5889e92007-02-10 18:35:58 +1100438 * If there is no attr fork and the data fork is extents,
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000439 * determine if creating the default attr fork will result
440 * in the extents form migrating to btree. If so, the
441 * minimum offset only needs to be the space required for
Barry Naujoke5889e92007-02-10 18:35:58 +1100442 * the btree root.
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000443 */
Christoph Hellwig1a5902c2009-03-29 19:26:46 +0200444 if (!dp->i_d.di_forkoff && dp->i_df.if_bytes >
445 xfs_default_attroffset(dp))
Barry Naujoke5889e92007-02-10 18:35:58 +1100446 dsize = XFS_BMDR_SPACE_CALC(MINDBTPTRS);
447 break;
Barry Naujoke5889e92007-02-10 18:35:58 +1100448 case XFS_DINODE_FMT_BTREE:
449 /*
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000450 * If we have a data btree then keep forkoff if we have one,
451 * otherwise we are adding a new attr, so then we set
452 * minforkoff to where the btree root can finish so we have
Barry Naujoke5889e92007-02-10 18:35:58 +1100453 * plenty of room for attrs
454 */
455 if (dp->i_d.di_forkoff) {
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000456 if (offset < dp->i_d.di_forkoff)
Barry Naujoke5889e92007-02-10 18:35:58 +1100457 return 0;
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000458 return dp->i_d.di_forkoff;
459 }
Christoph Hellwigee1a47a2013-04-21 14:53:46 -0500460 dsize = XFS_BMAP_BROOT_SPACE(mp, dp->i_df.if_broot);
Barry Naujoke5889e92007-02-10 18:35:58 +1100461 break;
462 }
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000463
464 /*
465 * A data fork btree root must have space for at least
Barry Naujoke5889e92007-02-10 18:35:58 +1100466 * MINDBTPTRS key/ptr pairs if the data fork is small or empty.
467 */
Dave Chinner9bb54cb2018-06-07 07:54:02 -0700468 minforkoff = max(dsize, XFS_BMDR_SPACE_CALC(MINDBTPTRS));
Nathan Scottd8cc8902005-11-02 10:34:53 +1100469 minforkoff = roundup(minforkoff, 8) >> 3;
470
471 /* attr fork btree root can have at least this many key/ptr pairs */
Christoph Hellwig56cea2d2013-03-12 23:30:36 +1100472 maxforkoff = XFS_LITINO(mp, dp->i_d.di_version) -
473 XFS_BMDR_SPACE_CALC(MINABTPTRS);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100474 maxforkoff = maxforkoff >> 3; /* rounded down */
475
Nathan Scottd8cc8902005-11-02 10:34:53 +1100476 if (offset >= maxforkoff)
477 return maxforkoff;
Christoph Hellwig4c393a62011-11-19 17:44:30 +0000478 if (offset >= minforkoff)
479 return offset;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100480 return 0;
481}
482
483/*
484 * Switch on the ATTR2 superblock bit (implies also FEATURES2)
485 */
486STATIC void
487xfs_sbversion_add_attr2(xfs_mount_t *mp, xfs_trans_t *tp)
488{
Nathan Scott13059ff2006-01-11 15:32:01 +1100489 if ((mp->m_flags & XFS_MOUNT_ATTR2) &&
Eric Sandeen62118702008-03-06 13:44:28 +1100490 !(xfs_sb_version_hasattr2(&mp->m_sb))) {
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000491 spin_lock(&mp->m_sb_lock);
Eric Sandeen62118702008-03-06 13:44:28 +1100492 if (!xfs_sb_version_hasattr2(&mp->m_sb)) {
493 xfs_sb_version_addattr2(&mp->m_sb);
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000494 spin_unlock(&mp->m_sb_lock);
Dave Chinner61e63ec2015-01-22 09:10:31 +1100495 xfs_log_sb(tp);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100496 } else
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000497 spin_unlock(&mp->m_sb_lock);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100498 }
499}
500
501/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 * Create the initial contents of a shortform attribute list.
503 */
Nathan Scottd8cc8902005-11-02 10:34:53 +1100504void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505xfs_attr_shortform_create(xfs_da_args_t *args)
506{
507 xfs_attr_sf_hdr_t *hdr;
508 xfs_inode_t *dp;
509 xfs_ifork_t *ifp;
510
Dave Chinner5a5881c2012-03-22 05:15:13 +0000511 trace_xfs_attr_sf_create(args);
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 dp = args->dp;
514 ASSERT(dp != NULL);
515 ifp = dp->i_afp;
516 ASSERT(ifp != NULL);
517 ASSERT(ifp->if_bytes == 0);
518 if (dp->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS) {
519 ifp->if_flags &= ~XFS_IFEXTENTS; /* just in case */
520 dp->i_d.di_aformat = XFS_DINODE_FMT_LOCAL;
521 ifp->if_flags |= XFS_IFINLINE;
522 } else {
523 ASSERT(ifp->if_flags & XFS_IFINLINE);
524 }
525 xfs_idata_realloc(dp, sizeof(*hdr), XFS_ATTR_FORK);
526 hdr = (xfs_attr_sf_hdr_t *)ifp->if_u1.if_data;
527 hdr->count = 0;
Nathan Scott3b244aa2006-03-17 17:29:25 +1100528 hdr->totsize = cpu_to_be16(sizeof(*hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE | XFS_ILOG_ADATA);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530}
531
532/*
533 * Add a name/value pair to the shortform attribute list.
534 * Overflow from the inode has already been checked for.
535 */
Nathan Scottd8cc8902005-11-02 10:34:53 +1100536void
537xfs_attr_shortform_add(xfs_da_args_t *args, int forkoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
539 xfs_attr_shortform_t *sf;
540 xfs_attr_sf_entry_t *sfe;
541 int i, offset, size;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100542 xfs_mount_t *mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 xfs_inode_t *dp;
544 xfs_ifork_t *ifp;
545
Dave Chinner5a5881c2012-03-22 05:15:13 +0000546 trace_xfs_attr_sf_add(args);
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 dp = args->dp;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100549 mp = dp->i_mount;
550 dp->i_d.di_forkoff = forkoff;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 ifp = dp->i_afp;
553 ASSERT(ifp->if_flags & XFS_IFINLINE);
554 sf = (xfs_attr_shortform_t *)ifp->if_u1.if_data;
555 sfe = &sf->list[0];
Nathan Scott3b244aa2006-03-17 17:29:25 +1100556 for (i = 0; i < sf->hdr.count; sfe = XFS_ATTR_SF_NEXTENTRY(sfe), i++) {
Nathan Scottd8cc8902005-11-02 10:34:53 +1100557#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 if (sfe->namelen != args->namelen)
559 continue;
560 if (memcmp(args->name, sfe->nameval, args->namelen) != 0)
561 continue;
Tim Shimmin726801b2006-09-28 11:01:37 +1000562 if (!xfs_attr_namesp_match(args->flags, sfe->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 continue;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100564 ASSERT(0);
565#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 }
567
568 offset = (char *)sfe - (char *)sf;
569 size = XFS_ATTR_SF_ENTSIZE_BYNAME(args->namelen, args->valuelen);
570 xfs_idata_realloc(dp, size, XFS_ATTR_FORK);
571 sf = (xfs_attr_shortform_t *)ifp->if_u1.if_data;
572 sfe = (xfs_attr_sf_entry_t *)((char *)sf + offset);
573
574 sfe->namelen = args->namelen;
Nathan Scott3b244aa2006-03-17 17:29:25 +1100575 sfe->valuelen = args->valuelen;
Tim Shimmin726801b2006-09-28 11:01:37 +1000576 sfe->flags = XFS_ATTR_NSP_ARGS_TO_ONDISK(args->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 memcpy(sfe->nameval, args->name, args->namelen);
578 memcpy(&sfe->nameval[args->namelen], args->value, args->valuelen);
Nathan Scott3b244aa2006-03-17 17:29:25 +1100579 sf->hdr.count++;
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800580 be16_add_cpu(&sf->hdr.totsize, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE | XFS_ILOG_ADATA);
582
Nathan Scottd8cc8902005-11-02 10:34:53 +1100583 xfs_sbversion_add_attr2(mp, args->trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584}
585
586/*
Christoph Hellwige1486de2009-02-04 09:36:00 +0100587 * After the last attribute is removed revert to original inode format,
588 * making all literal area available to the data fork once more.
589 */
Dave Chinner6dfe5a02015-05-29 07:40:08 +1000590void
591xfs_attr_fork_remove(
Christoph Hellwige1486de2009-02-04 09:36:00 +0100592 struct xfs_inode *ip,
593 struct xfs_trans *tp)
594{
595 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
596 ip->i_d.di_forkoff = 0;
597 ip->i_d.di_aformat = XFS_DINODE_FMT_EXTENTS;
598
599 ASSERT(ip->i_d.di_anextents == 0);
600 ASSERT(ip->i_afp == NULL);
601
Christoph Hellwige1486de2009-02-04 09:36:00 +0100602 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
603}
604
605/*
Nathan Scottd8cc8902005-11-02 10:34:53 +1100606 * Remove an attribute from the shortform attribute list structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 */
608int
609xfs_attr_shortform_remove(xfs_da_args_t *args)
610{
611 xfs_attr_shortform_t *sf;
612 xfs_attr_sf_entry_t *sfe;
613 int base, size=0, end, totsize, i;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100614 xfs_mount_t *mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 xfs_inode_t *dp;
616
Dave Chinner5a5881c2012-03-22 05:15:13 +0000617 trace_xfs_attr_sf_remove(args);
618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 dp = args->dp;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100620 mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 base = sizeof(xfs_attr_sf_hdr_t);
622 sf = (xfs_attr_shortform_t *)dp->i_afp->if_u1.if_data;
623 sfe = &sf->list[0];
Nathan Scott3b244aa2006-03-17 17:29:25 +1100624 end = sf->hdr.count;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100625 for (i = 0; i < end; sfe = XFS_ATTR_SF_NEXTENTRY(sfe),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 base += size, i++) {
627 size = XFS_ATTR_SF_ENTSIZE(sfe);
628 if (sfe->namelen != args->namelen)
629 continue;
630 if (memcmp(sfe->nameval, args->name, args->namelen) != 0)
631 continue;
Tim Shimmin726801b2006-09-28 11:01:37 +1000632 if (!xfs_attr_namesp_match(args->flags, sfe->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 continue;
634 break;
635 }
Nathan Scottd8cc8902005-11-02 10:34:53 +1100636 if (i == end)
Dave Chinner24513372014-06-25 14:58:08 +1000637 return -ENOATTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Nathan Scottd8cc8902005-11-02 10:34:53 +1100639 /*
640 * Fix up the attribute fork data, covering the hole
641 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 end = base + size;
Nathan Scott3b244aa2006-03-17 17:29:25 +1100643 totsize = be16_to_cpu(sf->hdr.totsize);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100644 if (end != totsize)
645 memmove(&((char *)sf)[base], &((char *)sf)[end], totsize - end);
Nathan Scott3b244aa2006-03-17 17:29:25 +1100646 sf->hdr.count--;
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800647 be16_add_cpu(&sf->hdr.totsize, -size);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100648
649 /*
650 * Fix up the start offset of the attribute fork
651 */
652 totsize -= size;
Barry Naujok6a178102008-05-21 16:42:05 +1000653 if (totsize == sizeof(xfs_attr_sf_hdr_t) &&
Christoph Hellwige1486de2009-02-04 09:36:00 +0100654 (mp->m_flags & XFS_MOUNT_ATTR2) &&
655 (dp->i_d.di_format != XFS_DINODE_FMT_BTREE) &&
656 !(args->op_flags & XFS_DA_OP_ADDNAME)) {
Dave Chinner6dfe5a02015-05-29 07:40:08 +1000657 xfs_attr_fork_remove(dp, args->trans);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100658 } else {
659 xfs_idata_realloc(dp, -size, XFS_ATTR_FORK);
660 dp->i_d.di_forkoff = xfs_attr_shortform_bytesfit(dp, totsize);
661 ASSERT(dp->i_d.di_forkoff);
Barry Naujok6a178102008-05-21 16:42:05 +1000662 ASSERT(totsize > sizeof(xfs_attr_sf_hdr_t) ||
663 (args->op_flags & XFS_DA_OP_ADDNAME) ||
664 !(mp->m_flags & XFS_MOUNT_ATTR2) ||
665 dp->i_d.di_format == XFS_DINODE_FMT_BTREE);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100666 xfs_trans_log_inode(args->trans, dp,
667 XFS_ILOG_CORE | XFS_ILOG_ADATA);
668 }
669
670 xfs_sbversion_add_attr2(mp, args->trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Eric Sandeend99831f2014-06-22 15:03:54 +1000672 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673}
674
675/*
676 * Look up a name in a shortform attribute list structure.
677 */
678/*ARGSUSED*/
679int
680xfs_attr_shortform_lookup(xfs_da_args_t *args)
681{
682 xfs_attr_shortform_t *sf;
683 xfs_attr_sf_entry_t *sfe;
684 int i;
685 xfs_ifork_t *ifp;
686
Dave Chinner5a5881c2012-03-22 05:15:13 +0000687 trace_xfs_attr_sf_lookup(args);
688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 ifp = args->dp->i_afp;
690 ASSERT(ifp->if_flags & XFS_IFINLINE);
691 sf = (xfs_attr_shortform_t *)ifp->if_u1.if_data;
692 sfe = &sf->list[0];
Nathan Scott3b244aa2006-03-17 17:29:25 +1100693 for (i = 0; i < sf->hdr.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 sfe = XFS_ATTR_SF_NEXTENTRY(sfe), i++) {
695 if (sfe->namelen != args->namelen)
696 continue;
697 if (memcmp(args->name, sfe->nameval, args->namelen) != 0)
698 continue;
Tim Shimmin726801b2006-09-28 11:01:37 +1000699 if (!xfs_attr_namesp_match(args->flags, sfe->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 continue;
Dave Chinner24513372014-06-25 14:58:08 +1000701 return -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 }
Dave Chinner24513372014-06-25 14:58:08 +1000703 return -ENOATTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704}
705
706/*
707 * Look up a name in a shortform attribute list structure.
708 */
709/*ARGSUSED*/
710int
711xfs_attr_shortform_getvalue(xfs_da_args_t *args)
712{
713 xfs_attr_shortform_t *sf;
714 xfs_attr_sf_entry_t *sfe;
715 int i;
716
Eric Sandeen914ed442012-03-30 11:24:11 -0500717 ASSERT(args->dp->i_afp->if_flags == XFS_IFINLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 sf = (xfs_attr_shortform_t *)args->dp->i_afp->if_u1.if_data;
719 sfe = &sf->list[0];
Nathan Scott3b244aa2006-03-17 17:29:25 +1100720 for (i = 0; i < sf->hdr.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 sfe = XFS_ATTR_SF_NEXTENTRY(sfe), i++) {
722 if (sfe->namelen != args->namelen)
723 continue;
724 if (memcmp(args->name, sfe->nameval, args->namelen) != 0)
725 continue;
Tim Shimmin726801b2006-09-28 11:01:37 +1000726 if (!xfs_attr_namesp_match(args->flags, sfe->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 continue;
728 if (args->flags & ATTR_KERNOVAL) {
Nathan Scott3b244aa2006-03-17 17:29:25 +1100729 args->valuelen = sfe->valuelen;
Dave Chinner24513372014-06-25 14:58:08 +1000730 return -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 }
Nathan Scott3b244aa2006-03-17 17:29:25 +1100732 if (args->valuelen < sfe->valuelen) {
733 args->valuelen = sfe->valuelen;
Dave Chinner24513372014-06-25 14:58:08 +1000734 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 }
Nathan Scott3b244aa2006-03-17 17:29:25 +1100736 args->valuelen = sfe->valuelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 memcpy(args->value, &sfe->nameval[args->namelen],
738 args->valuelen);
Dave Chinner24513372014-06-25 14:58:08 +1000739 return -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 }
Dave Chinner24513372014-06-25 14:58:08 +1000741 return -ENOATTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742}
743
744/*
Darrick J. Wong6e643cd2017-12-07 19:07:02 -0800745 * Convert from using the shortform to the leaf. On success, return the
746 * buffer so that we can keep it locked until we're totally done with it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 */
748int
Darrick J. Wong6e643cd2017-12-07 19:07:02 -0800749xfs_attr_shortform_to_leaf(
750 struct xfs_da_args *args,
751 struct xfs_buf **leaf_bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752{
753 xfs_inode_t *dp;
754 xfs_attr_shortform_t *sf;
755 xfs_attr_sf_entry_t *sfe;
756 xfs_da_args_t nargs;
757 char *tmpbuffer;
758 int error, i, size;
759 xfs_dablk_t blkno;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000760 struct xfs_buf *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 xfs_ifork_t *ifp;
762
Dave Chinner5a5881c2012-03-22 05:15:13 +0000763 trace_xfs_attr_sf_to_leaf(args);
764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 dp = args->dp;
766 ifp = dp->i_afp;
767 sf = (xfs_attr_shortform_t *)ifp->if_u1.if_data;
Nathan Scott3b244aa2006-03-17 17:29:25 +1100768 size = be16_to_cpu(sf->hdr.totsize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 tmpbuffer = kmem_alloc(size, KM_SLEEP);
770 ASSERT(tmpbuffer != NULL);
771 memcpy(tmpbuffer, ifp->if_u1.if_data, size);
772 sf = (xfs_attr_shortform_t *)tmpbuffer;
773
774 xfs_idata_realloc(dp, -size, XFS_ATTR_FORK);
Dave Chinnerf3508bc2013-07-10 07:04:00 +1000775 xfs_bmap_local_to_extents_empty(dp, XFS_ATTR_FORK);
776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 bp = NULL;
778 error = xfs_da_grow_inode(args, &blkno);
779 if (error) {
780 /*
781 * If we hit an IO error middle of the transaction inside
782 * grow_inode(), we may have inconsistent data. Bail out.
783 */
Dave Chinner24513372014-06-25 14:58:08 +1000784 if (error == -EIO)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 goto out;
786 xfs_idata_realloc(dp, size, XFS_ATTR_FORK); /* try to put */
787 memcpy(ifp->if_u1.if_data, tmpbuffer, size); /* it back */
788 goto out;
789 }
790
791 ASSERT(blkno == 0);
Dave Chinner517c2222013-04-24 18:58:55 +1000792 error = xfs_attr3_leaf_create(args, blkno, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 if (error) {
794 error = xfs_da_shrink_inode(args, 0, bp);
795 bp = NULL;
796 if (error)
797 goto out;
798 xfs_idata_realloc(dp, size, XFS_ATTR_FORK); /* try to put */
799 memcpy(ifp->if_u1.if_data, tmpbuffer, size); /* it back */
800 goto out;
801 }
802
803 memset((char *)&nargs, 0, sizeof(nargs));
804 nargs.dp = dp;
Dave Chinner0650b552014-06-06 15:01:58 +1000805 nargs.geo = args->geo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 nargs.firstblock = args->firstblock;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000807 nargs.dfops = args->dfops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 nargs.total = args->total;
809 nargs.whichfork = XFS_ATTR_FORK;
810 nargs.trans = args->trans;
Barry Naujok6a178102008-05-21 16:42:05 +1000811 nargs.op_flags = XFS_DA_OP_OKNOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
813 sfe = &sf->list[0];
Nathan Scott3b244aa2006-03-17 17:29:25 +1100814 for (i = 0; i < sf->hdr.count; i++) {
Dave Chinnera9273ca2010-01-20 10:47:48 +1100815 nargs.name = sfe->nameval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 nargs.namelen = sfe->namelen;
Dave Chinnera9273ca2010-01-20 10:47:48 +1100817 nargs.value = &sfe->nameval[nargs.namelen];
Nathan Scott3b244aa2006-03-17 17:29:25 +1100818 nargs.valuelen = sfe->valuelen;
Dave Chinnera9273ca2010-01-20 10:47:48 +1100819 nargs.hashval = xfs_da_hashname(sfe->nameval,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 sfe->namelen);
Tim Shimmin726801b2006-09-28 11:01:37 +1000821 nargs.flags = XFS_ATTR_NSP_ONDISK_TO_ARGS(sfe->flags);
Dave Chinner517c2222013-04-24 18:58:55 +1000822 error = xfs_attr3_leaf_lookup_int(bp, &nargs); /* set a->index */
Dave Chinner24513372014-06-25 14:58:08 +1000823 ASSERT(error == -ENOATTR);
Dave Chinner517c2222013-04-24 18:58:55 +1000824 error = xfs_attr3_leaf_add(bp, &nargs);
Dave Chinner24513372014-06-25 14:58:08 +1000825 ASSERT(error != -ENOSPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 if (error)
827 goto out;
828 sfe = XFS_ATTR_SF_NEXTENTRY(sfe);
829 }
830 error = 0;
Darrick J. Wong6e643cd2017-12-07 19:07:02 -0800831 *leaf_bp = bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832out:
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000833 kmem_free(tmpbuffer);
Eric Sandeend99831f2014-06-22 15:03:54 +1000834 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835}
836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837/*
838 * Check a leaf attribute block to see if all the entries would fit into
839 * a shortform attribute list.
840 */
841int
Dave Chinner1d9025e2012-06-22 18:50:14 +1000842xfs_attr_shortform_allfit(
Dave Chinnerb38958d2013-05-20 09:51:14 +1000843 struct xfs_buf *bp,
844 struct xfs_inode *dp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
Dave Chinnerb38958d2013-05-20 09:51:14 +1000846 struct xfs_attr_leafblock *leaf;
847 struct xfs_attr_leaf_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 xfs_attr_leaf_name_local_t *name_loc;
Dave Chinnerb38958d2013-05-20 09:51:14 +1000849 struct xfs_attr3_icleaf_hdr leafhdr;
850 int bytes;
851 int i;
Brian Foster2f661242015-04-13 11:26:02 +1000852 struct xfs_mount *mp = bp->b_target->bt_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
Dave Chinner1d9025e2012-06-22 18:50:14 +1000854 leaf = bp->b_addr;
Brian Foster2f661242015-04-13 11:26:02 +1000855 xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo, &leafhdr, leaf);
Dave Chinnerb38958d2013-05-20 09:51:14 +1000856 entry = xfs_attr3_leaf_entryp(leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 bytes = sizeof(struct xfs_attr_sf_hdr);
Dave Chinnerb38958d2013-05-20 09:51:14 +1000859 for (i = 0; i < leafhdr.count; entry++, i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 if (entry->flags & XFS_ATTR_INCOMPLETE)
861 continue; /* don't copy partial entries */
862 if (!(entry->flags & XFS_ATTR_LOCAL))
Eric Sandeend99831f2014-06-22 15:03:54 +1000863 return 0;
Dave Chinner517c2222013-04-24 18:58:55 +1000864 name_loc = xfs_attr3_leaf_name_local(leaf, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 if (name_loc->namelen >= XFS_ATTR_SF_ENTSIZE_MAX)
Eric Sandeend99831f2014-06-22 15:03:54 +1000866 return 0;
Nathan Scott053b5752006-03-17 17:29:09 +1100867 if (be16_to_cpu(name_loc->valuelen) >= XFS_ATTR_SF_ENTSIZE_MAX)
Eric Sandeend99831f2014-06-22 15:03:54 +1000868 return 0;
Dave Chinnerb38958d2013-05-20 09:51:14 +1000869 bytes += sizeof(struct xfs_attr_sf_entry) - 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 + name_loc->namelen
Nathan Scott053b5752006-03-17 17:29:09 +1100871 + be16_to_cpu(name_loc->valuelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 }
Nathan Scott13059ff2006-01-11 15:32:01 +1100873 if ((dp->i_mount->m_flags & XFS_MOUNT_ATTR2) &&
Barry Naujoke5889e92007-02-10 18:35:58 +1100874 (dp->i_d.di_format != XFS_DINODE_FMT_BTREE) &&
Nathan Scotte0144ca2005-11-25 16:42:22 +1100875 (bytes == sizeof(struct xfs_attr_sf_hdr)))
Dave Chinnerb38958d2013-05-20 09:51:14 +1000876 return -1;
877 return xfs_attr_shortform_bytesfit(dp, bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878}
879
Darrick J. Wong1e1bbd82018-01-08 10:51:05 -0800880/* Verify the consistency of an inline attribute fork. */
881xfs_failaddr_t
882xfs_attr_shortform_verify(
883 struct xfs_inode *ip)
884{
885 struct xfs_attr_shortform *sfp;
886 struct xfs_attr_sf_entry *sfep;
887 struct xfs_attr_sf_entry *next_sfep;
888 char *endp;
889 struct xfs_ifork *ifp;
890 int i;
891 int size;
892
893 ASSERT(ip->i_d.di_aformat == XFS_DINODE_FMT_LOCAL);
894 ifp = XFS_IFORK_PTR(ip, XFS_ATTR_FORK);
895 sfp = (struct xfs_attr_shortform *)ifp->if_u1.if_data;
896 size = ifp->if_bytes;
897
898 /*
899 * Give up if the attribute is way too short.
900 */
901 if (size < sizeof(struct xfs_attr_sf_hdr))
902 return __this_address;
903
904 endp = (char *)sfp + size;
905
906 /* Check all reported entries */
907 sfep = &sfp->list[0];
908 for (i = 0; i < sfp->hdr.count; i++) {
909 /*
910 * struct xfs_attr_sf_entry has a variable length.
911 * Check the fixed-offset parts of the structure are
912 * within the data buffer.
913 */
914 if (((char *)sfep + sizeof(*sfep)) >= endp)
915 return __this_address;
916
917 /* Don't allow names with known bad length. */
918 if (sfep->namelen == 0)
919 return __this_address;
920
921 /*
922 * Check that the variable-length part of the structure is
923 * within the data buffer. The next entry starts after the
924 * name component, so nextentry is an acceptable test.
925 */
926 next_sfep = XFS_ATTR_SF_NEXTENTRY(sfep);
927 if ((char *)next_sfep > endp)
928 return __this_address;
929
930 /*
931 * Check for unknown flags. Short form doesn't support
932 * the incomplete or local bits, so we can use the namespace
933 * mask here.
934 */
935 if (sfep->flags & ~XFS_ATTR_NSP_ONDISK_MASK)
936 return __this_address;
937
938 /*
939 * Check for invalid namespace combinations. We only allow
940 * one namespace flag per xattr, so we can just count the
941 * bits (i.e. hweight) here.
942 */
943 if (hweight8(sfep->flags & XFS_ATTR_NSP_ONDISK_MASK) > 1)
944 return __this_address;
945
946 sfep = next_sfep;
947 }
948 if ((void *)sfep != (void *)endp)
949 return __this_address;
950
951 return NULL;
952}
953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954/*
955 * Convert a leaf attribute list to shortform attribute list
956 */
957int
Dave Chinner517c2222013-04-24 18:58:55 +1000958xfs_attr3_leaf_to_shortform(
959 struct xfs_buf *bp,
960 struct xfs_da_args *args,
961 int forkoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962{
Dave Chinner517c2222013-04-24 18:58:55 +1000963 struct xfs_attr_leafblock *leaf;
964 struct xfs_attr3_icleaf_hdr ichdr;
965 struct xfs_attr_leaf_entry *entry;
966 struct xfs_attr_leaf_name_local *name_loc;
967 struct xfs_da_args nargs;
968 struct xfs_inode *dp = args->dp;
969 char *tmpbuffer;
970 int error;
971 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
Dave Chinner5a5881c2012-03-22 05:15:13 +0000973 trace_xfs_attr_leaf_to_sf(args);
974
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000975 tmpbuffer = kmem_alloc(args->geo->blksize, KM_SLEEP);
Dave Chinner517c2222013-04-24 18:58:55 +1000976 if (!tmpbuffer)
Dave Chinner24513372014-06-25 14:58:08 +1000977 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000979 memcpy(tmpbuffer, bp->b_addr, args->geo->blksize);
Dave Chinner517c2222013-04-24 18:58:55 +1000980
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 leaf = (xfs_attr_leafblock_t *)tmpbuffer;
Brian Foster2f661242015-04-13 11:26:02 +1000982 xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf);
Dave Chinner517c2222013-04-24 18:58:55 +1000983 entry = xfs_attr3_leaf_entryp(leaf);
984
985 /* XXX (dgc): buffer is about to be marked stale - why zero it? */
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000986 memset(bp->b_addr, 0, args->geo->blksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
988 /*
989 * Clean out the prior contents of the attribute list.
990 */
991 error = xfs_da_shrink_inode(args, 0, bp);
992 if (error)
993 goto out;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100994
995 if (forkoff == -1) {
Nathan Scott13059ff2006-01-11 15:32:01 +1100996 ASSERT(dp->i_mount->m_flags & XFS_MOUNT_ATTR2);
Barry Naujoke5889e92007-02-10 18:35:58 +1100997 ASSERT(dp->i_d.di_format != XFS_DINODE_FMT_BTREE);
Dave Chinner6dfe5a02015-05-29 07:40:08 +1000998 xfs_attr_fork_remove(dp, args->trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 goto out;
Nathan Scottd8cc8902005-11-02 10:34:53 +11001000 }
1001
1002 xfs_attr_shortform_create(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
1004 /*
1005 * Copy the attributes
1006 */
1007 memset((char *)&nargs, 0, sizeof(nargs));
Dave Chinner0650b552014-06-06 15:01:58 +10001008 nargs.geo = args->geo;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 nargs.dp = dp;
1010 nargs.firstblock = args->firstblock;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001011 nargs.dfops = args->dfops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 nargs.total = args->total;
1013 nargs.whichfork = XFS_ATTR_FORK;
1014 nargs.trans = args->trans;
Barry Naujok6a178102008-05-21 16:42:05 +10001015 nargs.op_flags = XFS_DA_OP_OKNOENT;
Dave Chinner517c2222013-04-24 18:58:55 +10001016
1017 for (i = 0; i < ichdr.count; entry++, i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 if (entry->flags & XFS_ATTR_INCOMPLETE)
1019 continue; /* don't copy partial entries */
1020 if (!entry->nameidx)
1021 continue;
1022 ASSERT(entry->flags & XFS_ATTR_LOCAL);
Dave Chinner517c2222013-04-24 18:58:55 +10001023 name_loc = xfs_attr3_leaf_name_local(leaf, i);
Dave Chinnera9273ca2010-01-20 10:47:48 +11001024 nargs.name = name_loc->nameval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 nargs.namelen = name_loc->namelen;
Dave Chinnera9273ca2010-01-20 10:47:48 +11001026 nargs.value = &name_loc->nameval[nargs.namelen];
Nathan Scott053b5752006-03-17 17:29:09 +11001027 nargs.valuelen = be16_to_cpu(name_loc->valuelen);
Nathan Scott6b19f2d2006-03-17 17:29:02 +11001028 nargs.hashval = be32_to_cpu(entry->hashval);
Tim Shimmin726801b2006-09-28 11:01:37 +10001029 nargs.flags = XFS_ATTR_NSP_ONDISK_TO_ARGS(entry->flags);
Nathan Scottd8cc8902005-11-02 10:34:53 +11001030 xfs_attr_shortform_add(&nargs, forkoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 }
1032 error = 0;
1033
1034out:
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001035 kmem_free(tmpbuffer);
Dave Chinner517c2222013-04-24 18:58:55 +10001036 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037}
1038
1039/*
1040 * Convert from using a single leaf to a root node and a leaf.
1041 */
1042int
Dave Chinner517c2222013-04-24 18:58:55 +10001043xfs_attr3_leaf_to_node(
1044 struct xfs_da_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045{
Dave Chinner517c2222013-04-24 18:58:55 +10001046 struct xfs_attr_leafblock *leaf;
1047 struct xfs_attr3_icleaf_hdr icleafhdr;
1048 struct xfs_attr_leaf_entry *entries;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001049 struct xfs_da_node_entry *btree;
Dave Chinner517c2222013-04-24 18:58:55 +10001050 struct xfs_da3_icnode_hdr icnodehdr;
1051 struct xfs_da_intnode *node;
1052 struct xfs_inode *dp = args->dp;
1053 struct xfs_mount *mp = dp->i_mount;
1054 struct xfs_buf *bp1 = NULL;
1055 struct xfs_buf *bp2 = NULL;
1056 xfs_dablk_t blkno;
1057 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
Dave Chinner5a5881c2012-03-22 05:15:13 +00001059 trace_xfs_attr_leaf_to_node(args);
1060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 error = xfs_da_grow_inode(args, &blkno);
1062 if (error)
1063 goto out;
Dave Chinner517c2222013-04-24 18:58:55 +10001064 error = xfs_attr3_leaf_read(args->trans, dp, 0, -1, &bp1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 if (error)
1066 goto out;
Dave Chinnerad14c332012-11-12 22:54:16 +11001067
Dave Chinner517c2222013-04-24 18:58:55 +10001068 error = xfs_da_get_buf(args->trans, dp, blkno, -1, &bp2, XFS_ATTR_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 if (error)
1070 goto out;
Dave Chinner517c2222013-04-24 18:58:55 +10001071
1072 /* copy leaf to new buffer, update identifiers */
Dave Chinner61fe1352013-04-03 16:11:30 +11001073 xfs_trans_buf_set_type(args->trans, bp2, XFS_BLFT_ATTR_LEAF_BUF);
Dave Chinner1813dd62012-11-14 17:54:40 +11001074 bp2->b_ops = bp1->b_ops;
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001075 memcpy(bp2->b_addr, bp1->b_addr, args->geo->blksize);
Dave Chinner517c2222013-04-24 18:58:55 +10001076 if (xfs_sb_version_hascrc(&mp->m_sb)) {
1077 struct xfs_da3_blkinfo *hdr3 = bp2->b_addr;
1078 hdr3->blkno = cpu_to_be64(bp2->b_bn);
1079 }
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001080 xfs_trans_log_buf(args->trans, bp2, 0, args->geo->blksize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
1082 /*
1083 * Set up the new root node.
1084 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001085 error = xfs_da3_node_create(args, 0, 1, &bp1, XFS_ATTR_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 if (error)
1087 goto out;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001088 node = bp1->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001089 dp->d_ops->node_hdr_from_disk(&icnodehdr, node);
Dave Chinner4bceb182013-10-29 22:11:51 +11001090 btree = dp->d_ops->node_tree_p(node);
Dave Chinner517c2222013-04-24 18:58:55 +10001091
1092 leaf = bp2->b_addr;
Brian Foster2f661242015-04-13 11:26:02 +10001093 xfs_attr3_leaf_hdr_from_disk(args->geo, &icleafhdr, leaf);
Dave Chinner517c2222013-04-24 18:58:55 +10001094 entries = xfs_attr3_leaf_entryp(leaf);
1095
1096 /* both on-disk, don't endian-flip twice */
1097 btree[0].hashval = entries[icleafhdr.count - 1].hashval;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001098 btree[0].before = cpu_to_be32(blkno);
Dave Chinner517c2222013-04-24 18:58:55 +10001099 icnodehdr.count = 1;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001100 dp->d_ops->node_hdr_to_disk(node, &icnodehdr);
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001101 xfs_trans_log_buf(args->trans, bp1, 0, args->geo->blksize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 error = 0;
1103out:
Dave Chinner517c2222013-04-24 18:58:55 +10001104 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105}
1106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107/*========================================================================
1108 * Routines used for growing the Btree.
1109 *========================================================================*/
1110
1111/*
1112 * Create the initial contents of a leaf attribute list
1113 * or a leaf in a node attribute list.
1114 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001115STATIC int
Dave Chinner517c2222013-04-24 18:58:55 +10001116xfs_attr3_leaf_create(
1117 struct xfs_da_args *args,
1118 xfs_dablk_t blkno,
1119 struct xfs_buf **bpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120{
Dave Chinner517c2222013-04-24 18:58:55 +10001121 struct xfs_attr_leafblock *leaf;
1122 struct xfs_attr3_icleaf_hdr ichdr;
1123 struct xfs_inode *dp = args->dp;
1124 struct xfs_mount *mp = dp->i_mount;
1125 struct xfs_buf *bp;
1126 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
Dave Chinner5a5881c2012-03-22 05:15:13 +00001128 trace_xfs_attr_leaf_create(args);
1129
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 error = xfs_da_get_buf(args->trans, args->dp, blkno, -1, &bp,
1131 XFS_ATTR_FORK);
1132 if (error)
Dave Chinner517c2222013-04-24 18:58:55 +10001133 return error;
1134 bp->b_ops = &xfs_attr3_leaf_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +11001135 xfs_trans_buf_set_type(args->trans, bp, XFS_BLFT_ATTR_LEAF_BUF);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001136 leaf = bp->b_addr;
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001137 memset(leaf, 0, args->geo->blksize);
Dave Chinner517c2222013-04-24 18:58:55 +10001138
1139 memset(&ichdr, 0, sizeof(ichdr));
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001140 ichdr.firstused = args->geo->blksize;
Dave Chinner517c2222013-04-24 18:58:55 +10001141
1142 if (xfs_sb_version_hascrc(&mp->m_sb)) {
1143 struct xfs_da3_blkinfo *hdr3 = bp->b_addr;
1144
1145 ichdr.magic = XFS_ATTR3_LEAF_MAGIC;
1146
1147 hdr3->blkno = cpu_to_be64(bp->b_bn);
1148 hdr3->owner = cpu_to_be64(dp->i_ino);
Eric Sandeence748ea2015-07-29 11:53:31 +10001149 uuid_copy(&hdr3->uuid, &mp->m_sb.sb_meta_uuid);
Dave Chinner517c2222013-04-24 18:58:55 +10001150
1151 ichdr.freemap[0].base = sizeof(struct xfs_attr3_leaf_hdr);
1152 } else {
1153 ichdr.magic = XFS_ATTR_LEAF_MAGIC;
1154 ichdr.freemap[0].base = sizeof(struct xfs_attr_leaf_hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 }
Dave Chinner517c2222013-04-24 18:58:55 +10001156 ichdr.freemap[0].size = ichdr.firstused - ichdr.freemap[0].base;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
Brian Foster2f661242015-04-13 11:26:02 +10001158 xfs_attr3_leaf_hdr_to_disk(args->geo, leaf, &ichdr);
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001159 xfs_trans_log_buf(args->trans, bp, 0, args->geo->blksize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
1161 *bpp = bp;
Dave Chinner517c2222013-04-24 18:58:55 +10001162 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163}
1164
1165/*
1166 * Split the leaf node, rebalance, then add the new entry.
1167 */
1168int
Dave Chinner517c2222013-04-24 18:58:55 +10001169xfs_attr3_leaf_split(
1170 struct xfs_da_state *state,
1171 struct xfs_da_state_blk *oldblk,
1172 struct xfs_da_state_blk *newblk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173{
1174 xfs_dablk_t blkno;
1175 int error;
1176
Dave Chinner5a5881c2012-03-22 05:15:13 +00001177 trace_xfs_attr_leaf_split(state->args);
1178
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 /*
1180 * Allocate space for a new leaf node.
1181 */
1182 ASSERT(oldblk->magic == XFS_ATTR_LEAF_MAGIC);
1183 error = xfs_da_grow_inode(state->args, &blkno);
1184 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10001185 return error;
Dave Chinner517c2222013-04-24 18:58:55 +10001186 error = xfs_attr3_leaf_create(state->args, blkno, &newblk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10001188 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 newblk->blkno = blkno;
1190 newblk->magic = XFS_ATTR_LEAF_MAGIC;
1191
1192 /*
1193 * Rebalance the entries across the two leaves.
1194 * NOTE: rebalance() currently depends on the 2nd block being empty.
1195 */
Dave Chinner517c2222013-04-24 18:58:55 +10001196 xfs_attr3_leaf_rebalance(state, oldblk, newblk);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001197 error = xfs_da3_blk_link(state, oldblk, newblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10001199 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
1201 /*
1202 * Save info on "old" attribute for "atomic rename" ops, leaf_add()
1203 * modifies the index/blkno/rmtblk/rmtblkcnt fields to show the
1204 * "new" attrs info. Will need the "old" info to remove it later.
1205 *
1206 * Insert the "new" entry in the correct block.
1207 */
Dave Chinner5a5881c2012-03-22 05:15:13 +00001208 if (state->inleaf) {
1209 trace_xfs_attr_leaf_add_old(state->args);
Dave Chinner517c2222013-04-24 18:58:55 +10001210 error = xfs_attr3_leaf_add(oldblk->bp, state->args);
Dave Chinner5a5881c2012-03-22 05:15:13 +00001211 } else {
1212 trace_xfs_attr_leaf_add_new(state->args);
Dave Chinner517c2222013-04-24 18:58:55 +10001213 error = xfs_attr3_leaf_add(newblk->bp, state->args);
Dave Chinner5a5881c2012-03-22 05:15:13 +00001214 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215
1216 /*
1217 * Update last hashval in each block since we added the name.
1218 */
1219 oldblk->hashval = xfs_attr_leaf_lasthash(oldblk->bp, NULL);
1220 newblk->hashval = xfs_attr_leaf_lasthash(newblk->bp, NULL);
Eric Sandeend99831f2014-06-22 15:03:54 +10001221 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222}
1223
1224/*
1225 * Add a name to the leaf attribute list structure.
1226 */
1227int
Dave Chinner517c2222013-04-24 18:58:55 +10001228xfs_attr3_leaf_add(
Dave Chinner1d9025e2012-06-22 18:50:14 +10001229 struct xfs_buf *bp,
1230 struct xfs_da_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231{
Dave Chinner517c2222013-04-24 18:58:55 +10001232 struct xfs_attr_leafblock *leaf;
1233 struct xfs_attr3_icleaf_hdr ichdr;
1234 int tablesize;
1235 int entsize;
1236 int sum;
1237 int tmp;
1238 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
Dave Chinner5a5881c2012-03-22 05:15:13 +00001240 trace_xfs_attr_leaf_add(args);
1241
Dave Chinner1d9025e2012-06-22 18:50:14 +10001242 leaf = bp->b_addr;
Brian Foster2f661242015-04-13 11:26:02 +10001243 xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf);
Dave Chinner517c2222013-04-24 18:58:55 +10001244 ASSERT(args->index >= 0 && args->index <= ichdr.count);
Dave Chinnerc59f0ad2014-06-06 15:21:27 +10001245 entsize = xfs_attr_leaf_newentsize(args, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
1247 /*
1248 * Search through freemap for first-fit on new name length.
1249 * (may need to figure in size of entry struct too)
1250 */
Dave Chinner517c2222013-04-24 18:58:55 +10001251 tablesize = (ichdr.count + 1) * sizeof(xfs_attr_leaf_entry_t)
1252 + xfs_attr3_leaf_hdr_size(leaf);
1253 for (sum = 0, i = XFS_ATTR_LEAF_MAPSIZE - 1; i >= 0; i--) {
1254 if (tablesize > ichdr.firstused) {
1255 sum += ichdr.freemap[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 continue;
1257 }
Dave Chinner517c2222013-04-24 18:58:55 +10001258 if (!ichdr.freemap[i].size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 continue; /* no space in this map */
1260 tmp = entsize;
Dave Chinner517c2222013-04-24 18:58:55 +10001261 if (ichdr.freemap[i].base < ichdr.firstused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 tmp += sizeof(xfs_attr_leaf_entry_t);
Dave Chinner517c2222013-04-24 18:58:55 +10001263 if (ichdr.freemap[i].size >= tmp) {
1264 tmp = xfs_attr3_leaf_add_work(bp, &ichdr, args, i);
1265 goto out_log_hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 }
Dave Chinner517c2222013-04-24 18:58:55 +10001267 sum += ichdr.freemap[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 }
1269
1270 /*
1271 * If there are no holes in the address space of the block,
1272 * and we don't have enough freespace, then compaction will do us
1273 * no good and we should just give up.
1274 */
Dave Chinner517c2222013-04-24 18:58:55 +10001275 if (!ichdr.holes && sum < entsize)
Dave Chinner24513372014-06-25 14:58:08 +10001276 return -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
1278 /*
1279 * Compact the entries to coalesce free space.
1280 * This may change the hdr->count via dropping INCOMPLETE entries.
1281 */
Dave Chinner517c2222013-04-24 18:58:55 +10001282 xfs_attr3_leaf_compact(args, &ichdr, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
1284 /*
1285 * After compaction, the block is guaranteed to have only one
1286 * free region, in freemap[0]. If it is not big enough, give up.
1287 */
Dave Chinner517c2222013-04-24 18:58:55 +10001288 if (ichdr.freemap[0].size < (entsize + sizeof(xfs_attr_leaf_entry_t))) {
Dave Chinner24513372014-06-25 14:58:08 +10001289 tmp = -ENOSPC;
Dave Chinner517c2222013-04-24 18:58:55 +10001290 goto out_log_hdr;
1291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
Dave Chinner517c2222013-04-24 18:58:55 +10001293 tmp = xfs_attr3_leaf_add_work(bp, &ichdr, args, 0);
1294
1295out_log_hdr:
Brian Foster2f661242015-04-13 11:26:02 +10001296 xfs_attr3_leaf_hdr_to_disk(args->geo, leaf, &ichdr);
Dave Chinner517c2222013-04-24 18:58:55 +10001297 xfs_trans_log_buf(args->trans, bp,
1298 XFS_DA_LOGRANGE(leaf, &leaf->hdr,
1299 xfs_attr3_leaf_hdr_size(leaf)));
1300 return tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301}
1302
1303/*
1304 * Add a name to a leaf attribute list structure.
1305 */
1306STATIC int
Dave Chinner517c2222013-04-24 18:58:55 +10001307xfs_attr3_leaf_add_work(
1308 struct xfs_buf *bp,
1309 struct xfs_attr3_icleaf_hdr *ichdr,
1310 struct xfs_da_args *args,
1311 int mapindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312{
Dave Chinner517c2222013-04-24 18:58:55 +10001313 struct xfs_attr_leafblock *leaf;
1314 struct xfs_attr_leaf_entry *entry;
1315 struct xfs_attr_leaf_name_local *name_loc;
1316 struct xfs_attr_leaf_name_remote *name_rmt;
1317 struct xfs_mount *mp;
1318 int tmp;
1319 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Dave Chinneree732592012-11-12 22:53:53 +11001321 trace_xfs_attr_leaf_add_work(args);
1322
Dave Chinner1d9025e2012-06-22 18:50:14 +10001323 leaf = bp->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10001324 ASSERT(mapindex >= 0 && mapindex < XFS_ATTR_LEAF_MAPSIZE);
1325 ASSERT(args->index >= 0 && args->index <= ichdr->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
1327 /*
1328 * Force open some space in the entry array and fill it in.
1329 */
Dave Chinner517c2222013-04-24 18:58:55 +10001330 entry = &xfs_attr3_leaf_entryp(leaf)[args->index];
1331 if (args->index < ichdr->count) {
1332 tmp = ichdr->count - args->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 tmp *= sizeof(xfs_attr_leaf_entry_t);
Dave Chinner517c2222013-04-24 18:58:55 +10001334 memmove(entry + 1, entry, tmp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001335 xfs_trans_log_buf(args->trans, bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 XFS_DA_LOGRANGE(leaf, entry, tmp + sizeof(*entry)));
1337 }
Dave Chinner517c2222013-04-24 18:58:55 +10001338 ichdr->count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
1340 /*
1341 * Allocate space for the new string (at the end of the run).
1342 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 mp = args->trans->t_mountp;
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001344 ASSERT(ichdr->freemap[mapindex].base < args->geo->blksize);
Dave Chinner517c2222013-04-24 18:58:55 +10001345 ASSERT((ichdr->freemap[mapindex].base & 0x3) == 0);
1346 ASSERT(ichdr->freemap[mapindex].size >=
Dave Chinnerc59f0ad2014-06-06 15:21:27 +10001347 xfs_attr_leaf_newentsize(args, NULL));
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001348 ASSERT(ichdr->freemap[mapindex].size < args->geo->blksize);
Dave Chinner517c2222013-04-24 18:58:55 +10001349 ASSERT((ichdr->freemap[mapindex].size & 0x3) == 0);
1350
Dave Chinnerc59f0ad2014-06-06 15:21:27 +10001351 ichdr->freemap[mapindex].size -= xfs_attr_leaf_newentsize(args, &tmp);
Dave Chinner517c2222013-04-24 18:58:55 +10001352
1353 entry->nameidx = cpu_to_be16(ichdr->freemap[mapindex].base +
1354 ichdr->freemap[mapindex].size);
Nathan Scott6b19f2d2006-03-17 17:29:02 +11001355 entry->hashval = cpu_to_be32(args->hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 entry->flags = tmp ? XFS_ATTR_LOCAL : 0;
Tim Shimmin726801b2006-09-28 11:01:37 +10001357 entry->flags |= XFS_ATTR_NSP_ARGS_TO_ONDISK(args->flags);
Barry Naujok6a178102008-05-21 16:42:05 +10001358 if (args->op_flags & XFS_DA_OP_RENAME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 entry->flags |= XFS_ATTR_INCOMPLETE;
1360 if ((args->blkno2 == args->blkno) &&
1361 (args->index2 <= args->index)) {
1362 args->index2++;
1363 }
1364 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10001365 xfs_trans_log_buf(args->trans, bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 XFS_DA_LOGRANGE(leaf, entry, sizeof(*entry)));
Nathan Scott6b19f2d2006-03-17 17:29:02 +11001367 ASSERT((args->index == 0) ||
1368 (be32_to_cpu(entry->hashval) >= be32_to_cpu((entry-1)->hashval)));
Dave Chinner517c2222013-04-24 18:58:55 +10001369 ASSERT((args->index == ichdr->count - 1) ||
Nathan Scott6b19f2d2006-03-17 17:29:02 +11001370 (be32_to_cpu(entry->hashval) <= be32_to_cpu((entry+1)->hashval)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
1372 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 * For "remote" attribute values, simply note that we need to
1374 * allocate space for the "remote" value. We can't actually
1375 * allocate the extents in this transaction, and we can't decide
1376 * which blocks they should be as we might allocate more blocks
1377 * as part of this transaction (a split operation for example).
1378 */
1379 if (entry->flags & XFS_ATTR_LOCAL) {
Dave Chinner517c2222013-04-24 18:58:55 +10001380 name_loc = xfs_attr3_leaf_name_local(leaf, args->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 name_loc->namelen = args->namelen;
Nathan Scott053b5752006-03-17 17:29:09 +11001382 name_loc->valuelen = cpu_to_be16(args->valuelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 memcpy((char *)name_loc->nameval, args->name, args->namelen);
1384 memcpy((char *)&name_loc->nameval[args->namelen], args->value,
Nathan Scott053b5752006-03-17 17:29:09 +11001385 be16_to_cpu(name_loc->valuelen));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10001387 name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 name_rmt->namelen = args->namelen;
1389 memcpy((char *)name_rmt->name, args->name, args->namelen);
1390 entry->flags |= XFS_ATTR_INCOMPLETE;
1391 /* just in case */
1392 name_rmt->valuelen = 0;
1393 name_rmt->valueblk = 0;
1394 args->rmtblkno = 1;
Dave Chinnerad1858d2013-05-21 18:02:08 +10001395 args->rmtblkcnt = xfs_attr3_rmt_blocks(mp, args->valuelen);
Dave Chinner8275cdd2014-05-06 07:37:31 +10001396 args->rmtvaluelen = args->valuelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10001398 xfs_trans_log_buf(args->trans, bp,
Dave Chinner517c2222013-04-24 18:58:55 +10001399 XFS_DA_LOGRANGE(leaf, xfs_attr3_leaf_name(leaf, args->index),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 xfs_attr_leaf_entsize(leaf, args->index)));
1401
1402 /*
1403 * Update the control info for this leaf node
1404 */
Dave Chinner517c2222013-04-24 18:58:55 +10001405 if (be16_to_cpu(entry->nameidx) < ichdr->firstused)
1406 ichdr->firstused = be16_to_cpu(entry->nameidx);
1407
1408 ASSERT(ichdr->firstused >= ichdr->count * sizeof(xfs_attr_leaf_entry_t)
1409 + xfs_attr3_leaf_hdr_size(leaf));
1410 tmp = (ichdr->count - 1) * sizeof(xfs_attr_leaf_entry_t)
1411 + xfs_attr3_leaf_hdr_size(leaf);
1412
1413 for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
1414 if (ichdr->freemap[i].base == tmp) {
1415 ichdr->freemap[i].base += sizeof(xfs_attr_leaf_entry_t);
1416 ichdr->freemap[i].size -= sizeof(xfs_attr_leaf_entry_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 }
1418 }
Dave Chinner517c2222013-04-24 18:58:55 +10001419 ichdr->usedbytes += xfs_attr_leaf_entsize(leaf, args->index);
1420 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421}
1422
1423/*
1424 * Garbage collect a leaf attribute list block by copying it to a new buffer.
1425 */
1426STATIC void
Dave Chinner517c2222013-04-24 18:58:55 +10001427xfs_attr3_leaf_compact(
Dave Chinneree732592012-11-12 22:53:53 +11001428 struct xfs_da_args *args,
Dave Chinnerd4c712b2013-05-21 18:02:06 +10001429 struct xfs_attr3_icleaf_hdr *ichdr_dst,
Dave Chinneree732592012-11-12 22:53:53 +11001430 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431{
Dave Chinnerd4c712b2013-05-21 18:02:06 +10001432 struct xfs_attr_leafblock *leaf_src;
1433 struct xfs_attr_leafblock *leaf_dst;
1434 struct xfs_attr3_icleaf_hdr ichdr_src;
Dave Chinneree732592012-11-12 22:53:53 +11001435 struct xfs_trans *trans = args->trans;
Dave Chinneree732592012-11-12 22:53:53 +11001436 char *tmpbuffer;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
Dave Chinneree732592012-11-12 22:53:53 +11001438 trace_xfs_attr_leaf_compact(args);
1439
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001440 tmpbuffer = kmem_alloc(args->geo->blksize, KM_SLEEP);
1441 memcpy(tmpbuffer, bp->b_addr, args->geo->blksize);
1442 memset(bp->b_addr, 0, args->geo->blksize);
Dave Chinnerd4c712b2013-05-21 18:02:06 +10001443 leaf_src = (xfs_attr_leafblock_t *)tmpbuffer;
1444 leaf_dst = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
1446 /*
Dave Chinnerd4c712b2013-05-21 18:02:06 +10001447 * Copy the on-disk header back into the destination buffer to ensure
1448 * all the information in the header that is not part of the incore
1449 * header structure is preserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 */
Dave Chinnerd4c712b2013-05-21 18:02:06 +10001451 memcpy(bp->b_addr, tmpbuffer, xfs_attr3_leaf_hdr_size(leaf_src));
1452
1453 /* Initialise the incore headers */
1454 ichdr_src = *ichdr_dst; /* struct copy */
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001455 ichdr_dst->firstused = args->geo->blksize;
Dave Chinnerd4c712b2013-05-21 18:02:06 +10001456 ichdr_dst->usedbytes = 0;
1457 ichdr_dst->count = 0;
1458 ichdr_dst->holes = 0;
1459 ichdr_dst->freemap[0].base = xfs_attr3_leaf_hdr_size(leaf_src);
1460 ichdr_dst->freemap[0].size = ichdr_dst->firstused -
1461 ichdr_dst->freemap[0].base;
1462
Dave Chinnerd4c712b2013-05-21 18:02:06 +10001463 /* write the header back to initialise the underlying buffer */
Brian Foster2f661242015-04-13 11:26:02 +10001464 xfs_attr3_leaf_hdr_to_disk(args->geo, leaf_dst, ichdr_dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
1466 /*
1467 * Copy all entry's in the same (sorted) order,
1468 * but allocate name/value pairs packed and in sequence.
1469 */
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001470 xfs_attr3_leaf_moveents(args, leaf_src, &ichdr_src, 0,
1471 leaf_dst, ichdr_dst, 0, ichdr_src.count);
Dave Chinner517c2222013-04-24 18:58:55 +10001472 /*
1473 * this logs the entire buffer, but the caller must write the header
1474 * back to the buffer when it is finished modifying it.
1475 */
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001476 xfs_trans_log_buf(trans, bp, 0, args->geo->blksize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001478 kmem_free(tmpbuffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479}
1480
1481/*
Dave Chinner517c2222013-04-24 18:58:55 +10001482 * Compare two leaf blocks "order".
1483 * Return 0 unless leaf2 should go before leaf1.
1484 */
1485static int
1486xfs_attr3_leaf_order(
1487 struct xfs_buf *leaf1_bp,
1488 struct xfs_attr3_icleaf_hdr *leaf1hdr,
1489 struct xfs_buf *leaf2_bp,
1490 struct xfs_attr3_icleaf_hdr *leaf2hdr)
1491{
1492 struct xfs_attr_leaf_entry *entries1;
1493 struct xfs_attr_leaf_entry *entries2;
1494
1495 entries1 = xfs_attr3_leaf_entryp(leaf1_bp->b_addr);
1496 entries2 = xfs_attr3_leaf_entryp(leaf2_bp->b_addr);
1497 if (leaf1hdr->count > 0 && leaf2hdr->count > 0 &&
1498 ((be32_to_cpu(entries2[0].hashval) <
1499 be32_to_cpu(entries1[0].hashval)) ||
1500 (be32_to_cpu(entries2[leaf2hdr->count - 1].hashval) <
1501 be32_to_cpu(entries1[leaf1hdr->count - 1].hashval)))) {
1502 return 1;
1503 }
1504 return 0;
1505}
1506
1507int
1508xfs_attr_leaf_order(
1509 struct xfs_buf *leaf1_bp,
1510 struct xfs_buf *leaf2_bp)
1511{
1512 struct xfs_attr3_icleaf_hdr ichdr1;
1513 struct xfs_attr3_icleaf_hdr ichdr2;
Brian Foster2f661242015-04-13 11:26:02 +10001514 struct xfs_mount *mp = leaf1_bp->b_target->bt_mount;
Dave Chinner517c2222013-04-24 18:58:55 +10001515
Brian Foster2f661242015-04-13 11:26:02 +10001516 xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo, &ichdr1, leaf1_bp->b_addr);
1517 xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo, &ichdr2, leaf2_bp->b_addr);
Dave Chinner517c2222013-04-24 18:58:55 +10001518 return xfs_attr3_leaf_order(leaf1_bp, &ichdr1, leaf2_bp, &ichdr2);
1519}
1520
1521/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 * Redistribute the attribute list entries between two leaf nodes,
1523 * taking into account the size of the new entry.
1524 *
1525 * NOTE: if new block is empty, then it will get the upper half of the
1526 * old block. At present, all (one) callers pass in an empty second block.
1527 *
1528 * This code adjusts the args->index/blkno and args->index2/blkno2 fields
1529 * to match what it is doing in splitting the attribute leaf block. Those
1530 * values are used in "atomic rename" operations on attributes. Note that
1531 * the "new" and "old" values can end up in different blocks.
1532 */
1533STATIC void
Dave Chinner517c2222013-04-24 18:58:55 +10001534xfs_attr3_leaf_rebalance(
1535 struct xfs_da_state *state,
1536 struct xfs_da_state_blk *blk1,
1537 struct xfs_da_state_blk *blk2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538{
Dave Chinner517c2222013-04-24 18:58:55 +10001539 struct xfs_da_args *args;
1540 struct xfs_attr_leafblock *leaf1;
1541 struct xfs_attr_leafblock *leaf2;
1542 struct xfs_attr3_icleaf_hdr ichdr1;
1543 struct xfs_attr3_icleaf_hdr ichdr2;
1544 struct xfs_attr_leaf_entry *entries1;
1545 struct xfs_attr_leaf_entry *entries2;
1546 int count;
1547 int totallen;
1548 int max;
1549 int space;
1550 int swap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
1552 /*
1553 * Set up environment.
1554 */
1555 ASSERT(blk1->magic == XFS_ATTR_LEAF_MAGIC);
1556 ASSERT(blk2->magic == XFS_ATTR_LEAF_MAGIC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001557 leaf1 = blk1->bp->b_addr;
1558 leaf2 = blk2->bp->b_addr;
Brian Foster2f661242015-04-13 11:26:02 +10001559 xfs_attr3_leaf_hdr_from_disk(state->args->geo, &ichdr1, leaf1);
1560 xfs_attr3_leaf_hdr_from_disk(state->args->geo, &ichdr2, leaf2);
Dave Chinner517c2222013-04-24 18:58:55 +10001561 ASSERT(ichdr2.count == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 args = state->args;
1563
Dave Chinner5a5881c2012-03-22 05:15:13 +00001564 trace_xfs_attr_leaf_rebalance(args);
1565
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 /*
1567 * Check ordering of blocks, reverse if it makes things simpler.
1568 *
1569 * NOTE: Given that all (current) callers pass in an empty
1570 * second block, this code should never set "swap".
1571 */
1572 swap = 0;
Dave Chinner517c2222013-04-24 18:58:55 +10001573 if (xfs_attr3_leaf_order(blk1->bp, &ichdr1, blk2->bp, &ichdr2)) {
1574 struct xfs_da_state_blk *tmp_blk;
1575 struct xfs_attr3_icleaf_hdr tmp_ichdr;
1576
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 tmp_blk = blk1;
1578 blk1 = blk2;
1579 blk2 = tmp_blk;
Dave Chinner517c2222013-04-24 18:58:55 +10001580
1581 /* struct copies to swap them rather than reconverting */
1582 tmp_ichdr = ichdr1;
1583 ichdr1 = ichdr2;
1584 ichdr2 = tmp_ichdr;
1585
Dave Chinner1d9025e2012-06-22 18:50:14 +10001586 leaf1 = blk1->bp->b_addr;
1587 leaf2 = blk2->bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 swap = 1;
1589 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
1591 /*
1592 * Examine entries until we reduce the absolute difference in
1593 * byte usage between the two blocks to a minimum. Then get
1594 * the direction to copy and the number of elements to move.
1595 *
1596 * "inleaf" is true if the new entry should be inserted into blk1.
1597 * If "swap" is also true, then reverse the sense of "inleaf".
1598 */
Dave Chinner517c2222013-04-24 18:58:55 +10001599 state->inleaf = xfs_attr3_leaf_figure_balance(state, blk1, &ichdr1,
1600 blk2, &ichdr2,
1601 &count, &totallen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 if (swap)
1603 state->inleaf = !state->inleaf;
1604
1605 /*
1606 * Move any entries required from leaf to leaf:
1607 */
Dave Chinner517c2222013-04-24 18:58:55 +10001608 if (count < ichdr1.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 /*
1610 * Figure the total bytes to be added to the destination leaf.
1611 */
1612 /* number entries being moved */
Dave Chinner517c2222013-04-24 18:58:55 +10001613 count = ichdr1.count - count;
1614 space = ichdr1.usedbytes - totallen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 space += count * sizeof(xfs_attr_leaf_entry_t);
1616
1617 /*
1618 * leaf2 is the destination, compact it if it looks tight.
1619 */
Dave Chinner517c2222013-04-24 18:58:55 +10001620 max = ichdr2.firstused - xfs_attr3_leaf_hdr_size(leaf1);
1621 max -= ichdr2.count * sizeof(xfs_attr_leaf_entry_t);
Dave Chinneree732592012-11-12 22:53:53 +11001622 if (space > max)
Dave Chinner517c2222013-04-24 18:58:55 +10001623 xfs_attr3_leaf_compact(args, &ichdr2, blk2->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
1625 /*
1626 * Move high entries from leaf1 to low end of leaf2.
1627 */
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001628 xfs_attr3_leaf_moveents(args, leaf1, &ichdr1,
1629 ichdr1.count - count, leaf2, &ichdr2, 0, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Dave Chinner517c2222013-04-24 18:58:55 +10001631 } else if (count > ichdr1.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 /*
1633 * I assert that since all callers pass in an empty
1634 * second buffer, this code should never execute.
1635 */
Dave Chinner07428d72012-11-12 22:09:44 +11001636 ASSERT(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
1638 /*
1639 * Figure the total bytes to be added to the destination leaf.
1640 */
1641 /* number entries being moved */
Dave Chinner517c2222013-04-24 18:58:55 +10001642 count -= ichdr1.count;
1643 space = totallen - ichdr1.usedbytes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 space += count * sizeof(xfs_attr_leaf_entry_t);
1645
1646 /*
1647 * leaf1 is the destination, compact it if it looks tight.
1648 */
Dave Chinner517c2222013-04-24 18:58:55 +10001649 max = ichdr1.firstused - xfs_attr3_leaf_hdr_size(leaf1);
1650 max -= ichdr1.count * sizeof(xfs_attr_leaf_entry_t);
Dave Chinneree732592012-11-12 22:53:53 +11001651 if (space > max)
Dave Chinner517c2222013-04-24 18:58:55 +10001652 xfs_attr3_leaf_compact(args, &ichdr1, blk1->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
1654 /*
1655 * Move low entries from leaf2 to high end of leaf1.
1656 */
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001657 xfs_attr3_leaf_moveents(args, leaf2, &ichdr2, 0, leaf1, &ichdr1,
1658 ichdr1.count, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 }
1660
Brian Foster2f661242015-04-13 11:26:02 +10001661 xfs_attr3_leaf_hdr_to_disk(state->args->geo, leaf1, &ichdr1);
1662 xfs_attr3_leaf_hdr_to_disk(state->args->geo, leaf2, &ichdr2);
Dave Chinnerb2a21e72014-06-06 15:22:04 +10001663 xfs_trans_log_buf(args->trans, blk1->bp, 0, args->geo->blksize - 1);
1664 xfs_trans_log_buf(args->trans, blk2->bp, 0, args->geo->blksize - 1);
Dave Chinner517c2222013-04-24 18:58:55 +10001665
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 /*
1667 * Copy out last hashval in each block for B-tree code.
1668 */
Dave Chinner517c2222013-04-24 18:58:55 +10001669 entries1 = xfs_attr3_leaf_entryp(leaf1);
1670 entries2 = xfs_attr3_leaf_entryp(leaf2);
1671 blk1->hashval = be32_to_cpu(entries1[ichdr1.count - 1].hashval);
1672 blk2->hashval = be32_to_cpu(entries2[ichdr2.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673
1674 /*
1675 * Adjust the expected index for insertion.
1676 * NOTE: this code depends on the (current) situation that the
1677 * second block was originally empty.
1678 *
1679 * If the insertion point moved to the 2nd block, we must adjust
1680 * the index. We must also track the entry just following the
1681 * new entry for use in an "atomic rename" operation, that entry
1682 * is always the "old" entry and the "new" entry is what we are
1683 * inserting. The index/blkno fields refer to the "old" entry,
1684 * while the index2/blkno2 fields refer to the "new" entry.
1685 */
Dave Chinner517c2222013-04-24 18:58:55 +10001686 if (blk1->index > ichdr1.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 ASSERT(state->inleaf == 0);
Dave Chinner517c2222013-04-24 18:58:55 +10001688 blk2->index = blk1->index - ichdr1.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 args->index = args->index2 = blk2->index;
1690 args->blkno = args->blkno2 = blk2->blkno;
Dave Chinner517c2222013-04-24 18:58:55 +10001691 } else if (blk1->index == ichdr1.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 if (state->inleaf) {
1693 args->index = blk1->index;
1694 args->blkno = blk1->blkno;
1695 args->index2 = 0;
1696 args->blkno2 = blk2->blkno;
1697 } else {
Dave Chinner07428d72012-11-12 22:09:44 +11001698 /*
1699 * On a double leaf split, the original attr location
1700 * is already stored in blkno2/index2, so don't
1701 * overwrite it overwise we corrupt the tree.
1702 */
Dave Chinner517c2222013-04-24 18:58:55 +10001703 blk2->index = blk1->index - ichdr1.count;
Dave Chinner07428d72012-11-12 22:09:44 +11001704 args->index = blk2->index;
1705 args->blkno = blk2->blkno;
1706 if (!state->extravalid) {
1707 /*
1708 * set the new attr location to match the old
1709 * one and let the higher level split code
1710 * decide where in the leaf to place it.
1711 */
1712 args->index2 = blk2->index;
1713 args->blkno2 = blk2->blkno;
1714 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 }
1716 } else {
1717 ASSERT(state->inleaf == 1);
1718 args->index = args->index2 = blk1->index;
1719 args->blkno = args->blkno2 = blk1->blkno;
1720 }
1721}
1722
1723/*
1724 * Examine entries until we reduce the absolute difference in
1725 * byte usage between the two blocks to a minimum.
1726 * GROT: Is this really necessary? With other than a 512 byte blocksize,
1727 * GROT: there will always be enough room in either block for a new entry.
1728 * GROT: Do a double-split for this case?
1729 */
1730STATIC int
Dave Chinner517c2222013-04-24 18:58:55 +10001731xfs_attr3_leaf_figure_balance(
1732 struct xfs_da_state *state,
1733 struct xfs_da_state_blk *blk1,
1734 struct xfs_attr3_icleaf_hdr *ichdr1,
1735 struct xfs_da_state_blk *blk2,
1736 struct xfs_attr3_icleaf_hdr *ichdr2,
1737 int *countarg,
1738 int *usedbytesarg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739{
Dave Chinner517c2222013-04-24 18:58:55 +10001740 struct xfs_attr_leafblock *leaf1 = blk1->bp->b_addr;
1741 struct xfs_attr_leafblock *leaf2 = blk2->bp->b_addr;
1742 struct xfs_attr_leaf_entry *entry;
1743 int count;
1744 int max;
1745 int index;
1746 int totallen = 0;
1747 int half;
1748 int lastdelta;
1749 int foundit = 0;
1750 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
1752 /*
1753 * Examine entries until we reduce the absolute difference in
1754 * byte usage between the two blocks to a minimum.
1755 */
Dave Chinner517c2222013-04-24 18:58:55 +10001756 max = ichdr1->count + ichdr2->count;
1757 half = (max + 1) * sizeof(*entry);
1758 half += ichdr1->usedbytes + ichdr2->usedbytes +
Dave Chinnerc59f0ad2014-06-06 15:21:27 +10001759 xfs_attr_leaf_newentsize(state->args, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 half /= 2;
Dave Chinnerb2a21e72014-06-06 15:22:04 +10001761 lastdelta = state->args->geo->blksize;
Dave Chinner517c2222013-04-24 18:58:55 +10001762 entry = xfs_attr3_leaf_entryp(leaf1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 for (count = index = 0; count < max; entry++, index++, count++) {
1764
1765#define XFS_ATTR_ABS(A) (((A) < 0) ? -(A) : (A))
1766 /*
1767 * The new entry is in the first block, account for it.
1768 */
1769 if (count == blk1->index) {
1770 tmp = totallen + sizeof(*entry) +
Dave Chinnerc59f0ad2014-06-06 15:21:27 +10001771 xfs_attr_leaf_newentsize(state->args, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 if (XFS_ATTR_ABS(half - tmp) > lastdelta)
1773 break;
1774 lastdelta = XFS_ATTR_ABS(half - tmp);
1775 totallen = tmp;
1776 foundit = 1;
1777 }
1778
1779 /*
1780 * Wrap around into the second block if necessary.
1781 */
Dave Chinner517c2222013-04-24 18:58:55 +10001782 if (count == ichdr1->count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 leaf1 = leaf2;
Dave Chinner517c2222013-04-24 18:58:55 +10001784 entry = xfs_attr3_leaf_entryp(leaf1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 index = 0;
1786 }
1787
1788 /*
1789 * Figure out if next leaf entry would be too much.
1790 */
1791 tmp = totallen + sizeof(*entry) + xfs_attr_leaf_entsize(leaf1,
1792 index);
1793 if (XFS_ATTR_ABS(half - tmp) > lastdelta)
1794 break;
1795 lastdelta = XFS_ATTR_ABS(half - tmp);
1796 totallen = tmp;
1797#undef XFS_ATTR_ABS
1798 }
1799
1800 /*
1801 * Calculate the number of usedbytes that will end up in lower block.
1802 * If new entry not in lower block, fix up the count.
1803 */
1804 totallen -= count * sizeof(*entry);
1805 if (foundit) {
1806 totallen -= sizeof(*entry) +
Dave Chinnerc59f0ad2014-06-06 15:21:27 +10001807 xfs_attr_leaf_newentsize(state->args, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 }
1809
1810 *countarg = count;
1811 *usedbytesarg = totallen;
Dave Chinner517c2222013-04-24 18:58:55 +10001812 return foundit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813}
1814
1815/*========================================================================
1816 * Routines used for shrinking the Btree.
1817 *========================================================================*/
1818
1819/*
1820 * Check a leaf block and its neighbors to see if the block should be
1821 * collapsed into one or the other neighbor. Always keep the block
1822 * with the smaller block number.
1823 * If the current block is over 50% full, don't try to join it, return 0.
1824 * If the block is empty, fill in the state structure and return 2.
1825 * If it can be collapsed, fill in the state structure and return 1.
1826 * If nothing can be done, return 0.
1827 *
1828 * GROT: allow for INCOMPLETE entries in calculation.
1829 */
1830int
Dave Chinner517c2222013-04-24 18:58:55 +10001831xfs_attr3_leaf_toosmall(
1832 struct xfs_da_state *state,
1833 int *action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834{
Dave Chinner517c2222013-04-24 18:58:55 +10001835 struct xfs_attr_leafblock *leaf;
1836 struct xfs_da_state_blk *blk;
1837 struct xfs_attr3_icleaf_hdr ichdr;
1838 struct xfs_buf *bp;
1839 xfs_dablk_t blkno;
1840 int bytes;
1841 int forward;
1842 int error;
1843 int retval;
1844 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
Dave Chinneree732592012-11-12 22:53:53 +11001846 trace_xfs_attr_leaf_toosmall(state->args);
1847
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 /*
1849 * Check for the degenerate case of the block being over 50% full.
1850 * If so, it's not worth even looking to see if we might be able
1851 * to coalesce with a sibling.
1852 */
1853 blk = &state->path.blk[ state->path.active-1 ];
Dave Chinner517c2222013-04-24 18:58:55 +10001854 leaf = blk->bp->b_addr;
Brian Foster2f661242015-04-13 11:26:02 +10001855 xfs_attr3_leaf_hdr_from_disk(state->args->geo, &ichdr, leaf);
Dave Chinner517c2222013-04-24 18:58:55 +10001856 bytes = xfs_attr3_leaf_hdr_size(leaf) +
1857 ichdr.count * sizeof(xfs_attr_leaf_entry_t) +
1858 ichdr.usedbytes;
Dave Chinnerb2a21e72014-06-06 15:22:04 +10001859 if (bytes > (state->args->geo->blksize >> 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 *action = 0; /* blk over 50%, don't try to join */
Eric Sandeend99831f2014-06-22 15:03:54 +10001861 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 }
1863
1864 /*
1865 * Check for the degenerate case of the block being empty.
1866 * If the block is empty, we'll simply delete it, no need to
Nathan Scottc41564b2006-03-29 08:55:14 +10001867 * coalesce it with a sibling block. We choose (arbitrarily)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 * to merge with the forward block unless it is NULL.
1869 */
Dave Chinner517c2222013-04-24 18:58:55 +10001870 if (ichdr.count == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 /*
1872 * Make altpath point to the block we want to keep and
1873 * path point to the block we want to drop (this one).
1874 */
Dave Chinner517c2222013-04-24 18:58:55 +10001875 forward = (ichdr.forw != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 memcpy(&state->altpath, &state->path, sizeof(state->path));
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001877 error = xfs_da3_path_shift(state, &state->altpath, forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 0, &retval);
1879 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10001880 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 if (retval) {
1882 *action = 0;
1883 } else {
1884 *action = 2;
1885 }
Dave Chinner517c2222013-04-24 18:58:55 +10001886 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 }
1888
1889 /*
1890 * Examine each sibling block to see if we can coalesce with
1891 * at least 25% free space to spare. We need to figure out
1892 * whether to merge with the forward or the backward block.
1893 * We prefer coalescing with the lower numbered sibling so as
1894 * to shrink an attribute list over time.
1895 */
1896 /* start with smaller blk num */
Dave Chinner517c2222013-04-24 18:58:55 +10001897 forward = ichdr.forw < ichdr.back;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 for (i = 0; i < 2; forward = !forward, i++) {
Dave Chinner517c2222013-04-24 18:58:55 +10001899 struct xfs_attr3_icleaf_hdr ichdr2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 if (forward)
Dave Chinner517c2222013-04-24 18:58:55 +10001901 blkno = ichdr.forw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 else
Dave Chinner517c2222013-04-24 18:58:55 +10001903 blkno = ichdr.back;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 if (blkno == 0)
1905 continue;
Dave Chinner517c2222013-04-24 18:58:55 +10001906 error = xfs_attr3_leaf_read(state->args->trans, state->args->dp,
Dave Chinnerad14c332012-11-12 22:54:16 +11001907 blkno, -1, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10001909 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
Brian Foster2f661242015-04-13 11:26:02 +10001911 xfs_attr3_leaf_hdr_from_disk(state->args->geo, &ichdr2, bp->b_addr);
Dave Chinner517c2222013-04-24 18:58:55 +10001912
Dave Chinnerb2a21e72014-06-06 15:22:04 +10001913 bytes = state->args->geo->blksize -
1914 (state->args->geo->blksize >> 2) -
Dave Chinner517c2222013-04-24 18:58:55 +10001915 ichdr.usedbytes - ichdr2.usedbytes -
1916 ((ichdr.count + ichdr2.count) *
1917 sizeof(xfs_attr_leaf_entry_t)) -
1918 xfs_attr3_leaf_hdr_size(leaf);
1919
Dave Chinner1d9025e2012-06-22 18:50:14 +10001920 xfs_trans_brelse(state->args->trans, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 if (bytes >= 0)
1922 break; /* fits with at least 25% to spare */
1923 }
1924 if (i >= 2) {
1925 *action = 0;
Eric Sandeend99831f2014-06-22 15:03:54 +10001926 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 }
1928
1929 /*
1930 * Make altpath point to the block we want to keep (the lower
1931 * numbered block) and path point to the block we want to drop.
1932 */
1933 memcpy(&state->altpath, &state->path, sizeof(state->path));
1934 if (blkno < blk->blkno) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001935 error = xfs_da3_path_shift(state, &state->altpath, forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 0, &retval);
1937 } else {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001938 error = xfs_da3_path_shift(state, &state->path, forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 0, &retval);
1940 }
1941 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10001942 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 if (retval) {
1944 *action = 0;
1945 } else {
1946 *action = 1;
1947 }
Eric Sandeend99831f2014-06-22 15:03:54 +10001948 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949}
1950
1951/*
1952 * Remove a name from the leaf attribute list structure.
1953 *
1954 * Return 1 if leaf is less than 37% full, 0 if >= 37% full.
1955 * If two leaves are 37% full, when combined they will leave 25% free.
1956 */
1957int
Dave Chinner517c2222013-04-24 18:58:55 +10001958xfs_attr3_leaf_remove(
1959 struct xfs_buf *bp,
1960 struct xfs_da_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961{
Dave Chinner517c2222013-04-24 18:58:55 +10001962 struct xfs_attr_leafblock *leaf;
1963 struct xfs_attr3_icleaf_hdr ichdr;
1964 struct xfs_attr_leaf_entry *entry;
Dave Chinner517c2222013-04-24 18:58:55 +10001965 int before;
1966 int after;
1967 int smallest;
1968 int entsize;
1969 int tablesize;
1970 int tmp;
1971 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
Dave Chinneree732592012-11-12 22:53:53 +11001973 trace_xfs_attr_leaf_remove(args);
1974
Dave Chinner1d9025e2012-06-22 18:50:14 +10001975 leaf = bp->b_addr;
Brian Foster2f661242015-04-13 11:26:02 +10001976 xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf);
Dave Chinner517c2222013-04-24 18:58:55 +10001977
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001978 ASSERT(ichdr.count > 0 && ichdr.count < args->geo->blksize / 8);
Dave Chinner517c2222013-04-24 18:58:55 +10001979 ASSERT(args->index >= 0 && args->index < ichdr.count);
1980 ASSERT(ichdr.firstused >= ichdr.count * sizeof(*entry) +
1981 xfs_attr3_leaf_hdr_size(leaf));
1982
1983 entry = &xfs_attr3_leaf_entryp(leaf)[args->index];
1984
1985 ASSERT(be16_to_cpu(entry->nameidx) >= ichdr.firstused);
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001986 ASSERT(be16_to_cpu(entry->nameidx) < args->geo->blksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987
1988 /*
1989 * Scan through free region table:
1990 * check for adjacency of free'd entry with an existing one,
1991 * find smallest free region in case we need to replace it,
1992 * adjust any map that borders the entry table,
1993 */
Dave Chinner517c2222013-04-24 18:58:55 +10001994 tablesize = ichdr.count * sizeof(xfs_attr_leaf_entry_t)
1995 + xfs_attr3_leaf_hdr_size(leaf);
1996 tmp = ichdr.freemap[0].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 before = after = -1;
1998 smallest = XFS_ATTR_LEAF_MAPSIZE - 1;
1999 entsize = xfs_attr_leaf_entsize(leaf, args->index);
Dave Chinner517c2222013-04-24 18:58:55 +10002000 for (i = 0; i < XFS_ATTR_LEAF_MAPSIZE; i++) {
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002001 ASSERT(ichdr.freemap[i].base < args->geo->blksize);
2002 ASSERT(ichdr.freemap[i].size < args->geo->blksize);
Dave Chinner517c2222013-04-24 18:58:55 +10002003 if (ichdr.freemap[i].base == tablesize) {
2004 ichdr.freemap[i].base -= sizeof(xfs_attr_leaf_entry_t);
2005 ichdr.freemap[i].size += sizeof(xfs_attr_leaf_entry_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 }
2007
Dave Chinner517c2222013-04-24 18:58:55 +10002008 if (ichdr.freemap[i].base + ichdr.freemap[i].size ==
2009 be16_to_cpu(entry->nameidx)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 before = i;
Dave Chinner517c2222013-04-24 18:58:55 +10002011 } else if (ichdr.freemap[i].base ==
2012 (be16_to_cpu(entry->nameidx) + entsize)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 after = i;
Dave Chinner517c2222013-04-24 18:58:55 +10002014 } else if (ichdr.freemap[i].size < tmp) {
2015 tmp = ichdr.freemap[i].size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 smallest = i;
2017 }
2018 }
2019
2020 /*
2021 * Coalesce adjacent freemap regions,
2022 * or replace the smallest region.
2023 */
2024 if ((before >= 0) || (after >= 0)) {
2025 if ((before >= 0) && (after >= 0)) {
Dave Chinner517c2222013-04-24 18:58:55 +10002026 ichdr.freemap[before].size += entsize;
2027 ichdr.freemap[before].size += ichdr.freemap[after].size;
2028 ichdr.freemap[after].base = 0;
2029 ichdr.freemap[after].size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 } else if (before >= 0) {
Dave Chinner517c2222013-04-24 18:58:55 +10002031 ichdr.freemap[before].size += entsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10002033 ichdr.freemap[after].base = be16_to_cpu(entry->nameidx);
2034 ichdr.freemap[after].size += entsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 }
2036 } else {
2037 /*
2038 * Replace smallest region (if it is smaller than free'd entry)
2039 */
Dave Chinner517c2222013-04-24 18:58:55 +10002040 if (ichdr.freemap[smallest].size < entsize) {
2041 ichdr.freemap[smallest].base = be16_to_cpu(entry->nameidx);
2042 ichdr.freemap[smallest].size = entsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 }
2044 }
2045
2046 /*
2047 * Did we remove the first entry?
2048 */
Dave Chinner517c2222013-04-24 18:58:55 +10002049 if (be16_to_cpu(entry->nameidx) == ichdr.firstused)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 smallest = 1;
2051 else
2052 smallest = 0;
2053
2054 /*
2055 * Compress the remaining entries and zero out the removed stuff.
2056 */
Dave Chinner517c2222013-04-24 18:58:55 +10002057 memset(xfs_attr3_leaf_name(leaf, args->index), 0, entsize);
2058 ichdr.usedbytes -= entsize;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002059 xfs_trans_log_buf(args->trans, bp,
Dave Chinner517c2222013-04-24 18:58:55 +10002060 XFS_DA_LOGRANGE(leaf, xfs_attr3_leaf_name(leaf, args->index),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 entsize));
2062
Dave Chinner517c2222013-04-24 18:58:55 +10002063 tmp = (ichdr.count - args->index) * sizeof(xfs_attr_leaf_entry_t);
2064 memmove(entry, entry + 1, tmp);
2065 ichdr.count--;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002066 xfs_trans_log_buf(args->trans, bp,
Dave Chinner517c2222013-04-24 18:58:55 +10002067 XFS_DA_LOGRANGE(leaf, entry, tmp + sizeof(xfs_attr_leaf_entry_t)));
2068
2069 entry = &xfs_attr3_leaf_entryp(leaf)[ichdr.count];
2070 memset(entry, 0, sizeof(xfs_attr_leaf_entry_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
2072 /*
2073 * If we removed the first entry, re-find the first used byte
2074 * in the name area. Note that if the entry was the "firstused",
2075 * then we don't have a "hole" in our block resulting from
2076 * removing the name.
2077 */
2078 if (smallest) {
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002079 tmp = args->geo->blksize;
Dave Chinner517c2222013-04-24 18:58:55 +10002080 entry = xfs_attr3_leaf_entryp(leaf);
2081 for (i = ichdr.count - 1; i >= 0; entry++, i--) {
2082 ASSERT(be16_to_cpu(entry->nameidx) >= ichdr.firstused);
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002083 ASSERT(be16_to_cpu(entry->nameidx) < args->geo->blksize);
Nathan Scott6b19f2d2006-03-17 17:29:02 +11002084
2085 if (be16_to_cpu(entry->nameidx) < tmp)
2086 tmp = be16_to_cpu(entry->nameidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 }
Dave Chinner517c2222013-04-24 18:58:55 +10002088 ichdr.firstused = tmp;
Brian Foster66db8102015-04-13 11:27:59 +10002089 ASSERT(ichdr.firstused != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10002091 ichdr.holes = 1; /* mark as needing compaction */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 }
Brian Foster2f661242015-04-13 11:26:02 +10002093 xfs_attr3_leaf_hdr_to_disk(args->geo, leaf, &ichdr);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002094 xfs_trans_log_buf(args->trans, bp,
Dave Chinner517c2222013-04-24 18:58:55 +10002095 XFS_DA_LOGRANGE(leaf, &leaf->hdr,
2096 xfs_attr3_leaf_hdr_size(leaf)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
2098 /*
2099 * Check if leaf is less than 50% full, caller may want to
2100 * "join" the leaf with a sibling if so.
2101 */
Dave Chinner517c2222013-04-24 18:58:55 +10002102 tmp = ichdr.usedbytes + xfs_attr3_leaf_hdr_size(leaf) +
2103 ichdr.count * sizeof(xfs_attr_leaf_entry_t);
2104
Dave Chinnered358c02014-06-06 15:18:10 +10002105 return tmp < args->geo->magicpct; /* leaf is < 37% full */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106}
2107
2108/*
2109 * Move all the attribute list entries from drop_leaf into save_leaf.
2110 */
2111void
Dave Chinner517c2222013-04-24 18:58:55 +10002112xfs_attr3_leaf_unbalance(
2113 struct xfs_da_state *state,
2114 struct xfs_da_state_blk *drop_blk,
2115 struct xfs_da_state_blk *save_blk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116{
Dave Chinner517c2222013-04-24 18:58:55 +10002117 struct xfs_attr_leafblock *drop_leaf = drop_blk->bp->b_addr;
2118 struct xfs_attr_leafblock *save_leaf = save_blk->bp->b_addr;
2119 struct xfs_attr3_icleaf_hdr drophdr;
2120 struct xfs_attr3_icleaf_hdr savehdr;
2121 struct xfs_attr_leaf_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122
Dave Chinner5a5881c2012-03-22 05:15:13 +00002123 trace_xfs_attr_leaf_unbalance(state->args);
2124
Dave Chinner1d9025e2012-06-22 18:50:14 +10002125 drop_leaf = drop_blk->bp->b_addr;
2126 save_leaf = save_blk->bp->b_addr;
Brian Foster2f661242015-04-13 11:26:02 +10002127 xfs_attr3_leaf_hdr_from_disk(state->args->geo, &drophdr, drop_leaf);
2128 xfs_attr3_leaf_hdr_from_disk(state->args->geo, &savehdr, save_leaf);
Dave Chinner517c2222013-04-24 18:58:55 +10002129 entry = xfs_attr3_leaf_entryp(drop_leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
2131 /*
2132 * Save last hashval from dying block for later Btree fixup.
2133 */
Dave Chinner517c2222013-04-24 18:58:55 +10002134 drop_blk->hashval = be32_to_cpu(entry[drophdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135
2136 /*
2137 * Check if we need a temp buffer, or can we do it in place.
2138 * Note that we don't check "leaf" for holes because we will
2139 * always be dropping it, toosmall() decided that for us already.
2140 */
Dave Chinner517c2222013-04-24 18:58:55 +10002141 if (savehdr.holes == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 /*
2143 * dest leaf has no holes, so we add there. May need
2144 * to make some room in the entry array.
2145 */
Dave Chinner517c2222013-04-24 18:58:55 +10002146 if (xfs_attr3_leaf_order(save_blk->bp, &savehdr,
2147 drop_blk->bp, &drophdr)) {
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002148 xfs_attr3_leaf_moveents(state->args,
2149 drop_leaf, &drophdr, 0,
Dave Chinner517c2222013-04-24 18:58:55 +10002150 save_leaf, &savehdr, 0,
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002151 drophdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 } else {
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002153 xfs_attr3_leaf_moveents(state->args,
2154 drop_leaf, &drophdr, 0,
Dave Chinner517c2222013-04-24 18:58:55 +10002155 save_leaf, &savehdr,
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002156 savehdr.count, drophdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 }
2158 } else {
2159 /*
2160 * Destination has holes, so we make a temporary copy
2161 * of the leaf and add them both to that.
2162 */
Dave Chinner517c2222013-04-24 18:58:55 +10002163 struct xfs_attr_leafblock *tmp_leaf;
2164 struct xfs_attr3_icleaf_hdr tmphdr;
2165
Dave Chinnerb2a21e72014-06-06 15:22:04 +10002166 tmp_leaf = kmem_zalloc(state->args->geo->blksize, KM_SLEEP);
Dave Chinner517c2222013-04-24 18:58:55 +10002167
Dave Chinner8517de22013-05-21 18:02:05 +10002168 /*
2169 * Copy the header into the temp leaf so that all the stuff
2170 * not in the incore header is present and gets copied back in
2171 * once we've moved all the entries.
2172 */
2173 memcpy(tmp_leaf, save_leaf, xfs_attr3_leaf_hdr_size(save_leaf));
2174
2175 memset(&tmphdr, 0, sizeof(tmphdr));
Dave Chinner517c2222013-04-24 18:58:55 +10002176 tmphdr.magic = savehdr.magic;
2177 tmphdr.forw = savehdr.forw;
2178 tmphdr.back = savehdr.back;
Dave Chinnerb2a21e72014-06-06 15:22:04 +10002179 tmphdr.firstused = state->args->geo->blksize;
Dave Chinner8517de22013-05-21 18:02:05 +10002180
2181 /* write the header to the temp buffer to initialise it */
Brian Foster2f661242015-04-13 11:26:02 +10002182 xfs_attr3_leaf_hdr_to_disk(state->args->geo, tmp_leaf, &tmphdr);
Dave Chinner8517de22013-05-21 18:02:05 +10002183
Dave Chinner517c2222013-04-24 18:58:55 +10002184 if (xfs_attr3_leaf_order(save_blk->bp, &savehdr,
2185 drop_blk->bp, &drophdr)) {
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002186 xfs_attr3_leaf_moveents(state->args,
2187 drop_leaf, &drophdr, 0,
Dave Chinner517c2222013-04-24 18:58:55 +10002188 tmp_leaf, &tmphdr, 0,
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002189 drophdr.count);
2190 xfs_attr3_leaf_moveents(state->args,
2191 save_leaf, &savehdr, 0,
Dave Chinner517c2222013-04-24 18:58:55 +10002192 tmp_leaf, &tmphdr, tmphdr.count,
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002193 savehdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 } else {
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002195 xfs_attr3_leaf_moveents(state->args,
2196 save_leaf, &savehdr, 0,
Dave Chinner517c2222013-04-24 18:58:55 +10002197 tmp_leaf, &tmphdr, 0,
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002198 savehdr.count);
2199 xfs_attr3_leaf_moveents(state->args,
2200 drop_leaf, &drophdr, 0,
Dave Chinner517c2222013-04-24 18:58:55 +10002201 tmp_leaf, &tmphdr, tmphdr.count,
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002202 drophdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 }
Dave Chinnerb2a21e72014-06-06 15:22:04 +10002204 memcpy(save_leaf, tmp_leaf, state->args->geo->blksize);
Dave Chinner517c2222013-04-24 18:58:55 +10002205 savehdr = tmphdr; /* struct copy */
2206 kmem_free(tmp_leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 }
2208
Brian Foster2f661242015-04-13 11:26:02 +10002209 xfs_attr3_leaf_hdr_to_disk(state->args->geo, save_leaf, &savehdr);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002210 xfs_trans_log_buf(state->args->trans, save_blk->bp, 0,
Dave Chinnerb2a21e72014-06-06 15:22:04 +10002211 state->args->geo->blksize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212
2213 /*
2214 * Copy out last hashval in each block for B-tree code.
2215 */
Dave Chinner517c2222013-04-24 18:58:55 +10002216 entry = xfs_attr3_leaf_entryp(save_leaf);
2217 save_blk->hashval = be32_to_cpu(entry[savehdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218}
2219
2220/*========================================================================
2221 * Routines used for finding things in the Btree.
2222 *========================================================================*/
2223
2224/*
2225 * Look up a name in a leaf attribute list structure.
2226 * This is the internal routine, it uses the caller's buffer.
2227 *
2228 * Note that duplicate keys are allowed, but only check within the
2229 * current leaf node. The Btree code must check in adjacent leaf nodes.
2230 *
2231 * Return in args->index the index into the entry[] array of either
2232 * the found entry, or where the entry should have been (insert before
2233 * that entry).
2234 *
2235 * Don't change the args->value unless we find the attribute.
2236 */
2237int
Dave Chinner517c2222013-04-24 18:58:55 +10002238xfs_attr3_leaf_lookup_int(
2239 struct xfs_buf *bp,
2240 struct xfs_da_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241{
Dave Chinner517c2222013-04-24 18:58:55 +10002242 struct xfs_attr_leafblock *leaf;
2243 struct xfs_attr3_icleaf_hdr ichdr;
2244 struct xfs_attr_leaf_entry *entry;
2245 struct xfs_attr_leaf_entry *entries;
2246 struct xfs_attr_leaf_name_local *name_loc;
2247 struct xfs_attr_leaf_name_remote *name_rmt;
2248 xfs_dahash_t hashval;
2249 int probe;
2250 int span;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
Dave Chinner5a5881c2012-03-22 05:15:13 +00002252 trace_xfs_attr_leaf_lookup(args);
2253
Dave Chinner1d9025e2012-06-22 18:50:14 +10002254 leaf = bp->b_addr;
Brian Foster2f661242015-04-13 11:26:02 +10002255 xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf);
Dave Chinner517c2222013-04-24 18:58:55 +10002256 entries = xfs_attr3_leaf_entryp(leaf);
Darrick J. Wong8ba92d42018-01-08 10:51:07 -08002257 if (ichdr.count >= args->geo->blksize / 8)
2258 return -EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
2260 /*
2261 * Binary search. (note: small blocks will skip this loop)
2262 */
2263 hashval = args->hashval;
Dave Chinner517c2222013-04-24 18:58:55 +10002264 probe = span = ichdr.count / 2;
2265 for (entry = &entries[probe]; span > 4; entry = &entries[probe]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 span /= 2;
Nathan Scott6b19f2d2006-03-17 17:29:02 +11002267 if (be32_to_cpu(entry->hashval) < hashval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 probe += span;
Nathan Scott6b19f2d2006-03-17 17:29:02 +11002269 else if (be32_to_cpu(entry->hashval) > hashval)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 probe -= span;
2271 else
2272 break;
2273 }
Darrick J. Wong8ba92d42018-01-08 10:51:07 -08002274 if (!(probe >= 0 && (!ichdr.count || probe < ichdr.count)))
2275 return -EFSCORRUPTED;
2276 if (!(span <= 4 || be32_to_cpu(entry->hashval) == hashval))
2277 return -EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278
2279 /*
2280 * Since we may have duplicate hashval's, find the first matching
2281 * hashval in the leaf.
2282 */
Dave Chinner517c2222013-04-24 18:58:55 +10002283 while (probe > 0 && be32_to_cpu(entry->hashval) >= hashval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 entry--;
2285 probe--;
2286 }
Dave Chinner517c2222013-04-24 18:58:55 +10002287 while (probe < ichdr.count &&
2288 be32_to_cpu(entry->hashval) < hashval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 entry++;
2290 probe++;
2291 }
Dave Chinner517c2222013-04-24 18:58:55 +10002292 if (probe == ichdr.count || be32_to_cpu(entry->hashval) != hashval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 args->index = probe;
Dave Chinner24513372014-06-25 14:58:08 +10002294 return -ENOATTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 }
2296
2297 /*
2298 * Duplicate keys may be present, so search all of them for a match.
2299 */
Dave Chinner517c2222013-04-24 18:58:55 +10002300 for (; probe < ichdr.count && (be32_to_cpu(entry->hashval) == hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 entry++, probe++) {
2302/*
2303 * GROT: Add code to remove incomplete entries.
2304 */
2305 /*
2306 * If we are looking for INCOMPLETE entries, show only those.
2307 * If we are looking for complete entries, show only those.
2308 */
2309 if ((args->flags & XFS_ATTR_INCOMPLETE) !=
2310 (entry->flags & XFS_ATTR_INCOMPLETE)) {
2311 continue;
2312 }
2313 if (entry->flags & XFS_ATTR_LOCAL) {
Dave Chinner517c2222013-04-24 18:58:55 +10002314 name_loc = xfs_attr3_leaf_name_local(leaf, probe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 if (name_loc->namelen != args->namelen)
2316 continue;
Dave Chinner517c2222013-04-24 18:58:55 +10002317 if (memcmp(args->name, name_loc->nameval,
2318 args->namelen) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 continue;
Tim Shimmin726801b2006-09-28 11:01:37 +10002320 if (!xfs_attr_namesp_match(args->flags, entry->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 continue;
2322 args->index = probe;
Dave Chinner24513372014-06-25 14:58:08 +10002323 return -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10002325 name_rmt = xfs_attr3_leaf_name_remote(leaf, probe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 if (name_rmt->namelen != args->namelen)
2327 continue;
Dave Chinner517c2222013-04-24 18:58:55 +10002328 if (memcmp(args->name, name_rmt->name,
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 Chinner8275cdd2014-05-06 07:37:31 +10002334 args->rmtvaluelen = be32_to_cpu(name_rmt->valuelen);
Nathan Scottc0f054e2006-03-17 17:29:18 +11002335 args->rmtblkno = be32_to_cpu(name_rmt->valueblk);
Dave Chinnerad1858d2013-05-21 18:02:08 +10002336 args->rmtblkcnt = xfs_attr3_rmt_blocks(
2337 args->dp->i_mount,
Dave Chinner8275cdd2014-05-06 07:37:31 +10002338 args->rmtvaluelen);
Dave Chinner24513372014-06-25 14:58:08 +10002339 return -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 }
2341 }
2342 args->index = probe;
Dave Chinner24513372014-06-25 14:58:08 +10002343 return -ENOATTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344}
2345
2346/*
2347 * Get the value associated with an attribute name from a leaf attribute
2348 * list structure.
2349 */
2350int
Dave Chinner517c2222013-04-24 18:58:55 +10002351xfs_attr3_leaf_getvalue(
2352 struct xfs_buf *bp,
2353 struct xfs_da_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354{
Dave Chinner517c2222013-04-24 18:58:55 +10002355 struct xfs_attr_leafblock *leaf;
2356 struct xfs_attr3_icleaf_hdr ichdr;
2357 struct xfs_attr_leaf_entry *entry;
2358 struct xfs_attr_leaf_name_local *name_loc;
2359 struct xfs_attr_leaf_name_remote *name_rmt;
2360 int valuelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361
Dave Chinner1d9025e2012-06-22 18:50:14 +10002362 leaf = bp->b_addr;
Brian Foster2f661242015-04-13 11:26:02 +10002363 xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf);
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002364 ASSERT(ichdr.count < args->geo->blksize / 8);
Dave Chinner517c2222013-04-24 18:58:55 +10002365 ASSERT(args->index < ichdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366
Dave Chinner517c2222013-04-24 18:58:55 +10002367 entry = &xfs_attr3_leaf_entryp(leaf)[args->index];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 if (entry->flags & XFS_ATTR_LOCAL) {
Dave Chinner517c2222013-04-24 18:58:55 +10002369 name_loc = xfs_attr3_leaf_name_local(leaf, args->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 ASSERT(name_loc->namelen == args->namelen);
2371 ASSERT(memcmp(args->name, name_loc->nameval, args->namelen) == 0);
Nathan Scott053b5752006-03-17 17:29:09 +11002372 valuelen = be16_to_cpu(name_loc->valuelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 if (args->flags & ATTR_KERNOVAL) {
2374 args->valuelen = valuelen;
Dave Chinner517c2222013-04-24 18:58:55 +10002375 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376 }
2377 if (args->valuelen < valuelen) {
2378 args->valuelen = valuelen;
Dave Chinner24513372014-06-25 14:58:08 +10002379 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 }
2381 args->valuelen = valuelen;
2382 memcpy(args->value, &name_loc->nameval[args->namelen], valuelen);
2383 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10002384 name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 ASSERT(name_rmt->namelen == args->namelen);
2386 ASSERT(memcmp(args->name, name_rmt->name, args->namelen) == 0);
Dave Chinner8275cdd2014-05-06 07:37:31 +10002387 args->rmtvaluelen = be32_to_cpu(name_rmt->valuelen);
Nathan Scottc0f054e2006-03-17 17:29:18 +11002388 args->rmtblkno = be32_to_cpu(name_rmt->valueblk);
Dave Chinnerad1858d2013-05-21 18:02:08 +10002389 args->rmtblkcnt = xfs_attr3_rmt_blocks(args->dp->i_mount,
Dave Chinner8275cdd2014-05-06 07:37:31 +10002390 args->rmtvaluelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 if (args->flags & ATTR_KERNOVAL) {
Dave Chinner8275cdd2014-05-06 07:37:31 +10002392 args->valuelen = args->rmtvaluelen;
Dave Chinner517c2222013-04-24 18:58:55 +10002393 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 }
Dave Chinner8275cdd2014-05-06 07:37:31 +10002395 if (args->valuelen < args->rmtvaluelen) {
2396 args->valuelen = args->rmtvaluelen;
Dave Chinner24513372014-06-25 14:58:08 +10002397 return -ERANGE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 }
Dave Chinner8275cdd2014-05-06 07:37:31 +10002399 args->valuelen = args->rmtvaluelen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 }
Dave Chinner517c2222013-04-24 18:58:55 +10002401 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402}
2403
2404/*========================================================================
2405 * Utility routines.
2406 *========================================================================*/
2407
2408/*
2409 * Move the indicated entries from one leaf to another.
2410 * NOTE: this routine modifies both source and destination leaves.
2411 */
2412/*ARGSUSED*/
2413STATIC void
Dave Chinner517c2222013-04-24 18:58:55 +10002414xfs_attr3_leaf_moveents(
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002415 struct xfs_da_args *args,
Dave Chinner517c2222013-04-24 18:58:55 +10002416 struct xfs_attr_leafblock *leaf_s,
2417 struct xfs_attr3_icleaf_hdr *ichdr_s,
2418 int start_s,
2419 struct xfs_attr_leafblock *leaf_d,
2420 struct xfs_attr3_icleaf_hdr *ichdr_d,
2421 int start_d,
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002422 int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423{
Dave Chinner517c2222013-04-24 18:58:55 +10002424 struct xfs_attr_leaf_entry *entry_s;
2425 struct xfs_attr_leaf_entry *entry_d;
2426 int desti;
2427 int tmp;
2428 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
2430 /*
2431 * Check for nothing to do.
2432 */
2433 if (count == 0)
2434 return;
2435
2436 /*
2437 * Set up environment.
2438 */
Dave Chinner517c2222013-04-24 18:58:55 +10002439 ASSERT(ichdr_s->magic == XFS_ATTR_LEAF_MAGIC ||
2440 ichdr_s->magic == XFS_ATTR3_LEAF_MAGIC);
2441 ASSERT(ichdr_s->magic == ichdr_d->magic);
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002442 ASSERT(ichdr_s->count > 0 && ichdr_s->count < args->geo->blksize / 8);
Dave Chinner517c2222013-04-24 18:58:55 +10002443 ASSERT(ichdr_s->firstused >= (ichdr_s->count * sizeof(*entry_s))
2444 + xfs_attr3_leaf_hdr_size(leaf_s));
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002445 ASSERT(ichdr_d->count < args->geo->blksize / 8);
Dave Chinner517c2222013-04-24 18:58:55 +10002446 ASSERT(ichdr_d->firstused >= (ichdr_d->count * sizeof(*entry_d))
2447 + xfs_attr3_leaf_hdr_size(leaf_d));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448
Dave Chinner517c2222013-04-24 18:58:55 +10002449 ASSERT(start_s < ichdr_s->count);
2450 ASSERT(start_d <= ichdr_d->count);
2451 ASSERT(count <= ichdr_s->count);
2452
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453
2454 /*
2455 * Move the entries in the destination leaf up to make a hole?
2456 */
Dave Chinner517c2222013-04-24 18:58:55 +10002457 if (start_d < ichdr_d->count) {
2458 tmp = ichdr_d->count - start_d;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 tmp *= sizeof(xfs_attr_leaf_entry_t);
Dave Chinner517c2222013-04-24 18:58:55 +10002460 entry_s = &xfs_attr3_leaf_entryp(leaf_d)[start_d];
2461 entry_d = &xfs_attr3_leaf_entryp(leaf_d)[start_d + count];
2462 memmove(entry_d, entry_s, tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 }
2464
2465 /*
2466 * Copy all entry's in the same (sorted) order,
2467 * but allocate attribute info packed and in sequence.
2468 */
Dave Chinner517c2222013-04-24 18:58:55 +10002469 entry_s = &xfs_attr3_leaf_entryp(leaf_s)[start_s];
2470 entry_d = &xfs_attr3_leaf_entryp(leaf_d)[start_d];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 desti = start_d;
2472 for (i = 0; i < count; entry_s++, entry_d++, desti++, i++) {
Dave Chinner517c2222013-04-24 18:58:55 +10002473 ASSERT(be16_to_cpu(entry_s->nameidx) >= ichdr_s->firstused);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 tmp = xfs_attr_leaf_entsize(leaf_s, start_s + i);
2475#ifdef GROT
2476 /*
2477 * Code to drop INCOMPLETE entries. Difficult to use as we
2478 * may also need to change the insertion index. Code turned
2479 * off for 6.2, should be revisited later.
2480 */
2481 if (entry_s->flags & XFS_ATTR_INCOMPLETE) { /* skip partials? */
Dave Chinner517c2222013-04-24 18:58:55 +10002482 memset(xfs_attr3_leaf_name(leaf_s, start_s + i), 0, tmp);
2483 ichdr_s->usedbytes -= tmp;
2484 ichdr_s->count -= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 entry_d--; /* to compensate for ++ in loop hdr */
2486 desti--;
2487 if ((start_s + i) < offset)
2488 result++; /* insertion index adjustment */
2489 } else {
2490#endif /* GROT */
Dave Chinner517c2222013-04-24 18:58:55 +10002491 ichdr_d->firstused -= tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 /* both on-disk, don't endian flip twice */
2493 entry_d->hashval = entry_s->hashval;
Dave Chinner517c2222013-04-24 18:58:55 +10002494 entry_d->nameidx = cpu_to_be16(ichdr_d->firstused);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 entry_d->flags = entry_s->flags;
Nathan Scott6b19f2d2006-03-17 17:29:02 +11002496 ASSERT(be16_to_cpu(entry_d->nameidx) + tmp
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002497 <= args->geo->blksize);
Dave Chinner517c2222013-04-24 18:58:55 +10002498 memmove(xfs_attr3_leaf_name(leaf_d, desti),
2499 xfs_attr3_leaf_name(leaf_s, start_s + i), tmp);
Nathan Scott6b19f2d2006-03-17 17:29:02 +11002500 ASSERT(be16_to_cpu(entry_s->nameidx) + tmp
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002501 <= args->geo->blksize);
Dave Chinner517c2222013-04-24 18:58:55 +10002502 memset(xfs_attr3_leaf_name(leaf_s, start_s + i), 0, tmp);
2503 ichdr_s->usedbytes -= tmp;
2504 ichdr_d->usedbytes += tmp;
2505 ichdr_s->count -= 1;
2506 ichdr_d->count += 1;
2507 tmp = ichdr_d->count * sizeof(xfs_attr_leaf_entry_t)
2508 + xfs_attr3_leaf_hdr_size(leaf_d);
2509 ASSERT(ichdr_d->firstused >= tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510#ifdef GROT
2511 }
2512#endif /* GROT */
2513 }
2514
2515 /*
2516 * Zero out the entries we just copied.
2517 */
Dave Chinner517c2222013-04-24 18:58:55 +10002518 if (start_s == ichdr_s->count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 tmp = count * sizeof(xfs_attr_leaf_entry_t);
Dave Chinner517c2222013-04-24 18:58:55 +10002520 entry_s = &xfs_attr3_leaf_entryp(leaf_s)[start_s];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 ASSERT(((char *)entry_s + tmp) <=
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002522 ((char *)leaf_s + args->geo->blksize));
Dave Chinner517c2222013-04-24 18:58:55 +10002523 memset(entry_s, 0, tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 } else {
2525 /*
2526 * Move the remaining entries down to fill the hole,
2527 * then zero the entries at the top.
2528 */
Dave Chinner517c2222013-04-24 18:58:55 +10002529 tmp = (ichdr_s->count - count) * sizeof(xfs_attr_leaf_entry_t);
2530 entry_s = &xfs_attr3_leaf_entryp(leaf_s)[start_s + count];
2531 entry_d = &xfs_attr3_leaf_entryp(leaf_s)[start_s];
2532 memmove(entry_d, entry_s, tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533
2534 tmp = count * sizeof(xfs_attr_leaf_entry_t);
Dave Chinner517c2222013-04-24 18:58:55 +10002535 entry_s = &xfs_attr3_leaf_entryp(leaf_s)[ichdr_s->count];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 ASSERT(((char *)entry_s + tmp) <=
Dave Chinnerc2c4c472014-06-06 15:21:45 +10002537 ((char *)leaf_s + args->geo->blksize));
Dave Chinner517c2222013-04-24 18:58:55 +10002538 memset(entry_s, 0, tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 }
2540
2541 /*
2542 * Fill in the freemap information
2543 */
Dave Chinner517c2222013-04-24 18:58:55 +10002544 ichdr_d->freemap[0].base = xfs_attr3_leaf_hdr_size(leaf_d);
2545 ichdr_d->freemap[0].base += ichdr_d->count * sizeof(xfs_attr_leaf_entry_t);
2546 ichdr_d->freemap[0].size = ichdr_d->firstused - ichdr_d->freemap[0].base;
2547 ichdr_d->freemap[1].base = 0;
2548 ichdr_d->freemap[2].base = 0;
2549 ichdr_d->freemap[1].size = 0;
2550 ichdr_d->freemap[2].size = 0;
2551 ichdr_s->holes = 1; /* leaf may not be compact */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552}
2553
2554/*
2555 * Pick up the last hashvalue from a leaf block.
2556 */
2557xfs_dahash_t
Dave Chinner1d9025e2012-06-22 18:50:14 +10002558xfs_attr_leaf_lasthash(
2559 struct xfs_buf *bp,
2560 int *count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561{
Dave Chinner517c2222013-04-24 18:58:55 +10002562 struct xfs_attr3_icleaf_hdr ichdr;
2563 struct xfs_attr_leaf_entry *entries;
Brian Foster2f661242015-04-13 11:26:02 +10002564 struct xfs_mount *mp = bp->b_target->bt_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565
Brian Foster2f661242015-04-13 11:26:02 +10002566 xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo, &ichdr, bp->b_addr);
Dave Chinner517c2222013-04-24 18:58:55 +10002567 entries = xfs_attr3_leaf_entryp(bp->b_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 if (count)
Dave Chinner517c2222013-04-24 18:58:55 +10002569 *count = ichdr.count;
2570 if (!ichdr.count)
2571 return 0;
2572 return be32_to_cpu(entries[ichdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573}
2574
2575/*
2576 * Calculate the number of bytes used to store the indicated attribute
2577 * (whether local or remote only calculate bytes in this block).
2578 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10002579STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580xfs_attr_leaf_entsize(xfs_attr_leafblock_t *leaf, int index)
2581{
Dave Chinner517c2222013-04-24 18:58:55 +10002582 struct xfs_attr_leaf_entry *entries;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 xfs_attr_leaf_name_local_t *name_loc;
2584 xfs_attr_leaf_name_remote_t *name_rmt;
2585 int size;
2586
Dave Chinner517c2222013-04-24 18:58:55 +10002587 entries = xfs_attr3_leaf_entryp(leaf);
2588 if (entries[index].flags & XFS_ATTR_LOCAL) {
2589 name_loc = xfs_attr3_leaf_name_local(leaf, index);
Eric Sandeenc9fb86a2009-01-01 16:40:11 -06002590 size = xfs_attr_leaf_entsize_local(name_loc->namelen,
Nathan Scott053b5752006-03-17 17:29:09 +11002591 be16_to_cpu(name_loc->valuelen));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10002593 name_rmt = xfs_attr3_leaf_name_remote(leaf, index);
Eric Sandeenc9fb86a2009-01-01 16:40:11 -06002594 size = xfs_attr_leaf_entsize_remote(name_rmt->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 }
Dave Chinner517c2222013-04-24 18:58:55 +10002596 return size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597}
2598
2599/*
2600 * Calculate the number of bytes that would be required to store the new
2601 * attribute (whether local or remote only calculate bytes in this block).
2602 * This routine decides as a side effect whether the attribute will be
2603 * a "local" or a "remote" attribute.
2604 */
2605int
Dave Chinnerc59f0ad2014-06-06 15:21:27 +10002606xfs_attr_leaf_newentsize(
2607 struct xfs_da_args *args,
2608 int *local)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609{
Dave Chinnerc59f0ad2014-06-06 15:21:27 +10002610 int size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611
Dave Chinnerc59f0ad2014-06-06 15:21:27 +10002612 size = xfs_attr_leaf_entsize_local(args->namelen, args->valuelen);
2613 if (size < xfs_attr_leaf_entsize_local_max(args->geo->blksize)) {
2614 if (local)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 *local = 1;
Dave Chinnerc59f0ad2014-06-06 15:21:27 +10002616 return size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 }
Dave Chinnerc59f0ad2014-06-06 15:21:27 +10002618 if (local)
2619 *local = 0;
2620 return xfs_attr_leaf_entsize_remote(args->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621}
2622
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623
2624/*========================================================================
2625 * Manage the INCOMPLETE flag in a leaf entry
2626 *========================================================================*/
2627
2628/*
2629 * Clear the INCOMPLETE flag on an entry in a leaf block.
2630 */
2631int
Dave Chinner517c2222013-04-24 18:58:55 +10002632xfs_attr3_leaf_clearflag(
2633 struct xfs_da_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634{
Dave Chinner517c2222013-04-24 18:58:55 +10002635 struct xfs_attr_leafblock *leaf;
2636 struct xfs_attr_leaf_entry *entry;
2637 struct xfs_attr_leaf_name_remote *name_rmt;
2638 struct xfs_buf *bp;
2639 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640#ifdef DEBUG
Dave Chinner517c2222013-04-24 18:58:55 +10002641 struct xfs_attr3_icleaf_hdr ichdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 xfs_attr_leaf_name_local_t *name_loc;
2643 int namelen;
2644 char *name;
2645#endif /* DEBUG */
2646
Dave Chinner5a5881c2012-03-22 05:15:13 +00002647 trace_xfs_attr_leaf_clearflag(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 /*
2649 * Set up the operation.
2650 */
Dave Chinner517c2222013-04-24 18:58:55 +10002651 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp);
Dave Chinnerad14c332012-11-12 22:54:16 +11002652 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10002653 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654
Dave Chinner1d9025e2012-06-22 18:50:14 +10002655 leaf = bp->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10002656 entry = &xfs_attr3_leaf_entryp(leaf)[args->index];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 ASSERT(entry->flags & XFS_ATTR_INCOMPLETE);
2658
2659#ifdef DEBUG
Brian Foster2f661242015-04-13 11:26:02 +10002660 xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf);
Dave Chinner517c2222013-04-24 18:58:55 +10002661 ASSERT(args->index < ichdr.count);
2662 ASSERT(args->index >= 0);
2663
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 if (entry->flags & XFS_ATTR_LOCAL) {
Dave Chinner517c2222013-04-24 18:58:55 +10002665 name_loc = xfs_attr3_leaf_name_local(leaf, args->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 namelen = name_loc->namelen;
2667 name = (char *)name_loc->nameval;
2668 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10002669 name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 namelen = name_rmt->namelen;
2671 name = (char *)name_rmt->name;
2672 }
Nathan Scott6b19f2d2006-03-17 17:29:02 +11002673 ASSERT(be32_to_cpu(entry->hashval) == args->hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 ASSERT(namelen == args->namelen);
2675 ASSERT(memcmp(name, args->name, namelen) == 0);
2676#endif /* DEBUG */
2677
2678 entry->flags &= ~XFS_ATTR_INCOMPLETE;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002679 xfs_trans_log_buf(args->trans, bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 XFS_DA_LOGRANGE(leaf, entry, sizeof(*entry)));
2681
2682 if (args->rmtblkno) {
2683 ASSERT((entry->flags & XFS_ATTR_LOCAL) == 0);
Dave Chinner517c2222013-04-24 18:58:55 +10002684 name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index);
Nathan Scottc0f054e2006-03-17 17:29:18 +11002685 name_rmt->valueblk = cpu_to_be32(args->rmtblkno);
Dave Chinner8275cdd2014-05-06 07:37:31 +10002686 name_rmt->valuelen = cpu_to_be32(args->rmtvaluelen);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002687 xfs_trans_log_buf(args->trans, bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 XFS_DA_LOGRANGE(leaf, name_rmt, sizeof(*name_rmt)));
2689 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690
2691 /*
2692 * Commit the flag value change and start the next trans in series.
2693 */
Christoph Hellwig411350d2017-08-28 10:21:03 -07002694 return xfs_trans_roll_inode(&args->trans, args->dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695}
2696
2697/*
2698 * Set the INCOMPLETE flag on an entry in a leaf block.
2699 */
2700int
Dave Chinner517c2222013-04-24 18:58:55 +10002701xfs_attr3_leaf_setflag(
2702 struct xfs_da_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703{
Dave Chinner517c2222013-04-24 18:58:55 +10002704 struct xfs_attr_leafblock *leaf;
2705 struct xfs_attr_leaf_entry *entry;
2706 struct xfs_attr_leaf_name_remote *name_rmt;
2707 struct xfs_buf *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 int error;
Dave Chinner517c2222013-04-24 18:58:55 +10002709#ifdef DEBUG
2710 struct xfs_attr3_icleaf_hdr ichdr;
2711#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712
Dave Chinner5a5881c2012-03-22 05:15:13 +00002713 trace_xfs_attr_leaf_setflag(args);
2714
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 /*
2716 * Set up the operation.
2717 */
Dave Chinner517c2222013-04-24 18:58:55 +10002718 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp);
Dave Chinnerad14c332012-11-12 22:54:16 +11002719 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10002720 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721
Dave Chinner1d9025e2012-06-22 18:50:14 +10002722 leaf = bp->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10002723#ifdef DEBUG
Brian Foster2f661242015-04-13 11:26:02 +10002724 xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr, leaf);
Dave Chinner517c2222013-04-24 18:58:55 +10002725 ASSERT(args->index < ichdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 ASSERT(args->index >= 0);
Dave Chinner517c2222013-04-24 18:58:55 +10002727#endif
2728 entry = &xfs_attr3_leaf_entryp(leaf)[args->index];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729
2730 ASSERT((entry->flags & XFS_ATTR_INCOMPLETE) == 0);
2731 entry->flags |= XFS_ATTR_INCOMPLETE;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002732 xfs_trans_log_buf(args->trans, bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 XFS_DA_LOGRANGE(leaf, entry, sizeof(*entry)));
2734 if ((entry->flags & XFS_ATTR_LOCAL) == 0) {
Dave Chinner517c2222013-04-24 18:58:55 +10002735 name_rmt = xfs_attr3_leaf_name_remote(leaf, args->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 name_rmt->valueblk = 0;
2737 name_rmt->valuelen = 0;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002738 xfs_trans_log_buf(args->trans, bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 XFS_DA_LOGRANGE(leaf, name_rmt, sizeof(*name_rmt)));
2740 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741
2742 /*
2743 * Commit the flag value change and start the next trans in series.
2744 */
Christoph Hellwig411350d2017-08-28 10:21:03 -07002745 return xfs_trans_roll_inode(&args->trans, args->dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746}
2747
2748/*
2749 * In a single transaction, clear the INCOMPLETE flag on the leaf entry
2750 * given by args->blkno/index and set the INCOMPLETE flag on the leaf
2751 * entry given by args->blkno2/index2.
2752 *
2753 * Note that they could be in different blocks, or in the same block.
2754 */
2755int
Dave Chinner517c2222013-04-24 18:58:55 +10002756xfs_attr3_leaf_flipflags(
2757 struct xfs_da_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758{
Dave Chinner517c2222013-04-24 18:58:55 +10002759 struct xfs_attr_leafblock *leaf1;
2760 struct xfs_attr_leafblock *leaf2;
2761 struct xfs_attr_leaf_entry *entry1;
2762 struct xfs_attr_leaf_entry *entry2;
2763 struct xfs_attr_leaf_name_remote *name_rmt;
2764 struct xfs_buf *bp1;
2765 struct xfs_buf *bp2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 int error;
2767#ifdef DEBUG
Dave Chinner517c2222013-04-24 18:58:55 +10002768 struct xfs_attr3_icleaf_hdr ichdr1;
2769 struct xfs_attr3_icleaf_hdr ichdr2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 xfs_attr_leaf_name_local_t *name_loc;
2771 int namelen1, namelen2;
2772 char *name1, *name2;
2773#endif /* DEBUG */
2774
Dave Chinner5a5881c2012-03-22 05:15:13 +00002775 trace_xfs_attr_leaf_flipflags(args);
2776
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 /*
2778 * Read the block containing the "old" attr
2779 */
Dave Chinner517c2222013-04-24 18:58:55 +10002780 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp1);
Dave Chinnerad14c332012-11-12 22:54:16 +11002781 if (error)
2782 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
2784 /*
2785 * Read the block containing the "new" attr, if it is different
2786 */
2787 if (args->blkno2 != args->blkno) {
Dave Chinner517c2222013-04-24 18:58:55 +10002788 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno2,
Dave Chinnerad14c332012-11-12 22:54:16 +11002789 -1, &bp2);
2790 if (error)
2791 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 } else {
2793 bp2 = bp1;
2794 }
2795
Dave Chinner1d9025e2012-06-22 18:50:14 +10002796 leaf1 = bp1->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10002797 entry1 = &xfs_attr3_leaf_entryp(leaf1)[args->index];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798
Dave Chinner1d9025e2012-06-22 18:50:14 +10002799 leaf2 = bp2->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10002800 entry2 = &xfs_attr3_leaf_entryp(leaf2)[args->index2];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801
2802#ifdef DEBUG
Brian Foster2f661242015-04-13 11:26:02 +10002803 xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr1, leaf1);
Dave Chinner517c2222013-04-24 18:58:55 +10002804 ASSERT(args->index < ichdr1.count);
2805 ASSERT(args->index >= 0);
2806
Brian Foster2f661242015-04-13 11:26:02 +10002807 xfs_attr3_leaf_hdr_from_disk(args->geo, &ichdr2, leaf2);
Dave Chinner517c2222013-04-24 18:58:55 +10002808 ASSERT(args->index2 < ichdr2.count);
2809 ASSERT(args->index2 >= 0);
2810
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 if (entry1->flags & XFS_ATTR_LOCAL) {
Dave Chinner517c2222013-04-24 18:58:55 +10002812 name_loc = xfs_attr3_leaf_name_local(leaf1, args->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 namelen1 = name_loc->namelen;
2814 name1 = (char *)name_loc->nameval;
2815 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10002816 name_rmt = xfs_attr3_leaf_name_remote(leaf1, args->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 namelen1 = name_rmt->namelen;
2818 name1 = (char *)name_rmt->name;
2819 }
2820 if (entry2->flags & XFS_ATTR_LOCAL) {
Dave Chinner517c2222013-04-24 18:58:55 +10002821 name_loc = xfs_attr3_leaf_name_local(leaf2, args->index2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 namelen2 = name_loc->namelen;
2823 name2 = (char *)name_loc->nameval;
2824 } else {
Dave Chinner517c2222013-04-24 18:58:55 +10002825 name_rmt = xfs_attr3_leaf_name_remote(leaf2, args->index2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 namelen2 = name_rmt->namelen;
2827 name2 = (char *)name_rmt->name;
2828 }
Nathan Scott6b19f2d2006-03-17 17:29:02 +11002829 ASSERT(be32_to_cpu(entry1->hashval) == be32_to_cpu(entry2->hashval));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 ASSERT(namelen1 == namelen2);
2831 ASSERT(memcmp(name1, name2, namelen1) == 0);
2832#endif /* DEBUG */
2833
2834 ASSERT(entry1->flags & XFS_ATTR_INCOMPLETE);
2835 ASSERT((entry2->flags & XFS_ATTR_INCOMPLETE) == 0);
2836
2837 entry1->flags &= ~XFS_ATTR_INCOMPLETE;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002838 xfs_trans_log_buf(args->trans, bp1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 XFS_DA_LOGRANGE(leaf1, entry1, sizeof(*entry1)));
2840 if (args->rmtblkno) {
2841 ASSERT((entry1->flags & XFS_ATTR_LOCAL) == 0);
Dave Chinner517c2222013-04-24 18:58:55 +10002842 name_rmt = xfs_attr3_leaf_name_remote(leaf1, args->index);
Nathan Scottc0f054e2006-03-17 17:29:18 +11002843 name_rmt->valueblk = cpu_to_be32(args->rmtblkno);
Dave Chinner8275cdd2014-05-06 07:37:31 +10002844 name_rmt->valuelen = cpu_to_be32(args->rmtvaluelen);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002845 xfs_trans_log_buf(args->trans, bp1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 XFS_DA_LOGRANGE(leaf1, name_rmt, sizeof(*name_rmt)));
2847 }
2848
2849 entry2->flags |= XFS_ATTR_INCOMPLETE;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002850 xfs_trans_log_buf(args->trans, bp2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 XFS_DA_LOGRANGE(leaf2, entry2, sizeof(*entry2)));
2852 if ((entry2->flags & XFS_ATTR_LOCAL) == 0) {
Dave Chinner517c2222013-04-24 18:58:55 +10002853 name_rmt = xfs_attr3_leaf_name_remote(leaf2, args->index2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 name_rmt->valueblk = 0;
2855 name_rmt->valuelen = 0;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002856 xfs_trans_log_buf(args->trans, bp2,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 XFS_DA_LOGRANGE(leaf2, name_rmt, sizeof(*name_rmt)));
2858 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859
2860 /*
2861 * Commit the flag value change and start the next trans in series.
2862 */
Christoph Hellwig411350d2017-08-28 10:21:03 -07002863 error = xfs_trans_roll_inode(&args->trans, args->dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864
Dave Chinner517c2222013-04-24 18:58:55 +10002865 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866}