blob: f2e342e05365ea0080c2ba8b78aca146cc73dc3a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
Dave Chinner24df33b2013-04-12 07:30:21 +10003 * Copyright (c) 2013 Red Hat, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11004 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Nathan Scott7b718762005-11-02 14:58:39 +11006 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * published by the Free Software Foundation.
9 *
Nathan Scott7b718762005-11-02 14:58:39 +110010 * This program is distributed in the hope that it would be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 *
Nathan Scott7b718762005-11-02 14:58:39 +110015 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110020#include "xfs_fs.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110021#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110022#include "xfs_log_format.h"
23#include "xfs_trans_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_mount.h"
Dave Chinner57062782013-10-15 09:17:51 +110025#include "xfs_da_format.h"
Nathan Scotta844f452005-11-02 14:38:42 +110026#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_inode.h"
28#include "xfs_bmap.h"
Dave Chinner2b9ab5a2013-08-12 20:49:37 +100029#include "xfs_dir2.h"
Christoph Hellwig57926642011-07-13 13:43:48 +020030#include "xfs_dir2_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_error.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000032#include "xfs_trace.h"
Dave Chinner239880e2013-10-23 10:50:10 +110033#include "xfs_trans.h"
Dave Chinner24df33b2013-04-12 07:30:21 +100034#include "xfs_buf_item.h"
35#include "xfs_cksum.h"
Brian Fostera45086e2015-10-12 15:59:25 +110036#include "xfs_log.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38/*
39 * Local function declarations.
40 */
Dave Chinner1d9025e2012-06-22 18:50:14 +100041static int xfs_dir2_leaf_lookup_int(xfs_da_args_t *args, struct xfs_buf **lbpp,
42 int *indexp, struct xfs_buf **dbpp);
Dave Chinnerbc851782014-06-06 15:20:54 +100043static void xfs_dir3_leaf_log_bests(struct xfs_da_args *args,
44 struct xfs_buf *bp, int first, int last);
45static void xfs_dir3_leaf_log_tail(struct xfs_da_args *args,
46 struct xfs_buf *bp);
Christoph Hellwigba0f32d2005-06-21 15:36:52 +100047
Dave Chinner24df33b2013-04-12 07:30:21 +100048/*
49 * Check the internal consistency of a leaf1 block.
50 * Pop an assert if something is wrong.
51 */
52#ifdef DEBUG
Dave Chinner41419562013-10-29 22:11:50 +110053#define xfs_dir3_leaf_check(dp, bp) \
Dave Chinner24df33b2013-04-12 07:30:21 +100054do { \
Dave Chinner41419562013-10-29 22:11:50 +110055 if (!xfs_dir3_leaf1_check((dp), (bp))) \
Dave Chinner24df33b2013-04-12 07:30:21 +100056 ASSERT(0); \
57} while (0);
58
59STATIC bool
60xfs_dir3_leaf1_check(
Dave Chinner41419562013-10-29 22:11:50 +110061 struct xfs_inode *dp,
Dave Chinner24df33b2013-04-12 07:30:21 +100062 struct xfs_buf *bp)
63{
64 struct xfs_dir2_leaf *leaf = bp->b_addr;
65 struct xfs_dir3_icleaf_hdr leafhdr;
66
Dave Chinner01ba43b2013-10-29 22:11:52 +110067 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +100068
69 if (leafhdr.magic == XFS_DIR3_LEAF1_MAGIC) {
70 struct xfs_dir3_leaf_hdr *leaf3 = bp->b_addr;
71 if (be64_to_cpu(leaf3->info.blkno) != bp->b_bn)
72 return false;
73 } else if (leafhdr.magic != XFS_DIR2_LEAF1_MAGIC)
74 return false;
75
Dave Chinner41419562013-10-29 22:11:50 +110076 return xfs_dir3_leaf_check_int(dp->i_mount, dp, &leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +100077}
78#else
Dave Chinner41419562013-10-29 22:11:50 +110079#define xfs_dir3_leaf_check(dp, bp)
Dave Chinner24df33b2013-04-12 07:30:21 +100080#endif
81
Dave Chinner24df33b2013-04-12 07:30:21 +100082bool
83xfs_dir3_leaf_check_int(
84 struct xfs_mount *mp,
Dave Chinner41419562013-10-29 22:11:50 +110085 struct xfs_inode *dp,
Dave Chinner24df33b2013-04-12 07:30:21 +100086 struct xfs_dir3_icleaf_hdr *hdr,
87 struct xfs_dir2_leaf *leaf)
88{
89 struct xfs_dir2_leaf_entry *ents;
90 xfs_dir2_leaf_tail_t *ltp;
91 int stale;
92 int i;
Dave Chinner41419562013-10-29 22:11:50 +110093 const struct xfs_dir_ops *ops;
Dave Chinner01ba43b2013-10-29 22:11:52 +110094 struct xfs_dir3_icleaf_hdr leafhdr;
Dave Chinner8f661932014-06-06 15:15:59 +100095 struct xfs_da_geometry *geo = mp->m_dir_geo;
Dave Chinner24df33b2013-04-12 07:30:21 +100096
Dave Chinner41419562013-10-29 22:11:50 +110097 /*
98 * we can be passed a null dp here from a verifier, so we need to go the
99 * hard way to get them.
100 */
101 ops = xfs_dir_get_ops(mp, dp);
102
Dave Chinner01ba43b2013-10-29 22:11:52 +1100103 if (!hdr) {
104 ops->leaf_hdr_from_disk(&leafhdr, leaf);
105 hdr = &leafhdr;
106 }
107
Dave Chinner41419562013-10-29 22:11:50 +1100108 ents = ops->leaf_ents_p(leaf);
Dave Chinner8f661932014-06-06 15:15:59 +1000109 ltp = xfs_dir2_leaf_tail_p(geo, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000110
111 /*
112 * XXX (dgc): This value is not restrictive enough.
113 * Should factor in the size of the bests table as well.
114 * We can deduce a value for that from di_size.
115 */
Dave Chinner8f661932014-06-06 15:15:59 +1000116 if (hdr->count > ops->leaf_max_ents(geo))
Dave Chinner24df33b2013-04-12 07:30:21 +1000117 return false;
118
119 /* Leaves and bests don't overlap in leaf format. */
120 if ((hdr->magic == XFS_DIR2_LEAF1_MAGIC ||
121 hdr->magic == XFS_DIR3_LEAF1_MAGIC) &&
122 (char *)&ents[hdr->count] > (char *)xfs_dir2_leaf_bests_p(ltp))
123 return false;
124
125 /* Check hash value order, count stale entries. */
126 for (i = stale = 0; i < hdr->count; i++) {
127 if (i + 1 < hdr->count) {
128 if (be32_to_cpu(ents[i].hashval) >
129 be32_to_cpu(ents[i + 1].hashval))
130 return false;
131 }
132 if (ents[i].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
133 stale++;
134 }
135 if (hdr->stale != stale)
136 return false;
137 return true;
138}
139
Dave Chinner0f295a22013-09-03 10:06:58 +1000140/*
141 * We verify the magic numbers before decoding the leaf header so that on debug
142 * kernels we don't get assertion failures in xfs_dir3_leaf_hdr_from_disk() due
143 * to incorrect magic numbers.
144 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000145static bool
146xfs_dir3_leaf_verify(
Dave Chinnere6f76672012-11-12 22:54:15 +1100147 struct xfs_buf *bp,
Dave Chinner24df33b2013-04-12 07:30:21 +1000148 __uint16_t magic)
Dave Chinnere6f76672012-11-12 22:54:15 +1100149{
150 struct xfs_mount *mp = bp->b_target->bt_mount;
Dave Chinner24df33b2013-04-12 07:30:21 +1000151 struct xfs_dir2_leaf *leaf = bp->b_addr;
Dave Chinnere6f76672012-11-12 22:54:15 +1100152
Dave Chinner24df33b2013-04-12 07:30:21 +1000153 ASSERT(magic == XFS_DIR2_LEAF1_MAGIC || magic == XFS_DIR2_LEAFN_MAGIC);
154
Dave Chinner24df33b2013-04-12 07:30:21 +1000155 if (xfs_sb_version_hascrc(&mp->m_sb)) {
156 struct xfs_dir3_leaf_hdr *leaf3 = bp->b_addr;
Dave Chinner0f295a22013-09-03 10:06:58 +1000157 __uint16_t magic3;
Dave Chinner24df33b2013-04-12 07:30:21 +1000158
Dave Chinner0f295a22013-09-03 10:06:58 +1000159 magic3 = (magic == XFS_DIR2_LEAF1_MAGIC) ? XFS_DIR3_LEAF1_MAGIC
160 : XFS_DIR3_LEAFN_MAGIC;
161
162 if (leaf3->info.hdr.magic != cpu_to_be16(magic3))
Dave Chinner24df33b2013-04-12 07:30:21 +1000163 return false;
Eric Sandeence748ea2015-07-29 11:53:31 +1000164 if (!uuid_equal(&leaf3->info.uuid, &mp->m_sb.sb_meta_uuid))
Dave Chinner24df33b2013-04-12 07:30:21 +1000165 return false;
166 if (be64_to_cpu(leaf3->info.blkno) != bp->b_bn)
167 return false;
Brian Fostera45086e2015-10-12 15:59:25 +1100168 if (!xfs_log_check_lsn(mp, be64_to_cpu(leaf3->info.lsn)))
169 return false;
Dave Chinner24df33b2013-04-12 07:30:21 +1000170 } else {
Dave Chinner0f295a22013-09-03 10:06:58 +1000171 if (leaf->hdr.info.magic != cpu_to_be16(magic))
Dave Chinner24df33b2013-04-12 07:30:21 +1000172 return false;
173 }
Dave Chinner0f295a22013-09-03 10:06:58 +1000174
Dave Chinner01ba43b2013-10-29 22:11:52 +1100175 return xfs_dir3_leaf_check_int(mp, NULL, NULL, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000176}
177
178static void
179__read_verify(
180 struct xfs_buf *bp,
181 __uint16_t magic)
182{
183 struct xfs_mount *mp = bp->b_target->bt_mount;
184
Eric Sandeence5028c2014-02-27 15:23:10 +1100185 if (xfs_sb_version_hascrc(&mp->m_sb) &&
186 !xfs_buf_verify_cksum(bp, XFS_DIR3_LEAF_CRC_OFF))
Dave Chinner24513372014-06-25 14:58:08 +1000187 xfs_buf_ioerror(bp, -EFSBADCRC);
Eric Sandeence5028c2014-02-27 15:23:10 +1100188 else if (!xfs_dir3_leaf_verify(bp, magic))
Dave Chinner24513372014-06-25 14:58:08 +1000189 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100190
191 if (bp->b_error)
192 xfs_verifier_error(bp);
Dave Chinner612cfbf2012-11-14 17:52:32 +1100193}
Dave Chinnere6f76672012-11-12 22:54:15 +1100194
Dave Chinner612cfbf2012-11-14 17:52:32 +1100195static void
Dave Chinner24df33b2013-04-12 07:30:21 +1000196__write_verify(
197 struct xfs_buf *bp,
198 __uint16_t magic)
Dave Chinner612cfbf2012-11-14 17:52:32 +1100199{
Dave Chinner24df33b2013-04-12 07:30:21 +1000200 struct xfs_mount *mp = bp->b_target->bt_mount;
201 struct xfs_buf_log_item *bip = bp->b_fspriv;
202 struct xfs_dir3_leaf_hdr *hdr3 = bp->b_addr;
203
204 if (!xfs_dir3_leaf_verify(bp, magic)) {
Dave Chinner24513372014-06-25 14:58:08 +1000205 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100206 xfs_verifier_error(bp);
Dave Chinner24df33b2013-04-12 07:30:21 +1000207 return;
208 }
209
210 if (!xfs_sb_version_hascrc(&mp->m_sb))
211 return;
212
213 if (bip)
214 hdr3->info.lsn = cpu_to_be64(bip->bli_item.li_lsn);
215
Eric Sandeenf1dbcd72014-02-27 15:18:23 +1100216 xfs_buf_update_cksum(bp, XFS_DIR3_LEAF_CRC_OFF);
Dave Chinner612cfbf2012-11-14 17:52:32 +1100217}
218
219static void
Dave Chinner24df33b2013-04-12 07:30:21 +1000220xfs_dir3_leaf1_read_verify(
Dave Chinner612cfbf2012-11-14 17:52:32 +1100221 struct xfs_buf *bp)
222{
Dave Chinner24df33b2013-04-12 07:30:21 +1000223 __read_verify(bp, XFS_DIR2_LEAF1_MAGIC);
Dave Chinner1813dd62012-11-14 17:54:40 +1100224}
225
Dave Chinner24df33b2013-04-12 07:30:21 +1000226static void
227xfs_dir3_leaf1_write_verify(
Dave Chinner1813dd62012-11-14 17:54:40 +1100228 struct xfs_buf *bp)
229{
Dave Chinner24df33b2013-04-12 07:30:21 +1000230 __write_verify(bp, XFS_DIR2_LEAF1_MAGIC);
Dave Chinnere6f76672012-11-12 22:54:15 +1100231}
232
Dave Chinner24df33b2013-04-12 07:30:21 +1000233static void
234xfs_dir3_leafn_read_verify(
Dave Chinner612cfbf2012-11-14 17:52:32 +1100235 struct xfs_buf *bp)
Dave Chinnere6f76672012-11-12 22:54:15 +1100236{
Dave Chinner24df33b2013-04-12 07:30:21 +1000237 __read_verify(bp, XFS_DIR2_LEAFN_MAGIC);
Dave Chinnere6f76672012-11-12 22:54:15 +1100238}
239
Dave Chinner24df33b2013-04-12 07:30:21 +1000240static void
241xfs_dir3_leafn_write_verify(
242 struct xfs_buf *bp)
243{
244 __write_verify(bp, XFS_DIR2_LEAFN_MAGIC);
245}
246
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100247const struct xfs_buf_ops xfs_dir3_leaf1_buf_ops = {
Eric Sandeen233135b2016-01-04 16:10:19 +1100248 .name = "xfs_dir3_leaf1",
Dave Chinner24df33b2013-04-12 07:30:21 +1000249 .verify_read = xfs_dir3_leaf1_read_verify,
250 .verify_write = xfs_dir3_leaf1_write_verify,
Dave Chinner1813dd62012-11-14 17:54:40 +1100251};
252
Dave Chinner24df33b2013-04-12 07:30:21 +1000253const struct xfs_buf_ops xfs_dir3_leafn_buf_ops = {
Eric Sandeen233135b2016-01-04 16:10:19 +1100254 .name = "xfs_dir3_leafn",
Dave Chinner24df33b2013-04-12 07:30:21 +1000255 .verify_read = xfs_dir3_leafn_read_verify,
256 .verify_write = xfs_dir3_leafn_write_verify,
Dave Chinner1813dd62012-11-14 17:54:40 +1100257};
Dave Chinnere6f76672012-11-12 22:54:15 +1100258
259static int
Dave Chinner24df33b2013-04-12 07:30:21 +1000260xfs_dir3_leaf_read(
Dave Chinnere6f76672012-11-12 22:54:15 +1100261 struct xfs_trans *tp,
262 struct xfs_inode *dp,
263 xfs_dablk_t fbno,
264 xfs_daddr_t mappedbno,
265 struct xfs_buf **bpp)
266{
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100267 int err;
268
269 err = xfs_da_read_buf(tp, dp, fbno, mappedbno, bpp,
Dave Chinner24df33b2013-04-12 07:30:21 +1000270 XFS_DATA_FORK, &xfs_dir3_leaf1_buf_ops);
Darrick J. Wonge76496f2017-09-17 14:06:35 -0700271 if (!err && tp && *bpp)
Dave Chinner61fe1352013-04-03 16:11:30 +1100272 xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_DIR_LEAF1_BUF);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100273 return err;
Dave Chinnere6f76672012-11-12 22:54:15 +1100274}
275
276int
Dave Chinner24df33b2013-04-12 07:30:21 +1000277xfs_dir3_leafn_read(
Dave Chinnere6f76672012-11-12 22:54:15 +1100278 struct xfs_trans *tp,
279 struct xfs_inode *dp,
280 xfs_dablk_t fbno,
281 xfs_daddr_t mappedbno,
282 struct xfs_buf **bpp)
283{
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100284 int err;
285
286 err = xfs_da_read_buf(tp, dp, fbno, mappedbno, bpp,
Dave Chinner24df33b2013-04-12 07:30:21 +1000287 XFS_DATA_FORK, &xfs_dir3_leafn_buf_ops);
Darrick J. Wonge76496f2017-09-17 14:06:35 -0700288 if (!err && tp && *bpp)
Dave Chinner61fe1352013-04-03 16:11:30 +1100289 xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_DIR_LEAFN_BUF);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100290 return err;
Dave Chinner24df33b2013-04-12 07:30:21 +1000291}
292
293/*
294 * Initialize a new leaf block, leaf1 or leafn magic accepted.
295 */
296static void
297xfs_dir3_leaf_init(
298 struct xfs_mount *mp,
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100299 struct xfs_trans *tp,
Dave Chinner24df33b2013-04-12 07:30:21 +1000300 struct xfs_buf *bp,
301 xfs_ino_t owner,
302 __uint16_t type)
303{
304 struct xfs_dir2_leaf *leaf = bp->b_addr;
305
306 ASSERT(type == XFS_DIR2_LEAF1_MAGIC || type == XFS_DIR2_LEAFN_MAGIC);
307
308 if (xfs_sb_version_hascrc(&mp->m_sb)) {
309 struct xfs_dir3_leaf_hdr *leaf3 = bp->b_addr;
310
311 memset(leaf3, 0, sizeof(*leaf3));
312
313 leaf3->info.hdr.magic = (type == XFS_DIR2_LEAF1_MAGIC)
314 ? cpu_to_be16(XFS_DIR3_LEAF1_MAGIC)
315 : cpu_to_be16(XFS_DIR3_LEAFN_MAGIC);
316 leaf3->info.blkno = cpu_to_be64(bp->b_bn);
317 leaf3->info.owner = cpu_to_be64(owner);
Eric Sandeence748ea2015-07-29 11:53:31 +1000318 uuid_copy(&leaf3->info.uuid, &mp->m_sb.sb_meta_uuid);
Dave Chinner24df33b2013-04-12 07:30:21 +1000319 } else {
320 memset(leaf, 0, sizeof(*leaf));
321 leaf->hdr.info.magic = cpu_to_be16(type);
322 }
323
324 /*
325 * If it's a leaf-format directory initialize the tail.
326 * Caller is responsible for initialising the bests table.
327 */
328 if (type == XFS_DIR2_LEAF1_MAGIC) {
329 struct xfs_dir2_leaf_tail *ltp;
330
Dave Chinner8f661932014-06-06 15:15:59 +1000331 ltp = xfs_dir2_leaf_tail_p(mp->m_dir_geo, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000332 ltp->bestcount = 0;
333 bp->b_ops = &xfs_dir3_leaf1_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100334 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_LEAF1_BUF);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100335 } else {
Dave Chinner24df33b2013-04-12 07:30:21 +1000336 bp->b_ops = &xfs_dir3_leafn_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100337 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_LEAFN_BUF);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100338 }
Dave Chinner24df33b2013-04-12 07:30:21 +1000339}
340
341int
342xfs_dir3_leaf_get_buf(
343 xfs_da_args_t *args,
344 xfs_dir2_db_t bno,
345 struct xfs_buf **bpp,
346 __uint16_t magic)
347{
348 struct xfs_inode *dp = args->dp;
349 struct xfs_trans *tp = args->trans;
350 struct xfs_mount *mp = dp->i_mount;
351 struct xfs_buf *bp;
352 int error;
353
354 ASSERT(magic == XFS_DIR2_LEAF1_MAGIC || magic == XFS_DIR2_LEAFN_MAGIC);
Dave Chinner30028032014-06-06 15:08:18 +1000355 ASSERT(bno >= xfs_dir2_byte_to_db(args->geo, XFS_DIR2_LEAF_OFFSET) &&
356 bno < xfs_dir2_byte_to_db(args->geo, XFS_DIR2_FREE_OFFSET));
Dave Chinner24df33b2013-04-12 07:30:21 +1000357
Dave Chinner2998ab12014-06-06 15:07:53 +1000358 error = xfs_da_get_buf(tp, dp, xfs_dir2_db_to_da(args->geo, bno),
359 -1, &bp, XFS_DATA_FORK);
Dave Chinner24df33b2013-04-12 07:30:21 +1000360 if (error)
361 return error;
362
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100363 xfs_dir3_leaf_init(mp, tp, bp, dp->i_ino, magic);
Dave Chinnerbc851782014-06-06 15:20:54 +1000364 xfs_dir3_leaf_log_header(args, bp);
Dave Chinner24df33b2013-04-12 07:30:21 +1000365 if (magic == XFS_DIR2_LEAF1_MAGIC)
Dave Chinnerbc851782014-06-06 15:20:54 +1000366 xfs_dir3_leaf_log_tail(args, bp);
Dave Chinner24df33b2013-04-12 07:30:21 +1000367 *bpp = bp;
368 return 0;
Dave Chinnere6f76672012-11-12 22:54:15 +1100369}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371/*
372 * Convert a block form directory to a leaf form directory.
373 */
374int /* error */
375xfs_dir2_block_to_leaf(
376 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000377 struct xfs_buf *dbp) /* input block's buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
Nathan Scott68b3a102006-03-17 17:27:19 +1100379 __be16 *bestsp; /* leaf's bestsp entries */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 xfs_dablk_t blkno; /* leaf block's bno */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200381 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 xfs_dir2_leaf_entry_t *blp; /* block's leaf entries */
383 xfs_dir2_block_tail_t *btp; /* block's tail */
384 xfs_inode_t *dp; /* incore directory inode */
385 int error; /* error return code */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000386 struct xfs_buf *lbp; /* leaf block's buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 xfs_dir2_db_t ldb; /* leaf block's bno */
388 xfs_dir2_leaf_t *leaf; /* leaf structure */
389 xfs_dir2_leaf_tail_t *ltp; /* leaf's tail */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 int needlog; /* need to log block header */
391 int needscan; /* need to rescan bestfree */
392 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner33363fe2013-04-03 16:11:22 +1100393 struct xfs_dir2_data_free *bf;
Dave Chinner24df33b2013-04-12 07:30:21 +1000394 struct xfs_dir2_leaf_entry *ents;
395 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000397 trace_xfs_dir2_block_to_leaf(args);
398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 dp = args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 tp = args->trans;
401 /*
402 * Add the leaf block to the inode.
403 * This interface will only put blocks in the leaf/node range.
404 * Since that's empty now, we'll get the root (block 0 in range).
405 */
406 if ((error = xfs_da_grow_inode(args, &blkno))) {
407 return error;
408 }
Dave Chinner2998ab12014-06-06 15:07:53 +1000409 ldb = xfs_dir2_da_to_db(args->geo, blkno);
Dave Chinner30028032014-06-06 15:08:18 +1000410 ASSERT(ldb == xfs_dir2_byte_to_db(args->geo, XFS_DIR2_LEAF_OFFSET));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 /*
412 * Initialize the leaf block, get a buffer for it.
413 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000414 error = xfs_dir3_leaf_get_buf(args, ldb, &lbp, XFS_DIR2_LEAF1_MAGIC);
415 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 return error;
Dave Chinner24df33b2013-04-12 07:30:21 +1000417
Dave Chinner1d9025e2012-06-22 18:50:14 +1000418 leaf = lbp->b_addr;
419 hdr = dbp->b_addr;
Dave Chinner33363fe2013-04-03 16:11:22 +1100420 xfs_dir3_data_check(dp, dbp);
Dave Chinner8f661932014-06-06 15:15:59 +1000421 btp = xfs_dir2_block_tail_p(args->geo, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000422 blp = xfs_dir2_block_leaf_p(btp);
Dave Chinner2ca98772013-10-29 22:11:49 +1100423 bf = dp->d_ops->data_bestfree_p(hdr);
Dave Chinner41419562013-10-29 22:11:50 +1100424 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000425
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 /*
427 * Set the counts in the leaf header.
428 */
Dave Chinner01ba43b2013-10-29 22:11:52 +1100429 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000430 leafhdr.count = be32_to_cpu(btp->count);
431 leafhdr.stale = be32_to_cpu(btp->stale);
Dave Chinner01ba43b2013-10-29 22:11:52 +1100432 dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr);
Dave Chinnerbc851782014-06-06 15:20:54 +1000433 xfs_dir3_leaf_log_header(args, lbp);
Dave Chinner24df33b2013-04-12 07:30:21 +1000434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 /*
436 * Could compact these but I think we always do the conversion
437 * after squeezing out stale entries.
438 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000439 memcpy(ents, blp, be32_to_cpu(btp->count) * sizeof(xfs_dir2_leaf_entry_t));
Dave Chinnerbc851782014-06-06 15:20:54 +1000440 xfs_dir3_leaf_log_ents(args, lbp, 0, leafhdr.count - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 needscan = 0;
442 needlog = 1;
443 /*
444 * Make the space formerly occupied by the leaf entries and block
445 * tail be free.
446 */
Dave Chinnerbc851782014-06-06 15:20:54 +1000447 xfs_dir2_data_make_free(args, dbp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200448 (xfs_dir2_data_aoff_t)((char *)blp - (char *)hdr),
Dave Chinner8f661932014-06-06 15:15:59 +1000449 (xfs_dir2_data_aoff_t)((char *)hdr + args->geo->blksize -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 (char *)blp),
451 &needlog, &needscan);
452 /*
453 * Fix up the block header, make it a data block.
454 */
Dave Chinner33363fe2013-04-03 16:11:22 +1100455 dbp->b_ops = &xfs_dir3_data_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100456 xfs_trans_buf_set_type(tp, dbp, XFS_BLFT_DIR_DATA_BUF);
Dave Chinner33363fe2013-04-03 16:11:22 +1100457 if (hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC))
458 hdr->magic = cpu_to_be32(XFS_DIR2_DATA_MAGIC);
459 else
460 hdr->magic = cpu_to_be32(XFS_DIR3_DATA_MAGIC);
461
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +1100463 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 /*
465 * Set up leaf tail and bests table.
466 */
Dave Chinner8f661932014-06-06 15:15:59 +1000467 ltp = xfs_dir2_leaf_tail_p(args->geo, leaf);
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100468 ltp->bestcount = cpu_to_be32(1);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000469 bestsp = xfs_dir2_leaf_bests_p(ltp);
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100470 bestsp[0] = bf[0].length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 /*
472 * Log the data header and leaf bests table.
473 */
474 if (needlog)
Dave Chinnerbc851782014-06-06 15:20:54 +1000475 xfs_dir2_data_log_header(args, dbp);
Dave Chinner41419562013-10-29 22:11:50 +1100476 xfs_dir3_leaf_check(dp, lbp);
Dave Chinner33363fe2013-04-03 16:11:22 +1100477 xfs_dir3_data_check(dp, dbp);
Dave Chinnerbc851782014-06-06 15:20:54 +1000478 xfs_dir3_leaf_log_bests(args, lbp, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 return 0;
480}
481
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200482STATIC void
Dave Chinner24df33b2013-04-12 07:30:21 +1000483xfs_dir3_leaf_find_stale(
484 struct xfs_dir3_icleaf_hdr *leafhdr,
485 struct xfs_dir2_leaf_entry *ents,
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200486 int index,
487 int *lowstale,
488 int *highstale)
489{
490 /*
491 * Find the first stale entry before our index, if any.
492 */
493 for (*lowstale = index - 1; *lowstale >= 0; --*lowstale) {
Dave Chinner24df33b2013-04-12 07:30:21 +1000494 if (ents[*lowstale].address ==
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200495 cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
496 break;
497 }
498
499 /*
500 * Find the first stale entry at or after our index, if any.
501 * Stop if the result would require moving more entries than using
502 * lowstale.
503 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000504 for (*highstale = index; *highstale < leafhdr->count; ++*highstale) {
505 if (ents[*highstale].address ==
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200506 cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
507 break;
508 if (*lowstale >= 0 && index - *lowstale <= *highstale - index)
509 break;
510 }
511}
512
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200513struct xfs_dir2_leaf_entry *
Dave Chinner24df33b2013-04-12 07:30:21 +1000514xfs_dir3_leaf_find_entry(
515 struct xfs_dir3_icleaf_hdr *leafhdr,
516 struct xfs_dir2_leaf_entry *ents,
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200517 int index, /* leaf table position */
518 int compact, /* need to compact leaves */
519 int lowstale, /* index of prev stale leaf */
520 int highstale, /* index of next stale leaf */
521 int *lfloglow, /* low leaf logging index */
522 int *lfloghigh) /* high leaf logging index */
523{
Dave Chinner24df33b2013-04-12 07:30:21 +1000524 if (!leafhdr->stale) {
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200525 xfs_dir2_leaf_entry_t *lep; /* leaf entry table pointer */
526
527 /*
528 * Now we need to make room to insert the leaf entry.
529 *
530 * If there are no stale entries, just insert a hole at index.
531 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000532 lep = &ents[index];
533 if (index < leafhdr->count)
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200534 memmove(lep + 1, lep,
Dave Chinner24df33b2013-04-12 07:30:21 +1000535 (leafhdr->count - index) * sizeof(*lep));
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200536
537 /*
538 * Record low and high logging indices for the leaf.
539 */
540 *lfloglow = index;
Dave Chinner24df33b2013-04-12 07:30:21 +1000541 *lfloghigh = leafhdr->count++;
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200542 return lep;
543 }
544
545 /*
546 * There are stale entries.
547 *
548 * We will use one of them for the new entry. It's probably not at
549 * the right location, so we'll have to shift some up or down first.
550 *
551 * If we didn't compact before, we need to find the nearest stale
552 * entries before and after our insertion point.
553 */
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200554 if (compact == 0)
Dave Chinner24df33b2013-04-12 07:30:21 +1000555 xfs_dir3_leaf_find_stale(leafhdr, ents, index,
556 &lowstale, &highstale);
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200557
558 /*
559 * If the low one is better, use it.
560 */
561 if (lowstale >= 0 &&
Dave Chinner24df33b2013-04-12 07:30:21 +1000562 (highstale == leafhdr->count ||
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200563 index - lowstale - 1 < highstale - index)) {
564 ASSERT(index - lowstale - 1 >= 0);
Dave Chinner24df33b2013-04-12 07:30:21 +1000565 ASSERT(ents[lowstale].address ==
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200566 cpu_to_be32(XFS_DIR2_NULL_DATAPTR));
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200567
568 /*
569 * Copy entries up to cover the stale entry and make room
570 * for the new entry.
571 */
572 if (index - lowstale - 1 > 0) {
Dave Chinner24df33b2013-04-12 07:30:21 +1000573 memmove(&ents[lowstale], &ents[lowstale + 1],
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200574 (index - lowstale - 1) *
Dave Chinner24df33b2013-04-12 07:30:21 +1000575 sizeof(xfs_dir2_leaf_entry_t));
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200576 }
577 *lfloglow = MIN(lowstale, *lfloglow);
578 *lfloghigh = MAX(index - 1, *lfloghigh);
Dave Chinner24df33b2013-04-12 07:30:21 +1000579 leafhdr->stale--;
580 return &ents[index - 1];
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200581 }
582
583 /*
584 * The high one is better, so use that one.
585 */
586 ASSERT(highstale - index >= 0);
Dave Chinner24df33b2013-04-12 07:30:21 +1000587 ASSERT(ents[highstale].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR));
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200588
589 /*
590 * Copy entries down to cover the stale entry and make room for the
591 * new entry.
592 */
593 if (highstale - index > 0) {
Dave Chinner24df33b2013-04-12 07:30:21 +1000594 memmove(&ents[index + 1], &ents[index],
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200595 (highstale - index) * sizeof(xfs_dir2_leaf_entry_t));
596 }
597 *lfloglow = MIN(index, *lfloglow);
598 *lfloghigh = MAX(highstale, *lfloghigh);
Dave Chinner24df33b2013-04-12 07:30:21 +1000599 leafhdr->stale--;
600 return &ents[index];
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200601}
602
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603/*
604 * Add an entry to a leaf form directory.
605 */
606int /* error */
607xfs_dir2_leaf_addname(
608 xfs_da_args_t *args) /* operation arguments */
609{
Nathan Scott68b3a102006-03-17 17:27:19 +1100610 __be16 *bestsp; /* freespace table in leaf */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 int compact; /* need to compact leaves */
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200612 xfs_dir2_data_hdr_t *hdr; /* data block header */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000613 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 xfs_dir2_data_entry_t *dep; /* data block entry */
615 xfs_inode_t *dp; /* incore directory inode */
616 xfs_dir2_data_unused_t *dup; /* data unused entry */
617 int error; /* error return value */
618 int grown; /* allocated new data block */
619 int highstale; /* index of next stale leaf */
620 int i; /* temporary, index */
621 int index; /* leaf table position */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000622 struct xfs_buf *lbp; /* leaf's buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 xfs_dir2_leaf_t *leaf; /* leaf structure */
624 int length; /* length of new entry */
625 xfs_dir2_leaf_entry_t *lep; /* leaf entry table pointer */
626 int lfloglow; /* low leaf logging index */
627 int lfloghigh; /* high leaf logging index */
628 int lowstale; /* index of prev stale leaf */
629 xfs_dir2_leaf_tail_t *ltp; /* leaf tail pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 int needbytes; /* leaf block bytes needed */
631 int needlog; /* need to log data header */
632 int needscan; /* need to rescan data free */
Nathan Scott3d693c62006-03-17 17:28:27 +1100633 __be16 *tagp; /* end of data entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 xfs_trans_t *tp; /* transaction pointer */
635 xfs_dir2_db_t use_block; /* data block number */
Dave Chinner33363fe2013-04-03 16:11:22 +1100636 struct xfs_dir2_data_free *bf; /* bestfree table */
Dave Chinner24df33b2013-04-12 07:30:21 +1000637 struct xfs_dir2_leaf_entry *ents;
638 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000640 trace_xfs_dir2_leaf_addname(args);
641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 dp = args->dp;
643 tp = args->trans;
Dave Chinnere6f76672012-11-12 22:54:15 +1100644
Dave Chinner7dda6e82014-06-06 15:11:18 +1000645 error = xfs_dir3_leaf_read(tp, dp, args->geo->leafblk, -1, &lbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +1100646 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 return error;
Dave Chinnere6f76672012-11-12 22:54:15 +1100648
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 /*
650 * Look up the entry by hash value and name.
651 * We know it's not there, our caller has already done a lookup.
652 * So the index is of the entry to insert in front of.
653 * But if there are dup hash values the index is of the first of those.
654 */
655 index = xfs_dir2_leaf_search_hash(args, lbp);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000656 leaf = lbp->b_addr;
Dave Chinner8f661932014-06-06 15:15:59 +1000657 ltp = xfs_dir2_leaf_tail_p(args->geo, leaf);
Dave Chinner41419562013-10-29 22:11:50 +1100658 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner01ba43b2013-10-29 22:11:52 +1100659 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000660 bestsp = xfs_dir2_leaf_bests_p(ltp);
Dave Chinner9d23fc82013-10-29 22:11:48 +1100661 length = dp->d_ops->data_entsize(args->namelen);
Dave Chinner24df33b2013-04-12 07:30:21 +1000662
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 /*
664 * See if there are any entries with the same hash value
665 * and space in their block for the new entry.
666 * This is good because it puts multiple same-hash value entries
667 * in a data block, improving the lookup of those entries.
668 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000669 for (use_block = -1, lep = &ents[index];
670 index < leafhdr.count && be32_to_cpu(lep->hashval) == args->hashval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 index++, lep++) {
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100672 if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 continue;
Dave Chinner30028032014-06-06 15:08:18 +1000674 i = xfs_dir2_dataptr_to_db(args->geo, be32_to_cpu(lep->address));
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100675 ASSERT(i < be32_to_cpu(ltp->bestcount));
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200676 ASSERT(bestsp[i] != cpu_to_be16(NULLDATAOFF));
Nathan Scott68b3a102006-03-17 17:27:19 +1100677 if (be16_to_cpu(bestsp[i]) >= length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 use_block = i;
679 break;
680 }
681 }
682 /*
683 * Didn't find a block yet, linear search all the data blocks.
684 */
685 if (use_block == -1) {
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100686 for (i = 0; i < be32_to_cpu(ltp->bestcount); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 /*
688 * Remember a block we see that's missing.
689 */
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200690 if (bestsp[i] == cpu_to_be16(NULLDATAOFF) &&
691 use_block == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 use_block = i;
Nathan Scott68b3a102006-03-17 17:27:19 +1100693 else if (be16_to_cpu(bestsp[i]) >= length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 use_block = i;
695 break;
696 }
697 }
698 }
699 /*
700 * How many bytes do we need in the leaf block?
701 */
Christoph Hellwig22823962011-07-08 14:35:53 +0200702 needbytes = 0;
Dave Chinner24df33b2013-04-12 07:30:21 +1000703 if (!leafhdr.stale)
Christoph Hellwig22823962011-07-08 14:35:53 +0200704 needbytes += sizeof(xfs_dir2_leaf_entry_t);
705 if (use_block == -1)
706 needbytes += sizeof(xfs_dir2_data_off_t);
707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 /*
709 * Now kill use_block if it refers to a missing block, so we
710 * can use it as an indication of allocation needed.
711 */
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200712 if (use_block != -1 && bestsp[use_block] == cpu_to_be16(NULLDATAOFF))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 use_block = -1;
714 /*
715 * If we don't have enough free bytes but we can make enough
716 * by compacting out stale entries, we'll do that.
717 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000718 if ((char *)bestsp - (char *)&ents[leafhdr.count] < needbytes &&
719 leafhdr.stale > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 compact = 1;
Dave Chinner24df33b2013-04-12 07:30:21 +1000721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 /*
723 * Otherwise if we don't have enough free bytes we need to
724 * convert to node form.
725 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000726 else if ((char *)bestsp - (char *)&ents[leafhdr.count] < needbytes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 /*
728 * Just checking or no space reservation, give up.
729 */
Barry Naujok6a178102008-05-21 16:42:05 +1000730 if ((args->op_flags & XFS_DA_OP_JUSTCHECK) ||
731 args->total == 0) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000732 xfs_trans_brelse(tp, lbp);
Dave Chinner24513372014-06-25 14:58:08 +1000733 return -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 }
735 /*
736 * Convert to node form.
737 */
738 error = xfs_dir2_leaf_to_node(args, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 if (error)
740 return error;
741 /*
742 * Then add the new entry.
743 */
744 return xfs_dir2_node_addname(args);
745 }
746 /*
747 * Otherwise it will fit without compaction.
748 */
749 else
750 compact = 0;
751 /*
752 * If just checking, then it will fit unless we needed to allocate
753 * a new data block.
754 */
Barry Naujok6a178102008-05-21 16:42:05 +1000755 if (args->op_flags & XFS_DA_OP_JUSTCHECK) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000756 xfs_trans_brelse(tp, lbp);
Dave Chinner24513372014-06-25 14:58:08 +1000757 return use_block == -1 ? -ENOSPC : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 }
759 /*
760 * If no allocations are allowed, return now before we've
761 * changed anything.
762 */
763 if (args->total == 0 && use_block == -1) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000764 xfs_trans_brelse(tp, lbp);
Dave Chinner24513372014-06-25 14:58:08 +1000765 return -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 }
767 /*
768 * Need to compact the leaf entries, removing stale ones.
769 * Leave one stale entry behind - the one closest to our
770 * insertion index - and we'll shift that one to our insertion
771 * point later.
772 */
773 if (compact) {
Dave Chinner24df33b2013-04-12 07:30:21 +1000774 xfs_dir3_leaf_compact_x1(&leafhdr, ents, &index, &lowstale,
775 &highstale, &lfloglow, &lfloghigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 }
777 /*
778 * There are stale entries, so we'll need log-low and log-high
779 * impossibly bad values later.
780 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000781 else if (leafhdr.stale) {
782 lfloglow = leafhdr.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 lfloghigh = -1;
784 }
785 /*
786 * If there was no data block space found, we need to allocate
787 * a new one.
788 */
789 if (use_block == -1) {
790 /*
791 * Add the new data block.
792 */
793 if ((error = xfs_dir2_grow_inode(args, XFS_DIR2_DATA_SPACE,
794 &use_block))) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000795 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 return error;
797 }
798 /*
799 * Initialize the block.
800 */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100801 if ((error = xfs_dir3_data_init(args, use_block, &dbp))) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000802 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 return error;
804 }
805 /*
806 * If we're adding a new data block on the end we need to
807 * extend the bests table. Copy it up one entry.
808 */
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100809 if (use_block >= be32_to_cpu(ltp->bestcount)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 bestsp--;
811 memmove(&bestsp[0], &bestsp[1],
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100812 be32_to_cpu(ltp->bestcount) * sizeof(bestsp[0]));
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800813 be32_add_cpu(&ltp->bestcount, 1);
Dave Chinnerbc851782014-06-06 15:20:54 +1000814 xfs_dir3_leaf_log_tail(args, lbp);
815 xfs_dir3_leaf_log_bests(args, lbp, 0,
816 be32_to_cpu(ltp->bestcount) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 }
818 /*
819 * If we're filling in a previously empty block just log it.
820 */
821 else
Dave Chinnerbc851782014-06-06 15:20:54 +1000822 xfs_dir3_leaf_log_bests(args, lbp, use_block, use_block);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000823 hdr = dbp->b_addr;
Dave Chinner2ca98772013-10-29 22:11:49 +1100824 bf = dp->d_ops->data_bestfree_p(hdr);
Dave Chinner33363fe2013-04-03 16:11:22 +1100825 bestsp[use_block] = bf[0].length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 grown = 1;
Dave Chinnere4813572012-11-12 22:54:14 +1100827 } else {
828 /*
829 * Already had space in some data block.
830 * Just read that one in.
831 */
Dave Chinner33363fe2013-04-03 16:11:22 +1100832 error = xfs_dir3_data_read(tp, dp,
Dave Chinner2998ab12014-06-06 15:07:53 +1000833 xfs_dir2_db_to_da(args->geo, use_block),
834 -1, &dbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +1100835 if (error) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000836 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 return error;
838 }
Dave Chinner1d9025e2012-06-22 18:50:14 +1000839 hdr = dbp->b_addr;
Dave Chinner2ca98772013-10-29 22:11:49 +1100840 bf = dp->d_ops->data_bestfree_p(hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 grown = 0;
842 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 /*
844 * Point to the biggest freespace in our data block.
845 */
846 dup = (xfs_dir2_data_unused_t *)
Dave Chinner33363fe2013-04-03 16:11:22 +1100847 ((char *)hdr + be16_to_cpu(bf[0].offset));
Nathan Scottad354eb2006-03-17 17:27:37 +1100848 ASSERT(be16_to_cpu(dup->length) >= length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 needscan = needlog = 0;
850 /*
851 * Mark the initial part of our freespace in use for the new entry.
852 */
Dave Chinnerbc851782014-06-06 15:20:54 +1000853 xfs_dir2_data_use_free(args, dbp, dup,
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200854 (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr), length,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 &needlog, &needscan);
856 /*
857 * Initialize our new entry (at last).
858 */
859 dep = (xfs_dir2_data_entry_t *)dup;
Christoph Hellwigff9901c2006-06-09 14:48:37 +1000860 dep->inumber = cpu_to_be64(args->inumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 dep->namelen = args->namelen;
862 memcpy(dep->name, args->name, dep->namelen);
Dave Chinner9d23fc82013-10-29 22:11:48 +1100863 dp->d_ops->data_put_ftype(dep, args->filetype);
864 tagp = dp->d_ops->data_entry_tag_p(dep);
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200865 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 /*
867 * Need to scan fix up the bestfree table.
868 */
869 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +1100870 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 /*
872 * Need to log the data block's header.
873 */
874 if (needlog)
Dave Chinnerbc851782014-06-06 15:20:54 +1000875 xfs_dir2_data_log_header(args, dbp);
876 xfs_dir2_data_log_entry(args, dbp, dep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 /*
878 * If the bests table needs to be changed, do it.
879 * Log the change unless we've already done that.
880 */
Dave Chinner33363fe2013-04-03 16:11:22 +1100881 if (be16_to_cpu(bestsp[use_block]) != be16_to_cpu(bf[0].length)) {
882 bestsp[use_block] = bf[0].length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 if (!grown)
Dave Chinnerbc851782014-06-06 15:20:54 +1000884 xfs_dir3_leaf_log_bests(args, lbp, use_block, use_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 }
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200886
Dave Chinner24df33b2013-04-12 07:30:21 +1000887 lep = xfs_dir3_leaf_find_entry(&leafhdr, ents, index, compact, lowstale,
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200888 highstale, &lfloglow, &lfloghigh);
889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 /*
891 * Fill in the new leaf entry.
892 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100893 lep->hashval = cpu_to_be32(args->hashval);
Dave Chinner30028032014-06-06 15:08:18 +1000894 lep->address = cpu_to_be32(
895 xfs_dir2_db_off_to_dataptr(args->geo, use_block,
Nathan Scott3d693c62006-03-17 17:28:27 +1100896 be16_to_cpu(*tagp)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 /*
898 * Log the leaf fields and give up the buffers.
899 */
Dave Chinner01ba43b2013-10-29 22:11:52 +1100900 dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr);
Dave Chinnerbc851782014-06-06 15:20:54 +1000901 xfs_dir3_leaf_log_header(args, lbp);
902 xfs_dir3_leaf_log_ents(args, lbp, lfloglow, lfloghigh);
Dave Chinner41419562013-10-29 22:11:50 +1100903 xfs_dir3_leaf_check(dp, lbp);
Dave Chinner33363fe2013-04-03 16:11:22 +1100904 xfs_dir3_data_check(dp, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 return 0;
906}
907
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908/*
909 * Compact out any stale entries in the leaf.
910 * Log the header and changed leaf entries, if any.
911 */
912void
Dave Chinner24df33b2013-04-12 07:30:21 +1000913xfs_dir3_leaf_compact(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 xfs_da_args_t *args, /* operation arguments */
Dave Chinner24df33b2013-04-12 07:30:21 +1000915 struct xfs_dir3_icleaf_hdr *leafhdr,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000916 struct xfs_buf *bp) /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917{
918 int from; /* source leaf index */
919 xfs_dir2_leaf_t *leaf; /* leaf structure */
920 int loglow; /* first leaf entry to log */
921 int to; /* target leaf index */
Dave Chinner24df33b2013-04-12 07:30:21 +1000922 struct xfs_dir2_leaf_entry *ents;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100923 struct xfs_inode *dp = args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
Dave Chinner1d9025e2012-06-22 18:50:14 +1000925 leaf = bp->b_addr;
Dave Chinner24df33b2013-04-12 07:30:21 +1000926 if (!leafhdr->stale)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 return;
Dave Chinner24df33b2013-04-12 07:30:21 +1000928
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 /*
930 * Compress out the stale entries in place.
931 */
Dave Chinner01ba43b2013-10-29 22:11:52 +1100932 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000933 for (from = to = 0, loglow = -1; from < leafhdr->count; from++) {
934 if (ents[from].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 continue;
936 /*
937 * Only actually copy the entries that are different.
938 */
939 if (from > to) {
940 if (loglow == -1)
941 loglow = to;
Dave Chinner24df33b2013-04-12 07:30:21 +1000942 ents[to] = ents[from];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 }
944 to++;
945 }
946 /*
947 * Update and log the header, log the leaf entries.
948 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000949 ASSERT(leafhdr->stale == from - to);
950 leafhdr->count -= leafhdr->stale;
951 leafhdr->stale = 0;
952
Dave Chinner01ba43b2013-10-29 22:11:52 +1100953 dp->d_ops->leaf_hdr_to_disk(leaf, leafhdr);
Dave Chinnerbc851782014-06-06 15:20:54 +1000954 xfs_dir3_leaf_log_header(args, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 if (loglow != -1)
Dave Chinnerbc851782014-06-06 15:20:54 +1000956 xfs_dir3_leaf_log_ents(args, bp, loglow, to - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957}
958
959/*
960 * Compact the leaf entries, removing stale ones.
961 * Leave one stale entry behind - the one closest to our
962 * insertion index - and the caller will shift that one to our insertion
963 * point later.
964 * Return new insertion index, where the remaining stale entry is,
965 * and leaf logging indices.
966 */
967void
Dave Chinner24df33b2013-04-12 07:30:21 +1000968xfs_dir3_leaf_compact_x1(
969 struct xfs_dir3_icleaf_hdr *leafhdr,
970 struct xfs_dir2_leaf_entry *ents,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 int *indexp, /* insertion index */
972 int *lowstalep, /* out: stale entry before us */
973 int *highstalep, /* out: stale entry after us */
974 int *lowlogp, /* out: low log index */
975 int *highlogp) /* out: high log index */
976{
977 int from; /* source copy index */
978 int highstale; /* stale entry at/after index */
979 int index; /* insertion index */
980 int keepstale; /* source index of kept stale */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 int lowstale; /* stale entry before index */
982 int newindex=0; /* new insertion index */
983 int to; /* destination copy index */
984
Dave Chinner24df33b2013-04-12 07:30:21 +1000985 ASSERT(leafhdr->stale > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 index = *indexp;
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200987
Dave Chinner24df33b2013-04-12 07:30:21 +1000988 xfs_dir3_leaf_find_stale(leafhdr, ents, index, &lowstale, &highstale);
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 /*
991 * Pick the better of lowstale and highstale.
992 */
993 if (lowstale >= 0 &&
Dave Chinner24df33b2013-04-12 07:30:21 +1000994 (highstale == leafhdr->count ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 index - lowstale <= highstale - index))
996 keepstale = lowstale;
997 else
998 keepstale = highstale;
999 /*
1000 * Copy the entries in place, removing all the stale entries
1001 * except keepstale.
1002 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001003 for (from = to = 0; from < leafhdr->count; from++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 /*
1005 * Notice the new value of index.
1006 */
1007 if (index == from)
1008 newindex = to;
1009 if (from != keepstale &&
Dave Chinner24df33b2013-04-12 07:30:21 +10001010 ents[from].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 if (from == to)
1012 *lowlogp = to;
1013 continue;
1014 }
1015 /*
1016 * Record the new keepstale value for the insertion.
1017 */
1018 if (from == keepstale)
1019 lowstale = highstale = to;
1020 /*
1021 * Copy only the entries that have moved.
1022 */
1023 if (from > to)
Dave Chinner24df33b2013-04-12 07:30:21 +10001024 ents[to] = ents[from];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 to++;
1026 }
1027 ASSERT(from > to);
1028 /*
1029 * If the insertion point was past the last entry,
1030 * set the new insertion point accordingly.
1031 */
1032 if (index == from)
1033 newindex = to;
1034 *indexp = newindex;
1035 /*
1036 * Adjust the leaf header values.
1037 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001038 leafhdr->count -= from - to;
1039 leafhdr->stale = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 /*
1041 * Remember the low/high stale value only in the "right"
1042 * direction.
1043 */
1044 if (lowstale >= newindex)
1045 lowstale = -1;
1046 else
Dave Chinner24df33b2013-04-12 07:30:21 +10001047 highstale = leafhdr->count;
1048 *highlogp = leafhdr->count - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 *lowstalep = lowstale;
1050 *highstalep = highstale;
1051}
1052
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053/*
1054 * Log the bests entries indicated from a leaf1 block.
1055 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001056static void
Dave Chinner24df33b2013-04-12 07:30:21 +10001057xfs_dir3_leaf_log_bests(
Dave Chinnerbc851782014-06-06 15:20:54 +10001058 struct xfs_da_args *args,
Dave Chinner1d9025e2012-06-22 18:50:14 +10001059 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 int first, /* first entry to log */
1061 int last) /* last entry to log */
1062{
Nathan Scott68b3a102006-03-17 17:27:19 +11001063 __be16 *firstb; /* pointer to first entry */
1064 __be16 *lastb; /* pointer to last entry */
Dave Chinner24df33b2013-04-12 07:30:21 +10001065 struct xfs_dir2_leaf *leaf = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
1067
Dave Chinner24df33b2013-04-12 07:30:21 +10001068 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC) ||
1069 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAF1_MAGIC));
1070
Dave Chinnerbc851782014-06-06 15:20:54 +10001071 ltp = xfs_dir2_leaf_tail_p(args->geo, leaf);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001072 firstb = xfs_dir2_leaf_bests_p(ltp) + first;
1073 lastb = xfs_dir2_leaf_bests_p(ltp) + last;
Dave Chinnerbc851782014-06-06 15:20:54 +10001074 xfs_trans_log_buf(args->trans, bp,
1075 (uint)((char *)firstb - (char *)leaf),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 (uint)((char *)lastb - (char *)leaf + sizeof(*lastb) - 1));
1077}
1078
1079/*
1080 * Log the leaf entries indicated from a leaf1 or leafn block.
1081 */
1082void
Dave Chinner24df33b2013-04-12 07:30:21 +10001083xfs_dir3_leaf_log_ents(
Dave Chinnerbc851782014-06-06 15:20:54 +10001084 struct xfs_da_args *args,
Dave Chinner41419562013-10-29 22:11:50 +11001085 struct xfs_buf *bp,
1086 int first,
1087 int last)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
1089 xfs_dir2_leaf_entry_t *firstlep; /* pointer to first entry */
1090 xfs_dir2_leaf_entry_t *lastlep; /* pointer to last entry */
Dave Chinner24df33b2013-04-12 07:30:21 +10001091 struct xfs_dir2_leaf *leaf = bp->b_addr;
1092 struct xfs_dir2_leaf_entry *ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001094 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC) ||
Dave Chinner24df33b2013-04-12 07:30:21 +10001095 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAF1_MAGIC) ||
1096 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
1097 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC));
1098
Dave Chinnerbc851782014-06-06 15:20:54 +10001099 ents = args->dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001100 firstlep = &ents[first];
1101 lastlep = &ents[last];
Dave Chinnerbc851782014-06-06 15:20:54 +10001102 xfs_trans_log_buf(args->trans, bp,
1103 (uint)((char *)firstlep - (char *)leaf),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 (uint)((char *)lastlep - (char *)leaf + sizeof(*lastlep) - 1));
1105}
1106
1107/*
1108 * Log the header of the leaf1 or leafn block.
1109 */
1110void
Dave Chinner24df33b2013-04-12 07:30:21 +10001111xfs_dir3_leaf_log_header(
Dave Chinnerbc851782014-06-06 15:20:54 +10001112 struct xfs_da_args *args,
Dave Chinner1d9025e2012-06-22 18:50:14 +10001113 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114{
Dave Chinner24df33b2013-04-12 07:30:21 +10001115 struct xfs_dir2_leaf *leaf = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001117 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC) ||
Dave Chinner24df33b2013-04-12 07:30:21 +10001118 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAF1_MAGIC) ||
1119 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
1120 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC));
1121
Dave Chinnerbc851782014-06-06 15:20:54 +10001122 xfs_trans_log_buf(args->trans, bp,
1123 (uint)((char *)&leaf->hdr - (char *)leaf),
1124 args->dp->d_ops->leaf_hdr_size - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125}
1126
1127/*
1128 * Log the tail of the leaf1 block.
1129 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001130STATIC void
Dave Chinner24df33b2013-04-12 07:30:21 +10001131xfs_dir3_leaf_log_tail(
Dave Chinnerbc851782014-06-06 15:20:54 +10001132 struct xfs_da_args *args,
Dave Chinner1d9025e2012-06-22 18:50:14 +10001133 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134{
Dave Chinner24df33b2013-04-12 07:30:21 +10001135 struct xfs_dir2_leaf *leaf = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Dave Chinner24df33b2013-04-12 07:30:21 +10001138 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC) ||
1139 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAF1_MAGIC) ||
1140 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
1141 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC));
1142
Dave Chinnerbc851782014-06-06 15:20:54 +10001143 ltp = xfs_dir2_leaf_tail_p(args->geo, leaf);
1144 xfs_trans_log_buf(args->trans, bp, (uint)((char *)ltp - (char *)leaf),
1145 (uint)(args->geo->blksize - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146}
1147
1148/*
1149 * Look up the entry referred to by args in the leaf format directory.
1150 * Most of the work is done by the xfs_dir2_leaf_lookup_int routine which
1151 * is also used by the node-format code.
1152 */
1153int
1154xfs_dir2_leaf_lookup(
1155 xfs_da_args_t *args) /* operation arguments */
1156{
Dave Chinner1d9025e2012-06-22 18:50:14 +10001157 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 xfs_dir2_data_entry_t *dep; /* data block entry */
1159 xfs_inode_t *dp; /* incore directory inode */
1160 int error; /* error return code */
1161 int index; /* found entry index */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001162 struct xfs_buf *lbp; /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 xfs_dir2_leaf_t *leaf; /* leaf structure */
1164 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1165 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner24df33b2013-04-12 07:30:21 +10001166 struct xfs_dir2_leaf_entry *ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001168 trace_xfs_dir2_leaf_lookup(args);
1169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 /*
1171 * Look up name in the leaf block, returning both buffers and index.
1172 */
1173 if ((error = xfs_dir2_leaf_lookup_int(args, &lbp, &index, &dbp))) {
1174 return error;
1175 }
1176 tp = args->trans;
1177 dp = args->dp;
Dave Chinner41419562013-10-29 22:11:50 +11001178 xfs_dir3_leaf_check(dp, lbp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001179 leaf = lbp->b_addr;
Dave Chinner41419562013-10-29 22:11:50 +11001180 ents = dp->d_ops->leaf_ents_p(leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 /*
1182 * Get to the leaf entry and contained data entry address.
1183 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001184 lep = &ents[index];
1185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 /*
1187 * Point to the data entry.
1188 */
1189 dep = (xfs_dir2_data_entry_t *)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001190 ((char *)dbp->b_addr +
Dave Chinner30028032014-06-06 15:08:18 +10001191 xfs_dir2_dataptr_to_off(args->geo, be32_to_cpu(lep->address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 /*
Barry Naujok384f3ce2008-05-21 16:58:22 +10001193 * Return the found inode number & CI name if appropriate
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +10001195 args->inumber = be64_to_cpu(dep->inumber);
Dave Chinner9d23fc82013-10-29 22:11:48 +11001196 args->filetype = dp->d_ops->data_get_ftype(dep);
Barry Naujok384f3ce2008-05-21 16:58:22 +10001197 error = xfs_dir_cilookup_result(args, dep->name, dep->namelen);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001198 xfs_trans_brelse(tp, dbp);
1199 xfs_trans_brelse(tp, lbp);
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001200 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201}
1202
1203/*
1204 * Look up name/hash in the leaf block.
1205 * Fill in indexp with the found index, and dbpp with the data buffer.
1206 * If not found dbpp will be NULL, and ENOENT comes back.
1207 * lbpp will always be filled in with the leaf buffer unless there's an error.
1208 */
1209static int /* error */
1210xfs_dir2_leaf_lookup_int(
1211 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001212 struct xfs_buf **lbpp, /* out: leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 int *indexp, /* out: index in leaf block */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001214 struct xfs_buf **dbpp) /* out: data buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215{
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001216 xfs_dir2_db_t curdb = -1; /* current data block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001217 struct xfs_buf *dbp = NULL; /* data buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 xfs_dir2_data_entry_t *dep; /* data entry */
1219 xfs_inode_t *dp; /* incore directory inode */
1220 int error; /* error return code */
1221 int index; /* index in leaf block */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001222 struct xfs_buf *lbp; /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1224 xfs_dir2_leaf_t *leaf; /* leaf structure */
1225 xfs_mount_t *mp; /* filesystem mount point */
1226 xfs_dir2_db_t newdb; /* new data block number */
1227 xfs_trans_t *tp; /* transaction pointer */
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001228 xfs_dir2_db_t cidb = -1; /* case match data block no. */
Barry Naujok5163f952008-05-21 16:41:01 +10001229 enum xfs_dacmp cmp; /* name compare result */
Dave Chinner24df33b2013-04-12 07:30:21 +10001230 struct xfs_dir2_leaf_entry *ents;
1231 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
1233 dp = args->dp;
1234 tp = args->trans;
1235 mp = dp->i_mount;
Dave Chinnere6f76672012-11-12 22:54:15 +11001236
Dave Chinner7dda6e82014-06-06 15:11:18 +10001237 error = xfs_dir3_leaf_read(tp, dp, args->geo->leafblk, -1, &lbp);
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001238 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 return error;
Dave Chinnere6f76672012-11-12 22:54:15 +11001240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 *lbpp = lbp;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001242 leaf = lbp->b_addr;
Dave Chinner41419562013-10-29 22:11:50 +11001243 xfs_dir3_leaf_check(dp, lbp);
1244 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner01ba43b2013-10-29 22:11:52 +11001245 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 /*
1248 * Look for the first leaf entry with our hash value.
1249 */
1250 index = xfs_dir2_leaf_search_hash(args, lbp);
1251 /*
1252 * Loop over all the entries with the right hash value
1253 * looking to match the name.
1254 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001255 for (lep = &ents[index];
1256 index < leafhdr.count && be32_to_cpu(lep->hashval) == args->hashval;
1257 lep++, index++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 /*
1259 * Skip over stale leaf entries.
1260 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001261 if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 continue;
1263 /*
1264 * Get the new data block number.
1265 */
Dave Chinner30028032014-06-06 15:08:18 +10001266 newdb = xfs_dir2_dataptr_to_db(args->geo,
1267 be32_to_cpu(lep->address));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 /*
1269 * If it's not the same as the old data block number,
1270 * need to pitch the old one and read the new one.
1271 */
1272 if (newdb != curdb) {
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001273 if (dbp)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001274 xfs_trans_brelse(tp, dbp);
Dave Chinner33363fe2013-04-03 16:11:22 +11001275 error = xfs_dir3_data_read(tp, dp,
Dave Chinner2998ab12014-06-06 15:07:53 +10001276 xfs_dir2_db_to_da(args->geo, newdb),
1277 -1, &dbp);
Barry Naujok5163f952008-05-21 16:41:01 +10001278 if (error) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001279 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 return error;
1281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 curdb = newdb;
1283 }
1284 /*
1285 * Point to the data entry.
1286 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001287 dep = (xfs_dir2_data_entry_t *)((char *)dbp->b_addr +
Dave Chinner30028032014-06-06 15:08:18 +10001288 xfs_dir2_dataptr_to_off(args->geo,
1289 be32_to_cpu(lep->address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 /*
Barry Naujok5163f952008-05-21 16:41:01 +10001291 * Compare name and if it's an exact match, return the index
1292 * and buffer. If it's the first case-insensitive match, store
1293 * the index and buffer and continue looking for an exact match.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 */
Barry Naujok5163f952008-05-21 16:41:01 +10001295 cmp = mp->m_dirnameops->compname(args, dep->name, dep->namelen);
1296 if (cmp != XFS_CMP_DIFFERENT && cmp != args->cmpresult) {
1297 args->cmpresult = cmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 *indexp = index;
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001299 /* case exact match: return the current buffer. */
Barry Naujok5163f952008-05-21 16:41:01 +10001300 if (cmp == XFS_CMP_EXACT) {
Barry Naujok5163f952008-05-21 16:41:01 +10001301 *dbpp = dbp;
1302 return 0;
1303 }
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001304 cidb = curdb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 }
1306 }
Barry Naujok6a178102008-05-21 16:42:05 +10001307 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
Barry Naujok5163f952008-05-21 16:41:01 +10001308 /*
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001309 * Here, we can only be doing a lookup (not a rename or remove).
1310 * If a case-insensitive match was found earlier, re-read the
1311 * appropriate data block if required and return it.
Barry Naujok5163f952008-05-21 16:41:01 +10001312 */
1313 if (args->cmpresult == XFS_CMP_CASE) {
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001314 ASSERT(cidb != -1);
1315 if (cidb != curdb) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001316 xfs_trans_brelse(tp, dbp);
Dave Chinner33363fe2013-04-03 16:11:22 +11001317 error = xfs_dir3_data_read(tp, dp,
Dave Chinner2998ab12014-06-06 15:07:53 +10001318 xfs_dir2_db_to_da(args->geo, cidb),
1319 -1, &dbp);
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001320 if (error) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001321 xfs_trans_brelse(tp, lbp);
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001322 return error;
1323 }
1324 }
1325 *dbpp = dbp;
Barry Naujok5163f952008-05-21 16:41:01 +10001326 return 0;
1327 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 /*
Dave Chinner24513372014-06-25 14:58:08 +10001329 * No match found, return -ENOENT.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 */
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001331 ASSERT(cidb == -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 if (dbp)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001333 xfs_trans_brelse(tp, dbp);
1334 xfs_trans_brelse(tp, lbp);
Dave Chinner24513372014-06-25 14:58:08 +10001335 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336}
1337
1338/*
1339 * Remove an entry from a leaf format directory.
1340 */
1341int /* error */
1342xfs_dir2_leaf_removename(
1343 xfs_da_args_t *args) /* operation arguments */
1344{
Nathan Scott68b3a102006-03-17 17:27:19 +11001345 __be16 *bestsp; /* leaf block best freespace */
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001346 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 xfs_dir2_db_t db; /* data block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001348 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 xfs_dir2_data_entry_t *dep; /* data entry structure */
1350 xfs_inode_t *dp; /* incore directory inode */
1351 int error; /* error return code */
1352 xfs_dir2_db_t i; /* temporary data block # */
1353 int index; /* index into leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001354 struct xfs_buf *lbp; /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 xfs_dir2_leaf_t *leaf; /* leaf structure */
1356 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1357 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 int needlog; /* need to log data header */
1359 int needscan; /* need to rescan data frees */
1360 xfs_dir2_data_off_t oldbest; /* old value of best free */
Dave Chinner33363fe2013-04-03 16:11:22 +11001361 struct xfs_dir2_data_free *bf; /* bestfree table */
Dave Chinner24df33b2013-04-12 07:30:21 +10001362 struct xfs_dir2_leaf_entry *ents;
1363 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001365 trace_xfs_dir2_leaf_removename(args);
1366
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 /*
1368 * Lookup the leaf entry, get the leaf and data blocks read in.
1369 */
1370 if ((error = xfs_dir2_leaf_lookup_int(args, &lbp, &index, &dbp))) {
1371 return error;
1372 }
1373 dp = args->dp;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001374 leaf = lbp->b_addr;
1375 hdr = dbp->b_addr;
Dave Chinner33363fe2013-04-03 16:11:22 +11001376 xfs_dir3_data_check(dp, dbp);
Dave Chinner2ca98772013-10-29 22:11:49 +11001377 bf = dp->d_ops->data_bestfree_p(hdr);
Dave Chinner01ba43b2013-10-29 22:11:52 +11001378 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +11001379 ents = dp->d_ops->leaf_ents_p(leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 /*
1381 * Point to the leaf entry, use that to point to the data entry.
1382 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001383 lep = &ents[index];
Dave Chinner30028032014-06-06 15:08:18 +10001384 db = xfs_dir2_dataptr_to_db(args->geo, be32_to_cpu(lep->address));
1385 dep = (xfs_dir2_data_entry_t *)((char *)hdr +
1386 xfs_dir2_dataptr_to_off(args->geo, be32_to_cpu(lep->address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 needscan = needlog = 0;
Dave Chinner33363fe2013-04-03 16:11:22 +11001388 oldbest = be16_to_cpu(bf[0].length);
Dave Chinner8f661932014-06-06 15:15:59 +10001389 ltp = xfs_dir2_leaf_tail_p(args->geo, leaf);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001390 bestsp = xfs_dir2_leaf_bests_p(ltp);
Nathan Scott68b3a102006-03-17 17:27:19 +11001391 ASSERT(be16_to_cpu(bestsp[db]) == oldbest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 /*
1393 * Mark the former data entry unused.
1394 */
Dave Chinnerbc851782014-06-06 15:20:54 +10001395 xfs_dir2_data_make_free(args, dbp,
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001396 (xfs_dir2_data_aoff_t)((char *)dep - (char *)hdr),
Dave Chinner9d23fc82013-10-29 22:11:48 +11001397 dp->d_ops->data_entsize(dep->namelen), &needlog, &needscan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 /*
1399 * We just mark the leaf entry stale by putting a null in it.
1400 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001401 leafhdr.stale++;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001402 dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr);
Dave Chinnerbc851782014-06-06 15:20:54 +10001403 xfs_dir3_leaf_log_header(args, lbp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001404
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001405 lep->address = cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
Dave Chinnerbc851782014-06-06 15:20:54 +10001406 xfs_dir3_leaf_log_ents(args, lbp, index, index);
Dave Chinner24df33b2013-04-12 07:30:21 +10001407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 /*
1409 * Scan the freespace in the data block again if necessary,
1410 * log the data block header if necessary.
1411 */
1412 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +11001413 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 if (needlog)
Dave Chinnerbc851782014-06-06 15:20:54 +10001415 xfs_dir2_data_log_header(args, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 /*
1417 * If the longest freespace in the data block has changed,
1418 * put the new value in the bests table and log that.
1419 */
Dave Chinner33363fe2013-04-03 16:11:22 +11001420 if (be16_to_cpu(bf[0].length) != oldbest) {
1421 bestsp[db] = bf[0].length;
Dave Chinnerbc851782014-06-06 15:20:54 +10001422 xfs_dir3_leaf_log_bests(args, lbp, db, db);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 }
Dave Chinner33363fe2013-04-03 16:11:22 +11001424 xfs_dir3_data_check(dp, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 /*
1426 * If the data block is now empty then get rid of the data block.
1427 */
Dave Chinner33363fe2013-04-03 16:11:22 +11001428 if (be16_to_cpu(bf[0].length) ==
Dave Chinner8f661932014-06-06 15:15:59 +10001429 args->geo->blksize - dp->d_ops->data_entry_offset) {
Dave Chinner7dda6e82014-06-06 15:11:18 +10001430 ASSERT(db != args->geo->datablk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 if ((error = xfs_dir2_shrink_inode(args, db, dbp))) {
1432 /*
1433 * Nope, can't get rid of it because it caused
1434 * allocation of a bmap btree block to do so.
1435 * Just go on, returning success, leaving the
1436 * empty block in place.
1437 */
Dave Chinner24513372014-06-25 14:58:08 +10001438 if (error == -ENOSPC && args->total == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 error = 0;
Dave Chinner41419562013-10-29 22:11:50 +11001440 xfs_dir3_leaf_check(dp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 return error;
1442 }
1443 dbp = NULL;
1444 /*
1445 * If this is the last data block then compact the
1446 * bests table by getting rid of entries.
1447 */
Nathan Scottafbcb3f2006-03-17 17:27:28 +11001448 if (db == be32_to_cpu(ltp->bestcount) - 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 /*
1450 * Look for the last active entry (i).
1451 */
1452 for (i = db - 1; i > 0; i--) {
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001453 if (bestsp[i] != cpu_to_be16(NULLDATAOFF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 break;
1455 }
1456 /*
1457 * Copy the table down so inactive entries at the
1458 * end are removed.
1459 */
1460 memmove(&bestsp[db - i], bestsp,
Nathan Scottafbcb3f2006-03-17 17:27:28 +11001461 (be32_to_cpu(ltp->bestcount) - (db - i)) * sizeof(*bestsp));
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001462 be32_add_cpu(&ltp->bestcount, -(db - i));
Dave Chinnerbc851782014-06-06 15:20:54 +10001463 xfs_dir3_leaf_log_tail(args, lbp);
1464 xfs_dir3_leaf_log_bests(args, lbp, 0,
1465 be32_to_cpu(ltp->bestcount) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 } else
Nathan Scott68b3a102006-03-17 17:27:19 +11001467 bestsp[db] = cpu_to_be16(NULLDATAOFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 }
1469 /*
1470 * If the data block was not the first one, drop it.
1471 */
Dave Chinner7dda6e82014-06-06 15:11:18 +10001472 else if (db != args->geo->datablk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 dbp = NULL;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001474
Dave Chinner41419562013-10-29 22:11:50 +11001475 xfs_dir3_leaf_check(dp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 /*
1477 * See if we can convert to block form.
1478 */
1479 return xfs_dir2_leaf_to_block(args, lbp, dbp);
1480}
1481
1482/*
1483 * Replace the inode number in a leaf format directory entry.
1484 */
1485int /* error */
1486xfs_dir2_leaf_replace(
1487 xfs_da_args_t *args) /* operation arguments */
1488{
Dave Chinner1d9025e2012-06-22 18:50:14 +10001489 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 xfs_dir2_data_entry_t *dep; /* data block entry */
1491 xfs_inode_t *dp; /* incore directory inode */
1492 int error; /* error return code */
1493 int index; /* index of leaf entry */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001494 struct xfs_buf *lbp; /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 xfs_dir2_leaf_t *leaf; /* leaf structure */
1496 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1497 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner24df33b2013-04-12 07:30:21 +10001498 struct xfs_dir2_leaf_entry *ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001500 trace_xfs_dir2_leaf_replace(args);
1501
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 /*
1503 * Look up the entry.
1504 */
1505 if ((error = xfs_dir2_leaf_lookup_int(args, &lbp, &index, &dbp))) {
1506 return error;
1507 }
1508 dp = args->dp;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001509 leaf = lbp->b_addr;
Dave Chinner41419562013-10-29 22:11:50 +11001510 ents = dp->d_ops->leaf_ents_p(leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 /*
1512 * Point to the leaf entry, get data address from it.
1513 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001514 lep = &ents[index];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 /*
1516 * Point to the data entry.
1517 */
1518 dep = (xfs_dir2_data_entry_t *)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001519 ((char *)dbp->b_addr +
Dave Chinner30028032014-06-06 15:08:18 +10001520 xfs_dir2_dataptr_to_off(args->geo, be32_to_cpu(lep->address)));
Christoph Hellwigff9901c2006-06-09 14:48:37 +10001521 ASSERT(args->inumber != be64_to_cpu(dep->inumber));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 /*
1523 * Put the new inode number in, log it.
1524 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +10001525 dep->inumber = cpu_to_be64(args->inumber);
Dave Chinner9d23fc82013-10-29 22:11:48 +11001526 dp->d_ops->data_put_ftype(dep, args->filetype);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 tp = args->trans;
Dave Chinnerbc851782014-06-06 15:20:54 +10001528 xfs_dir2_data_log_entry(args, dbp, dep);
Dave Chinner41419562013-10-29 22:11:50 +11001529 xfs_dir3_leaf_check(dp, lbp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001530 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 return 0;
1532}
1533
1534/*
1535 * Return index in the leaf block (lbp) which is either the first
1536 * one with this hash value, or if there are none, the insert point
1537 * for that hash value.
1538 */
1539int /* index value */
1540xfs_dir2_leaf_search_hash(
1541 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001542 struct xfs_buf *lbp) /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543{
1544 xfs_dahash_t hash=0; /* hash from this entry */
1545 xfs_dahash_t hashwant; /* hash value looking for */
1546 int high; /* high leaf index */
1547 int low; /* low leaf index */
1548 xfs_dir2_leaf_t *leaf; /* leaf structure */
1549 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1550 int mid=0; /* current leaf index */
Dave Chinner24df33b2013-04-12 07:30:21 +10001551 struct xfs_dir2_leaf_entry *ents;
1552 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Dave Chinner1d9025e2012-06-22 18:50:14 +10001554 leaf = lbp->b_addr;
Dave Chinner41419562013-10-29 22:11:50 +11001555 ents = args->dp->d_ops->leaf_ents_p(leaf);
Dave Chinner01ba43b2013-10-29 22:11:52 +11001556 args->dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001557
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 /*
1559 * Note, the table cannot be empty, so we have to go through the loop.
1560 * Binary search the leaf entries looking for our hash value.
1561 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001562 for (lep = ents, low = 0, high = leafhdr.count - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 hashwant = args->hashval;
1564 low <= high; ) {
1565 mid = (low + high) >> 1;
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001566 if ((hash = be32_to_cpu(lep[mid].hashval)) == hashwant)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 break;
1568 if (hash < hashwant)
1569 low = mid + 1;
1570 else
1571 high = mid - 1;
1572 }
1573 /*
1574 * Found one, back up through all the equal hash values.
1575 */
1576 if (hash == hashwant) {
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001577 while (mid > 0 && be32_to_cpu(lep[mid - 1].hashval) == hashwant) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 mid--;
1579 }
1580 }
1581 /*
1582 * Need to point to an entry higher than ours.
1583 */
1584 else if (hash < hashwant)
1585 mid++;
1586 return mid;
1587}
1588
1589/*
1590 * Trim off a trailing data block. We know it's empty since the leaf
1591 * freespace table says so.
1592 */
1593int /* error */
1594xfs_dir2_leaf_trim_data(
1595 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001596 struct xfs_buf *lbp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 xfs_dir2_db_t db) /* data block number */
1598{
Nathan Scott68b3a102006-03-17 17:27:19 +11001599 __be16 *bestsp; /* leaf bests table */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001600 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 xfs_inode_t *dp; /* incore directory inode */
1602 int error; /* error return value */
1603 xfs_dir2_leaf_t *leaf; /* leaf structure */
1604 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 xfs_trans_t *tp; /* transaction pointer */
1606
1607 dp = args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 tp = args->trans;
1609 /*
1610 * Read the offending data block. We need its buffer.
1611 */
Dave Chinner2998ab12014-06-06 15:07:53 +10001612 error = xfs_dir3_data_read(tp, dp, xfs_dir2_db_to_da(args->geo, db),
1613 -1, &dbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001614 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616
Dave Chinner1d9025e2012-06-22 18:50:14 +10001617 leaf = lbp->b_addr;
Dave Chinner8f661932014-06-06 15:15:59 +10001618 ltp = xfs_dir2_leaf_tail_p(args->geo, leaf);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001619
1620#ifdef DEBUG
1621{
Dave Chinner1d9025e2012-06-22 18:50:14 +10001622 struct xfs_dir2_data_hdr *hdr = dbp->b_addr;
Dave Chinner2ca98772013-10-29 22:11:49 +11001623 struct xfs_dir2_data_free *bf = dp->d_ops->data_bestfree_p(hdr);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001624
Dave Chinner33363fe2013-04-03 16:11:22 +11001625 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
1626 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC));
1627 ASSERT(be16_to_cpu(bf[0].length) ==
Dave Chinner8f661932014-06-06 15:15:59 +10001628 args->geo->blksize - dp->d_ops->data_entry_offset);
Nathan Scottafbcb3f2006-03-17 17:27:28 +11001629 ASSERT(db == be32_to_cpu(ltp->bestcount) - 1);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001630}
1631#endif
1632
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 /*
1634 * Get rid of the data block.
1635 */
1636 if ((error = xfs_dir2_shrink_inode(args, db, dbp))) {
Dave Chinner24513372014-06-25 14:58:08 +10001637 ASSERT(error != -ENOSPC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001638 xfs_trans_brelse(tp, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 return error;
1640 }
1641 /*
1642 * Eliminate the last bests entry from the table.
1643 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001644 bestsp = xfs_dir2_leaf_bests_p(ltp);
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001645 be32_add_cpu(&ltp->bestcount, -1);
Nathan Scottafbcb3f2006-03-17 17:27:28 +11001646 memmove(&bestsp[1], &bestsp[0], be32_to_cpu(ltp->bestcount) * sizeof(*bestsp));
Dave Chinnerbc851782014-06-06 15:20:54 +10001647 xfs_dir3_leaf_log_tail(args, lbp);
1648 xfs_dir3_leaf_log_bests(args, lbp, 0, be32_to_cpu(ltp->bestcount) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 return 0;
1650}
1651
Christoph Hellwig22823962011-07-08 14:35:53 +02001652static inline size_t
Dave Chinner24df33b2013-04-12 07:30:21 +10001653xfs_dir3_leaf_size(
1654 struct xfs_dir3_icleaf_hdr *hdr,
Christoph Hellwig22823962011-07-08 14:35:53 +02001655 int counts)
1656{
Dave Chinner24df33b2013-04-12 07:30:21 +10001657 int entries;
1658 int hdrsize;
Christoph Hellwig22823962011-07-08 14:35:53 +02001659
Dave Chinner24df33b2013-04-12 07:30:21 +10001660 entries = hdr->count - hdr->stale;
1661 if (hdr->magic == XFS_DIR2_LEAF1_MAGIC ||
1662 hdr->magic == XFS_DIR2_LEAFN_MAGIC)
1663 hdrsize = sizeof(struct xfs_dir2_leaf_hdr);
1664 else
1665 hdrsize = sizeof(struct xfs_dir3_leaf_hdr);
1666
1667 return hdrsize + entries * sizeof(xfs_dir2_leaf_entry_t)
1668 + counts * sizeof(xfs_dir2_data_off_t)
1669 + sizeof(xfs_dir2_leaf_tail_t);
Christoph Hellwig22823962011-07-08 14:35:53 +02001670}
1671
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672/*
1673 * Convert node form directory to leaf form directory.
1674 * The root of the node form dir needs to already be a LEAFN block.
1675 * Just return if we can't do anything.
1676 */
1677int /* error */
1678xfs_dir2_node_to_leaf(
1679 xfs_da_state_t *state) /* directory operation state */
1680{
1681 xfs_da_args_t *args; /* operation arguments */
1682 xfs_inode_t *dp; /* incore directory inode */
1683 int error; /* error return code */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001684 struct xfs_buf *fbp; /* buffer for freespace block */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 xfs_fileoff_t fo; /* freespace file offset */
1686 xfs_dir2_free_t *free; /* freespace structure */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001687 struct xfs_buf *lbp; /* buffer for leaf block */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 xfs_dir2_leaf_tail_t *ltp; /* tail of leaf structure */
1689 xfs_dir2_leaf_t *leaf; /* leaf structure */
1690 xfs_mount_t *mp; /* filesystem mount point */
1691 int rval; /* successful free trim? */
1692 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner24df33b2013-04-12 07:30:21 +10001693 struct xfs_dir3_icleaf_hdr leafhdr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001694 struct xfs_dir3_icfree_hdr freehdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
1696 /*
1697 * There's more than a leaf level in the btree, so there must
1698 * be multiple leafn blocks. Give up.
1699 */
1700 if (state->path.active > 1)
1701 return 0;
1702 args = state->args;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001703
1704 trace_xfs_dir2_node_to_leaf(args);
1705
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 mp = state->mp;
1707 dp = args->dp;
1708 tp = args->trans;
1709 /*
1710 * Get the last offset in the file.
1711 */
Eric Sandeen7fb2cd42014-04-14 18:58:05 +10001712 if ((error = xfs_bmap_last_offset(dp, &fo, XFS_DATA_FORK))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 return error;
1714 }
Dave Chinnerd6cf1302014-06-06 15:14:11 +10001715 fo -= args->geo->fsbcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 /*
1717 * If there are freespace blocks other than the first one,
1718 * take this opportunity to remove trailing empty freespace blocks
1719 * that may have been left behind during no-space-reservation
1720 * operations.
1721 */
Dave Chinner7dda6e82014-06-06 15:11:18 +10001722 while (fo > args->geo->freeblk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 if ((error = xfs_dir2_node_trim_free(args, fo, &rval))) {
1724 return error;
1725 }
1726 if (rval)
Dave Chinnerd6cf1302014-06-06 15:14:11 +10001727 fo -= args->geo->fsbcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 else
1729 return 0;
1730 }
1731 /*
1732 * Now find the block just before the freespace block.
1733 */
1734 if ((error = xfs_bmap_last_before(tp, dp, &fo, XFS_DATA_FORK))) {
1735 return error;
1736 }
1737 /*
1738 * If it's not the single leaf block, give up.
1739 */
Dave Chinner8f661932014-06-06 15:15:59 +10001740 if (XFS_FSB_TO_B(mp, fo) > XFS_DIR2_LEAF_OFFSET + args->geo->blksize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 return 0;
1742 lbp = state->path.blk[0].bp;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001743 leaf = lbp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001744 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001745
1746 ASSERT(leafhdr.magic == XFS_DIR2_LEAFN_MAGIC ||
1747 leafhdr.magic == XFS_DIR3_LEAFN_MAGIC);
1748
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 /*
1750 * Read the freespace block.
1751 */
Dave Chinner7dda6e82014-06-06 15:11:18 +10001752 error = xfs_dir2_free_read(tp, dp, args->geo->freeblk, &fbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001753 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001755 free = fbp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001756 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001757
1758 ASSERT(!freehdr.firstdb);
Christoph Hellwig22823962011-07-08 14:35:53 +02001759
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 /*
1761 * Now see if the leafn and free data will fit in a leaf1.
1762 * If not, release the buffer and give up.
1763 */
Dave Chinner8f661932014-06-06 15:15:59 +10001764 if (xfs_dir3_leaf_size(&leafhdr, freehdr.nvalid) > args->geo->blksize) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001765 xfs_trans_brelse(tp, fbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 return 0;
1767 }
Christoph Hellwig22823962011-07-08 14:35:53 +02001768
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 /*
1770 * If the leaf has any stale entries in it, compress them out.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001772 if (leafhdr.stale)
1773 xfs_dir3_leaf_compact(args, &leafhdr, lbp);
Dave Chinnerb0f539d2012-11-14 17:53:49 +11001774
Dave Chinner24df33b2013-04-12 07:30:21 +10001775 lbp->b_ops = &xfs_dir3_leaf1_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +11001776 xfs_trans_buf_set_type(tp, lbp, XFS_BLFT_DIR_LEAF1_BUF);
Dave Chinner24df33b2013-04-12 07:30:21 +10001777 leafhdr.magic = (leafhdr.magic == XFS_DIR2_LEAFN_MAGIC)
1778 ? XFS_DIR2_LEAF1_MAGIC
1779 : XFS_DIR3_LEAF1_MAGIC;
Dave Chinnerb0f539d2012-11-14 17:53:49 +11001780
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 /*
1782 * Set up the leaf tail from the freespace block.
1783 */
Dave Chinner8f661932014-06-06 15:15:59 +10001784 ltp = xfs_dir2_leaf_tail_p(args->geo, leaf);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001785 ltp->bestcount = cpu_to_be32(freehdr.nvalid);
Dave Chinner24df33b2013-04-12 07:30:21 +10001786
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 /*
1788 * Set up the leaf bests table.
1789 */
Dave Chinner24dd0f52013-10-30 13:48:41 -05001790 memcpy(xfs_dir2_leaf_bests_p(ltp), dp->d_ops->free_bests_p(free),
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001791 freehdr.nvalid * sizeof(xfs_dir2_data_off_t));
Dave Chinner24df33b2013-04-12 07:30:21 +10001792
Dave Chinner01ba43b2013-10-29 22:11:52 +11001793 dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr);
Dave Chinnerbc851782014-06-06 15:20:54 +10001794 xfs_dir3_leaf_log_header(args, lbp);
1795 xfs_dir3_leaf_log_bests(args, lbp, 0, be32_to_cpu(ltp->bestcount) - 1);
1796 xfs_dir3_leaf_log_tail(args, lbp);
Dave Chinner41419562013-10-29 22:11:50 +11001797 xfs_dir3_leaf_check(dp, lbp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001798
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 /*
1800 * Get rid of the freespace block.
1801 */
Dave Chinner8c44a282014-06-06 15:04:41 +10001802 error = xfs_dir2_shrink_inode(args,
Dave Chinner30028032014-06-06 15:08:18 +10001803 xfs_dir2_byte_to_db(args->geo, XFS_DIR2_FREE_OFFSET),
1804 fbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 if (error) {
1806 /*
1807 * This can't fail here because it can only happen when
1808 * punching out the middle of an extent, and this is an
1809 * isolated block.
1810 */
Dave Chinner24513372014-06-25 14:58:08 +10001811 ASSERT(error != -ENOSPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 return error;
1813 }
1814 fbp = NULL;
1815 /*
1816 * Now see if we can convert the single-leaf directory
1817 * down to a block form directory.
1818 * This routine always kills the dabuf for the leaf, so
1819 * eliminate it from the path.
1820 */
1821 error = xfs_dir2_leaf_to_block(args, lbp, NULL);
1822 state->path.blk[0].bp = NULL;
1823 return error;
1824}