blob: 0a8fa453a7c69af28184227dcfbd830c773a7173 [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 Chinnercbc8adf2013-04-03 16:11:21 +11004 * 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"
Darrick J. Wong5467b342019-06-28 19:25:35 -07009#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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include "xfs_mount.h"
Dave Chinner57062782013-10-15 09:17:51 +110014#include "xfs_da_format.h"
Nathan Scotta844f452005-11-02 14:38:42 +110015#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include "xfs_inode.h"
17#include "xfs_bmap.h"
Dave Chinner2b9ab5a2013-08-12 20:49:37 +100018#include "xfs_dir2.h"
Christoph Hellwig57926642011-07-13 13:43:48 +020019#include "xfs_dir2_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_error.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000021#include "xfs_trace.h"
Dave Chinner239880e2013-10-23 10:50:10 +110022#include "xfs_trans.h"
Dave Chinnercbc8adf2013-04-03 16:11:21 +110023#include "xfs_buf_item.h"
24#include "xfs_cksum.h"
Brian Fostera45086e2015-10-12 15:59:25 +110025#include "xfs_log.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27/*
28 * Function declarations.
29 */
Dave Chinner1d9025e2012-06-22 18:50:14 +100030static int xfs_dir2_leafn_add(struct xfs_buf *bp, xfs_da_args_t *args,
31 int index);
Linus Torvalds1da177e2005-04-16 15:20:36 -070032static void xfs_dir2_leafn_rebalance(xfs_da_state_t *state,
33 xfs_da_state_blk_t *blk1,
34 xfs_da_state_blk_t *blk2);
Dave Chinner1d9025e2012-06-22 18:50:14 +100035static int xfs_dir2_leafn_remove(xfs_da_args_t *args, struct xfs_buf *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 int index, xfs_da_state_blk_t *dblk,
37 int *rval);
38static int xfs_dir2_node_addname_int(xfs_da_args_t *args,
39 xfs_da_state_blk_t *fblk);
40
Dave Chinner24df33b2013-04-12 07:30:21 +100041/*
42 * Check internal consistency of a leafn block.
43 */
44#ifdef DEBUG
Darrick J. Wonga6a781a2018-01-08 10:51:03 -080045static xfs_failaddr_t
Dave Chinner24df33b2013-04-12 07:30:21 +100046xfs_dir3_leafn_check(
Dave Chinner41419562013-10-29 22:11:50 +110047 struct xfs_inode *dp,
Dave Chinner24df33b2013-04-12 07:30:21 +100048 struct xfs_buf *bp)
49{
50 struct xfs_dir2_leaf *leaf = bp->b_addr;
51 struct xfs_dir3_icleaf_hdr leafhdr;
52
Dave Chinner01ba43b2013-10-29 22:11:52 +110053 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +100054
55 if (leafhdr.magic == XFS_DIR3_LEAFN_MAGIC) {
56 struct xfs_dir3_leaf_hdr *leaf3 = bp->b_addr;
57 if (be64_to_cpu(leaf3->info.blkno) != bp->b_bn)
Darrick J. Wonga6a781a2018-01-08 10:51:03 -080058 return __this_address;
Dave Chinner24df33b2013-04-12 07:30:21 +100059 } else if (leafhdr.magic != XFS_DIR2_LEAFN_MAGIC)
Darrick J. Wonga6a781a2018-01-08 10:51:03 -080060 return __this_address;
Dave Chinner24df33b2013-04-12 07:30:21 +100061
Dave Chinner41419562013-10-29 22:11:50 +110062 return xfs_dir3_leaf_check_int(dp->i_mount, dp, &leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +100063}
Darrick J. Wonga6a781a2018-01-08 10:51:03 -080064
65static inline void
66xfs_dir3_leaf_check(
67 struct xfs_inode *dp,
68 struct xfs_buf *bp)
69{
70 xfs_failaddr_t fa;
71
72 fa = xfs_dir3_leafn_check(dp, bp);
73 if (!fa)
74 return;
75 xfs_corruption_error(__func__, XFS_ERRLEVEL_LOW, dp->i_mount,
Darrick J. Wong2551a532018-06-04 10:23:54 -070076 bp->b_addr, BBTOB(bp->b_length), __FILE__, __LINE__,
77 fa);
Darrick J. Wonga6a781a2018-01-08 10:51:03 -080078 ASSERT(0);
79}
Dave Chinner24df33b2013-04-12 07:30:21 +100080#else
Dave Chinner41419562013-10-29 22:11:50 +110081#define xfs_dir3_leaf_check(dp, bp)
Dave Chinner24df33b2013-04-12 07:30:21 +100082#endif
83
Darrick J. Wonga6a781a2018-01-08 10:51:03 -080084static xfs_failaddr_t
Dave Chinnercbc8adf2013-04-03 16:11:21 +110085xfs_dir3_free_verify(
Dave Chinner20252072012-11-12 22:54:13 +110086 struct xfs_buf *bp)
87{
88 struct xfs_mount *mp = bp->b_target->bt_mount;
89 struct xfs_dir2_free_hdr *hdr = bp->b_addr;
Dave Chinner20252072012-11-12 22:54:13 +110090
Brian Foster39708c22019-02-07 10:45:48 -080091 if (!xfs_verify_magic(bp, hdr->magic))
92 return __this_address;
93
Dave Chinnercbc8adf2013-04-03 16:11:21 +110094 if (xfs_sb_version_hascrc(&mp->m_sb)) {
95 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
96
Eric Sandeence748ea2015-07-29 11:53:31 +100097 if (!uuid_equal(&hdr3->uuid, &mp->m_sb.sb_meta_uuid))
Darrick J. Wonga6a781a2018-01-08 10:51:03 -080098 return __this_address;
Dave Chinnercbc8adf2013-04-03 16:11:21 +110099 if (be64_to_cpu(hdr3->blkno) != bp->b_bn)
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800100 return __this_address;
Brian Fostera45086e2015-10-12 15:59:25 +1100101 if (!xfs_log_check_lsn(mp, be64_to_cpu(hdr3->lsn)))
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800102 return __this_address;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100103 }
104
105 /* XXX: should bounds check the xfs_dir3_icfree_hdr here */
106
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800107 return NULL;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100108}
109
110static void
111xfs_dir3_free_read_verify(
112 struct xfs_buf *bp)
113{
114 struct xfs_mount *mp = bp->b_target->bt_mount;
Darrick J. Wongbc1a09b2018-01-08 10:51:03 -0800115 xfs_failaddr_t fa;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100116
Eric Sandeence5028c2014-02-27 15:23:10 +1100117 if (xfs_sb_version_hascrc(&mp->m_sb) &&
118 !xfs_buf_verify_cksum(bp, XFS_DIR3_FREE_CRC_OFF))
Darrick J. Wongbc1a09b2018-01-08 10:51:03 -0800119 xfs_verifier_error(bp, -EFSBADCRC, __this_address);
120 else {
121 fa = xfs_dir3_free_verify(bp);
122 if (fa)
123 xfs_verifier_error(bp, -EFSCORRUPTED, fa);
124 }
Dave Chinner612cfbf2012-11-14 17:52:32 +1100125}
Dave Chinner20252072012-11-12 22:54:13 +1100126
Dave Chinner612cfbf2012-11-14 17:52:32 +1100127static void
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100128xfs_dir3_free_write_verify(
Dave Chinner1813dd62012-11-14 17:54:40 +1100129 struct xfs_buf *bp)
130{
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100131 struct xfs_mount *mp = bp->b_target->bt_mount;
Carlos Maiolinofb1755a2018-01-24 13:38:48 -0800132 struct xfs_buf_log_item *bip = bp->b_log_item;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100133 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
Darrick J. Wongbc1a09b2018-01-08 10:51:03 -0800134 xfs_failaddr_t fa;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100135
Darrick J. Wongbc1a09b2018-01-08 10:51:03 -0800136 fa = xfs_dir3_free_verify(bp);
137 if (fa) {
138 xfs_verifier_error(bp, -EFSCORRUPTED, fa);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100139 return;
140 }
141
142 if (!xfs_sb_version_hascrc(&mp->m_sb))
143 return;
144
145 if (bip)
146 hdr3->lsn = cpu_to_be64(bip->bli_item.li_lsn);
147
Eric Sandeenf1dbcd72014-02-27 15:18:23 +1100148 xfs_buf_update_cksum(bp, XFS_DIR3_FREE_CRC_OFF);
Dave Chinner1813dd62012-11-14 17:54:40 +1100149}
150
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100151const struct xfs_buf_ops xfs_dir3_free_buf_ops = {
Eric Sandeen233135b2016-01-04 16:10:19 +1100152 .name = "xfs_dir3_free",
Brian Foster39708c22019-02-07 10:45:48 -0800153 .magic = { cpu_to_be32(XFS_DIR2_FREE_MAGIC),
154 cpu_to_be32(XFS_DIR3_FREE_MAGIC) },
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100155 .verify_read = xfs_dir3_free_read_verify,
156 .verify_write = xfs_dir3_free_write_verify,
Darrick J. Wongb5572592018-01-08 10:51:08 -0800157 .verify_struct = xfs_dir3_free_verify,
Dave Chinner1813dd62012-11-14 17:54:40 +1100158};
Dave Chinner20252072012-11-12 22:54:13 +1100159
Darrick J. Wongde14c5f2017-02-02 15:14:00 -0800160/* Everything ok in the free block header? */
Darrick J. Wongbc1a09b2018-01-08 10:51:03 -0800161static xfs_failaddr_t
Darrick J. Wongde14c5f2017-02-02 15:14:00 -0800162xfs_dir3_free_header_check(
163 struct xfs_inode *dp,
164 xfs_dablk_t fbno,
165 struct xfs_buf *bp)
166{
167 struct xfs_mount *mp = dp->i_mount;
168 unsigned int firstdb;
169 int maxbests;
170
171 maxbests = dp->d_ops->free_max_bests(mp->m_dir_geo);
172 firstdb = (xfs_dir2_da_to_db(mp->m_dir_geo, fbno) -
173 xfs_dir2_byte_to_db(mp->m_dir_geo, XFS_DIR2_FREE_OFFSET)) *
174 maxbests;
175 if (xfs_sb_version_hascrc(&mp->m_sb)) {
176 struct xfs_dir3_free_hdr *hdr3 = bp->b_addr;
177
178 if (be32_to_cpu(hdr3->firstdb) != firstdb)
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800179 return __this_address;
Darrick J. Wongde14c5f2017-02-02 15:14:00 -0800180 if (be32_to_cpu(hdr3->nvalid) > maxbests)
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800181 return __this_address;
Darrick J. Wongde14c5f2017-02-02 15:14:00 -0800182 if (be32_to_cpu(hdr3->nvalid) < be32_to_cpu(hdr3->nused))
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800183 return __this_address;
Darrick J. Wongde14c5f2017-02-02 15:14:00 -0800184 } else {
185 struct xfs_dir2_free_hdr *hdr = bp->b_addr;
186
187 if (be32_to_cpu(hdr->firstdb) != firstdb)
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800188 return __this_address;
Darrick J. Wongde14c5f2017-02-02 15:14:00 -0800189 if (be32_to_cpu(hdr->nvalid) > maxbests)
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800190 return __this_address;
Darrick J. Wongde14c5f2017-02-02 15:14:00 -0800191 if (be32_to_cpu(hdr->nvalid) < be32_to_cpu(hdr->nused))
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800192 return __this_address;
Darrick J. Wongde14c5f2017-02-02 15:14:00 -0800193 }
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800194 return NULL;
Darrick J. Wongde14c5f2017-02-02 15:14:00 -0800195}
Dave Chinner612cfbf2012-11-14 17:52:32 +1100196
Dave Chinner20252072012-11-12 22:54:13 +1100197static int
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100198__xfs_dir3_free_read(
Dave Chinner20252072012-11-12 22:54:13 +1100199 struct xfs_trans *tp,
200 struct xfs_inode *dp,
201 xfs_dablk_t fbno,
202 xfs_daddr_t mappedbno,
203 struct xfs_buf **bpp)
204{
Darrick J. Wongbc1a09b2018-01-08 10:51:03 -0800205 xfs_failaddr_t fa;
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100206 int err;
207
208 err = xfs_da_read_buf(tp, dp, fbno, mappedbno, bpp,
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100209 XFS_DATA_FORK, &xfs_dir3_free_buf_ops);
Darrick J. Wongde14c5f2017-02-02 15:14:00 -0800210 if (err || !*bpp)
211 return err;
212
213 /* Check things that we can't do in the verifier. */
Darrick J. Wongbc1a09b2018-01-08 10:51:03 -0800214 fa = xfs_dir3_free_header_check(dp, fbno, *bpp);
215 if (fa) {
216 xfs_verifier_error(*bpp, -EFSCORRUPTED, fa);
Darrick J. Wongde14c5f2017-02-02 15:14:00 -0800217 xfs_trans_brelse(tp, *bpp);
218 return -EFSCORRUPTED;
219 }
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100220
221 /* try read returns without an error or *bpp if it lands in a hole */
Darrick J. Wongde14c5f2017-02-02 15:14:00 -0800222 if (tp)
Dave Chinner61fe1352013-04-03 16:11:30 +1100223 xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_DIR_FREE_BUF);
Darrick J. Wongde14c5f2017-02-02 15:14:00 -0800224
225 return 0;
Dave Chinner20252072012-11-12 22:54:13 +1100226}
227
228int
229xfs_dir2_free_read(
230 struct xfs_trans *tp,
231 struct xfs_inode *dp,
232 xfs_dablk_t fbno,
233 struct xfs_buf **bpp)
234{
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100235 return __xfs_dir3_free_read(tp, dp, fbno, -1, bpp);
Dave Chinner20252072012-11-12 22:54:13 +1100236}
237
238static int
239xfs_dir2_free_try_read(
240 struct xfs_trans *tp,
241 struct xfs_inode *dp,
242 xfs_dablk_t fbno,
243 struct xfs_buf **bpp)
244{
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100245 return __xfs_dir3_free_read(tp, dp, fbno, -2, bpp);
246}
247
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100248static int
249xfs_dir3_free_get_buf(
Dave Chinner2998ab1d2014-06-06 15:07:53 +1000250 xfs_da_args_t *args,
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100251 xfs_dir2_db_t fbno,
252 struct xfs_buf **bpp)
253{
Dave Chinner2998ab1d2014-06-06 15:07:53 +1000254 struct xfs_trans *tp = args->trans;
255 struct xfs_inode *dp = args->dp;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100256 struct xfs_mount *mp = dp->i_mount;
257 struct xfs_buf *bp;
258 int error;
259 struct xfs_dir3_icfree_hdr hdr;
260
Dave Chinner2998ab1d2014-06-06 15:07:53 +1000261 error = xfs_da_get_buf(tp, dp, xfs_dir2_db_to_da(args->geo, fbno),
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100262 -1, &bp, XFS_DATA_FORK);
263 if (error)
264 return error;
265
Dave Chinner61fe1352013-04-03 16:11:30 +1100266 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_FREE_BUF);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100267 bp->b_ops = &xfs_dir3_free_buf_ops;
268
269 /*
270 * Initialize the new block to be empty, and remember
271 * its first slot as our empty slot.
272 */
Dave Chinnere400d272013-05-28 18:37:17 +1000273 memset(bp->b_addr, 0, sizeof(struct xfs_dir3_free_hdr));
274 memset(&hdr, 0, sizeof(hdr));
275
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100276 if (xfs_sb_version_hascrc(&mp->m_sb)) {
277 struct xfs_dir3_free_hdr *hdr3 = bp->b_addr;
278
279 hdr.magic = XFS_DIR3_FREE_MAGIC;
Dave Chinnere400d272013-05-28 18:37:17 +1000280
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100281 hdr3->hdr.blkno = cpu_to_be64(bp->b_bn);
282 hdr3->hdr.owner = cpu_to_be64(dp->i_ino);
Eric Sandeence748ea2015-07-29 11:53:31 +1000283 uuid_copy(&hdr3->hdr.uuid, &mp->m_sb.sb_meta_uuid);
Dave Chinnere400d272013-05-28 18:37:17 +1000284 } else
285 hdr.magic = XFS_DIR2_FREE_MAGIC;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100286 dp->d_ops->free_hdr_to_disk(bp->b_addr, &hdr);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100287 *bpp = bp;
288 return 0;
Dave Chinner20252072012-11-12 22:54:13 +1100289}
290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291/*
292 * Log entries from a freespace block.
293 */
Eric Sandeen5d77c0d2009-11-19 15:52:00 +0000294STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295xfs_dir2_free_log_bests(
Dave Chinnerbc851782014-06-06 15:20:54 +1000296 struct xfs_da_args *args,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000297 struct xfs_buf *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 int first, /* first entry to log */
299 int last) /* last entry to log */
300{
301 xfs_dir2_free_t *free; /* freespace structure */
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100302 __be16 *bests;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
Dave Chinner1d9025e2012-06-22 18:50:14 +1000304 free = bp->b_addr;
Dave Chinnerbc851782014-06-06 15:20:54 +1000305 bests = args->dp->d_ops->free_bests_p(free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100306 ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC) ||
307 free->hdr.magic == cpu_to_be32(XFS_DIR3_FREE_MAGIC));
Dave Chinnerbc851782014-06-06 15:20:54 +1000308 xfs_trans_log_buf(args->trans, bp,
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100309 (uint)((char *)&bests[first] - (char *)free),
310 (uint)((char *)&bests[last] - (char *)free +
311 sizeof(bests[0]) - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
314/*
315 * Log header from a freespace block.
316 */
317static void
318xfs_dir2_free_log_header(
Dave Chinnerbc851782014-06-06 15:20:54 +1000319 struct xfs_da_args *args,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000320 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
Dave Chinner836a94a2013-08-12 20:49:44 +1000322#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 xfs_dir2_free_t *free; /* freespace structure */
324
Dave Chinner1d9025e2012-06-22 18:50:14 +1000325 free = bp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100326 ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC) ||
327 free->hdr.magic == cpu_to_be32(XFS_DIR3_FREE_MAGIC));
Dave Chinner836a94a2013-08-12 20:49:44 +1000328#endif
Dave Chinnerbc851782014-06-06 15:20:54 +1000329 xfs_trans_log_buf(args->trans, bp, 0,
330 args->dp->d_ops->free_hdr_size - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
332
333/*
334 * Convert a leaf-format directory to a node-format directory.
335 * We need to change the magic number of the leaf block, and copy
336 * the freespace table out of the leaf block into its own block.
337 */
338int /* error */
339xfs_dir2_leaf_to_node(
340 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000341 struct xfs_buf *lbp) /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
343 xfs_inode_t *dp; /* incore directory inode */
344 int error; /* error return value */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000345 struct xfs_buf *fbp; /* freespace buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 xfs_dir2_db_t fdb; /* freespace block number */
347 xfs_dir2_free_t *free; /* freespace structure */
Nathan Scott68b3a102006-03-17 17:27:19 +1100348 __be16 *from; /* pointer to freespace entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 int i; /* leaf freespace index */
350 xfs_dir2_leaf_t *leaf; /* leaf structure */
351 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 int n; /* count of live freespc ents */
353 xfs_dir2_data_off_t off; /* freespace entry value */
Nathan Scott0ba962e2006-03-17 17:27:07 +1100354 __be16 *to; /* pointer to freespace entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 xfs_trans_t *tp; /* transaction pointer */
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100356 struct xfs_dir3_icfree_hdr freehdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000358 trace_xfs_dir2_leaf_to_node(args);
359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 dp = args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 tp = args->trans;
362 /*
363 * Add a freespace block to the directory.
364 */
365 if ((error = xfs_dir2_grow_inode(args, XFS_DIR2_FREE_SPACE, &fdb))) {
366 return error;
367 }
Dave Chinner30028032014-06-06 15:08:18 +1000368 ASSERT(fdb == xfs_dir2_byte_to_db(args->geo, XFS_DIR2_FREE_OFFSET));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 /*
370 * Get the buffer for the new freespace block.
371 */
Dave Chinner2998ab1d2014-06-06 15:07:53 +1000372 error = xfs_dir3_free_get_buf(args, fdb, &fbp);
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100373 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 return error;
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100375
Dave Chinner1d9025e2012-06-22 18:50:14 +1000376 free = fbp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100377 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000378 leaf = lbp->b_addr;
Dave Chinner8f661932014-06-06 15:15:59 +1000379 ltp = xfs_dir2_leaf_tail_p(args->geo, leaf);
Darrick J. Wong3f883f52018-03-06 17:08:31 -0800380 if (be32_to_cpu(ltp->bestcount) >
381 (uint)dp->i_d.di_size / args->geo->blksize)
382 return -EFSCORRUPTED;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 /*
385 * Copy freespace entries from the leaf block to the new block.
386 * Count active entries.
387 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100388 from = xfs_dir2_leaf_bests_p(ltp);
Dave Chinner24dd0f52013-10-30 13:48:41 -0500389 to = dp->d_ops->free_bests_p(free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100390 for (i = n = 0; i < be32_to_cpu(ltp->bestcount); i++, from++, to++) {
Nathan Scott68b3a102006-03-17 17:27:19 +1100391 if ((off = be16_to_cpu(*from)) != NULLDATAOFF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 n++;
Nathan Scott0ba962e2006-03-17 17:27:07 +1100393 *to = cpu_to_be16(off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 }
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 /*
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100397 * Now initialize the freespace block header.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100399 freehdr.nused = n;
400 freehdr.nvalid = be32_to_cpu(ltp->bestcount);
401
Dave Chinner01ba43b2013-10-29 22:11:52 +1100402 dp->d_ops->free_hdr_to_disk(fbp->b_addr, &freehdr);
Dave Chinnerbc851782014-06-06 15:20:54 +1000403 xfs_dir2_free_log_bests(args, fbp, 0, freehdr.nvalid - 1);
404 xfs_dir2_free_log_header(args, fbp);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100405
Dave Chinner24df33b2013-04-12 07:30:21 +1000406 /*
407 * Converting the leaf to a leafnode is just a matter of changing the
408 * magic number and the ops. Do the change directly to the buffer as
409 * it's less work (and less code) than decoding the header to host
410 * format and back again.
411 */
412 if (leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC))
413 leaf->hdr.info.magic = cpu_to_be16(XFS_DIR2_LEAFN_MAGIC);
414 else
415 leaf->hdr.info.magic = cpu_to_be16(XFS_DIR3_LEAFN_MAGIC);
416 lbp->b_ops = &xfs_dir3_leafn_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100417 xfs_trans_buf_set_type(tp, lbp, XFS_BLFT_DIR_LEAFN_BUF);
Dave Chinnerbc851782014-06-06 15:20:54 +1000418 xfs_dir3_leaf_log_header(args, lbp);
Dave Chinner41419562013-10-29 22:11:50 +1100419 xfs_dir3_leaf_check(dp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 return 0;
421}
422
423/*
424 * Add a leaf entry to a leaf block in a node-form directory.
425 * The other work necessary is done from the caller.
426 */
427static int /* error */
428xfs_dir2_leafn_add(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000429 struct xfs_buf *bp, /* leaf buffer */
Darrick J. Wong79622c7ce2019-03-07 16:50:11 -0800430 struct xfs_da_args *args, /* operation arguments */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 int index) /* insertion pt for new entry */
432{
Darrick J. Wong79622c7ce2019-03-07 16:50:11 -0800433 struct xfs_dir3_icleaf_hdr leafhdr;
434 struct xfs_inode *dp = args->dp;
435 struct xfs_dir2_leaf *leaf = bp->b_addr;
436 struct xfs_dir2_leaf_entry *lep;
437 struct xfs_dir2_leaf_entry *ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 int compact; /* compacting stale leaves */
Darrick J. Wong79622c7ce2019-03-07 16:50:11 -0800439 int highstale = 0; /* next stale entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 int lfloghigh; /* high leaf entry logging */
441 int lfloglow; /* low leaf entry logging */
Darrick J. Wong79622c7ce2019-03-07 16:50:11 -0800442 int lowstale = 0; /* previous stale entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000444 trace_xfs_dir2_leafn_add(args, index);
445
Dave Chinner01ba43b2013-10-29 22:11:52 +1100446 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +1100447 ents = dp->d_ops->leaf_ents_p(leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
449 /*
450 * Quick check just to make sure we are not going to index
451 * into other peoples memory
452 */
453 if (index < 0)
Dave Chinner24513372014-06-25 14:58:08 +1000454 return -EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456 /*
457 * If there are already the maximum number of leaf entries in
458 * the block, if there are no stale entries it won't fit.
459 * Caller will do a split. If there are stale entries we'll do
460 * a compact.
461 */
462
Dave Chinner8f661932014-06-06 15:15:59 +1000463 if (leafhdr.count == dp->d_ops->leaf_max_ents(args->geo)) {
Dave Chinner24df33b2013-04-12 07:30:21 +1000464 if (!leafhdr.stale)
Dave Chinner24513372014-06-25 14:58:08 +1000465 return -ENOSPC;
Dave Chinner24df33b2013-04-12 07:30:21 +1000466 compact = leafhdr.stale > 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 } else
468 compact = 0;
Dave Chinner24df33b2013-04-12 07:30:21 +1000469 ASSERT(index == 0 || be32_to_cpu(ents[index - 1].hashval) <= args->hashval);
470 ASSERT(index == leafhdr.count ||
471 be32_to_cpu(ents[index].hashval) >= args->hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
Barry Naujok6a178102008-05-21 16:42:05 +1000473 if (args->op_flags & XFS_DA_OP_JUSTCHECK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 return 0;
475
476 /*
477 * Compact out all but one stale leaf entry. Leaves behind
478 * the entry closest to index.
479 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000480 if (compact)
481 xfs_dir3_leaf_compact_x1(&leafhdr, ents, &index, &lowstale,
482 &highstale, &lfloglow, &lfloghigh);
483 else if (leafhdr.stale) {
484 /*
485 * Set impossible logging indices for this case.
486 */
487 lfloglow = leafhdr.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 lfloghigh = -1;
489 }
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200490
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 /*
492 * Insert the new entry, log everything.
493 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000494 lep = xfs_dir3_leaf_find_entry(&leafhdr, ents, index, compact, lowstale,
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200495 highstale, &lfloglow, &lfloghigh);
496
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100497 lep->hashval = cpu_to_be32(args->hashval);
Dave Chinner30028032014-06-06 15:08:18 +1000498 lep->address = cpu_to_be32(xfs_dir2_db_off_to_dataptr(args->geo,
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100499 args->blkno, args->index));
Dave Chinner24df33b2013-04-12 07:30:21 +1000500
Dave Chinner01ba43b2013-10-29 22:11:52 +1100501 dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr);
Dave Chinnerbc851782014-06-06 15:20:54 +1000502 xfs_dir3_leaf_log_header(args, bp);
503 xfs_dir3_leaf_log_ents(args, bp, lfloglow, lfloghigh);
Dave Chinner41419562013-10-29 22:11:50 +1100504 xfs_dir3_leaf_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 return 0;
506}
507
508#ifdef DEBUG
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100509static void
510xfs_dir2_free_hdr_check(
Dave Chinner01ba43b2013-10-29 22:11:52 +1100511 struct xfs_inode *dp,
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100512 struct xfs_buf *bp,
513 xfs_dir2_db_t db)
514{
515 struct xfs_dir3_icfree_hdr hdr;
516
Dave Chinner01ba43b2013-10-29 22:11:52 +1100517 dp->d_ops->free_hdr_from_disk(&hdr, bp->b_addr);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100518
Dave Chinner8f661932014-06-06 15:15:59 +1000519 ASSERT((hdr.firstdb %
520 dp->d_ops->free_max_bests(dp->i_mount->m_dir_geo)) == 0);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100521 ASSERT(hdr.firstdb <= db);
522 ASSERT(db < hdr.firstdb + hdr.nvalid);
523}
524#else
Dave Chinner01ba43b2013-10-29 22:11:52 +1100525#define xfs_dir2_free_hdr_check(dp, bp, db)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526#endif /* DEBUG */
527
528/*
529 * Return the last hash value in the leaf.
530 * Stale entries are ok.
531 */
532xfs_dahash_t /* hash value */
Darrick J. Wong8e8877e2017-06-16 11:00:13 -0700533xfs_dir2_leaf_lasthash(
Dave Chinner41419562013-10-29 22:11:50 +1100534 struct xfs_inode *dp,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000535 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 int *count) /* count of entries in leaf */
537{
Dave Chinner24df33b2013-04-12 07:30:21 +1000538 struct xfs_dir2_leaf *leaf = bp->b_addr;
539 struct xfs_dir2_leaf_entry *ents;
540 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Dave Chinner01ba43b2013-10-29 22:11:52 +1100542 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000543
544 ASSERT(leafhdr.magic == XFS_DIR2_LEAFN_MAGIC ||
Darrick J. Wong8e8877e2017-06-16 11:00:13 -0700545 leafhdr.magic == XFS_DIR3_LEAFN_MAGIC ||
546 leafhdr.magic == XFS_DIR2_LEAF1_MAGIC ||
547 leafhdr.magic == XFS_DIR3_LEAF1_MAGIC);
Dave Chinner24df33b2013-04-12 07:30:21 +1000548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 if (count)
Dave Chinner24df33b2013-04-12 07:30:21 +1000550 *count = leafhdr.count;
551 if (!leafhdr.count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 return 0;
Dave Chinner24df33b2013-04-12 07:30:21 +1000553
Dave Chinner41419562013-10-29 22:11:50 +1100554 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000555 return be32_to_cpu(ents[leafhdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556}
557
558/*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000559 * Look up a leaf entry for space to add a name in a node-format leaf block.
560 * The extrablk in state is a freespace block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000562STATIC int
563xfs_dir2_leafn_lookup_for_addname(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000564 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 xfs_da_args_t *args, /* operation arguments */
566 int *indexp, /* out: leaf entry index */
567 xfs_da_state_t *state) /* state to fill in */
568{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000569 struct xfs_buf *curbp = NULL; /* current data/free buffer */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000570 xfs_dir2_db_t curdb = -1; /* current data block number */
571 xfs_dir2_db_t curfdb = -1; /* current free block number */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 xfs_inode_t *dp; /* incore directory inode */
573 int error; /* error return value */
574 int fi; /* free entry index */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000575 xfs_dir2_free_t *free = NULL; /* free block structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 int index; /* leaf entry index */
577 xfs_dir2_leaf_t *leaf; /* leaf structure */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000578 int length; /* length of new data entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
580 xfs_mount_t *mp; /* filesystem mount point */
581 xfs_dir2_db_t newdb; /* new data block number */
582 xfs_dir2_db_t newfdb; /* new free block number */
583 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner24df33b2013-04-12 07:30:21 +1000584 struct xfs_dir2_leaf_entry *ents;
585 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587 dp = args->dp;
588 tp = args->trans;
589 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000590 leaf = bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100591 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +1100592 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000593
Dave Chinner41419562013-10-29 22:11:50 +1100594 xfs_dir3_leaf_check(dp, bp);
Dave Chinner24df33b2013-04-12 07:30:21 +1000595 ASSERT(leafhdr.count > 0);
596
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 /*
598 * Look up the hash value in the leaf entries.
599 */
600 index = xfs_dir2_leaf_search_hash(args, bp);
601 /*
602 * Do we have a buffer coming in?
603 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000604 if (state->extravalid) {
605 /* If so, it's a free block buffer, get the block number. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 curbp = state->extrablk.bp;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000607 curfdb = state->extrablk.blkno;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000608 free = curbp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100609 ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC) ||
610 free->hdr.magic == cpu_to_be32(XFS_DIR3_FREE_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
Dave Chinner9d23fc82013-10-29 22:11:48 +1100612 length = dp->d_ops->data_entsize(args->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 /*
614 * Loop over leaf entries with the right hash value.
615 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000616 for (lep = &ents[index];
617 index < leafhdr.count && be32_to_cpu(lep->hashval) == args->hashval;
618 lep++, index++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 /*
620 * Skip stale leaf entries.
621 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100622 if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 continue;
624 /*
625 * Pull the data block number from the entry.
626 */
Dave Chinner30028032014-06-06 15:08:18 +1000627 newdb = xfs_dir2_dataptr_to_db(args->geo,
628 be32_to_cpu(lep->address));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 /*
630 * For addname, we're looking for a place to put the new entry.
631 * We want to use a data block with an entry of equal
632 * hash value to ours if there is one with room.
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000633 *
634 * If this block isn't the data block we already have
635 * in hand, take a look at it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000637 if (newdb != curdb) {
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100638 __be16 *bests;
639
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000640 curdb = newdb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000642 * Convert the data block to the free block
643 * holding its freespace information.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 */
Dave Chinner8f661932014-06-06 15:15:59 +1000645 newfdb = dp->d_ops->db_to_fdb(args->geo, newdb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000647 * If it's not the one we have in hand, read it in.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000649 if (newfdb != curfdb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000651 * If we had one before, drop it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 */
653 if (curbp)
Dave Chinner1d9025e2012-06-22 18:50:14 +1000654 xfs_trans_brelse(tp, curbp);
Dave Chinner20252072012-11-12 22:54:13 +1100655
656 error = xfs_dir2_free_read(tp, dp,
Dave Chinner2998ab1d2014-06-06 15:07:53 +1000657 xfs_dir2_db_to_da(args->geo,
658 newfdb),
Dave Chinner20252072012-11-12 22:54:13 +1100659 &curbp);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000660 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000662 free = curbp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100663
Dave Chinner01ba43b2013-10-29 22:11:52 +1100664 xfs_dir2_free_hdr_check(dp, curbp, curdb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 }
666 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000667 * Get the index for our entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 */
Dave Chinner8f661932014-06-06 15:15:59 +1000669 fi = dp->d_ops->db_to_fdindex(args->geo, curdb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000671 * If it has room, return it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 */
Dave Chinner24dd0f52013-10-30 13:48:41 -0500673 bests = dp->d_ops->free_bests_p(free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100674 if (unlikely(bests[fi] == cpu_to_be16(NULLDATAOFF))) {
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000675 XFS_ERROR_REPORT("xfs_dir2_leafn_lookup_int",
676 XFS_ERRLEVEL_LOW, mp);
677 if (curfdb != newfdb)
Dave Chinner1d9025e2012-06-22 18:50:14 +1000678 xfs_trans_brelse(tp, curbp);
Dave Chinner24513372014-06-25 14:58:08 +1000679 return -EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 }
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000681 curfdb = newfdb;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100682 if (be16_to_cpu(bests[fi]) >= length)
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000683 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 }
685 }
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000686 /* Didn't find any space */
687 fi = -1;
688out:
Barry Naujok6a178102008-05-21 16:42:05 +1000689 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000690 if (curbp) {
691 /* Giving back a free block. */
692 state->extravalid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 state->extrablk.bp = curbp;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000694 state->extrablk.index = fi;
695 state->extrablk.blkno = curfdb;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100696
697 /*
698 * Important: this magic number is not in the buffer - it's for
699 * buffer type information and therefore only the free/data type
700 * matters here, not whether CRCs are enabled or not.
701 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000702 state->extrablk.magic = XFS_DIR2_FREE_MAGIC;
703 } else {
704 state->extravalid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 }
706 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000707 * Return the index, that will be the insertion point.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 */
709 *indexp = index;
Dave Chinner24513372014-06-25 14:58:08 +1000710 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711}
712
713/*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000714 * Look up a leaf entry in a node-format leaf block.
715 * The extrablk in state a data block.
716 */
717STATIC int
718xfs_dir2_leafn_lookup_for_entry(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000719 struct xfs_buf *bp, /* leaf buffer */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000720 xfs_da_args_t *args, /* operation arguments */
721 int *indexp, /* out: leaf entry index */
722 xfs_da_state_t *state) /* state to fill in */
723{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000724 struct xfs_buf *curbp = NULL; /* current data/free buffer */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000725 xfs_dir2_db_t curdb = -1; /* current data block number */
726 xfs_dir2_data_entry_t *dep; /* data block entry */
727 xfs_inode_t *dp; /* incore directory inode */
728 int error; /* error return value */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000729 int index; /* leaf entry index */
730 xfs_dir2_leaf_t *leaf; /* leaf structure */
731 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
732 xfs_mount_t *mp; /* filesystem mount point */
733 xfs_dir2_db_t newdb; /* new data block number */
734 xfs_trans_t *tp; /* transaction pointer */
Barry Naujok5163f952008-05-21 16:41:01 +1000735 enum xfs_dacmp cmp; /* comparison result */
Dave Chinner24df33b2013-04-12 07:30:21 +1000736 struct xfs_dir2_leaf_entry *ents;
737 struct xfs_dir3_icleaf_hdr leafhdr;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000738
739 dp = args->dp;
740 tp = args->trans;
741 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000742 leaf = bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100743 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +1100744 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000745
Dave Chinner41419562013-10-29 22:11:50 +1100746 xfs_dir3_leaf_check(dp, bp);
Dave Chinner24df33b2013-04-12 07:30:21 +1000747 ASSERT(leafhdr.count > 0);
748
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000749 /*
750 * Look up the hash value in the leaf entries.
751 */
752 index = xfs_dir2_leaf_search_hash(args, bp);
753 /*
754 * Do we have a buffer coming in?
755 */
756 if (state->extravalid) {
757 curbp = state->extrablk.bp;
758 curdb = state->extrablk.blkno;
759 }
760 /*
761 * Loop over leaf entries with the right hash value.
762 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000763 for (lep = &ents[index];
764 index < leafhdr.count && be32_to_cpu(lep->hashval) == args->hashval;
765 lep++, index++) {
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000766 /*
767 * Skip stale leaf entries.
768 */
769 if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
770 continue;
771 /*
772 * Pull the data block number from the entry.
773 */
Dave Chinner30028032014-06-06 15:08:18 +1000774 newdb = xfs_dir2_dataptr_to_db(args->geo,
775 be32_to_cpu(lep->address));
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000776 /*
777 * Not adding a new entry, so we really want to find
778 * the name given to us.
779 *
780 * If it's a different data block, go get it.
781 */
782 if (newdb != curdb) {
783 /*
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000784 * If we had a block before that we aren't saving
785 * for a CI name, drop it
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000786 */
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000787 if (curbp && (args->cmpresult == XFS_CMP_DIFFERENT ||
788 curdb != state->extrablk.blkno))
Dave Chinner1d9025e2012-06-22 18:50:14 +1000789 xfs_trans_brelse(tp, curbp);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000790 /*
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000791 * If needing the block that is saved with a CI match,
792 * use it otherwise read in the new data block.
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000793 */
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000794 if (args->cmpresult != XFS_CMP_DIFFERENT &&
795 newdb == state->extrablk.blkno) {
796 ASSERT(state->extravalid);
797 curbp = state->extrablk.bp;
798 } else {
Dave Chinner33363fe2013-04-03 16:11:22 +1100799 error = xfs_dir3_data_read(tp, dp,
Dave Chinner2998ab1d2014-06-06 15:07:53 +1000800 xfs_dir2_db_to_da(args->geo,
801 newdb),
Dave Chinnere4813572012-11-12 22:54:14 +1100802 -1, &curbp);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000803 if (error)
804 return error;
805 }
Dave Chinner33363fe2013-04-03 16:11:22 +1100806 xfs_dir3_data_check(dp, curbp);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000807 curdb = newdb;
808 }
809 /*
810 * Point to the data entry.
811 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000812 dep = (xfs_dir2_data_entry_t *)((char *)curbp->b_addr +
Dave Chinner30028032014-06-06 15:08:18 +1000813 xfs_dir2_dataptr_to_off(args->geo,
814 be32_to_cpu(lep->address)));
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000815 /*
Barry Naujok5163f952008-05-21 16:41:01 +1000816 * Compare the entry and if it's an exact match, return
817 * EEXIST immediately. If it's the first case-insensitive
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000818 * match, store the block & inode number and continue looking.
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000819 */
Barry Naujok5163f952008-05-21 16:41:01 +1000820 cmp = mp->m_dirnameops->compname(args, dep->name, dep->namelen);
821 if (cmp != XFS_CMP_DIFFERENT && cmp != args->cmpresult) {
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000822 /* If there is a CI match block, drop it */
823 if (args->cmpresult != XFS_CMP_DIFFERENT &&
824 curdb != state->extrablk.blkno)
Dave Chinner1d9025e2012-06-22 18:50:14 +1000825 xfs_trans_brelse(tp, state->extrablk.bp);
Barry Naujok5163f952008-05-21 16:41:01 +1000826 args->cmpresult = cmp;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000827 args->inumber = be64_to_cpu(dep->inumber);
Dave Chinner9d23fc82013-10-29 22:11:48 +1100828 args->filetype = dp->d_ops->data_get_ftype(dep);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000829 *indexp = index;
830 state->extravalid = 1;
831 state->extrablk.bp = curbp;
832 state->extrablk.blkno = curdb;
833 state->extrablk.index = (int)((char *)dep -
Dave Chinner1d9025e2012-06-22 18:50:14 +1000834 (char *)curbp->b_addr);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000835 state->extrablk.magic = XFS_DIR2_DATA_MAGIC;
Dave Chinner33363fe2013-04-03 16:11:22 +1100836 curbp->b_ops = &xfs_dir3_data_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100837 xfs_trans_buf_set_type(tp, curbp, XFS_BLFT_DIR_DATA_BUF);
Barry Naujok5163f952008-05-21 16:41:01 +1000838 if (cmp == XFS_CMP_EXACT)
Dave Chinner24513372014-06-25 14:58:08 +1000839 return -EEXIST;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000840 }
841 }
Dave Chinner24df33b2013-04-12 07:30:21 +1000842 ASSERT(index == leafhdr.count || (args->op_flags & XFS_DA_OP_OKNOENT));
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000843 if (curbp) {
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000844 if (args->cmpresult == XFS_CMP_DIFFERENT) {
845 /* Giving back last used data block. */
846 state->extravalid = 1;
847 state->extrablk.bp = curbp;
848 state->extrablk.index = -1;
849 state->extrablk.blkno = curdb;
850 state->extrablk.magic = XFS_DIR2_DATA_MAGIC;
Dave Chinner33363fe2013-04-03 16:11:22 +1100851 curbp->b_ops = &xfs_dir3_data_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100852 xfs_trans_buf_set_type(tp, curbp, XFS_BLFT_DIR_DATA_BUF);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000853 } else {
854 /* If the curbp is not the CI match block, drop it */
855 if (state->extrablk.bp != curbp)
Dave Chinner1d9025e2012-06-22 18:50:14 +1000856 xfs_trans_brelse(tp, curbp);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000857 }
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000858 } else {
859 state->extravalid = 0;
860 }
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000861 *indexp = index;
Dave Chinner24513372014-06-25 14:58:08 +1000862 return -ENOENT;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000863}
864
865/*
866 * Look up a leaf entry in a node-format leaf block.
867 * If this is an addname then the extrablk in state is a freespace block,
868 * otherwise it's a data block.
869 */
870int
871xfs_dir2_leafn_lookup_int(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000872 struct xfs_buf *bp, /* leaf buffer */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000873 xfs_da_args_t *args, /* operation arguments */
874 int *indexp, /* out: leaf entry index */
875 xfs_da_state_t *state) /* state to fill in */
876{
Barry Naujok6a178102008-05-21 16:42:05 +1000877 if (args->op_flags & XFS_DA_OP_ADDNAME)
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000878 return xfs_dir2_leafn_lookup_for_addname(bp, args, indexp,
879 state);
880 return xfs_dir2_leafn_lookup_for_entry(bp, args, indexp, state);
881}
882
883/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 * Move count leaf entries from source to destination leaf.
885 * Log entries and headers. Stale entries are preserved.
886 */
887static void
Dave Chinner24df33b2013-04-12 07:30:21 +1000888xfs_dir3_leafn_moveents(
889 xfs_da_args_t *args, /* operation arguments */
890 struct xfs_buf *bp_s, /* source */
891 struct xfs_dir3_icleaf_hdr *shdr,
892 struct xfs_dir2_leaf_entry *sents,
893 int start_s,/* source leaf index */
894 struct xfs_buf *bp_d, /* destination */
895 struct xfs_dir3_icleaf_hdr *dhdr,
896 struct xfs_dir2_leaf_entry *dents,
897 int start_d,/* destination leaf index */
898 int count) /* count of leaves to copy */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899{
Dave Chinner24df33b2013-04-12 07:30:21 +1000900 int stale; /* count stale leaves copied */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000902 trace_xfs_dir2_leafn_moveents(args, start_s, start_d, count);
903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 /*
905 * Silently return if nothing to do.
906 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000907 if (count == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 return;
Dave Chinner24df33b2013-04-12 07:30:21 +1000909
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 /*
911 * If the destination index is not the end of the current
912 * destination leaf entries, open up a hole in the destination
913 * to hold the new entries.
914 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000915 if (start_d < dhdr->count) {
916 memmove(&dents[start_d + count], &dents[start_d],
917 (dhdr->count - start_d) * sizeof(xfs_dir2_leaf_entry_t));
Dave Chinnerbc851782014-06-06 15:20:54 +1000918 xfs_dir3_leaf_log_ents(args, bp_d, start_d + count,
Dave Chinner24df33b2013-04-12 07:30:21 +1000919 count + dhdr->count - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 }
921 /*
922 * If the source has stale leaves, count the ones in the copy range
923 * so we can update the header correctly.
924 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000925 if (shdr->stale) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 int i; /* temp leaf index */
927
928 for (i = start_s, stale = 0; i < start_s + count; i++) {
Dave Chinner24df33b2013-04-12 07:30:21 +1000929 if (sents[i].address ==
930 cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 stale++;
932 }
933 } else
934 stale = 0;
935 /*
936 * Copy the leaf entries from source to destination.
937 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000938 memcpy(&dents[start_d], &sents[start_s],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 count * sizeof(xfs_dir2_leaf_entry_t));
Dave Chinnerbc851782014-06-06 15:20:54 +1000940 xfs_dir3_leaf_log_ents(args, bp_d, start_d, start_d + count - 1);
Dave Chinner24df33b2013-04-12 07:30:21 +1000941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 /*
943 * If there are source entries after the ones we copied,
944 * delete the ones we copied by sliding the next ones down.
945 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000946 if (start_s + count < shdr->count) {
947 memmove(&sents[start_s], &sents[start_s + count],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 count * sizeof(xfs_dir2_leaf_entry_t));
Dave Chinnerbc851782014-06-06 15:20:54 +1000949 xfs_dir3_leaf_log_ents(args, bp_s, start_s, start_s + count - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 }
Dave Chinner24df33b2013-04-12 07:30:21 +1000951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 /*
953 * Update the headers and log them.
954 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000955 shdr->count -= count;
956 shdr->stale -= stale;
957 dhdr->count += count;
958 dhdr->stale += stale;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959}
960
961/*
962 * Determine the sort order of two leaf blocks.
963 * Returns 1 if both are valid and leaf2 should be before leaf1, else 0.
964 */
965int /* sort order */
966xfs_dir2_leafn_order(
Dave Chinner41419562013-10-29 22:11:50 +1100967 struct xfs_inode *dp,
Dave Chinner24df33b2013-04-12 07:30:21 +1000968 struct xfs_buf *leaf1_bp, /* leaf1 buffer */
969 struct xfs_buf *leaf2_bp) /* leaf2 buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970{
Dave Chinner24df33b2013-04-12 07:30:21 +1000971 struct xfs_dir2_leaf *leaf1 = leaf1_bp->b_addr;
972 struct xfs_dir2_leaf *leaf2 = leaf2_bp->b_addr;
973 struct xfs_dir2_leaf_entry *ents1;
974 struct xfs_dir2_leaf_entry *ents2;
975 struct xfs_dir3_icleaf_hdr hdr1;
976 struct xfs_dir3_icleaf_hdr hdr2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Dave Chinner01ba43b2013-10-29 22:11:52 +1100978 dp->d_ops->leaf_hdr_from_disk(&hdr1, leaf1);
979 dp->d_ops->leaf_hdr_from_disk(&hdr2, leaf2);
Dave Chinner41419562013-10-29 22:11:50 +1100980 ents1 = dp->d_ops->leaf_ents_p(leaf1);
981 ents2 = dp->d_ops->leaf_ents_p(leaf2);
Dave Chinner24df33b2013-04-12 07:30:21 +1000982
983 if (hdr1.count > 0 && hdr2.count > 0 &&
984 (be32_to_cpu(ents2[0].hashval) < be32_to_cpu(ents1[0].hashval) ||
985 be32_to_cpu(ents2[hdr2.count - 1].hashval) <
986 be32_to_cpu(ents1[hdr1.count - 1].hashval)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 return 1;
988 return 0;
989}
990
991/*
992 * Rebalance leaf entries between two leaf blocks.
993 * This is actually only called when the second block is new,
994 * though the code deals with the general case.
995 * A new entry will be inserted in one of the blocks, and that
996 * entry is taken into account when balancing.
997 */
998static void
999xfs_dir2_leafn_rebalance(
1000 xfs_da_state_t *state, /* btree cursor */
1001 xfs_da_state_blk_t *blk1, /* first btree block */
1002 xfs_da_state_blk_t *blk2) /* second btree block */
1003{
1004 xfs_da_args_t *args; /* operation arguments */
1005 int count; /* count (& direction) leaves */
1006 int isleft; /* new goes in left leaf */
1007 xfs_dir2_leaf_t *leaf1; /* first leaf structure */
1008 xfs_dir2_leaf_t *leaf2; /* second leaf structure */
1009 int mid; /* midpoint leaf index */
Dave Chinner742ae1e2013-04-30 21:39:34 +10001010#if defined(DEBUG) || defined(XFS_WARN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 int oldstale; /* old count of stale leaves */
1012#endif
1013 int oldsum; /* old total leaf count */
Gustavo A. R. Silvae4e542a2018-07-17 14:25:01 -07001014 int swap_blocks; /* swapped leaf blocks */
Dave Chinner24df33b2013-04-12 07:30:21 +10001015 struct xfs_dir2_leaf_entry *ents1;
1016 struct xfs_dir2_leaf_entry *ents2;
1017 struct xfs_dir3_icleaf_hdr hdr1;
1018 struct xfs_dir3_icleaf_hdr hdr2;
Dave Chinner41419562013-10-29 22:11:50 +11001019 struct xfs_inode *dp = state->args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
1021 args = state->args;
1022 /*
1023 * If the block order is wrong, swap the arguments.
1024 */
Gustavo A. R. Silvae4e542a2018-07-17 14:25:01 -07001025 swap_blocks = xfs_dir2_leafn_order(dp, blk1->bp, blk2->bp);
1026 if (swap_blocks)
1027 swap(blk1, blk2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028
Dave Chinner1d9025e2012-06-22 18:50:14 +10001029 leaf1 = blk1->bp->b_addr;
1030 leaf2 = blk2->bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001031 dp->d_ops->leaf_hdr_from_disk(&hdr1, leaf1);
1032 dp->d_ops->leaf_hdr_from_disk(&hdr2, leaf2);
Dave Chinner41419562013-10-29 22:11:50 +11001033 ents1 = dp->d_ops->leaf_ents_p(leaf1);
1034 ents2 = dp->d_ops->leaf_ents_p(leaf2);
Dave Chinner24df33b2013-04-12 07:30:21 +10001035
1036 oldsum = hdr1.count + hdr2.count;
Dave Chinner742ae1e2013-04-30 21:39:34 +10001037#if defined(DEBUG) || defined(XFS_WARN)
Dave Chinner24df33b2013-04-12 07:30:21 +10001038 oldstale = hdr1.stale + hdr2.stale;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039#endif
1040 mid = oldsum >> 1;
Dave Chinner24df33b2013-04-12 07:30:21 +10001041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 /*
1043 * If the old leaf count was odd then the new one will be even,
1044 * so we need to divide the new count evenly.
1045 */
1046 if (oldsum & 1) {
1047 xfs_dahash_t midhash; /* middle entry hash value */
1048
Dave Chinner24df33b2013-04-12 07:30:21 +10001049 if (mid >= hdr1.count)
1050 midhash = be32_to_cpu(ents2[mid - hdr1.count].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 else
Dave Chinner24df33b2013-04-12 07:30:21 +10001052 midhash = be32_to_cpu(ents1[mid].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 isleft = args->hashval <= midhash;
1054 }
1055 /*
1056 * If the old count is even then the new count is odd, so there's
1057 * no preferred side for the new entry.
1058 * Pick the left one.
1059 */
1060 else
1061 isleft = 1;
1062 /*
1063 * Calculate moved entry count. Positive means left-to-right,
1064 * negative means right-to-left. Then move the entries.
1065 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001066 count = hdr1.count - mid + (isleft == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 if (count > 0)
Dave Chinner24df33b2013-04-12 07:30:21 +10001068 xfs_dir3_leafn_moveents(args, blk1->bp, &hdr1, ents1,
1069 hdr1.count - count, blk2->bp,
1070 &hdr2, ents2, 0, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 else if (count < 0)
Dave Chinner24df33b2013-04-12 07:30:21 +10001072 xfs_dir3_leafn_moveents(args, blk2->bp, &hdr2, ents2, 0,
1073 blk1->bp, &hdr1, ents1,
1074 hdr1.count, count);
1075
1076 ASSERT(hdr1.count + hdr2.count == oldsum);
1077 ASSERT(hdr1.stale + hdr2.stale == oldstale);
1078
1079 /* log the changes made when moving the entries */
Dave Chinner01ba43b2013-10-29 22:11:52 +11001080 dp->d_ops->leaf_hdr_to_disk(leaf1, &hdr1);
1081 dp->d_ops->leaf_hdr_to_disk(leaf2, &hdr2);
Dave Chinnerbc851782014-06-06 15:20:54 +10001082 xfs_dir3_leaf_log_header(args, blk1->bp);
1083 xfs_dir3_leaf_log_header(args, blk2->bp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001084
Dave Chinner41419562013-10-29 22:11:50 +11001085 xfs_dir3_leaf_check(dp, blk1->bp);
1086 xfs_dir3_leaf_check(dp, blk2->bp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001087
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 /*
1089 * Mark whether we're inserting into the old or new leaf.
1090 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001091 if (hdr1.count < hdr2.count)
Gustavo A. R. Silvae4e542a2018-07-17 14:25:01 -07001092 state->inleaf = swap_blocks;
Dave Chinner24df33b2013-04-12 07:30:21 +10001093 else if (hdr1.count > hdr2.count)
Gustavo A. R. Silvae4e542a2018-07-17 14:25:01 -07001094 state->inleaf = !swap_blocks;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 else
Gustavo A. R. Silvae4e542a2018-07-17 14:25:01 -07001096 state->inleaf = swap_blocks ^ (blk1->index <= hdr1.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 /*
1098 * Adjust the expected index for insertion.
1099 */
1100 if (!state->inleaf)
Dave Chinner24df33b2013-04-12 07:30:21 +10001101 blk2->index = blk1->index - hdr1.count;
Barry Naujokf9f6dce2008-04-17 16:49:43 +10001102
1103 /*
1104 * Finally sanity check just to make sure we are not returning a
1105 * negative index
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 */
Dave Chinner41419562013-10-29 22:11:50 +11001107 if (blk2->index < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 state->inleaf = 1;
1109 blk2->index = 0;
Dave Chinner41419562013-10-29 22:11:50 +11001110 xfs_alert(dp->i_mount,
Eric Sandeen08e96e12013-10-11 20:59:05 -05001111 "%s: picked the wrong leaf? reverting original leaf: blk1->index %d",
Dave Chinner0b932cc2011-03-07 10:08:35 +11001112 __func__, blk1->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 }
1114}
1115
Dave Chinner20252072012-11-12 22:54:13 +11001116static int
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001117xfs_dir3_data_block_free(
Dave Chinner20252072012-11-12 22:54:13 +11001118 xfs_da_args_t *args,
1119 struct xfs_dir2_data_hdr *hdr,
1120 struct xfs_dir2_free *free,
1121 xfs_dir2_db_t fdb,
1122 int findex,
1123 struct xfs_buf *fbp,
1124 int longest)
1125{
Dave Chinner20252072012-11-12 22:54:13 +11001126 int logfree = 0;
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001127 __be16 *bests;
1128 struct xfs_dir3_icfree_hdr freehdr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001129 struct xfs_inode *dp = args->dp;
Dave Chinner20252072012-11-12 22:54:13 +11001130
Dave Chinner01ba43b2013-10-29 22:11:52 +11001131 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Dave Chinner24dd0f52013-10-30 13:48:41 -05001132 bests = dp->d_ops->free_bests_p(free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001133 if (hdr) {
Dave Chinner20252072012-11-12 22:54:13 +11001134 /*
1135 * Data block is not empty, just set the free entry to the new
1136 * value.
1137 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001138 bests[findex] = cpu_to_be16(longest);
Dave Chinnerbc851782014-06-06 15:20:54 +10001139 xfs_dir2_free_log_bests(args, fbp, findex, findex);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001140 return 0;
1141 }
1142
1143 /* One less used entry in the free table. */
1144 freehdr.nused--;
1145
1146 /*
1147 * If this was the last entry in the table, we can trim the table size
1148 * back. There might be other entries at the end referring to
1149 * non-existent data blocks, get those too.
1150 */
1151 if (findex == freehdr.nvalid - 1) {
1152 int i; /* free entry index */
1153
1154 for (i = findex - 1; i >= 0; i--) {
1155 if (bests[i] != cpu_to_be16(NULLDATAOFF))
1156 break;
1157 }
1158 freehdr.nvalid = i + 1;
1159 logfree = 0;
1160 } else {
1161 /* Not the last entry, just punch it out. */
1162 bests[findex] = cpu_to_be16(NULLDATAOFF);
Dave Chinner20252072012-11-12 22:54:13 +11001163 logfree = 1;
1164 }
1165
Dave Chinner01ba43b2013-10-29 22:11:52 +11001166 dp->d_ops->free_hdr_to_disk(free, &freehdr);
Dave Chinnerbc851782014-06-06 15:20:54 +10001167 xfs_dir2_free_log_header(args, fbp);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001168
1169 /*
1170 * If there are no useful entries left in the block, get rid of the
1171 * block if we can.
1172 */
1173 if (!freehdr.nused) {
1174 int error;
1175
1176 error = xfs_dir2_shrink_inode(args, fdb, fbp);
1177 if (error == 0) {
1178 fbp = NULL;
1179 logfree = 0;
Dave Chinner24513372014-06-25 14:58:08 +10001180 } else if (error != -ENOSPC || args->total != 0)
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001181 return error;
1182 /*
1183 * It's possible to get ENOSPC if there is no
1184 * space reservation. In this case some one
1185 * else will eventually get rid of this block.
1186 */
1187 }
1188
Dave Chinner20252072012-11-12 22:54:13 +11001189 /* Log the free entry that changed, unless we got rid of it. */
1190 if (logfree)
Dave Chinnerbc851782014-06-06 15:20:54 +10001191 xfs_dir2_free_log_bests(args, fbp, findex, findex);
Dave Chinner20252072012-11-12 22:54:13 +11001192 return 0;
1193}
1194
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195/*
1196 * Remove an entry from a node directory.
1197 * This removes the leaf entry and the data entry,
1198 * and updates the free block if necessary.
1199 */
1200static int /* error */
1201xfs_dir2_leafn_remove(
1202 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001203 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 int index, /* leaf entry index */
1205 xfs_da_state_blk_t *dblk, /* data block */
1206 int *rval) /* resulting block needs join */
1207{
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001208 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 xfs_dir2_db_t db; /* data block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001210 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 xfs_dir2_data_entry_t *dep; /* data block entry */
1212 xfs_inode_t *dp; /* incore directory inode */
1213 xfs_dir2_leaf_t *leaf; /* leaf structure */
1214 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1215 int longest; /* longest data free entry */
1216 int off; /* data block entry offset */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 int needlog; /* need to log data header */
1218 int needscan; /* need to rescan data frees */
1219 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner33363fe2013-04-03 16:11:22 +11001220 struct xfs_dir2_data_free *bf; /* bestfree table */
Dave Chinner24df33b2013-04-12 07:30:21 +10001221 struct xfs_dir3_icleaf_hdr leafhdr;
1222 struct xfs_dir2_leaf_entry *ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001224 trace_xfs_dir2_leafn_remove(args, index);
1225
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 dp = args->dp;
1227 tp = args->trans;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001228 leaf = bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001229 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +11001230 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001231
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 /*
1233 * Point to the entry we're removing.
1234 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001235 lep = &ents[index];
1236
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 /*
1238 * Extract the data block and offset from the entry.
1239 */
Dave Chinner30028032014-06-06 15:08:18 +10001240 db = xfs_dir2_dataptr_to_db(args->geo, be32_to_cpu(lep->address));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 ASSERT(dblk->blkno == db);
Dave Chinner30028032014-06-06 15:08:18 +10001242 off = xfs_dir2_dataptr_to_off(args->geo, be32_to_cpu(lep->address));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 ASSERT(dblk->index == off);
Dave Chinner24df33b2013-04-12 07:30:21 +10001244
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 /*
1246 * Kill the leaf entry by marking it stale.
1247 * Log the leaf block changes.
1248 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001249 leafhdr.stale++;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001250 dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr);
Dave Chinnerbc851782014-06-06 15:20:54 +10001251 xfs_dir3_leaf_log_header(args, bp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001252
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001253 lep->address = cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
Dave Chinnerbc851782014-06-06 15:20:54 +10001254 xfs_dir3_leaf_log_ents(args, bp, index, index);
Dave Chinner24df33b2013-04-12 07:30:21 +10001255
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 /*
1257 * Make the data entry free. Keep track of the longest freespace
1258 * in the data block in case it changes.
1259 */
1260 dbp = dblk->bp;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001261 hdr = dbp->b_addr;
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001262 dep = (xfs_dir2_data_entry_t *)((char *)hdr + off);
Dave Chinner2ca98772013-10-29 22:11:49 +11001263 bf = dp->d_ops->data_bestfree_p(hdr);
Dave Chinner33363fe2013-04-03 16:11:22 +11001264 longest = be16_to_cpu(bf[0].length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 needlog = needscan = 0;
Dave Chinnerbc851782014-06-06 15:20:54 +10001266 xfs_dir2_data_make_free(args, dbp, off,
Dave Chinner9d23fc82013-10-29 22:11:48 +11001267 dp->d_ops->data_entsize(dep->namelen), &needlog, &needscan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 /*
1269 * Rescan the data block freespaces for bestfree.
1270 * Log the data block header if needed.
1271 */
1272 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +11001273 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 if (needlog)
Dave Chinnerbc851782014-06-06 15:20:54 +10001275 xfs_dir2_data_log_header(args, dbp);
Dave Chinner33363fe2013-04-03 16:11:22 +11001276 xfs_dir3_data_check(dp, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 /*
1278 * If the longest data block freespace changes, need to update
1279 * the corresponding freeblock entry.
1280 */
Dave Chinner33363fe2013-04-03 16:11:22 +11001281 if (longest < be16_to_cpu(bf[0].length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 int error; /* error return value */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001283 struct xfs_buf *fbp; /* freeblock buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 xfs_dir2_db_t fdb; /* freeblock block number */
1285 int findex; /* index in freeblock entries */
1286 xfs_dir2_free_t *free; /* freeblock structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
1288 /*
1289 * Convert the data block number to a free block,
1290 * read in the free block.
1291 */
Dave Chinner8f661932014-06-06 15:15:59 +10001292 fdb = dp->d_ops->db_to_fdb(args->geo, db);
Dave Chinner2998ab1d2014-06-06 15:07:53 +10001293 error = xfs_dir2_free_read(tp, dp,
1294 xfs_dir2_db_to_da(args->geo, fdb),
Dave Chinner20252072012-11-12 22:54:13 +11001295 &fbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001296 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001298 free = fbp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001299#ifdef DEBUG
1300 {
1301 struct xfs_dir3_icfree_hdr freehdr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001302 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Dave Chinner8f661932014-06-06 15:15:59 +10001303 ASSERT(freehdr.firstdb == dp->d_ops->free_max_bests(args->geo) *
Dave Chinner30028032014-06-06 15:08:18 +10001304 (fdb - xfs_dir2_byte_to_db(args->geo,
1305 XFS_DIR2_FREE_OFFSET)));
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001306 }
1307#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 /*
1309 * Calculate which entry we need to fix.
1310 */
Dave Chinner8f661932014-06-06 15:15:59 +10001311 findex = dp->d_ops->db_to_fdindex(args->geo, db);
Dave Chinner33363fe2013-04-03 16:11:22 +11001312 longest = be16_to_cpu(bf[0].length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 /*
1314 * If the data block is now empty we can get rid of it
1315 * (usually).
1316 */
Dave Chinner8f661932014-06-06 15:15:59 +10001317 if (longest == args->geo->blksize -
Dave Chinner1c9a5b22013-10-30 09:15:02 +11001318 dp->d_ops->data_entry_offset) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 /*
1320 * Try to punch out the data block.
1321 */
1322 error = xfs_dir2_shrink_inode(args, db, dbp);
1323 if (error == 0) {
1324 dblk->bp = NULL;
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001325 hdr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 }
1327 /*
1328 * We can get ENOSPC if there's no space reservation.
1329 * In this case just drop the buffer and some one else
1330 * will eventually get rid of the empty block.
1331 */
Dave Chinner24513372014-06-25 14:58:08 +10001332 else if (!(error == -ENOSPC && args->total == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 return error;
1334 }
1335 /*
1336 * If we got rid of the data block, we can eliminate that entry
1337 * in the free block.
1338 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001339 error = xfs_dir3_data_block_free(args, hdr, free,
Dave Chinner20252072012-11-12 22:54:13 +11001340 fdb, findex, fbp, longest);
1341 if (error)
1342 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 }
Dave Chinner20252072012-11-12 22:54:13 +11001344
Dave Chinner41419562013-10-29 22:11:50 +11001345 xfs_dir3_leaf_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 /*
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001347 * Return indication of whether this leaf block is empty enough
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 * to justify trying to join it with a neighbor.
1349 */
Dave Chinner1c9a5b22013-10-30 09:15:02 +11001350 *rval = (dp->d_ops->leaf_hdr_size +
Dave Chinner24df33b2013-04-12 07:30:21 +10001351 (uint)sizeof(ents[0]) * (leafhdr.count - leafhdr.stale)) <
Dave Chinnered358c02014-06-06 15:18:10 +10001352 args->geo->magicpct;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 return 0;
1354}
1355
1356/*
1357 * Split the leaf entries in the old block into old and new blocks.
1358 */
1359int /* error */
1360xfs_dir2_leafn_split(
1361 xfs_da_state_t *state, /* btree cursor */
1362 xfs_da_state_blk_t *oldblk, /* original block */
1363 xfs_da_state_blk_t *newblk) /* newly created block */
1364{
1365 xfs_da_args_t *args; /* operation arguments */
1366 xfs_dablk_t blkno; /* new leaf block number */
1367 int error; /* error return value */
Dave Chinner41419562013-10-29 22:11:50 +11001368 struct xfs_inode *dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
1370 /*
1371 * Allocate space for a new leaf node.
1372 */
1373 args = state->args;
Dave Chinner41419562013-10-29 22:11:50 +11001374 dp = args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 ASSERT(oldblk->magic == XFS_DIR2_LEAFN_MAGIC);
1376 error = xfs_da_grow_inode(args, &blkno);
1377 if (error) {
1378 return error;
1379 }
1380 /*
1381 * Initialize the new leaf block.
1382 */
Dave Chinner2998ab1d2014-06-06 15:07:53 +10001383 error = xfs_dir3_leaf_get_buf(args, xfs_dir2_da_to_db(args->geo, blkno),
Dave Chinner24df33b2013-04-12 07:30:21 +10001384 &newblk->bp, XFS_DIR2_LEAFN_MAGIC);
1385 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 return error;
Dave Chinner24df33b2013-04-12 07:30:21 +10001387
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 newblk->blkno = blkno;
1389 newblk->magic = XFS_DIR2_LEAFN_MAGIC;
1390 /*
1391 * Rebalance the entries across the two leaves, link the new
1392 * block into the leaves.
1393 */
1394 xfs_dir2_leafn_rebalance(state, oldblk, newblk);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001395 error = xfs_da3_blk_link(state, oldblk, newblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 if (error) {
1397 return error;
1398 }
1399 /*
1400 * Insert the new entry in the correct block.
1401 */
1402 if (state->inleaf)
1403 error = xfs_dir2_leafn_add(oldblk->bp, args, oldblk->index);
1404 else
1405 error = xfs_dir2_leafn_add(newblk->bp, args, newblk->index);
1406 /*
1407 * Update last hashval in each block since we added the name.
1408 */
Darrick J. Wong8e8877e2017-06-16 11:00:13 -07001409 oldblk->hashval = xfs_dir2_leaf_lasthash(dp, oldblk->bp, NULL);
1410 newblk->hashval = xfs_dir2_leaf_lasthash(dp, newblk->bp, NULL);
Dave Chinner41419562013-10-29 22:11:50 +11001411 xfs_dir3_leaf_check(dp, oldblk->bp);
1412 xfs_dir3_leaf_check(dp, newblk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 return error;
1414}
1415
1416/*
1417 * Check a leaf block and its neighbors to see if the block should be
1418 * collapsed into one or the other neighbor. Always keep the block
1419 * with the smaller block number.
1420 * If the current block is over 50% full, don't try to join it, return 0.
1421 * If the block is empty, fill in the state structure and return 2.
1422 * If it can be collapsed, fill in the state structure and return 1.
1423 * If nothing can be done, return 0.
1424 */
1425int /* error */
1426xfs_dir2_leafn_toosmall(
1427 xfs_da_state_t *state, /* btree cursor */
1428 int *action) /* resulting action to take */
1429{
1430 xfs_da_state_blk_t *blk; /* leaf block */
1431 xfs_dablk_t blkno; /* leaf block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001432 struct xfs_buf *bp; /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 int bytes; /* bytes in use */
1434 int count; /* leaf live entry count */
1435 int error; /* error return value */
1436 int forward; /* sibling block direction */
1437 int i; /* sibling counter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 xfs_dir2_leaf_t *leaf; /* leaf structure */
1439 int rval; /* result from path_shift */
Dave Chinner24df33b2013-04-12 07:30:21 +10001440 struct xfs_dir3_icleaf_hdr leafhdr;
1441 struct xfs_dir2_leaf_entry *ents;
Dave Chinner41419562013-10-29 22:11:50 +11001442 struct xfs_inode *dp = state->args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
1444 /*
1445 * Check for the degenerate case of the block being over 50% full.
1446 * If so, it's not worth even looking to see if we might be able
1447 * to coalesce with a sibling.
1448 */
1449 blk = &state->path.blk[state->path.active - 1];
Dave Chinner24df33b2013-04-12 07:30:21 +10001450 leaf = blk->bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001451 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +11001452 ents = dp->d_ops->leaf_ents_p(leaf);
1453 xfs_dir3_leaf_check(dp, blk->bp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001454
1455 count = leafhdr.count - leafhdr.stale;
Dave Chinner1c9a5b22013-10-30 09:15:02 +11001456 bytes = dp->d_ops->leaf_hdr_size + count * sizeof(ents[0]);
Dave Chinnerb2a21e72014-06-06 15:22:04 +10001457 if (bytes > (state->args->geo->blksize >> 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 /*
1459 * Blk over 50%, don't try to join.
1460 */
1461 *action = 0;
1462 return 0;
1463 }
1464 /*
1465 * Check for the degenerate case of the block being empty.
1466 * If the block is empty, we'll simply delete it, no need to
1467 * coalesce it with a sibling block. We choose (arbitrarily)
1468 * to merge with the forward block unless it is NULL.
1469 */
1470 if (count == 0) {
1471 /*
1472 * Make altpath point to the block we want to keep and
1473 * path point to the block we want to drop (this one).
1474 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001475 forward = (leafhdr.forw != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 memcpy(&state->altpath, &state->path, sizeof(state->path));
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001477 error = xfs_da3_path_shift(state, &state->altpath, forward, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 &rval);
1479 if (error)
1480 return error;
1481 *action = rval ? 2 : 0;
1482 return 0;
1483 }
1484 /*
1485 * Examine each sibling block to see if we can coalesce with
1486 * at least 25% free space to spare. We need to figure out
1487 * whether to merge with the forward or the backward block.
1488 * We prefer coalescing with the lower numbered sibling so as
1489 * to shrink a directory over time.
1490 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001491 forward = leafhdr.forw < leafhdr.back;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 for (i = 0, bp = NULL; i < 2; forward = !forward, i++) {
Dave Chinner24df33b2013-04-12 07:30:21 +10001493 struct xfs_dir3_icleaf_hdr hdr2;
1494
1495 blkno = forward ? leafhdr.forw : leafhdr.back;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 if (blkno == 0)
1497 continue;
1498 /*
1499 * Read the sibling leaf block.
1500 */
Dave Chinner41419562013-10-29 22:11:50 +11001501 error = xfs_dir3_leafn_read(state->args->trans, dp,
Dave Chinnere6f76672012-11-12 22:54:15 +11001502 blkno, -1, &bp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001503 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 return error;
Dave Chinnere6f76672012-11-12 22:54:15 +11001505
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 /*
1507 * Count bytes in the two blocks combined.
1508 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001509 count = leafhdr.count - leafhdr.stale;
Dave Chinnerb2a21e72014-06-06 15:22:04 +10001510 bytes = state->args->geo->blksize -
1511 (state->args->geo->blksize >> 2);
Dave Chinner24df33b2013-04-12 07:30:21 +10001512
Dave Chinner1d9025e2012-06-22 18:50:14 +10001513 leaf = bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001514 dp->d_ops->leaf_hdr_from_disk(&hdr2, leaf);
Dave Chinner41419562013-10-29 22:11:50 +11001515 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001516 count += hdr2.count - hdr2.stale;
1517 bytes -= count * sizeof(ents[0]);
1518
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 /*
1520 * Fits with at least 25% to spare.
1521 */
1522 if (bytes >= 0)
1523 break;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001524 xfs_trans_brelse(state->args->trans, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 }
1526 /*
1527 * Didn't like either block, give up.
1528 */
1529 if (i >= 2) {
1530 *action = 0;
1531 return 0;
1532 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10001533
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 /*
1535 * Make altpath point to the block we want to keep (the lower
1536 * numbered block) and path point to the block we want to drop.
1537 */
1538 memcpy(&state->altpath, &state->path, sizeof(state->path));
1539 if (blkno < blk->blkno)
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001540 error = xfs_da3_path_shift(state, &state->altpath, forward, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 &rval);
1542 else
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001543 error = xfs_da3_path_shift(state, &state->path, forward, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 &rval);
1545 if (error) {
1546 return error;
1547 }
1548 *action = rval ? 0 : 1;
1549 return 0;
1550}
1551
1552/*
1553 * Move all the leaf entries from drop_blk to save_blk.
1554 * This is done as part of a join operation.
1555 */
1556void
1557xfs_dir2_leafn_unbalance(
1558 xfs_da_state_t *state, /* cursor */
1559 xfs_da_state_blk_t *drop_blk, /* dead block */
1560 xfs_da_state_blk_t *save_blk) /* surviving block */
1561{
1562 xfs_da_args_t *args; /* operation arguments */
1563 xfs_dir2_leaf_t *drop_leaf; /* dead leaf structure */
1564 xfs_dir2_leaf_t *save_leaf; /* surviving leaf structure */
Dave Chinner24df33b2013-04-12 07:30:21 +10001565 struct xfs_dir3_icleaf_hdr savehdr;
1566 struct xfs_dir3_icleaf_hdr drophdr;
1567 struct xfs_dir2_leaf_entry *sents;
1568 struct xfs_dir2_leaf_entry *dents;
Dave Chinner41419562013-10-29 22:11:50 +11001569 struct xfs_inode *dp = state->args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
1571 args = state->args;
1572 ASSERT(drop_blk->magic == XFS_DIR2_LEAFN_MAGIC);
1573 ASSERT(save_blk->magic == XFS_DIR2_LEAFN_MAGIC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001574 drop_leaf = drop_blk->bp->b_addr;
1575 save_leaf = save_blk->bp->b_addr;
Dave Chinner24df33b2013-04-12 07:30:21 +10001576
Dave Chinner01ba43b2013-10-29 22:11:52 +11001577 dp->d_ops->leaf_hdr_from_disk(&savehdr, save_leaf);
1578 dp->d_ops->leaf_hdr_from_disk(&drophdr, drop_leaf);
1579 sents = dp->d_ops->leaf_ents_p(save_leaf);
1580 dents = dp->d_ops->leaf_ents_p(drop_leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001581
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 /*
1583 * If there are any stale leaf entries, take this opportunity
1584 * to purge them.
1585 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001586 if (drophdr.stale)
1587 xfs_dir3_leaf_compact(args, &drophdr, drop_blk->bp);
1588 if (savehdr.stale)
1589 xfs_dir3_leaf_compact(args, &savehdr, save_blk->bp);
1590
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 /*
1592 * Move the entries from drop to the appropriate end of save.
1593 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001594 drop_blk->hashval = be32_to_cpu(dents[drophdr.count - 1].hashval);
Dave Chinner41419562013-10-29 22:11:50 +11001595 if (xfs_dir2_leafn_order(dp, save_blk->bp, drop_blk->bp))
Dave Chinner24df33b2013-04-12 07:30:21 +10001596 xfs_dir3_leafn_moveents(args, drop_blk->bp, &drophdr, dents, 0,
1597 save_blk->bp, &savehdr, sents, 0,
1598 drophdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 else
Dave Chinner24df33b2013-04-12 07:30:21 +10001600 xfs_dir3_leafn_moveents(args, drop_blk->bp, &drophdr, dents, 0,
1601 save_blk->bp, &savehdr, sents,
1602 savehdr.count, drophdr.count);
1603 save_blk->hashval = be32_to_cpu(sents[savehdr.count - 1].hashval);
1604
1605 /* log the changes made when moving the entries */
Dave Chinner01ba43b2013-10-29 22:11:52 +11001606 dp->d_ops->leaf_hdr_to_disk(save_leaf, &savehdr);
1607 dp->d_ops->leaf_hdr_to_disk(drop_leaf, &drophdr);
Dave Chinnerbc851782014-06-06 15:20:54 +10001608 xfs_dir3_leaf_log_header(args, save_blk->bp);
1609 xfs_dir3_leaf_log_header(args, drop_blk->bp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001610
Dave Chinner41419562013-10-29 22:11:50 +11001611 xfs_dir3_leaf_check(dp, save_blk->bp);
1612 xfs_dir3_leaf_check(dp, drop_blk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613}
1614
1615/*
1616 * Top-level node form directory addname routine.
1617 */
1618int /* error */
1619xfs_dir2_node_addname(
1620 xfs_da_args_t *args) /* operation arguments */
1621{
1622 xfs_da_state_blk_t *blk; /* leaf block for insert */
1623 int error; /* error return value */
1624 int rval; /* sub-return value */
1625 xfs_da_state_t *state; /* btree cursor */
1626
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001627 trace_xfs_dir2_node_addname(args);
1628
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 /*
1630 * Allocate and initialize the state (btree cursor).
1631 */
1632 state = xfs_da_state_alloc();
1633 state->args = args;
1634 state->mp = args->dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 /*
1636 * Look up the name. We're not supposed to find it, but
1637 * this gives us the insertion point.
1638 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001639 error = xfs_da3_node_lookup_int(state, &rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 if (error)
1641 rval = error;
Dave Chinner24513372014-06-25 14:58:08 +10001642 if (rval != -ENOENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 goto done;
1644 }
1645 /*
1646 * Add the data entry to a data block.
1647 * Extravalid is set to a freeblock found by lookup.
1648 */
1649 rval = xfs_dir2_node_addname_int(args,
1650 state->extravalid ? &state->extrablk : NULL);
1651 if (rval) {
1652 goto done;
1653 }
1654 blk = &state->path.blk[state->path.active - 1];
1655 ASSERT(blk->magic == XFS_DIR2_LEAFN_MAGIC);
1656 /*
1657 * Add the new leaf entry.
1658 */
1659 rval = xfs_dir2_leafn_add(blk->bp, args, blk->index);
1660 if (rval == 0) {
1661 /*
1662 * It worked, fix the hash values up the btree.
1663 */
Barry Naujok6a178102008-05-21 16:42:05 +10001664 if (!(args->op_flags & XFS_DA_OP_JUSTCHECK))
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001665 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 } else {
1667 /*
1668 * It didn't work, we need to split the leaf block.
1669 */
1670 if (args->total == 0) {
Dave Chinner24513372014-06-25 14:58:08 +10001671 ASSERT(rval == -ENOSPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 goto done;
1673 }
1674 /*
1675 * Split the leaf block and insert the new entry.
1676 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001677 rval = xfs_da3_split(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 }
1679done:
1680 xfs_da_state_free(state);
1681 return rval;
1682}
1683
1684/*
1685 * Add the data entry for a node-format directory name addition.
1686 * The leaf entry is added in xfs_dir2_leafn_add.
1687 * We may enter with a freespace block that the lookup found.
1688 */
1689static int /* error */
1690xfs_dir2_node_addname_int(
1691 xfs_da_args_t *args, /* operation arguments */
1692 xfs_da_state_blk_t *fblk) /* optional freespace block */
1693{
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001694 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 xfs_dir2_db_t dbno; /* data block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001696 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 xfs_dir2_data_entry_t *dep; /* data entry pointer */
1698 xfs_inode_t *dp; /* incore directory inode */
1699 xfs_dir2_data_unused_t *dup; /* data unused entry pointer */
1700 int error; /* error return value */
1701 xfs_dir2_db_t fbno; /* freespace block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001702 struct xfs_buf *fbp; /* freespace buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 int findex; /* freespace entry index */
1704 xfs_dir2_free_t *free=NULL; /* freespace block structure */
1705 xfs_dir2_db_t ifbno; /* initial freespace block no */
1706 xfs_dir2_db_t lastfbno=0; /* highest freespace block no */
1707 int length; /* length of the new entry */
1708 int logfree; /* need to log free entry */
1709 xfs_mount_t *mp; /* filesystem mount point */
1710 int needlog; /* need to log data header */
1711 int needscan; /* need to rescan data frees */
Nathan Scott3d693c62006-03-17 17:28:27 +11001712 __be16 *tagp; /* data entry tag pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 xfs_trans_t *tp; /* transaction pointer */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001714 __be16 *bests;
1715 struct xfs_dir3_icfree_hdr freehdr;
Dave Chinner33363fe2013-04-03 16:11:22 +11001716 struct xfs_dir2_data_free *bf;
Darrick J. Wong6915ef32018-03-23 10:06:51 -07001717 xfs_dir2_data_aoff_t aoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
1719 dp = args->dp;
1720 mp = dp->i_mount;
1721 tp = args->trans;
Dave Chinner9d23fc82013-10-29 22:11:48 +11001722 length = dp->d_ops->data_entsize(args->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 /*
1724 * If we came in with a freespace block that means that lookup
1725 * found an entry with our hash value. This is the freespace
1726 * block for that data entry.
1727 */
1728 if (fblk) {
1729 fbp = fblk->bp;
1730 /*
1731 * Remember initial freespace block number.
1732 */
1733 ifbno = fblk->blkno;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001734 free = fbp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 findex = fblk->index;
Dave Chinner24dd0f52013-10-30 13:48:41 -05001736 bests = dp->d_ops->free_bests_p(free);
Dave Chinner01ba43b2013-10-29 22:11:52 +11001737 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001738
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 /*
1740 * This means the free entry showed that the data block had
1741 * space for our entry, so we remembered it.
1742 * Use that data block.
1743 */
1744 if (findex >= 0) {
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001745 ASSERT(findex < freehdr.nvalid);
1746 ASSERT(be16_to_cpu(bests[findex]) != NULLDATAOFF);
1747 ASSERT(be16_to_cpu(bests[findex]) >= length);
1748 dbno = freehdr.firstdb + findex;
1749 } else {
1750 /*
1751 * The data block looked at didn't have enough room.
1752 * We'll start at the beginning of the freespace entries.
1753 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 dbno = -1;
1755 findex = 0;
1756 }
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001757 } else {
1758 /*
1759 * Didn't come in with a freespace block, so no data block.
1760 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 ifbno = dbno = -1;
1762 fbp = NULL;
1763 findex = 0;
1764 }
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001765
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 /*
1767 * If we don't have a data block yet, we're going to scan the
1768 * freespace blocks looking for one. Figure out what the
1769 * highest freespace block number is.
1770 */
1771 if (dbno == -1) {
1772 xfs_fileoff_t fo; /* freespace block number */
1773
Eric Sandeen7fb2cd42014-04-14 18:58:05 +10001774 if ((error = xfs_bmap_last_offset(dp, &fo, XFS_DATA_FORK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 return error;
Dave Chinner2998ab1d2014-06-06 15:07:53 +10001776 lastfbno = xfs_dir2_da_to_db(args->geo, (xfs_dablk_t)fo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 fbno = ifbno;
1778 }
1779 /*
1780 * While we haven't identified a data block, search the freeblock
1781 * data for a good data block. If we find a null freeblock entry,
1782 * indicating a hole in the data blocks, remember that.
1783 */
1784 while (dbno == -1) {
1785 /*
1786 * If we don't have a freeblock in hand, get the next one.
1787 */
1788 if (fbp == NULL) {
1789 /*
1790 * Happens the first time through unless lookup gave
1791 * us a freespace block to start with.
1792 */
1793 if (++fbno == 0)
Dave Chinner30028032014-06-06 15:08:18 +10001794 fbno = xfs_dir2_byte_to_db(args->geo,
Dave Chinner8c44a282014-06-06 15:04:41 +10001795 XFS_DIR2_FREE_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 /*
1797 * If it's ifbno we already looked at it.
1798 */
1799 if (fbno == ifbno)
1800 fbno++;
1801 /*
1802 * If it's off the end we're done.
1803 */
1804 if (fbno >= lastfbno)
1805 break;
1806 /*
1807 * Read the block. There can be holes in the
1808 * freespace blocks, so this might not succeed.
1809 * This should be really rare, so there's no reason
1810 * to avoid it.
1811 */
Dave Chinner20252072012-11-12 22:54:13 +11001812 error = xfs_dir2_free_try_read(tp, dp,
Dave Chinner2998ab1d2014-06-06 15:07:53 +10001813 xfs_dir2_db_to_da(args->geo, fbno),
1814 &fbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001815 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 return error;
Dave Chinner4bb20a82012-11-12 22:54:10 +11001817 if (!fbp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 continue;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001819 free = fbp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 findex = 0;
1821 }
1822 /*
1823 * Look at the current free entry. Is it good enough?
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001824 *
1825 * The bests initialisation should be where the bufer is read in
1826 * the above branch. But gcc is too stupid to realise that bests
1827 * and the freehdr are actually initialised if they are placed
1828 * there, so we have to do it here to avoid warnings. Blech.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 */
Dave Chinner24dd0f52013-10-30 13:48:41 -05001830 bests = dp->d_ops->free_bests_p(free);
Dave Chinner01ba43b2013-10-29 22:11:52 +11001831 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001832 if (be16_to_cpu(bests[findex]) != NULLDATAOFF &&
1833 be16_to_cpu(bests[findex]) >= length)
1834 dbno = freehdr.firstdb + findex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 else {
1836 /*
1837 * Are we done with the freeblock?
1838 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001839 if (++findex == freehdr.nvalid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 /*
1841 * Drop the block.
1842 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001843 xfs_trans_brelse(tp, fbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 fbp = NULL;
1845 if (fblk && fblk->bp)
1846 fblk->bp = NULL;
1847 }
1848 }
1849 }
1850 /*
1851 * If we don't have a data block, we need to allocate one and make
1852 * the freespace entries refer to it.
1853 */
1854 if (unlikely(dbno == -1)) {
1855 /*
1856 * Not allowed to allocate, return failure.
1857 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001858 if ((args->op_flags & XFS_DA_OP_JUSTCHECK) || args->total == 0)
Dave Chinner24513372014-06-25 14:58:08 +10001859 return -ENOSPC;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001860
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 /*
1862 * Allocate and initialize the new data block.
1863 */
1864 if (unlikely((error = xfs_dir2_grow_inode(args,
1865 XFS_DIR2_DATA_SPACE,
1866 &dbno)) ||
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11001867 (error = xfs_dir3_data_init(args, dbno, &dbp))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001869
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 /*
1871 * If (somehow) we have a freespace block, get rid of it.
1872 */
1873 if (fbp)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001874 xfs_trans_brelse(tp, fbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 if (fblk && fblk->bp)
1876 fblk->bp = NULL;
1877
1878 /*
1879 * Get the freespace block corresponding to the data block
1880 * that was just allocated.
1881 */
Dave Chinner8f661932014-06-06 15:15:59 +10001882 fbno = dp->d_ops->db_to_fdb(args->geo, dbno);
Dave Chinner20252072012-11-12 22:54:13 +11001883 error = xfs_dir2_free_try_read(tp, dp,
Dave Chinner2998ab1d2014-06-06 15:07:53 +10001884 xfs_dir2_db_to_da(args->geo, fbno),
1885 &fbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001886 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001888
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 /*
1890 * If there wasn't a freespace block, the read will
1891 * return a NULL fbp. Allocate and initialize a new one.
1892 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001893 if (!fbp) {
1894 error = xfs_dir2_grow_inode(args, XFS_DIR2_FREE_SPACE,
1895 &fbno);
1896 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
Dave Chinner8f661932014-06-06 15:15:59 +10001899 if (dp->d_ops->db_to_fdb(args->geo, dbno) != fbno) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001900 xfs_alert(mp,
Joe Perchesf41febd2015-07-29 11:52:04 +10001901"%s: dir ino %llu needed freesp block %lld for data block %lld, got %lld ifbno %llu lastfbno %d",
Dave Chinner0b932cc2011-03-07 10:08:35 +11001902 __func__, (unsigned long long)dp->i_ino,
Dave Chinner8f661932014-06-06 15:15:59 +10001903 (long long)dp->d_ops->db_to_fdb(
1904 args->geo, dbno),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 (long long)dbno, (long long)fbno,
1906 (unsigned long long)ifbno, lastfbno);
1907 if (fblk) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001908 xfs_alert(mp,
Darrick J. Wongc9690042018-01-09 12:02:55 -08001909 " fblk "PTR_FMT" blkno %llu index %d magic 0x%x",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 fblk,
1911 (unsigned long long)fblk->blkno,
1912 fblk->index,
1913 fblk->magic);
1914 } else {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001915 xfs_alert(mp, " ... fblk is NULL");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 }
1917 XFS_ERROR_REPORT("xfs_dir2_node_addname_int",
1918 XFS_ERRLEVEL_LOW, mp);
Dave Chinner24513372014-06-25 14:58:08 +10001919 return -EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 }
1921
1922 /*
1923 * Get a buffer for the new block.
1924 */
Dave Chinner2998ab1d2014-06-06 15:07:53 +10001925 error = xfs_dir3_free_get_buf(args, fbno, &fbp);
Dave Chinnerb0f539d2012-11-14 17:53:49 +11001926 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 return error;
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001928 free = fbp->b_addr;
Dave Chinner24dd0f52013-10-30 13:48:41 -05001929 bests = dp->d_ops->free_bests_p(free);
Dave Chinner01ba43b2013-10-29 22:11:52 +11001930 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
1932 /*
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001933 * Remember the first slot as our empty slot.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 */
Dave Chinner8c44a282014-06-06 15:04:41 +10001935 freehdr.firstdb =
Dave Chinner30028032014-06-06 15:08:18 +10001936 (fbno - xfs_dir2_byte_to_db(args->geo,
Dave Chinner8c44a282014-06-06 15:04:41 +10001937 XFS_DIR2_FREE_OFFSET)) *
Dave Chinner8f661932014-06-06 15:15:59 +10001938 dp->d_ops->free_max_bests(args->geo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 } else {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001940 free = fbp->b_addr;
Dave Chinner24dd0f52013-10-30 13:48:41 -05001941 bests = dp->d_ops->free_bests_p(free);
Dave Chinner01ba43b2013-10-29 22:11:52 +11001942 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 }
1944
1945 /*
1946 * Set the freespace block index from the data block number.
1947 */
Dave Chinner8f661932014-06-06 15:15:59 +10001948 findex = dp->d_ops->db_to_fdindex(args->geo, dbno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 /*
1950 * If it's after the end of the current entries in the
1951 * freespace block, extend that table.
1952 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001953 if (findex >= freehdr.nvalid) {
Dave Chinner8f661932014-06-06 15:15:59 +10001954 ASSERT(findex < dp->d_ops->free_max_bests(args->geo));
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001955 freehdr.nvalid = findex + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 /*
1957 * Tag new entry so nused will go up.
1958 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001959 bests[findex] = cpu_to_be16(NULLDATAOFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 }
1961 /*
1962 * If this entry was for an empty data block
1963 * (this should always be true) then update the header.
1964 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001965 if (bests[findex] == cpu_to_be16(NULLDATAOFF)) {
1966 freehdr.nused++;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001967 dp->d_ops->free_hdr_to_disk(fbp->b_addr, &freehdr);
Dave Chinnerbc851782014-06-06 15:20:54 +10001968 xfs_dir2_free_log_header(args, fbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 }
1970 /*
1971 * Update the real value in the table.
1972 * We haven't allocated the data entry yet so this will
1973 * change again.
1974 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001975 hdr = dbp->b_addr;
Dave Chinner2ca98772013-10-29 22:11:49 +11001976 bf = dp->d_ops->data_bestfree_p(hdr);
Dave Chinner33363fe2013-04-03 16:11:22 +11001977 bests[findex] = bf[0].length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 logfree = 1;
1979 }
1980 /*
1981 * We had a data block so we don't have to make a new one.
1982 */
1983 else {
1984 /*
1985 * If just checking, we succeeded.
1986 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001987 if (args->op_flags & XFS_DA_OP_JUSTCHECK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 return 0;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001989
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 /*
1991 * Read the data block in.
1992 */
Dave Chinner2998ab1d2014-06-06 15:07:53 +10001993 error = xfs_dir3_data_read(tp, dp,
1994 xfs_dir2_db_to_da(args->geo, dbno),
Dave Chinnere4813572012-11-12 22:54:14 +11001995 -1, &dbp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001996 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001998 hdr = dbp->b_addr;
Dave Chinner2ca98772013-10-29 22:11:49 +11001999 bf = dp->d_ops->data_bestfree_p(hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 logfree = 0;
2001 }
Dave Chinner33363fe2013-04-03 16:11:22 +11002002 ASSERT(be16_to_cpu(bf[0].length) >= length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 /*
2004 * Point to the existing unused space.
2005 */
2006 dup = (xfs_dir2_data_unused_t *)
Dave Chinner33363fe2013-04-03 16:11:22 +11002007 ((char *)hdr + be16_to_cpu(bf[0].offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 needscan = needlog = 0;
2009 /*
2010 * Mark the first part of the unused space, inuse for us.
2011 */
Darrick J. Wong6915ef32018-03-23 10:06:51 -07002012 aoff = (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr);
2013 error = xfs_dir2_data_use_free(args, dbp, dup, aoff, length,
2014 &needlog, &needscan);
2015 if (error) {
2016 xfs_trans_brelse(tp, dbp);
2017 return error;
2018 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 /*
2020 * Fill in the new entry and log it.
2021 */
2022 dep = (xfs_dir2_data_entry_t *)dup;
Christoph Hellwigff9901c2006-06-09 14:48:37 +10002023 dep->inumber = cpu_to_be64(args->inumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 dep->namelen = args->namelen;
2025 memcpy(dep->name, args->name, dep->namelen);
Dave Chinner9d23fc82013-10-29 22:11:48 +11002026 dp->d_ops->data_put_ftype(dep, args->filetype);
2027 tagp = dp->d_ops->data_entry_tag_p(dep);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02002028 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Dave Chinnerbc851782014-06-06 15:20:54 +10002029 xfs_dir2_data_log_entry(args, dbp, dep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 /*
2031 * Rescan the block for bestfree if needed.
2032 */
2033 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +11002034 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 /*
2036 * Log the data block header if needed.
2037 */
2038 if (needlog)
Dave Chinnerbc851782014-06-06 15:20:54 +10002039 xfs_dir2_data_log_header(args, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 /*
2041 * If the freespace entry is now wrong, update it.
2042 */
Dave Chinner24dd0f52013-10-30 13:48:41 -05002043 bests = dp->d_ops->free_bests_p(free); /* gcc is so stupid */
Dave Chinner33363fe2013-04-03 16:11:22 +11002044 if (be16_to_cpu(bests[findex]) != be16_to_cpu(bf[0].length)) {
2045 bests[findex] = bf[0].length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 logfree = 1;
2047 }
2048 /*
2049 * Log the freespace entry if needed.
2050 */
2051 if (logfree)
Dave Chinnerbc851782014-06-06 15:20:54 +10002052 xfs_dir2_free_log_bests(args, fbp, findex, findex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 * Return the data block and offset in args, then drop the data block.
2055 */
2056 args->blkno = (xfs_dablk_t)dbno;
Nathan Scott3d693c62006-03-17 17:28:27 +11002057 args->index = be16_to_cpu(*tagp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 return 0;
2059}
2060
2061/*
2062 * Lookup an entry in a node-format directory.
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002063 * All the real work happens in xfs_da3_node_lookup_int.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 * The only real output is the inode number of the entry.
2065 */
2066int /* error */
2067xfs_dir2_node_lookup(
2068 xfs_da_args_t *args) /* operation arguments */
2069{
2070 int error; /* error return value */
2071 int i; /* btree level */
2072 int rval; /* operation return value */
2073 xfs_da_state_t *state; /* btree cursor */
2074
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002075 trace_xfs_dir2_node_lookup(args);
2076
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 /*
2078 * Allocate and initialize the btree cursor.
2079 */
2080 state = xfs_da_state_alloc();
2081 state->args = args;
2082 state->mp = args->dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 /*
2084 * Fill in the path to the entry in the cursor.
2085 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002086 error = xfs_da3_node_lookup_int(state, &rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 if (error)
2088 rval = error;
Dave Chinner24513372014-06-25 14:58:08 +10002089 else if (rval == -ENOENT && args->cmpresult == XFS_CMP_CASE) {
2090 /* If a CI match, dup the actual name and return -EEXIST */
Barry Naujok384f3ce2008-05-21 16:58:22 +10002091 xfs_dir2_data_entry_t *dep;
2092
Dave Chinner1d9025e2012-06-22 18:50:14 +10002093 dep = (xfs_dir2_data_entry_t *)
2094 ((char *)state->extrablk.bp->b_addr +
2095 state->extrablk.index);
Barry Naujok384f3ce2008-05-21 16:58:22 +10002096 rval = xfs_dir_cilookup_result(args, dep->name, dep->namelen);
2097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 /*
2099 * Release the btree blocks and leaf block.
2100 */
2101 for (i = 0; i < state->path.active; i++) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002102 xfs_trans_brelse(args->trans, state->path.blk[i].bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 state->path.blk[i].bp = NULL;
2104 }
2105 /*
2106 * Release the data block if we have it.
2107 */
2108 if (state->extravalid && state->extrablk.bp) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002109 xfs_trans_brelse(args->trans, state->extrablk.bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 state->extrablk.bp = NULL;
2111 }
2112 xfs_da_state_free(state);
2113 return rval;
2114}
2115
2116/*
2117 * Remove an entry from a node-format directory.
2118 */
2119int /* error */
2120xfs_dir2_node_removename(
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002121 struct xfs_da_args *args) /* operation arguments */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122{
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002123 struct xfs_da_state_blk *blk; /* leaf block */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 int error; /* error return value */
2125 int rval; /* operation return value */
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002126 struct xfs_da_state *state; /* btree cursor */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002128 trace_xfs_dir2_node_removename(args);
2129
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 /*
2131 * Allocate and initialize the btree cursor.
2132 */
2133 state = xfs_da_state_alloc();
2134 state->args = args;
2135 state->mp = args->dp->i_mount;
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002136
2137 /* Look up the entry we're deleting, set up the cursor. */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002138 error = xfs_da3_node_lookup_int(state, &rval);
Barry Naujok5163f952008-05-21 16:41:01 +10002139 if (error)
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002140 goto out_free;
2141
2142 /* Didn't find it, upper layer screwed up. */
Dave Chinner24513372014-06-25 14:58:08 +10002143 if (rval != -EEXIST) {
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002144 error = rval;
2145 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 }
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002147
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 blk = &state->path.blk[state->path.active - 1];
2149 ASSERT(blk->magic == XFS_DIR2_LEAFN_MAGIC);
2150 ASSERT(state->extravalid);
2151 /*
2152 * Remove the leaf and data entries.
2153 * Extrablk refers to the data block.
2154 */
2155 error = xfs_dir2_leafn_remove(args, blk->bp, blk->index,
2156 &state->extrablk, &rval);
Barry Naujok5163f952008-05-21 16:41:01 +10002157 if (error)
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002158 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 /*
2160 * Fix the hash values up the btree.
2161 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002162 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 /*
2164 * If we need to join leaf blocks, do it.
2165 */
2166 if (rval && state->path.active > 1)
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002167 error = xfs_da3_join(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 /*
2169 * If no errors so far, try conversion to leaf format.
2170 */
2171 if (!error)
2172 error = xfs_dir2_node_to_leaf(state);
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002173out_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 xfs_da_state_free(state);
2175 return error;
2176}
2177
2178/*
2179 * Replace an entry's inode number in a node-format directory.
2180 */
2181int /* error */
2182xfs_dir2_node_replace(
2183 xfs_da_args_t *args) /* operation arguments */
2184{
2185 xfs_da_state_blk_t *blk; /* leaf block */
Christoph Hellwigc2066e22011-07-08 14:35:38 +02002186 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 xfs_dir2_data_entry_t *dep; /* data entry changed */
2188 int error; /* error return value */
2189 int i; /* btree level */
2190 xfs_ino_t inum; /* new inode number */
Jan Kara03754232015-08-25 10:05:13 +10002191 int ftype; /* new file type */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 xfs_dir2_leaf_t *leaf; /* leaf structure */
2193 xfs_dir2_leaf_entry_t *lep; /* leaf entry being changed */
2194 int rval; /* internal return value */
2195 xfs_da_state_t *state; /* btree cursor */
2196
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002197 trace_xfs_dir2_node_replace(args);
2198
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 /*
2200 * Allocate and initialize the btree cursor.
2201 */
2202 state = xfs_da_state_alloc();
2203 state->args = args;
2204 state->mp = args->dp->i_mount;
Jan Kara03754232015-08-25 10:05:13 +10002205
2206 /*
2207 * We have to save new inode number and ftype since
2208 * xfs_da3_node_lookup_int() is going to overwrite them
2209 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 inum = args->inumber;
Jan Kara03754232015-08-25 10:05:13 +10002211 ftype = args->filetype;
2212
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 /*
2214 * Lookup the entry to change in the btree.
2215 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002216 error = xfs_da3_node_lookup_int(state, &rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 if (error) {
2218 rval = error;
2219 }
2220 /*
2221 * It should be found, since the vnodeops layer has looked it up
2222 * and locked it. But paranoia is good.
2223 */
Dave Chinner24513372014-06-25 14:58:08 +10002224 if (rval == -EEXIST) {
Dave Chinner24df33b2013-04-12 07:30:21 +10002225 struct xfs_dir2_leaf_entry *ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 /*
2227 * Find the leaf entry.
2228 */
2229 blk = &state->path.blk[state->path.active - 1];
2230 ASSERT(blk->magic == XFS_DIR2_LEAFN_MAGIC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002231 leaf = blk->bp->b_addr;
Dave Chinner41419562013-10-29 22:11:50 +11002232 ents = args->dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10002233 lep = &ents[blk->index];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 ASSERT(state->extravalid);
2235 /*
2236 * Point to the data entry.
2237 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10002238 hdr = state->extrablk.bp->b_addr;
Dave Chinner33363fe2013-04-03 16:11:22 +11002239 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
2240 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 dep = (xfs_dir2_data_entry_t *)
Christoph Hellwigc2066e22011-07-08 14:35:38 +02002242 ((char *)hdr +
Dave Chinner30028032014-06-06 15:08:18 +10002243 xfs_dir2_dataptr_to_off(args->geo,
2244 be32_to_cpu(lep->address)));
Christoph Hellwigff9901c2006-06-09 14:48:37 +10002245 ASSERT(inum != be64_to_cpu(dep->inumber));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 /*
2247 * Fill in the new inode number and log the entry.
2248 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +10002249 dep->inumber = cpu_to_be64(inum);
Jan Kara03754232015-08-25 10:05:13 +10002250 args->dp->d_ops->data_put_ftype(dep, ftype);
Dave Chinnerbc851782014-06-06 15:20:54 +10002251 xfs_dir2_data_log_entry(args, state->extrablk.bp, dep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 rval = 0;
2253 }
2254 /*
2255 * Didn't find it, and we're holding a data block. Drop it.
2256 */
2257 else if (state->extravalid) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002258 xfs_trans_brelse(args->trans, state->extrablk.bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 state->extrablk.bp = NULL;
2260 }
2261 /*
2262 * Release all the buffers in the cursor.
2263 */
2264 for (i = 0; i < state->path.active; i++) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002265 xfs_trans_brelse(args->trans, state->path.blk[i].bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 state->path.blk[i].bp = NULL;
2267 }
2268 xfs_da_state_free(state);
2269 return rval;
2270}
2271
2272/*
2273 * Trim off a trailing empty freespace block.
2274 * Return (in rvalp) 1 if we did it, 0 if not.
2275 */
2276int /* error */
2277xfs_dir2_node_trim_free(
2278 xfs_da_args_t *args, /* operation arguments */
2279 xfs_fileoff_t fo, /* free block number */
2280 int *rvalp) /* out: did something */
2281{
Dave Chinner1d9025e2012-06-22 18:50:14 +10002282 struct xfs_buf *bp; /* freespace buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 xfs_inode_t *dp; /* incore directory inode */
2284 int error; /* error return code */
2285 xfs_dir2_free_t *free; /* freespace structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 xfs_trans_t *tp; /* transaction pointer */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11002287 struct xfs_dir3_icfree_hdr freehdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
2289 dp = args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 tp = args->trans;
Christoph Hellwig355cced2016-03-15 11:44:18 +11002291
2292 *rvalp = 0;
2293
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 /*
2295 * Read the freespace block.
2296 */
Dave Chinner20252072012-11-12 22:54:13 +11002297 error = xfs_dir2_free_try_read(tp, dp, fo, &bp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11002298 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 /*
2301 * There can be holes in freespace. If fo is a hole, there's
2302 * nothing to do.
2303 */
Dave Chinner20252072012-11-12 22:54:13 +11002304 if (!bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 return 0;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002306 free = bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11002307 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11002308
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 /*
2310 * If there are used entries, there's nothing to do.
2311 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11002312 if (freehdr.nused > 0) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002313 xfs_trans_brelse(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 return 0;
2315 }
2316 /*
2317 * Blow the block away.
2318 */
Dave Chinner2998ab1d2014-06-06 15:07:53 +10002319 error = xfs_dir2_shrink_inode(args,
2320 xfs_dir2_da_to_db(args->geo, (xfs_dablk_t)fo), bp);
2321 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 /*
2323 * Can't fail with ENOSPC since that only happens with no
2324 * space reservation, when breaking up an extent into two
2325 * pieces. This is the last block of an extent.
2326 */
Dave Chinner24513372014-06-25 14:58:08 +10002327 ASSERT(error != -ENOSPC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002328 xfs_trans_brelse(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 return error;
2330 }
2331 /*
2332 * Return that we succeeded.
2333 */
2334 *rvalp = 1;
2335 return 0;
2336}