blob: 9df096cc3c37176aa89b4e7145fcd433368ed3ac [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
Dave Chinnercbc8adf2013-04-03 16:11:21 +11003 * Copyright (c) 2013 Red Hat, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11004 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Nathan Scott7b718762005-11-02 14:58:39 +11006 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * published by the Free Software Foundation.
9 *
Nathan Scott7b718762005-11-02 14:58:39 +110010 * This program is distributed in the hope that it would be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 *
Nathan Scott7b718762005-11-02 14:58:39 +110015 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110020#include "xfs_fs.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110021#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110022#include "xfs_log_format.h"
23#include "xfs_trans_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_mount.h"
Dave Chinner57062782013-10-15 09:17:51 +110025#include "xfs_da_format.h"
Nathan Scotta844f452005-11-02 14:38:42 +110026#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_inode.h"
28#include "xfs_bmap.h"
Dave Chinner2b9ab5a2013-08-12 20:49:37 +100029#include "xfs_dir2.h"
Christoph Hellwig57926642011-07-13 13:43:48 +020030#include "xfs_dir2_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_error.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000032#include "xfs_trace.h"
Dave Chinner239880e2013-10-23 10:50:10 +110033#include "xfs_trans.h"
Dave Chinnercbc8adf2013-04-03 16:11:21 +110034#include "xfs_buf_item.h"
35#include "xfs_cksum.h"
Brian Fostera45086e2015-10-12 15:59:25 +110036#include "xfs_log.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38/*
39 * Function declarations.
40 */
Dave Chinner1d9025e2012-06-22 18:50:14 +100041static int xfs_dir2_leafn_add(struct xfs_buf *bp, xfs_da_args_t *args,
42 int index);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043static void xfs_dir2_leafn_rebalance(xfs_da_state_t *state,
44 xfs_da_state_blk_t *blk1,
45 xfs_da_state_blk_t *blk2);
Dave Chinner1d9025e2012-06-22 18:50:14 +100046static int xfs_dir2_leafn_remove(xfs_da_args_t *args, struct xfs_buf *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 int index, xfs_da_state_blk_t *dblk,
48 int *rval);
49static int xfs_dir2_node_addname_int(xfs_da_args_t *args,
50 xfs_da_state_blk_t *fblk);
51
Dave Chinner24df33b2013-04-12 07:30:21 +100052/*
53 * Check internal consistency of a leafn block.
54 */
55#ifdef DEBUG
Darrick J. Wonga6a781a2018-01-08 10:51:03 -080056static xfs_failaddr_t
Dave Chinner24df33b2013-04-12 07:30:21 +100057xfs_dir3_leafn_check(
Dave Chinner41419562013-10-29 22:11:50 +110058 struct xfs_inode *dp,
Dave Chinner24df33b2013-04-12 07:30:21 +100059 struct xfs_buf *bp)
60{
61 struct xfs_dir2_leaf *leaf = bp->b_addr;
62 struct xfs_dir3_icleaf_hdr leafhdr;
63
Dave Chinner01ba43b2013-10-29 22:11:52 +110064 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +100065
66 if (leafhdr.magic == XFS_DIR3_LEAFN_MAGIC) {
67 struct xfs_dir3_leaf_hdr *leaf3 = bp->b_addr;
68 if (be64_to_cpu(leaf3->info.blkno) != bp->b_bn)
Darrick J. Wonga6a781a2018-01-08 10:51:03 -080069 return __this_address;
Dave Chinner24df33b2013-04-12 07:30:21 +100070 } else if (leafhdr.magic != XFS_DIR2_LEAFN_MAGIC)
Darrick J. Wonga6a781a2018-01-08 10:51:03 -080071 return __this_address;
Dave Chinner24df33b2013-04-12 07:30:21 +100072
Dave Chinner41419562013-10-29 22:11:50 +110073 return xfs_dir3_leaf_check_int(dp->i_mount, dp, &leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +100074}
Darrick J. Wonga6a781a2018-01-08 10:51:03 -080075
76static inline void
77xfs_dir3_leaf_check(
78 struct xfs_inode *dp,
79 struct xfs_buf *bp)
80{
81 xfs_failaddr_t fa;
82
83 fa = xfs_dir3_leafn_check(dp, bp);
84 if (!fa)
85 return;
86 xfs_corruption_error(__func__, XFS_ERRLEVEL_LOW, dp->i_mount,
87 bp->b_addr, __FILE__, __LINE__, fa);
88 ASSERT(0);
89}
Dave Chinner24df33b2013-04-12 07:30:21 +100090#else
Dave Chinner41419562013-10-29 22:11:50 +110091#define xfs_dir3_leaf_check(dp, bp)
Dave Chinner24df33b2013-04-12 07:30:21 +100092#endif
93
Darrick J. Wonga6a781a2018-01-08 10:51:03 -080094static xfs_failaddr_t
Dave Chinnercbc8adf2013-04-03 16:11:21 +110095xfs_dir3_free_verify(
Dave Chinner20252072012-11-12 22:54:13 +110096 struct xfs_buf *bp)
97{
98 struct xfs_mount *mp = bp->b_target->bt_mount;
99 struct xfs_dir2_free_hdr *hdr = bp->b_addr;
Dave Chinner20252072012-11-12 22:54:13 +1100100
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100101 if (xfs_sb_version_hascrc(&mp->m_sb)) {
102 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
103
104 if (hdr3->magic != cpu_to_be32(XFS_DIR3_FREE_MAGIC))
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800105 return __this_address;
Eric Sandeence748ea2015-07-29 11:53:31 +1000106 if (!uuid_equal(&hdr3->uuid, &mp->m_sb.sb_meta_uuid))
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800107 return __this_address;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100108 if (be64_to_cpu(hdr3->blkno) != bp->b_bn)
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800109 return __this_address;
Brian Fostera45086e2015-10-12 15:59:25 +1100110 if (!xfs_log_check_lsn(mp, be64_to_cpu(hdr3->lsn)))
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800111 return __this_address;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100112 } else {
113 if (hdr->magic != cpu_to_be32(XFS_DIR2_FREE_MAGIC))
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800114 return __this_address;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100115 }
116
117 /* XXX: should bounds check the xfs_dir3_icfree_hdr here */
118
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800119 return NULL;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100120}
121
122static void
123xfs_dir3_free_read_verify(
124 struct xfs_buf *bp)
125{
126 struct xfs_mount *mp = bp->b_target->bt_mount;
Darrick J. Wongbc1a09b2018-01-08 10:51:03 -0800127 xfs_failaddr_t fa;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100128
Eric Sandeence5028c2014-02-27 15:23:10 +1100129 if (xfs_sb_version_hascrc(&mp->m_sb) &&
130 !xfs_buf_verify_cksum(bp, XFS_DIR3_FREE_CRC_OFF))
Darrick J. Wongbc1a09b2018-01-08 10:51:03 -0800131 xfs_verifier_error(bp, -EFSBADCRC, __this_address);
132 else {
133 fa = xfs_dir3_free_verify(bp);
134 if (fa)
135 xfs_verifier_error(bp, -EFSCORRUPTED, fa);
136 }
Dave Chinner612cfbf2012-11-14 17:52:32 +1100137}
Dave Chinner20252072012-11-12 22:54:13 +1100138
Dave Chinner612cfbf2012-11-14 17:52:32 +1100139static void
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100140xfs_dir3_free_write_verify(
Dave Chinner1813dd62012-11-14 17:54:40 +1100141 struct xfs_buf *bp)
142{
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100143 struct xfs_mount *mp = bp->b_target->bt_mount;
Carlos Maiolinofb1755a2018-01-24 13:38:48 -0800144 struct xfs_buf_log_item *bip = bp->b_log_item;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100145 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
Darrick J. Wongbc1a09b2018-01-08 10:51:03 -0800146 xfs_failaddr_t fa;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100147
Darrick J. Wongbc1a09b2018-01-08 10:51:03 -0800148 fa = xfs_dir3_free_verify(bp);
149 if (fa) {
150 xfs_verifier_error(bp, -EFSCORRUPTED, fa);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100151 return;
152 }
153
154 if (!xfs_sb_version_hascrc(&mp->m_sb))
155 return;
156
157 if (bip)
158 hdr3->lsn = cpu_to_be64(bip->bli_item.li_lsn);
159
Eric Sandeenf1dbcd72014-02-27 15:18:23 +1100160 xfs_buf_update_cksum(bp, XFS_DIR3_FREE_CRC_OFF);
Dave Chinner1813dd62012-11-14 17:54:40 +1100161}
162
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100163const struct xfs_buf_ops xfs_dir3_free_buf_ops = {
Eric Sandeen233135b2016-01-04 16:10:19 +1100164 .name = "xfs_dir3_free",
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100165 .verify_read = xfs_dir3_free_read_verify,
166 .verify_write = xfs_dir3_free_write_verify,
Darrick J. Wongb5572592018-01-08 10:51:08 -0800167 .verify_struct = xfs_dir3_free_verify,
Dave Chinner1813dd62012-11-14 17:54:40 +1100168};
Dave Chinner20252072012-11-12 22:54:13 +1100169
Darrick J. Wongde14c5f2017-02-02 15:14:00 -0800170/* Everything ok in the free block header? */
Darrick J. Wongbc1a09b2018-01-08 10:51:03 -0800171static xfs_failaddr_t
Darrick J. Wongde14c5f2017-02-02 15:14:00 -0800172xfs_dir3_free_header_check(
173 struct xfs_inode *dp,
174 xfs_dablk_t fbno,
175 struct xfs_buf *bp)
176{
177 struct xfs_mount *mp = dp->i_mount;
178 unsigned int firstdb;
179 int maxbests;
180
181 maxbests = dp->d_ops->free_max_bests(mp->m_dir_geo);
182 firstdb = (xfs_dir2_da_to_db(mp->m_dir_geo, fbno) -
183 xfs_dir2_byte_to_db(mp->m_dir_geo, XFS_DIR2_FREE_OFFSET)) *
184 maxbests;
185 if (xfs_sb_version_hascrc(&mp->m_sb)) {
186 struct xfs_dir3_free_hdr *hdr3 = bp->b_addr;
187
188 if (be32_to_cpu(hdr3->firstdb) != firstdb)
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800189 return __this_address;
Darrick J. Wongde14c5f2017-02-02 15:14:00 -0800190 if (be32_to_cpu(hdr3->nvalid) > maxbests)
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800191 return __this_address;
Darrick J. Wongde14c5f2017-02-02 15:14:00 -0800192 if (be32_to_cpu(hdr3->nvalid) < be32_to_cpu(hdr3->nused))
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800193 return __this_address;
Darrick J. Wongde14c5f2017-02-02 15:14:00 -0800194 } else {
195 struct xfs_dir2_free_hdr *hdr = bp->b_addr;
196
197 if (be32_to_cpu(hdr->firstdb) != firstdb)
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800198 return __this_address;
Darrick J. Wongde14c5f2017-02-02 15:14:00 -0800199 if (be32_to_cpu(hdr->nvalid) > maxbests)
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800200 return __this_address;
Darrick J. Wongde14c5f2017-02-02 15:14:00 -0800201 if (be32_to_cpu(hdr->nvalid) < be32_to_cpu(hdr->nused))
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800202 return __this_address;
Darrick J. Wongde14c5f2017-02-02 15:14:00 -0800203 }
Darrick J. Wonga6a781a2018-01-08 10:51:03 -0800204 return NULL;
Darrick J. Wongde14c5f2017-02-02 15:14:00 -0800205}
Dave Chinner612cfbf2012-11-14 17:52:32 +1100206
Dave Chinner20252072012-11-12 22:54:13 +1100207static int
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100208__xfs_dir3_free_read(
Dave Chinner20252072012-11-12 22:54:13 +1100209 struct xfs_trans *tp,
210 struct xfs_inode *dp,
211 xfs_dablk_t fbno,
212 xfs_daddr_t mappedbno,
213 struct xfs_buf **bpp)
214{
Darrick J. Wongbc1a09b2018-01-08 10:51:03 -0800215 xfs_failaddr_t fa;
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100216 int err;
217
218 err = xfs_da_read_buf(tp, dp, fbno, mappedbno, bpp,
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100219 XFS_DATA_FORK, &xfs_dir3_free_buf_ops);
Darrick J. Wongde14c5f2017-02-02 15:14:00 -0800220 if (err || !*bpp)
221 return err;
222
223 /* Check things that we can't do in the verifier. */
Darrick J. Wongbc1a09b2018-01-08 10:51:03 -0800224 fa = xfs_dir3_free_header_check(dp, fbno, *bpp);
225 if (fa) {
226 xfs_verifier_error(*bpp, -EFSCORRUPTED, fa);
Darrick J. Wongde14c5f2017-02-02 15:14:00 -0800227 xfs_trans_brelse(tp, *bpp);
228 return -EFSCORRUPTED;
229 }
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100230
231 /* try read returns without an error or *bpp if it lands in a hole */
Darrick J. Wongde14c5f2017-02-02 15:14:00 -0800232 if (tp)
Dave Chinner61fe1352013-04-03 16:11:30 +1100233 xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_DIR_FREE_BUF);
Darrick J. Wongde14c5f2017-02-02 15:14:00 -0800234
235 return 0;
Dave Chinner20252072012-11-12 22:54:13 +1100236}
237
238int
239xfs_dir2_free_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, -1, bpp);
Dave Chinner20252072012-11-12 22:54:13 +1100246}
247
248static int
249xfs_dir2_free_try_read(
250 struct xfs_trans *tp,
251 struct xfs_inode *dp,
252 xfs_dablk_t fbno,
253 struct xfs_buf **bpp)
254{
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100255 return __xfs_dir3_free_read(tp, dp, fbno, -2, bpp);
256}
257
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100258static int
259xfs_dir3_free_get_buf(
Dave Chinner2998ab1d2014-06-06 15:07:53 +1000260 xfs_da_args_t *args,
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100261 xfs_dir2_db_t fbno,
262 struct xfs_buf **bpp)
263{
Dave Chinner2998ab1d2014-06-06 15:07:53 +1000264 struct xfs_trans *tp = args->trans;
265 struct xfs_inode *dp = args->dp;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100266 struct xfs_mount *mp = dp->i_mount;
267 struct xfs_buf *bp;
268 int error;
269 struct xfs_dir3_icfree_hdr hdr;
270
Dave Chinner2998ab1d2014-06-06 15:07:53 +1000271 error = xfs_da_get_buf(tp, dp, xfs_dir2_db_to_da(args->geo, fbno),
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100272 -1, &bp, XFS_DATA_FORK);
273 if (error)
274 return error;
275
Dave Chinner61fe1352013-04-03 16:11:30 +1100276 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_FREE_BUF);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100277 bp->b_ops = &xfs_dir3_free_buf_ops;
278
279 /*
280 * Initialize the new block to be empty, and remember
281 * its first slot as our empty slot.
282 */
Dave Chinnere400d272013-05-28 18:37:17 +1000283 memset(bp->b_addr, 0, sizeof(struct xfs_dir3_free_hdr));
284 memset(&hdr, 0, sizeof(hdr));
285
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100286 if (xfs_sb_version_hascrc(&mp->m_sb)) {
287 struct xfs_dir3_free_hdr *hdr3 = bp->b_addr;
288
289 hdr.magic = XFS_DIR3_FREE_MAGIC;
Dave Chinnere400d272013-05-28 18:37:17 +1000290
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100291 hdr3->hdr.blkno = cpu_to_be64(bp->b_bn);
292 hdr3->hdr.owner = cpu_to_be64(dp->i_ino);
Eric Sandeence748ea2015-07-29 11:53:31 +1000293 uuid_copy(&hdr3->hdr.uuid, &mp->m_sb.sb_meta_uuid);
Dave Chinnere400d272013-05-28 18:37:17 +1000294 } else
295 hdr.magic = XFS_DIR2_FREE_MAGIC;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100296 dp->d_ops->free_hdr_to_disk(bp->b_addr, &hdr);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100297 *bpp = bp;
298 return 0;
Dave Chinner20252072012-11-12 22:54:13 +1100299}
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301/*
302 * Log entries from a freespace block.
303 */
Eric Sandeen5d77c0d2009-11-19 15:52:00 +0000304STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305xfs_dir2_free_log_bests(
Dave Chinnerbc851782014-06-06 15:20:54 +1000306 struct xfs_da_args *args,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000307 struct xfs_buf *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 int first, /* first entry to log */
309 int last) /* last entry to log */
310{
311 xfs_dir2_free_t *free; /* freespace structure */
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100312 __be16 *bests;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Dave Chinner1d9025e2012-06-22 18:50:14 +1000314 free = bp->b_addr;
Dave Chinnerbc851782014-06-06 15:20:54 +1000315 bests = args->dp->d_ops->free_bests_p(free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100316 ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC) ||
317 free->hdr.magic == cpu_to_be32(XFS_DIR3_FREE_MAGIC));
Dave Chinnerbc851782014-06-06 15:20:54 +1000318 xfs_trans_log_buf(args->trans, bp,
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100319 (uint)((char *)&bests[first] - (char *)free),
320 (uint)((char *)&bests[last] - (char *)free +
321 sizeof(bests[0]) - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
323
324/*
325 * Log header from a freespace block.
326 */
327static void
328xfs_dir2_free_log_header(
Dave Chinnerbc851782014-06-06 15:20:54 +1000329 struct xfs_da_args *args,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000330 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
Dave Chinner836a94a2013-08-12 20:49:44 +1000332#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 xfs_dir2_free_t *free; /* freespace structure */
334
Dave Chinner1d9025e2012-06-22 18:50:14 +1000335 free = bp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100336 ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC) ||
337 free->hdr.magic == cpu_to_be32(XFS_DIR3_FREE_MAGIC));
Dave Chinner836a94a2013-08-12 20:49:44 +1000338#endif
Dave Chinnerbc851782014-06-06 15:20:54 +1000339 xfs_trans_log_buf(args->trans, bp, 0,
340 args->dp->d_ops->free_hdr_size - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341}
342
343/*
344 * Convert a leaf-format directory to a node-format directory.
345 * We need to change the magic number of the leaf block, and copy
346 * the freespace table out of the leaf block into its own block.
347 */
348int /* error */
349xfs_dir2_leaf_to_node(
350 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000351 struct xfs_buf *lbp) /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
353 xfs_inode_t *dp; /* incore directory inode */
354 int error; /* error return value */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000355 struct xfs_buf *fbp; /* freespace buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 xfs_dir2_db_t fdb; /* freespace block number */
357 xfs_dir2_free_t *free; /* freespace structure */
Nathan Scott68b3a102006-03-17 17:27:19 +1100358 __be16 *from; /* pointer to freespace entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 int i; /* leaf freespace index */
360 xfs_dir2_leaf_t *leaf; /* leaf structure */
361 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 int n; /* count of live freespc ents */
363 xfs_dir2_data_off_t off; /* freespace entry value */
Nathan Scott0ba962e2006-03-17 17:27:07 +1100364 __be16 *to; /* pointer to freespace entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 xfs_trans_t *tp; /* transaction pointer */
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100366 struct xfs_dir3_icfree_hdr freehdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000368 trace_xfs_dir2_leaf_to_node(args);
369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 dp = args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 tp = args->trans;
372 /*
373 * Add a freespace block to the directory.
374 */
375 if ((error = xfs_dir2_grow_inode(args, XFS_DIR2_FREE_SPACE, &fdb))) {
376 return error;
377 }
Dave Chinner30028032014-06-06 15:08:18 +1000378 ASSERT(fdb == xfs_dir2_byte_to_db(args->geo, XFS_DIR2_FREE_OFFSET));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 /*
380 * Get the buffer for the new freespace block.
381 */
Dave Chinner2998ab1d2014-06-06 15:07:53 +1000382 error = xfs_dir3_free_get_buf(args, fdb, &fbp);
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100383 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 return error;
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100385
Dave Chinner1d9025e2012-06-22 18:50:14 +1000386 free = fbp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100387 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000388 leaf = lbp->b_addr;
Dave Chinner8f661932014-06-06 15:15:59 +1000389 ltp = xfs_dir2_leaf_tail_p(args->geo, leaf);
Darrick J. Wong3f883f52018-03-06 17:08:31 -0800390 if (be32_to_cpu(ltp->bestcount) >
391 (uint)dp->i_d.di_size / args->geo->blksize)
392 return -EFSCORRUPTED;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 /*
395 * Copy freespace entries from the leaf block to the new block.
396 * Count active entries.
397 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100398 from = xfs_dir2_leaf_bests_p(ltp);
Dave Chinner24dd0f52013-10-30 13:48:41 -0500399 to = dp->d_ops->free_bests_p(free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100400 for (i = n = 0; i < be32_to_cpu(ltp->bestcount); i++, from++, to++) {
Nathan Scott68b3a102006-03-17 17:27:19 +1100401 if ((off = be16_to_cpu(*from)) != NULLDATAOFF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 n++;
Nathan Scott0ba962e2006-03-17 17:27:07 +1100403 *to = cpu_to_be16(off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 }
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 /*
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100407 * Now initialize the freespace block header.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100409 freehdr.nused = n;
410 freehdr.nvalid = be32_to_cpu(ltp->bestcount);
411
Dave Chinner01ba43b2013-10-29 22:11:52 +1100412 dp->d_ops->free_hdr_to_disk(fbp->b_addr, &freehdr);
Dave Chinnerbc851782014-06-06 15:20:54 +1000413 xfs_dir2_free_log_bests(args, fbp, 0, freehdr.nvalid - 1);
414 xfs_dir2_free_log_header(args, fbp);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100415
Dave Chinner24df33b2013-04-12 07:30:21 +1000416 /*
417 * Converting the leaf to a leafnode is just a matter of changing the
418 * magic number and the ops. Do the change directly to the buffer as
419 * it's less work (and less code) than decoding the header to host
420 * format and back again.
421 */
422 if (leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC))
423 leaf->hdr.info.magic = cpu_to_be16(XFS_DIR2_LEAFN_MAGIC);
424 else
425 leaf->hdr.info.magic = cpu_to_be16(XFS_DIR3_LEAFN_MAGIC);
426 lbp->b_ops = &xfs_dir3_leafn_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100427 xfs_trans_buf_set_type(tp, lbp, XFS_BLFT_DIR_LEAFN_BUF);
Dave Chinnerbc851782014-06-06 15:20:54 +1000428 xfs_dir3_leaf_log_header(args, lbp);
Dave Chinner41419562013-10-29 22:11:50 +1100429 xfs_dir3_leaf_check(dp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 return 0;
431}
432
433/*
434 * Add a leaf entry to a leaf block in a node-form directory.
435 * The other work necessary is done from the caller.
436 */
437static int /* error */
438xfs_dir2_leafn_add(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000439 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 xfs_da_args_t *args, /* operation arguments */
441 int index) /* insertion pt for new entry */
442{
443 int compact; /* compacting stale leaves */
444 xfs_inode_t *dp; /* incore directory inode */
445 int highstale; /* next stale entry */
446 xfs_dir2_leaf_t *leaf; /* leaf structure */
447 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
448 int lfloghigh; /* high leaf entry logging */
449 int lfloglow; /* low leaf entry logging */
450 int lowstale; /* previous stale entry */
Dave Chinner24df33b2013-04-12 07:30:21 +1000451 struct xfs_dir3_icleaf_hdr leafhdr;
452 struct xfs_dir2_leaf_entry *ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000454 trace_xfs_dir2_leafn_add(args, index);
455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 dp = args->dp;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000457 leaf = bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100458 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +1100459 ents = dp->d_ops->leaf_ents_p(leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461 /*
462 * Quick check just to make sure we are not going to index
463 * into other peoples memory
464 */
465 if (index < 0)
Dave Chinner24513372014-06-25 14:58:08 +1000466 return -EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468 /*
469 * If there are already the maximum number of leaf entries in
470 * the block, if there are no stale entries it won't fit.
471 * Caller will do a split. If there are stale entries we'll do
472 * a compact.
473 */
474
Dave Chinner8f661932014-06-06 15:15:59 +1000475 if (leafhdr.count == dp->d_ops->leaf_max_ents(args->geo)) {
Dave Chinner24df33b2013-04-12 07:30:21 +1000476 if (!leafhdr.stale)
Dave Chinner24513372014-06-25 14:58:08 +1000477 return -ENOSPC;
Dave Chinner24df33b2013-04-12 07:30:21 +1000478 compact = leafhdr.stale > 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 } else
480 compact = 0;
Dave Chinner24df33b2013-04-12 07:30:21 +1000481 ASSERT(index == 0 || be32_to_cpu(ents[index - 1].hashval) <= args->hashval);
482 ASSERT(index == leafhdr.count ||
483 be32_to_cpu(ents[index].hashval) >= args->hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Barry Naujok6a178102008-05-21 16:42:05 +1000485 if (args->op_flags & XFS_DA_OP_JUSTCHECK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 return 0;
487
488 /*
489 * Compact out all but one stale leaf entry. Leaves behind
490 * the entry closest to index.
491 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000492 if (compact)
493 xfs_dir3_leaf_compact_x1(&leafhdr, ents, &index, &lowstale,
494 &highstale, &lfloglow, &lfloghigh);
495 else if (leafhdr.stale) {
496 /*
497 * Set impossible logging indices for this case.
498 */
499 lfloglow = leafhdr.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 lfloghigh = -1;
501 }
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 /*
504 * Insert the new entry, log everything.
505 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000506 lep = xfs_dir3_leaf_find_entry(&leafhdr, ents, index, compact, lowstale,
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200507 highstale, &lfloglow, &lfloghigh);
508
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100509 lep->hashval = cpu_to_be32(args->hashval);
Dave Chinner30028032014-06-06 15:08:18 +1000510 lep->address = cpu_to_be32(xfs_dir2_db_off_to_dataptr(args->geo,
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100511 args->blkno, args->index));
Dave Chinner24df33b2013-04-12 07:30:21 +1000512
Dave Chinner01ba43b2013-10-29 22:11:52 +1100513 dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr);
Dave Chinnerbc851782014-06-06 15:20:54 +1000514 xfs_dir3_leaf_log_header(args, bp);
515 xfs_dir3_leaf_log_ents(args, bp, lfloglow, lfloghigh);
Dave Chinner41419562013-10-29 22:11:50 +1100516 xfs_dir3_leaf_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 return 0;
518}
519
520#ifdef DEBUG
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100521static void
522xfs_dir2_free_hdr_check(
Dave Chinner01ba43b2013-10-29 22:11:52 +1100523 struct xfs_inode *dp,
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100524 struct xfs_buf *bp,
525 xfs_dir2_db_t db)
526{
527 struct xfs_dir3_icfree_hdr hdr;
528
Dave Chinner01ba43b2013-10-29 22:11:52 +1100529 dp->d_ops->free_hdr_from_disk(&hdr, bp->b_addr);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100530
Dave Chinner8f661932014-06-06 15:15:59 +1000531 ASSERT((hdr.firstdb %
532 dp->d_ops->free_max_bests(dp->i_mount->m_dir_geo)) == 0);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100533 ASSERT(hdr.firstdb <= db);
534 ASSERT(db < hdr.firstdb + hdr.nvalid);
535}
536#else
Dave Chinner01ba43b2013-10-29 22:11:52 +1100537#define xfs_dir2_free_hdr_check(dp, bp, db)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538#endif /* DEBUG */
539
540/*
541 * Return the last hash value in the leaf.
542 * Stale entries are ok.
543 */
544xfs_dahash_t /* hash value */
Darrick J. Wong8e8877e2017-06-16 11:00:13 -0700545xfs_dir2_leaf_lasthash(
Dave Chinner41419562013-10-29 22:11:50 +1100546 struct xfs_inode *dp,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000547 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 int *count) /* count of entries in leaf */
549{
Dave Chinner24df33b2013-04-12 07:30:21 +1000550 struct xfs_dir2_leaf *leaf = bp->b_addr;
551 struct xfs_dir2_leaf_entry *ents;
552 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Dave Chinner01ba43b2013-10-29 22:11:52 +1100554 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000555
556 ASSERT(leafhdr.magic == XFS_DIR2_LEAFN_MAGIC ||
Darrick J. Wong8e8877e2017-06-16 11:00:13 -0700557 leafhdr.magic == XFS_DIR3_LEAFN_MAGIC ||
558 leafhdr.magic == XFS_DIR2_LEAF1_MAGIC ||
559 leafhdr.magic == XFS_DIR3_LEAF1_MAGIC);
Dave Chinner24df33b2013-04-12 07:30:21 +1000560
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 if (count)
Dave Chinner24df33b2013-04-12 07:30:21 +1000562 *count = leafhdr.count;
563 if (!leafhdr.count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 return 0;
Dave Chinner24df33b2013-04-12 07:30:21 +1000565
Dave Chinner41419562013-10-29 22:11:50 +1100566 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000567 return be32_to_cpu(ents[leafhdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568}
569
570/*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000571 * Look up a leaf entry for space to add a name in a node-format leaf block.
572 * The extrablk in state is a freespace block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000574STATIC int
575xfs_dir2_leafn_lookup_for_addname(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000576 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 xfs_da_args_t *args, /* operation arguments */
578 int *indexp, /* out: leaf entry index */
579 xfs_da_state_t *state) /* state to fill in */
580{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000581 struct xfs_buf *curbp = NULL; /* current data/free buffer */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000582 xfs_dir2_db_t curdb = -1; /* current data block number */
583 xfs_dir2_db_t curfdb = -1; /* current free block number */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 xfs_inode_t *dp; /* incore directory inode */
585 int error; /* error return value */
586 int fi; /* free entry index */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000587 xfs_dir2_free_t *free = NULL; /* free block structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 int index; /* leaf entry index */
589 xfs_dir2_leaf_t *leaf; /* leaf structure */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000590 int length; /* length of new data entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
592 xfs_mount_t *mp; /* filesystem mount point */
593 xfs_dir2_db_t newdb; /* new data block number */
594 xfs_dir2_db_t newfdb; /* new free block number */
595 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner24df33b2013-04-12 07:30:21 +1000596 struct xfs_dir2_leaf_entry *ents;
597 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
599 dp = args->dp;
600 tp = args->trans;
601 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000602 leaf = bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100603 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +1100604 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000605
Dave Chinner41419562013-10-29 22:11:50 +1100606 xfs_dir3_leaf_check(dp, bp);
Dave Chinner24df33b2013-04-12 07:30:21 +1000607 ASSERT(leafhdr.count > 0);
608
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 /*
610 * Look up the hash value in the leaf entries.
611 */
612 index = xfs_dir2_leaf_search_hash(args, bp);
613 /*
614 * Do we have a buffer coming in?
615 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000616 if (state->extravalid) {
617 /* If so, it's a free block buffer, get the block number. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 curbp = state->extrablk.bp;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000619 curfdb = state->extrablk.blkno;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000620 free = curbp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100621 ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC) ||
622 free->hdr.magic == cpu_to_be32(XFS_DIR3_FREE_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 }
Dave Chinner9d23fc82013-10-29 22:11:48 +1100624 length = dp->d_ops->data_entsize(args->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 /*
626 * Loop over leaf entries with the right hash value.
627 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000628 for (lep = &ents[index];
629 index < leafhdr.count && be32_to_cpu(lep->hashval) == args->hashval;
630 lep++, index++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 /*
632 * Skip stale leaf entries.
633 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100634 if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 continue;
636 /*
637 * Pull the data block number from the entry.
638 */
Dave Chinner30028032014-06-06 15:08:18 +1000639 newdb = xfs_dir2_dataptr_to_db(args->geo,
640 be32_to_cpu(lep->address));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 /*
642 * For addname, we're looking for a place to put the new entry.
643 * We want to use a data block with an entry of equal
644 * hash value to ours if there is one with room.
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000645 *
646 * If this block isn't the data block we already have
647 * in hand, take a look at it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000649 if (newdb != curdb) {
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100650 __be16 *bests;
651
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000652 curdb = newdb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000654 * Convert the data block to the free block
655 * holding its freespace information.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 */
Dave Chinner8f661932014-06-06 15:15:59 +1000657 newfdb = dp->d_ops->db_to_fdb(args->geo, newdb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000659 * If it's not the one we have in hand, read it in.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000661 if (newfdb != curfdb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000663 * If we had one before, drop it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 */
665 if (curbp)
Dave Chinner1d9025e2012-06-22 18:50:14 +1000666 xfs_trans_brelse(tp, curbp);
Dave Chinner20252072012-11-12 22:54:13 +1100667
668 error = xfs_dir2_free_read(tp, dp,
Dave Chinner2998ab1d2014-06-06 15:07:53 +1000669 xfs_dir2_db_to_da(args->geo,
670 newfdb),
Dave Chinner20252072012-11-12 22:54:13 +1100671 &curbp);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000672 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000674 free = curbp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100675
Dave Chinner01ba43b2013-10-29 22:11:52 +1100676 xfs_dir2_free_hdr_check(dp, curbp, curdb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 }
678 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000679 * Get the index for our entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 */
Dave Chinner8f661932014-06-06 15:15:59 +1000681 fi = dp->d_ops->db_to_fdindex(args->geo, curdb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000683 * If it has room, return it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 */
Dave Chinner24dd0f52013-10-30 13:48:41 -0500685 bests = dp->d_ops->free_bests_p(free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100686 if (unlikely(bests[fi] == cpu_to_be16(NULLDATAOFF))) {
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000687 XFS_ERROR_REPORT("xfs_dir2_leafn_lookup_int",
688 XFS_ERRLEVEL_LOW, mp);
689 if (curfdb != newfdb)
Dave Chinner1d9025e2012-06-22 18:50:14 +1000690 xfs_trans_brelse(tp, curbp);
Dave Chinner24513372014-06-25 14:58:08 +1000691 return -EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 }
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000693 curfdb = newfdb;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100694 if (be16_to_cpu(bests[fi]) >= length)
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000695 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 }
697 }
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000698 /* Didn't find any space */
699 fi = -1;
700out:
Barry Naujok6a178102008-05-21 16:42:05 +1000701 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000702 if (curbp) {
703 /* Giving back a free block. */
704 state->extravalid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 state->extrablk.bp = curbp;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000706 state->extrablk.index = fi;
707 state->extrablk.blkno = curfdb;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100708
709 /*
710 * Important: this magic number is not in the buffer - it's for
711 * buffer type information and therefore only the free/data type
712 * matters here, not whether CRCs are enabled or not.
713 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000714 state->extrablk.magic = XFS_DIR2_FREE_MAGIC;
715 } else {
716 state->extravalid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 }
718 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000719 * Return the index, that will be the insertion point.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 */
721 *indexp = index;
Dave Chinner24513372014-06-25 14:58:08 +1000722 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723}
724
725/*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000726 * Look up a leaf entry in a node-format leaf block.
727 * The extrablk in state a data block.
728 */
729STATIC int
730xfs_dir2_leafn_lookup_for_entry(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000731 struct xfs_buf *bp, /* leaf buffer */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000732 xfs_da_args_t *args, /* operation arguments */
733 int *indexp, /* out: leaf entry index */
734 xfs_da_state_t *state) /* state to fill in */
735{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000736 struct xfs_buf *curbp = NULL; /* current data/free buffer */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000737 xfs_dir2_db_t curdb = -1; /* current data block number */
738 xfs_dir2_data_entry_t *dep; /* data block entry */
739 xfs_inode_t *dp; /* incore directory inode */
740 int error; /* error return value */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000741 int index; /* leaf entry index */
742 xfs_dir2_leaf_t *leaf; /* leaf structure */
743 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
744 xfs_mount_t *mp; /* filesystem mount point */
745 xfs_dir2_db_t newdb; /* new data block number */
746 xfs_trans_t *tp; /* transaction pointer */
Barry Naujok5163f952008-05-21 16:41:01 +1000747 enum xfs_dacmp cmp; /* comparison result */
Dave Chinner24df33b2013-04-12 07:30:21 +1000748 struct xfs_dir2_leaf_entry *ents;
749 struct xfs_dir3_icleaf_hdr leafhdr;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000750
751 dp = args->dp;
752 tp = args->trans;
753 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000754 leaf = bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100755 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +1100756 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000757
Dave Chinner41419562013-10-29 22:11:50 +1100758 xfs_dir3_leaf_check(dp, bp);
Dave Chinner24df33b2013-04-12 07:30:21 +1000759 ASSERT(leafhdr.count > 0);
760
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000761 /*
762 * Look up the hash value in the leaf entries.
763 */
764 index = xfs_dir2_leaf_search_hash(args, bp);
765 /*
766 * Do we have a buffer coming in?
767 */
768 if (state->extravalid) {
769 curbp = state->extrablk.bp;
770 curdb = state->extrablk.blkno;
771 }
772 /*
773 * Loop over leaf entries with the right hash value.
774 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000775 for (lep = &ents[index];
776 index < leafhdr.count && be32_to_cpu(lep->hashval) == args->hashval;
777 lep++, index++) {
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000778 /*
779 * Skip stale leaf entries.
780 */
781 if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
782 continue;
783 /*
784 * Pull the data block number from the entry.
785 */
Dave Chinner30028032014-06-06 15:08:18 +1000786 newdb = xfs_dir2_dataptr_to_db(args->geo,
787 be32_to_cpu(lep->address));
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000788 /*
789 * Not adding a new entry, so we really want to find
790 * the name given to us.
791 *
792 * If it's a different data block, go get it.
793 */
794 if (newdb != curdb) {
795 /*
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000796 * If we had a block before that we aren't saving
797 * for a CI name, drop it
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000798 */
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000799 if (curbp && (args->cmpresult == XFS_CMP_DIFFERENT ||
800 curdb != state->extrablk.blkno))
Dave Chinner1d9025e2012-06-22 18:50:14 +1000801 xfs_trans_brelse(tp, curbp);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000802 /*
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000803 * If needing the block that is saved with a CI match,
804 * use it otherwise read in the new data block.
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000805 */
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000806 if (args->cmpresult != XFS_CMP_DIFFERENT &&
807 newdb == state->extrablk.blkno) {
808 ASSERT(state->extravalid);
809 curbp = state->extrablk.bp;
810 } else {
Dave Chinner33363fe2013-04-03 16:11:22 +1100811 error = xfs_dir3_data_read(tp, dp,
Dave Chinner2998ab1d2014-06-06 15:07:53 +1000812 xfs_dir2_db_to_da(args->geo,
813 newdb),
Dave Chinnere4813572012-11-12 22:54:14 +1100814 -1, &curbp);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000815 if (error)
816 return error;
817 }
Dave Chinner33363fe2013-04-03 16:11:22 +1100818 xfs_dir3_data_check(dp, curbp);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000819 curdb = newdb;
820 }
821 /*
822 * Point to the data entry.
823 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000824 dep = (xfs_dir2_data_entry_t *)((char *)curbp->b_addr +
Dave Chinner30028032014-06-06 15:08:18 +1000825 xfs_dir2_dataptr_to_off(args->geo,
826 be32_to_cpu(lep->address)));
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000827 /*
Barry Naujok5163f952008-05-21 16:41:01 +1000828 * Compare the entry and if it's an exact match, return
829 * EEXIST immediately. If it's the first case-insensitive
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000830 * match, store the block & inode number and continue looking.
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000831 */
Barry Naujok5163f952008-05-21 16:41:01 +1000832 cmp = mp->m_dirnameops->compname(args, dep->name, dep->namelen);
833 if (cmp != XFS_CMP_DIFFERENT && cmp != args->cmpresult) {
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000834 /* If there is a CI match block, drop it */
835 if (args->cmpresult != XFS_CMP_DIFFERENT &&
836 curdb != state->extrablk.blkno)
Dave Chinner1d9025e2012-06-22 18:50:14 +1000837 xfs_trans_brelse(tp, state->extrablk.bp);
Barry Naujok5163f952008-05-21 16:41:01 +1000838 args->cmpresult = cmp;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000839 args->inumber = be64_to_cpu(dep->inumber);
Dave Chinner9d23fc82013-10-29 22:11:48 +1100840 args->filetype = dp->d_ops->data_get_ftype(dep);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000841 *indexp = index;
842 state->extravalid = 1;
843 state->extrablk.bp = curbp;
844 state->extrablk.blkno = curdb;
845 state->extrablk.index = (int)((char *)dep -
Dave Chinner1d9025e2012-06-22 18:50:14 +1000846 (char *)curbp->b_addr);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000847 state->extrablk.magic = XFS_DIR2_DATA_MAGIC;
Dave Chinner33363fe2013-04-03 16:11:22 +1100848 curbp->b_ops = &xfs_dir3_data_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100849 xfs_trans_buf_set_type(tp, curbp, XFS_BLFT_DIR_DATA_BUF);
Barry Naujok5163f952008-05-21 16:41:01 +1000850 if (cmp == XFS_CMP_EXACT)
Dave Chinner24513372014-06-25 14:58:08 +1000851 return -EEXIST;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000852 }
853 }
Dave Chinner24df33b2013-04-12 07:30:21 +1000854 ASSERT(index == leafhdr.count || (args->op_flags & XFS_DA_OP_OKNOENT));
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000855 if (curbp) {
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000856 if (args->cmpresult == XFS_CMP_DIFFERENT) {
857 /* Giving back last used data block. */
858 state->extravalid = 1;
859 state->extrablk.bp = curbp;
860 state->extrablk.index = -1;
861 state->extrablk.blkno = curdb;
862 state->extrablk.magic = XFS_DIR2_DATA_MAGIC;
Dave Chinner33363fe2013-04-03 16:11:22 +1100863 curbp->b_ops = &xfs_dir3_data_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100864 xfs_trans_buf_set_type(tp, curbp, XFS_BLFT_DIR_DATA_BUF);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000865 } else {
866 /* If the curbp is not the CI match block, drop it */
867 if (state->extrablk.bp != curbp)
Dave Chinner1d9025e2012-06-22 18:50:14 +1000868 xfs_trans_brelse(tp, curbp);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000869 }
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000870 } else {
871 state->extravalid = 0;
872 }
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000873 *indexp = index;
Dave Chinner24513372014-06-25 14:58:08 +1000874 return -ENOENT;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000875}
876
877/*
878 * Look up a leaf entry in a node-format leaf block.
879 * If this is an addname then the extrablk in state is a freespace block,
880 * otherwise it's a data block.
881 */
882int
883xfs_dir2_leafn_lookup_int(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000884 struct xfs_buf *bp, /* leaf buffer */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000885 xfs_da_args_t *args, /* operation arguments */
886 int *indexp, /* out: leaf entry index */
887 xfs_da_state_t *state) /* state to fill in */
888{
Barry Naujok6a178102008-05-21 16:42:05 +1000889 if (args->op_flags & XFS_DA_OP_ADDNAME)
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000890 return xfs_dir2_leafn_lookup_for_addname(bp, args, indexp,
891 state);
892 return xfs_dir2_leafn_lookup_for_entry(bp, args, indexp, state);
893}
894
895/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 * Move count leaf entries from source to destination leaf.
897 * Log entries and headers. Stale entries are preserved.
898 */
899static void
Dave Chinner24df33b2013-04-12 07:30:21 +1000900xfs_dir3_leafn_moveents(
901 xfs_da_args_t *args, /* operation arguments */
902 struct xfs_buf *bp_s, /* source */
903 struct xfs_dir3_icleaf_hdr *shdr,
904 struct xfs_dir2_leaf_entry *sents,
905 int start_s,/* source leaf index */
906 struct xfs_buf *bp_d, /* destination */
907 struct xfs_dir3_icleaf_hdr *dhdr,
908 struct xfs_dir2_leaf_entry *dents,
909 int start_d,/* destination leaf index */
910 int count) /* count of leaves to copy */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911{
Dave Chinner24df33b2013-04-12 07:30:21 +1000912 int stale; /* count stale leaves copied */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000914 trace_xfs_dir2_leafn_moveents(args, start_s, start_d, count);
915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 /*
917 * Silently return if nothing to do.
918 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000919 if (count == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 return;
Dave Chinner24df33b2013-04-12 07:30:21 +1000921
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 /*
923 * If the destination index is not the end of the current
924 * destination leaf entries, open up a hole in the destination
925 * to hold the new entries.
926 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000927 if (start_d < dhdr->count) {
928 memmove(&dents[start_d + count], &dents[start_d],
929 (dhdr->count - start_d) * sizeof(xfs_dir2_leaf_entry_t));
Dave Chinnerbc851782014-06-06 15:20:54 +1000930 xfs_dir3_leaf_log_ents(args, bp_d, start_d + count,
Dave Chinner24df33b2013-04-12 07:30:21 +1000931 count + dhdr->count - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 }
933 /*
934 * If the source has stale leaves, count the ones in the copy range
935 * so we can update the header correctly.
936 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000937 if (shdr->stale) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 int i; /* temp leaf index */
939
940 for (i = start_s, stale = 0; i < start_s + count; i++) {
Dave Chinner24df33b2013-04-12 07:30:21 +1000941 if (sents[i].address ==
942 cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 stale++;
944 }
945 } else
946 stale = 0;
947 /*
948 * Copy the leaf entries from source to destination.
949 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000950 memcpy(&dents[start_d], &sents[start_s],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 count * sizeof(xfs_dir2_leaf_entry_t));
Dave Chinnerbc851782014-06-06 15:20:54 +1000952 xfs_dir3_leaf_log_ents(args, bp_d, start_d, start_d + count - 1);
Dave Chinner24df33b2013-04-12 07:30:21 +1000953
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 /*
955 * If there are source entries after the ones we copied,
956 * delete the ones we copied by sliding the next ones down.
957 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000958 if (start_s + count < shdr->count) {
959 memmove(&sents[start_s], &sents[start_s + count],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 count * sizeof(xfs_dir2_leaf_entry_t));
Dave Chinnerbc851782014-06-06 15:20:54 +1000961 xfs_dir3_leaf_log_ents(args, bp_s, start_s, start_s + count - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 }
Dave Chinner24df33b2013-04-12 07:30:21 +1000963
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 /*
965 * Update the headers and log them.
966 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000967 shdr->count -= count;
968 shdr->stale -= stale;
969 dhdr->count += count;
970 dhdr->stale += stale;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971}
972
973/*
974 * Determine the sort order of two leaf blocks.
975 * Returns 1 if both are valid and leaf2 should be before leaf1, else 0.
976 */
977int /* sort order */
978xfs_dir2_leafn_order(
Dave Chinner41419562013-10-29 22:11:50 +1100979 struct xfs_inode *dp,
Dave Chinner24df33b2013-04-12 07:30:21 +1000980 struct xfs_buf *leaf1_bp, /* leaf1 buffer */
981 struct xfs_buf *leaf2_bp) /* leaf2 buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982{
Dave Chinner24df33b2013-04-12 07:30:21 +1000983 struct xfs_dir2_leaf *leaf1 = leaf1_bp->b_addr;
984 struct xfs_dir2_leaf *leaf2 = leaf2_bp->b_addr;
985 struct xfs_dir2_leaf_entry *ents1;
986 struct xfs_dir2_leaf_entry *ents2;
987 struct xfs_dir3_icleaf_hdr hdr1;
988 struct xfs_dir3_icleaf_hdr hdr2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
Dave Chinner01ba43b2013-10-29 22:11:52 +1100990 dp->d_ops->leaf_hdr_from_disk(&hdr1, leaf1);
991 dp->d_ops->leaf_hdr_from_disk(&hdr2, leaf2);
Dave Chinner41419562013-10-29 22:11:50 +1100992 ents1 = dp->d_ops->leaf_ents_p(leaf1);
993 ents2 = dp->d_ops->leaf_ents_p(leaf2);
Dave Chinner24df33b2013-04-12 07:30:21 +1000994
995 if (hdr1.count > 0 && hdr2.count > 0 &&
996 (be32_to_cpu(ents2[0].hashval) < be32_to_cpu(ents1[0].hashval) ||
997 be32_to_cpu(ents2[hdr2.count - 1].hashval) <
998 be32_to_cpu(ents1[hdr1.count - 1].hashval)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 return 1;
1000 return 0;
1001}
1002
1003/*
1004 * Rebalance leaf entries between two leaf blocks.
1005 * This is actually only called when the second block is new,
1006 * though the code deals with the general case.
1007 * A new entry will be inserted in one of the blocks, and that
1008 * entry is taken into account when balancing.
1009 */
1010static void
1011xfs_dir2_leafn_rebalance(
1012 xfs_da_state_t *state, /* btree cursor */
1013 xfs_da_state_blk_t *blk1, /* first btree block */
1014 xfs_da_state_blk_t *blk2) /* second btree block */
1015{
1016 xfs_da_args_t *args; /* operation arguments */
1017 int count; /* count (& direction) leaves */
1018 int isleft; /* new goes in left leaf */
1019 xfs_dir2_leaf_t *leaf1; /* first leaf structure */
1020 xfs_dir2_leaf_t *leaf2; /* second leaf structure */
1021 int mid; /* midpoint leaf index */
Dave Chinner742ae1e2013-04-30 21:39:34 +10001022#if defined(DEBUG) || defined(XFS_WARN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 int oldstale; /* old count of stale leaves */
1024#endif
1025 int oldsum; /* old total leaf count */
1026 int swap; /* swapped leaf blocks */
Dave Chinner24df33b2013-04-12 07:30:21 +10001027 struct xfs_dir2_leaf_entry *ents1;
1028 struct xfs_dir2_leaf_entry *ents2;
1029 struct xfs_dir3_icleaf_hdr hdr1;
1030 struct xfs_dir3_icleaf_hdr hdr2;
Dave Chinner41419562013-10-29 22:11:50 +11001031 struct xfs_inode *dp = state->args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
1033 args = state->args;
1034 /*
1035 * If the block order is wrong, swap the arguments.
1036 */
Dave Chinner41419562013-10-29 22:11:50 +11001037 if ((swap = xfs_dir2_leafn_order(dp, blk1->bp, blk2->bp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 xfs_da_state_blk_t *tmp; /* temp for block swap */
1039
1040 tmp = blk1;
1041 blk1 = blk2;
1042 blk2 = tmp;
1043 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10001044 leaf1 = blk1->bp->b_addr;
1045 leaf2 = blk2->bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001046 dp->d_ops->leaf_hdr_from_disk(&hdr1, leaf1);
1047 dp->d_ops->leaf_hdr_from_disk(&hdr2, leaf2);
Dave Chinner41419562013-10-29 22:11:50 +11001048 ents1 = dp->d_ops->leaf_ents_p(leaf1);
1049 ents2 = dp->d_ops->leaf_ents_p(leaf2);
Dave Chinner24df33b2013-04-12 07:30:21 +10001050
1051 oldsum = hdr1.count + hdr2.count;
Dave Chinner742ae1e2013-04-30 21:39:34 +10001052#if defined(DEBUG) || defined(XFS_WARN)
Dave Chinner24df33b2013-04-12 07:30:21 +10001053 oldstale = hdr1.stale + hdr2.stale;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054#endif
1055 mid = oldsum >> 1;
Dave Chinner24df33b2013-04-12 07:30:21 +10001056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 /*
1058 * If the old leaf count was odd then the new one will be even,
1059 * so we need to divide the new count evenly.
1060 */
1061 if (oldsum & 1) {
1062 xfs_dahash_t midhash; /* middle entry hash value */
1063
Dave Chinner24df33b2013-04-12 07:30:21 +10001064 if (mid >= hdr1.count)
1065 midhash = be32_to_cpu(ents2[mid - hdr1.count].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 else
Dave Chinner24df33b2013-04-12 07:30:21 +10001067 midhash = be32_to_cpu(ents1[mid].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 isleft = args->hashval <= midhash;
1069 }
1070 /*
1071 * If the old count is even then the new count is odd, so there's
1072 * no preferred side for the new entry.
1073 * Pick the left one.
1074 */
1075 else
1076 isleft = 1;
1077 /*
1078 * Calculate moved entry count. Positive means left-to-right,
1079 * negative means right-to-left. Then move the entries.
1080 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001081 count = hdr1.count - mid + (isleft == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 if (count > 0)
Dave Chinner24df33b2013-04-12 07:30:21 +10001083 xfs_dir3_leafn_moveents(args, blk1->bp, &hdr1, ents1,
1084 hdr1.count - count, blk2->bp,
1085 &hdr2, ents2, 0, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 else if (count < 0)
Dave Chinner24df33b2013-04-12 07:30:21 +10001087 xfs_dir3_leafn_moveents(args, blk2->bp, &hdr2, ents2, 0,
1088 blk1->bp, &hdr1, ents1,
1089 hdr1.count, count);
1090
1091 ASSERT(hdr1.count + hdr2.count == oldsum);
1092 ASSERT(hdr1.stale + hdr2.stale == oldstale);
1093
1094 /* log the changes made when moving the entries */
Dave Chinner01ba43b2013-10-29 22:11:52 +11001095 dp->d_ops->leaf_hdr_to_disk(leaf1, &hdr1);
1096 dp->d_ops->leaf_hdr_to_disk(leaf2, &hdr2);
Dave Chinnerbc851782014-06-06 15:20:54 +10001097 xfs_dir3_leaf_log_header(args, blk1->bp);
1098 xfs_dir3_leaf_log_header(args, blk2->bp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001099
Dave Chinner41419562013-10-29 22:11:50 +11001100 xfs_dir3_leaf_check(dp, blk1->bp);
1101 xfs_dir3_leaf_check(dp, blk2->bp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001102
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 /*
1104 * Mark whether we're inserting into the old or new leaf.
1105 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001106 if (hdr1.count < hdr2.count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 state->inleaf = swap;
Dave Chinner24df33b2013-04-12 07:30:21 +10001108 else if (hdr1.count > hdr2.count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 state->inleaf = !swap;
1110 else
Dave Chinner24df33b2013-04-12 07:30:21 +10001111 state->inleaf = swap ^ (blk1->index <= hdr1.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 /*
1113 * Adjust the expected index for insertion.
1114 */
1115 if (!state->inleaf)
Dave Chinner24df33b2013-04-12 07:30:21 +10001116 blk2->index = blk1->index - hdr1.count;
Barry Naujokf9f6dce2008-04-17 16:49:43 +10001117
1118 /*
1119 * Finally sanity check just to make sure we are not returning a
1120 * negative index
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 */
Dave Chinner41419562013-10-29 22:11:50 +11001122 if (blk2->index < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 state->inleaf = 1;
1124 blk2->index = 0;
Dave Chinner41419562013-10-29 22:11:50 +11001125 xfs_alert(dp->i_mount,
Eric Sandeen08e96e12013-10-11 20:59:05 -05001126 "%s: picked the wrong leaf? reverting original leaf: blk1->index %d",
Dave Chinner0b932cc2011-03-07 10:08:35 +11001127 __func__, blk1->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 }
1129}
1130
Dave Chinner20252072012-11-12 22:54:13 +11001131static int
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001132xfs_dir3_data_block_free(
Dave Chinner20252072012-11-12 22:54:13 +11001133 xfs_da_args_t *args,
1134 struct xfs_dir2_data_hdr *hdr,
1135 struct xfs_dir2_free *free,
1136 xfs_dir2_db_t fdb,
1137 int findex,
1138 struct xfs_buf *fbp,
1139 int longest)
1140{
Dave Chinner20252072012-11-12 22:54:13 +11001141 int logfree = 0;
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001142 __be16 *bests;
1143 struct xfs_dir3_icfree_hdr freehdr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001144 struct xfs_inode *dp = args->dp;
Dave Chinner20252072012-11-12 22:54:13 +11001145
Dave Chinner01ba43b2013-10-29 22:11:52 +11001146 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Dave Chinner24dd0f52013-10-30 13:48:41 -05001147 bests = dp->d_ops->free_bests_p(free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001148 if (hdr) {
Dave Chinner20252072012-11-12 22:54:13 +11001149 /*
1150 * Data block is not empty, just set the free entry to the new
1151 * value.
1152 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001153 bests[findex] = cpu_to_be16(longest);
Dave Chinnerbc851782014-06-06 15:20:54 +10001154 xfs_dir2_free_log_bests(args, fbp, findex, findex);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001155 return 0;
1156 }
1157
1158 /* One less used entry in the free table. */
1159 freehdr.nused--;
1160
1161 /*
1162 * If this was the last entry in the table, we can trim the table size
1163 * back. There might be other entries at the end referring to
1164 * non-existent data blocks, get those too.
1165 */
1166 if (findex == freehdr.nvalid - 1) {
1167 int i; /* free entry index */
1168
1169 for (i = findex - 1; i >= 0; i--) {
1170 if (bests[i] != cpu_to_be16(NULLDATAOFF))
1171 break;
1172 }
1173 freehdr.nvalid = i + 1;
1174 logfree = 0;
1175 } else {
1176 /* Not the last entry, just punch it out. */
1177 bests[findex] = cpu_to_be16(NULLDATAOFF);
Dave Chinner20252072012-11-12 22:54:13 +11001178 logfree = 1;
1179 }
1180
Dave Chinner01ba43b2013-10-29 22:11:52 +11001181 dp->d_ops->free_hdr_to_disk(free, &freehdr);
Dave Chinnerbc851782014-06-06 15:20:54 +10001182 xfs_dir2_free_log_header(args, fbp);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001183
1184 /*
1185 * If there are no useful entries left in the block, get rid of the
1186 * block if we can.
1187 */
1188 if (!freehdr.nused) {
1189 int error;
1190
1191 error = xfs_dir2_shrink_inode(args, fdb, fbp);
1192 if (error == 0) {
1193 fbp = NULL;
1194 logfree = 0;
Dave Chinner24513372014-06-25 14:58:08 +10001195 } else if (error != -ENOSPC || args->total != 0)
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001196 return error;
1197 /*
1198 * It's possible to get ENOSPC if there is no
1199 * space reservation. In this case some one
1200 * else will eventually get rid of this block.
1201 */
1202 }
1203
Dave Chinner20252072012-11-12 22:54:13 +11001204 /* Log the free entry that changed, unless we got rid of it. */
1205 if (logfree)
Dave Chinnerbc851782014-06-06 15:20:54 +10001206 xfs_dir2_free_log_bests(args, fbp, findex, findex);
Dave Chinner20252072012-11-12 22:54:13 +11001207 return 0;
1208}
1209
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210/*
1211 * Remove an entry from a node directory.
1212 * This removes the leaf entry and the data entry,
1213 * and updates the free block if necessary.
1214 */
1215static int /* error */
1216xfs_dir2_leafn_remove(
1217 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001218 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 int index, /* leaf entry index */
1220 xfs_da_state_blk_t *dblk, /* data block */
1221 int *rval) /* resulting block needs join */
1222{
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001223 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 xfs_dir2_db_t db; /* data block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001225 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 xfs_dir2_data_entry_t *dep; /* data block entry */
1227 xfs_inode_t *dp; /* incore directory inode */
1228 xfs_dir2_leaf_t *leaf; /* leaf structure */
1229 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1230 int longest; /* longest data free entry */
1231 int off; /* data block entry offset */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 int needlog; /* need to log data header */
1233 int needscan; /* need to rescan data frees */
1234 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner33363fe2013-04-03 16:11:22 +11001235 struct xfs_dir2_data_free *bf; /* bestfree table */
Dave Chinner24df33b2013-04-12 07:30:21 +10001236 struct xfs_dir3_icleaf_hdr leafhdr;
1237 struct xfs_dir2_leaf_entry *ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001239 trace_xfs_dir2_leafn_remove(args, index);
1240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 dp = args->dp;
1242 tp = args->trans;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001243 leaf = bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001244 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +11001245 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 /*
1248 * Point to the entry we're removing.
1249 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001250 lep = &ents[index];
1251
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 /*
1253 * Extract the data block and offset from the entry.
1254 */
Dave Chinner30028032014-06-06 15:08:18 +10001255 db = xfs_dir2_dataptr_to_db(args->geo, be32_to_cpu(lep->address));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 ASSERT(dblk->blkno == db);
Dave Chinner30028032014-06-06 15:08:18 +10001257 off = xfs_dir2_dataptr_to_off(args->geo, be32_to_cpu(lep->address));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 ASSERT(dblk->index == off);
Dave Chinner24df33b2013-04-12 07:30:21 +10001259
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 /*
1261 * Kill the leaf entry by marking it stale.
1262 * Log the leaf block changes.
1263 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001264 leafhdr.stale++;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001265 dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr);
Dave Chinnerbc851782014-06-06 15:20:54 +10001266 xfs_dir3_leaf_log_header(args, bp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001267
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001268 lep->address = cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
Dave Chinnerbc851782014-06-06 15:20:54 +10001269 xfs_dir3_leaf_log_ents(args, bp, index, index);
Dave Chinner24df33b2013-04-12 07:30:21 +10001270
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 /*
1272 * Make the data entry free. Keep track of the longest freespace
1273 * in the data block in case it changes.
1274 */
1275 dbp = dblk->bp;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001276 hdr = dbp->b_addr;
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001277 dep = (xfs_dir2_data_entry_t *)((char *)hdr + off);
Dave Chinner2ca98772013-10-29 22:11:49 +11001278 bf = dp->d_ops->data_bestfree_p(hdr);
Dave Chinner33363fe2013-04-03 16:11:22 +11001279 longest = be16_to_cpu(bf[0].length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 needlog = needscan = 0;
Dave Chinnerbc851782014-06-06 15:20:54 +10001281 xfs_dir2_data_make_free(args, dbp, off,
Dave Chinner9d23fc82013-10-29 22:11:48 +11001282 dp->d_ops->data_entsize(dep->namelen), &needlog, &needscan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 /*
1284 * Rescan the data block freespaces for bestfree.
1285 * Log the data block header if needed.
1286 */
1287 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +11001288 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 if (needlog)
Dave Chinnerbc851782014-06-06 15:20:54 +10001290 xfs_dir2_data_log_header(args, dbp);
Dave Chinner33363fe2013-04-03 16:11:22 +11001291 xfs_dir3_data_check(dp, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 /*
1293 * If the longest data block freespace changes, need to update
1294 * the corresponding freeblock entry.
1295 */
Dave Chinner33363fe2013-04-03 16:11:22 +11001296 if (longest < be16_to_cpu(bf[0].length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 int error; /* error return value */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001298 struct xfs_buf *fbp; /* freeblock buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 xfs_dir2_db_t fdb; /* freeblock block number */
1300 int findex; /* index in freeblock entries */
1301 xfs_dir2_free_t *free; /* freeblock structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
1303 /*
1304 * Convert the data block number to a free block,
1305 * read in the free block.
1306 */
Dave Chinner8f661932014-06-06 15:15:59 +10001307 fdb = dp->d_ops->db_to_fdb(args->geo, db);
Dave Chinner2998ab1d2014-06-06 15:07:53 +10001308 error = xfs_dir2_free_read(tp, dp,
1309 xfs_dir2_db_to_da(args->geo, fdb),
Dave Chinner20252072012-11-12 22:54:13 +11001310 &fbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001311 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001313 free = fbp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001314#ifdef DEBUG
1315 {
1316 struct xfs_dir3_icfree_hdr freehdr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001317 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Dave Chinner8f661932014-06-06 15:15:59 +10001318 ASSERT(freehdr.firstdb == dp->d_ops->free_max_bests(args->geo) *
Dave Chinner30028032014-06-06 15:08:18 +10001319 (fdb - xfs_dir2_byte_to_db(args->geo,
1320 XFS_DIR2_FREE_OFFSET)));
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001321 }
1322#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 /*
1324 * Calculate which entry we need to fix.
1325 */
Dave Chinner8f661932014-06-06 15:15:59 +10001326 findex = dp->d_ops->db_to_fdindex(args->geo, db);
Dave Chinner33363fe2013-04-03 16:11:22 +11001327 longest = be16_to_cpu(bf[0].length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 /*
1329 * If the data block is now empty we can get rid of it
1330 * (usually).
1331 */
Dave Chinner8f661932014-06-06 15:15:59 +10001332 if (longest == args->geo->blksize -
Dave Chinner1c9a5b22013-10-30 09:15:02 +11001333 dp->d_ops->data_entry_offset) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 /*
1335 * Try to punch out the data block.
1336 */
1337 error = xfs_dir2_shrink_inode(args, db, dbp);
1338 if (error == 0) {
1339 dblk->bp = NULL;
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001340 hdr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 }
1342 /*
1343 * We can get ENOSPC if there's no space reservation.
1344 * In this case just drop the buffer and some one else
1345 * will eventually get rid of the empty block.
1346 */
Dave Chinner24513372014-06-25 14:58:08 +10001347 else if (!(error == -ENOSPC && args->total == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 return error;
1349 }
1350 /*
1351 * If we got rid of the data block, we can eliminate that entry
1352 * in the free block.
1353 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001354 error = xfs_dir3_data_block_free(args, hdr, free,
Dave Chinner20252072012-11-12 22:54:13 +11001355 fdb, findex, fbp, longest);
1356 if (error)
1357 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 }
Dave Chinner20252072012-11-12 22:54:13 +11001359
Dave Chinner41419562013-10-29 22:11:50 +11001360 xfs_dir3_leaf_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 /*
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001362 * Return indication of whether this leaf block is empty enough
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 * to justify trying to join it with a neighbor.
1364 */
Dave Chinner1c9a5b22013-10-30 09:15:02 +11001365 *rval = (dp->d_ops->leaf_hdr_size +
Dave Chinner24df33b2013-04-12 07:30:21 +10001366 (uint)sizeof(ents[0]) * (leafhdr.count - leafhdr.stale)) <
Dave Chinnered358c02014-06-06 15:18:10 +10001367 args->geo->magicpct;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 return 0;
1369}
1370
1371/*
1372 * Split the leaf entries in the old block into old and new blocks.
1373 */
1374int /* error */
1375xfs_dir2_leafn_split(
1376 xfs_da_state_t *state, /* btree cursor */
1377 xfs_da_state_blk_t *oldblk, /* original block */
1378 xfs_da_state_blk_t *newblk) /* newly created block */
1379{
1380 xfs_da_args_t *args; /* operation arguments */
1381 xfs_dablk_t blkno; /* new leaf block number */
1382 int error; /* error return value */
Dave Chinner41419562013-10-29 22:11:50 +11001383 struct xfs_inode *dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
1385 /*
1386 * Allocate space for a new leaf node.
1387 */
1388 args = state->args;
Dave Chinner41419562013-10-29 22:11:50 +11001389 dp = args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 ASSERT(oldblk->magic == XFS_DIR2_LEAFN_MAGIC);
1391 error = xfs_da_grow_inode(args, &blkno);
1392 if (error) {
1393 return error;
1394 }
1395 /*
1396 * Initialize the new leaf block.
1397 */
Dave Chinner2998ab1d2014-06-06 15:07:53 +10001398 error = xfs_dir3_leaf_get_buf(args, xfs_dir2_da_to_db(args->geo, blkno),
Dave Chinner24df33b2013-04-12 07:30:21 +10001399 &newblk->bp, XFS_DIR2_LEAFN_MAGIC);
1400 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 return error;
Dave Chinner24df33b2013-04-12 07:30:21 +10001402
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 newblk->blkno = blkno;
1404 newblk->magic = XFS_DIR2_LEAFN_MAGIC;
1405 /*
1406 * Rebalance the entries across the two leaves, link the new
1407 * block into the leaves.
1408 */
1409 xfs_dir2_leafn_rebalance(state, oldblk, newblk);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001410 error = xfs_da3_blk_link(state, oldblk, newblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 if (error) {
1412 return error;
1413 }
1414 /*
1415 * Insert the new entry in the correct block.
1416 */
1417 if (state->inleaf)
1418 error = xfs_dir2_leafn_add(oldblk->bp, args, oldblk->index);
1419 else
1420 error = xfs_dir2_leafn_add(newblk->bp, args, newblk->index);
1421 /*
1422 * Update last hashval in each block since we added the name.
1423 */
Darrick J. Wong8e8877e2017-06-16 11:00:13 -07001424 oldblk->hashval = xfs_dir2_leaf_lasthash(dp, oldblk->bp, NULL);
1425 newblk->hashval = xfs_dir2_leaf_lasthash(dp, newblk->bp, NULL);
Dave Chinner41419562013-10-29 22:11:50 +11001426 xfs_dir3_leaf_check(dp, oldblk->bp);
1427 xfs_dir3_leaf_check(dp, newblk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 return error;
1429}
1430
1431/*
1432 * Check a leaf block and its neighbors to see if the block should be
1433 * collapsed into one or the other neighbor. Always keep the block
1434 * with the smaller block number.
1435 * If the current block is over 50% full, don't try to join it, return 0.
1436 * If the block is empty, fill in the state structure and return 2.
1437 * If it can be collapsed, fill in the state structure and return 1.
1438 * If nothing can be done, return 0.
1439 */
1440int /* error */
1441xfs_dir2_leafn_toosmall(
1442 xfs_da_state_t *state, /* btree cursor */
1443 int *action) /* resulting action to take */
1444{
1445 xfs_da_state_blk_t *blk; /* leaf block */
1446 xfs_dablk_t blkno; /* leaf block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001447 struct xfs_buf *bp; /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 int bytes; /* bytes in use */
1449 int count; /* leaf live entry count */
1450 int error; /* error return value */
1451 int forward; /* sibling block direction */
1452 int i; /* sibling counter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 xfs_dir2_leaf_t *leaf; /* leaf structure */
1454 int rval; /* result from path_shift */
Dave Chinner24df33b2013-04-12 07:30:21 +10001455 struct xfs_dir3_icleaf_hdr leafhdr;
1456 struct xfs_dir2_leaf_entry *ents;
Dave Chinner41419562013-10-29 22:11:50 +11001457 struct xfs_inode *dp = state->args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
1459 /*
1460 * Check for the degenerate case of the block being over 50% full.
1461 * If so, it's not worth even looking to see if we might be able
1462 * to coalesce with a sibling.
1463 */
1464 blk = &state->path.blk[state->path.active - 1];
Dave Chinner24df33b2013-04-12 07:30:21 +10001465 leaf = blk->bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001466 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +11001467 ents = dp->d_ops->leaf_ents_p(leaf);
1468 xfs_dir3_leaf_check(dp, blk->bp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001469
1470 count = leafhdr.count - leafhdr.stale;
Dave Chinner1c9a5b22013-10-30 09:15:02 +11001471 bytes = dp->d_ops->leaf_hdr_size + count * sizeof(ents[0]);
Dave Chinnerb2a21e72014-06-06 15:22:04 +10001472 if (bytes > (state->args->geo->blksize >> 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 /*
1474 * Blk over 50%, don't try to join.
1475 */
1476 *action = 0;
1477 return 0;
1478 }
1479 /*
1480 * Check for the degenerate case of the block being empty.
1481 * If the block is empty, we'll simply delete it, no need to
1482 * coalesce it with a sibling block. We choose (arbitrarily)
1483 * to merge with the forward block unless it is NULL.
1484 */
1485 if (count == 0) {
1486 /*
1487 * Make altpath point to the block we want to keep and
1488 * path point to the block we want to drop (this one).
1489 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001490 forward = (leafhdr.forw != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 memcpy(&state->altpath, &state->path, sizeof(state->path));
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001492 error = xfs_da3_path_shift(state, &state->altpath, forward, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 &rval);
1494 if (error)
1495 return error;
1496 *action = rval ? 2 : 0;
1497 return 0;
1498 }
1499 /*
1500 * Examine each sibling block to see if we can coalesce with
1501 * at least 25% free space to spare. We need to figure out
1502 * whether to merge with the forward or the backward block.
1503 * We prefer coalescing with the lower numbered sibling so as
1504 * to shrink a directory over time.
1505 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001506 forward = leafhdr.forw < leafhdr.back;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 for (i = 0, bp = NULL; i < 2; forward = !forward, i++) {
Dave Chinner24df33b2013-04-12 07:30:21 +10001508 struct xfs_dir3_icleaf_hdr hdr2;
1509
1510 blkno = forward ? leafhdr.forw : leafhdr.back;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 if (blkno == 0)
1512 continue;
1513 /*
1514 * Read the sibling leaf block.
1515 */
Dave Chinner41419562013-10-29 22:11:50 +11001516 error = xfs_dir3_leafn_read(state->args->trans, dp,
Dave Chinnere6f76672012-11-12 22:54:15 +11001517 blkno, -1, &bp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001518 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 return error;
Dave Chinnere6f76672012-11-12 22:54:15 +11001520
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 /*
1522 * Count bytes in the two blocks combined.
1523 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001524 count = leafhdr.count - leafhdr.stale;
Dave Chinnerb2a21e72014-06-06 15:22:04 +10001525 bytes = state->args->geo->blksize -
1526 (state->args->geo->blksize >> 2);
Dave Chinner24df33b2013-04-12 07:30:21 +10001527
Dave Chinner1d9025e2012-06-22 18:50:14 +10001528 leaf = bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001529 dp->d_ops->leaf_hdr_from_disk(&hdr2, leaf);
Dave Chinner41419562013-10-29 22:11:50 +11001530 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001531 count += hdr2.count - hdr2.stale;
1532 bytes -= count * sizeof(ents[0]);
1533
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 /*
1535 * Fits with at least 25% to spare.
1536 */
1537 if (bytes >= 0)
1538 break;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001539 xfs_trans_brelse(state->args->trans, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 }
1541 /*
1542 * Didn't like either block, give up.
1543 */
1544 if (i >= 2) {
1545 *action = 0;
1546 return 0;
1547 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10001548
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 /*
1550 * Make altpath point to the block we want to keep (the lower
1551 * numbered block) and path point to the block we want to drop.
1552 */
1553 memcpy(&state->altpath, &state->path, sizeof(state->path));
1554 if (blkno < blk->blkno)
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001555 error = xfs_da3_path_shift(state, &state->altpath, forward, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 &rval);
1557 else
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001558 error = xfs_da3_path_shift(state, &state->path, forward, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 &rval);
1560 if (error) {
1561 return error;
1562 }
1563 *action = rval ? 0 : 1;
1564 return 0;
1565}
1566
1567/*
1568 * Move all the leaf entries from drop_blk to save_blk.
1569 * This is done as part of a join operation.
1570 */
1571void
1572xfs_dir2_leafn_unbalance(
1573 xfs_da_state_t *state, /* cursor */
1574 xfs_da_state_blk_t *drop_blk, /* dead block */
1575 xfs_da_state_blk_t *save_blk) /* surviving block */
1576{
1577 xfs_da_args_t *args; /* operation arguments */
1578 xfs_dir2_leaf_t *drop_leaf; /* dead leaf structure */
1579 xfs_dir2_leaf_t *save_leaf; /* surviving leaf structure */
Dave Chinner24df33b2013-04-12 07:30:21 +10001580 struct xfs_dir3_icleaf_hdr savehdr;
1581 struct xfs_dir3_icleaf_hdr drophdr;
1582 struct xfs_dir2_leaf_entry *sents;
1583 struct xfs_dir2_leaf_entry *dents;
Dave Chinner41419562013-10-29 22:11:50 +11001584 struct xfs_inode *dp = state->args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
1586 args = state->args;
1587 ASSERT(drop_blk->magic == XFS_DIR2_LEAFN_MAGIC);
1588 ASSERT(save_blk->magic == XFS_DIR2_LEAFN_MAGIC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001589 drop_leaf = drop_blk->bp->b_addr;
1590 save_leaf = save_blk->bp->b_addr;
Dave Chinner24df33b2013-04-12 07:30:21 +10001591
Dave Chinner01ba43b2013-10-29 22:11:52 +11001592 dp->d_ops->leaf_hdr_from_disk(&savehdr, save_leaf);
1593 dp->d_ops->leaf_hdr_from_disk(&drophdr, drop_leaf);
1594 sents = dp->d_ops->leaf_ents_p(save_leaf);
1595 dents = dp->d_ops->leaf_ents_p(drop_leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001596
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 /*
1598 * If there are any stale leaf entries, take this opportunity
1599 * to purge them.
1600 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001601 if (drophdr.stale)
1602 xfs_dir3_leaf_compact(args, &drophdr, drop_blk->bp);
1603 if (savehdr.stale)
1604 xfs_dir3_leaf_compact(args, &savehdr, save_blk->bp);
1605
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 /*
1607 * Move the entries from drop to the appropriate end of save.
1608 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001609 drop_blk->hashval = be32_to_cpu(dents[drophdr.count - 1].hashval);
Dave Chinner41419562013-10-29 22:11:50 +11001610 if (xfs_dir2_leafn_order(dp, save_blk->bp, drop_blk->bp))
Dave Chinner24df33b2013-04-12 07:30:21 +10001611 xfs_dir3_leafn_moveents(args, drop_blk->bp, &drophdr, dents, 0,
1612 save_blk->bp, &savehdr, sents, 0,
1613 drophdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 else
Dave Chinner24df33b2013-04-12 07:30:21 +10001615 xfs_dir3_leafn_moveents(args, drop_blk->bp, &drophdr, dents, 0,
1616 save_blk->bp, &savehdr, sents,
1617 savehdr.count, drophdr.count);
1618 save_blk->hashval = be32_to_cpu(sents[savehdr.count - 1].hashval);
1619
1620 /* log the changes made when moving the entries */
Dave Chinner01ba43b2013-10-29 22:11:52 +11001621 dp->d_ops->leaf_hdr_to_disk(save_leaf, &savehdr);
1622 dp->d_ops->leaf_hdr_to_disk(drop_leaf, &drophdr);
Dave Chinnerbc851782014-06-06 15:20:54 +10001623 xfs_dir3_leaf_log_header(args, save_blk->bp);
1624 xfs_dir3_leaf_log_header(args, drop_blk->bp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001625
Dave Chinner41419562013-10-29 22:11:50 +11001626 xfs_dir3_leaf_check(dp, save_blk->bp);
1627 xfs_dir3_leaf_check(dp, drop_blk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628}
1629
1630/*
1631 * Top-level node form directory addname routine.
1632 */
1633int /* error */
1634xfs_dir2_node_addname(
1635 xfs_da_args_t *args) /* operation arguments */
1636{
1637 xfs_da_state_blk_t *blk; /* leaf block for insert */
1638 int error; /* error return value */
1639 int rval; /* sub-return value */
1640 xfs_da_state_t *state; /* btree cursor */
1641
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001642 trace_xfs_dir2_node_addname(args);
1643
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 /*
1645 * Allocate and initialize the state (btree cursor).
1646 */
1647 state = xfs_da_state_alloc();
1648 state->args = args;
1649 state->mp = args->dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 /*
1651 * Look up the name. We're not supposed to find it, but
1652 * this gives us the insertion point.
1653 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001654 error = xfs_da3_node_lookup_int(state, &rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 if (error)
1656 rval = error;
Dave Chinner24513372014-06-25 14:58:08 +10001657 if (rval != -ENOENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 goto done;
1659 }
1660 /*
1661 * Add the data entry to a data block.
1662 * Extravalid is set to a freeblock found by lookup.
1663 */
1664 rval = xfs_dir2_node_addname_int(args,
1665 state->extravalid ? &state->extrablk : NULL);
1666 if (rval) {
1667 goto done;
1668 }
1669 blk = &state->path.blk[state->path.active - 1];
1670 ASSERT(blk->magic == XFS_DIR2_LEAFN_MAGIC);
1671 /*
1672 * Add the new leaf entry.
1673 */
1674 rval = xfs_dir2_leafn_add(blk->bp, args, blk->index);
1675 if (rval == 0) {
1676 /*
1677 * It worked, fix the hash values up the btree.
1678 */
Barry Naujok6a178102008-05-21 16:42:05 +10001679 if (!(args->op_flags & XFS_DA_OP_JUSTCHECK))
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001680 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 } else {
1682 /*
1683 * It didn't work, we need to split the leaf block.
1684 */
1685 if (args->total == 0) {
Dave Chinner24513372014-06-25 14:58:08 +10001686 ASSERT(rval == -ENOSPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 goto done;
1688 }
1689 /*
1690 * Split the leaf block and insert the new entry.
1691 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001692 rval = xfs_da3_split(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 }
1694done:
1695 xfs_da_state_free(state);
1696 return rval;
1697}
1698
1699/*
1700 * Add the data entry for a node-format directory name addition.
1701 * The leaf entry is added in xfs_dir2_leafn_add.
1702 * We may enter with a freespace block that the lookup found.
1703 */
1704static int /* error */
1705xfs_dir2_node_addname_int(
1706 xfs_da_args_t *args, /* operation arguments */
1707 xfs_da_state_blk_t *fblk) /* optional freespace block */
1708{
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001709 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 xfs_dir2_db_t dbno; /* data block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001711 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 xfs_dir2_data_entry_t *dep; /* data entry pointer */
1713 xfs_inode_t *dp; /* incore directory inode */
1714 xfs_dir2_data_unused_t *dup; /* data unused entry pointer */
1715 int error; /* error return value */
1716 xfs_dir2_db_t fbno; /* freespace block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001717 struct xfs_buf *fbp; /* freespace buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 int findex; /* freespace entry index */
1719 xfs_dir2_free_t *free=NULL; /* freespace block structure */
1720 xfs_dir2_db_t ifbno; /* initial freespace block no */
1721 xfs_dir2_db_t lastfbno=0; /* highest freespace block no */
1722 int length; /* length of the new entry */
1723 int logfree; /* need to log free entry */
1724 xfs_mount_t *mp; /* filesystem mount point */
1725 int needlog; /* need to log data header */
1726 int needscan; /* need to rescan data frees */
Nathan Scott3d693c62006-03-17 17:28:27 +11001727 __be16 *tagp; /* data entry tag pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 xfs_trans_t *tp; /* transaction pointer */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001729 __be16 *bests;
1730 struct xfs_dir3_icfree_hdr freehdr;
Dave Chinner33363fe2013-04-03 16:11:22 +11001731 struct xfs_dir2_data_free *bf;
Darrick J. Wong6915ef32018-03-23 10:06:51 -07001732 xfs_dir2_data_aoff_t aoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
1734 dp = args->dp;
1735 mp = dp->i_mount;
1736 tp = args->trans;
Dave Chinner9d23fc82013-10-29 22:11:48 +11001737 length = dp->d_ops->data_entsize(args->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 /*
1739 * If we came in with a freespace block that means that lookup
1740 * found an entry with our hash value. This is the freespace
1741 * block for that data entry.
1742 */
1743 if (fblk) {
1744 fbp = fblk->bp;
1745 /*
1746 * Remember initial freespace block number.
1747 */
1748 ifbno = fblk->blkno;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001749 free = fbp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 findex = fblk->index;
Dave Chinner24dd0f52013-10-30 13:48:41 -05001751 bests = dp->d_ops->free_bests_p(free);
Dave Chinner01ba43b2013-10-29 22:11:52 +11001752 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001753
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 /*
1755 * This means the free entry showed that the data block had
1756 * space for our entry, so we remembered it.
1757 * Use that data block.
1758 */
1759 if (findex >= 0) {
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001760 ASSERT(findex < freehdr.nvalid);
1761 ASSERT(be16_to_cpu(bests[findex]) != NULLDATAOFF);
1762 ASSERT(be16_to_cpu(bests[findex]) >= length);
1763 dbno = freehdr.firstdb + findex;
1764 } else {
1765 /*
1766 * The data block looked at didn't have enough room.
1767 * We'll start at the beginning of the freespace entries.
1768 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 dbno = -1;
1770 findex = 0;
1771 }
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001772 } else {
1773 /*
1774 * Didn't come in with a freespace block, so no data block.
1775 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 ifbno = dbno = -1;
1777 fbp = NULL;
1778 findex = 0;
1779 }
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001780
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 /*
1782 * If we don't have a data block yet, we're going to scan the
1783 * freespace blocks looking for one. Figure out what the
1784 * highest freespace block number is.
1785 */
1786 if (dbno == -1) {
1787 xfs_fileoff_t fo; /* freespace block number */
1788
Eric Sandeen7fb2cd42014-04-14 18:58:05 +10001789 if ((error = xfs_bmap_last_offset(dp, &fo, XFS_DATA_FORK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 return error;
Dave Chinner2998ab1d2014-06-06 15:07:53 +10001791 lastfbno = xfs_dir2_da_to_db(args->geo, (xfs_dablk_t)fo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 fbno = ifbno;
1793 }
1794 /*
1795 * While we haven't identified a data block, search the freeblock
1796 * data for a good data block. If we find a null freeblock entry,
1797 * indicating a hole in the data blocks, remember that.
1798 */
1799 while (dbno == -1) {
1800 /*
1801 * If we don't have a freeblock in hand, get the next one.
1802 */
1803 if (fbp == NULL) {
1804 /*
1805 * Happens the first time through unless lookup gave
1806 * us a freespace block to start with.
1807 */
1808 if (++fbno == 0)
Dave Chinner30028032014-06-06 15:08:18 +10001809 fbno = xfs_dir2_byte_to_db(args->geo,
Dave Chinner8c44a282014-06-06 15:04:41 +10001810 XFS_DIR2_FREE_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 /*
1812 * If it's ifbno we already looked at it.
1813 */
1814 if (fbno == ifbno)
1815 fbno++;
1816 /*
1817 * If it's off the end we're done.
1818 */
1819 if (fbno >= lastfbno)
1820 break;
1821 /*
1822 * Read the block. There can be holes in the
1823 * freespace blocks, so this might not succeed.
1824 * This should be really rare, so there's no reason
1825 * to avoid it.
1826 */
Dave Chinner20252072012-11-12 22:54:13 +11001827 error = xfs_dir2_free_try_read(tp, dp,
Dave Chinner2998ab1d2014-06-06 15:07:53 +10001828 xfs_dir2_db_to_da(args->geo, fbno),
1829 &fbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001830 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 return error;
Dave Chinner4bb20a82012-11-12 22:54:10 +11001832 if (!fbp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 continue;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001834 free = fbp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 findex = 0;
1836 }
1837 /*
1838 * Look at the current free entry. Is it good enough?
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001839 *
1840 * The bests initialisation should be where the bufer is read in
1841 * the above branch. But gcc is too stupid to realise that bests
1842 * and the freehdr are actually initialised if they are placed
1843 * there, so we have to do it here to avoid warnings. Blech.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 */
Dave Chinner24dd0f52013-10-30 13:48:41 -05001845 bests = dp->d_ops->free_bests_p(free);
Dave Chinner01ba43b2013-10-29 22:11:52 +11001846 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001847 if (be16_to_cpu(bests[findex]) != NULLDATAOFF &&
1848 be16_to_cpu(bests[findex]) >= length)
1849 dbno = freehdr.firstdb + findex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 else {
1851 /*
1852 * Are we done with the freeblock?
1853 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001854 if (++findex == freehdr.nvalid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 /*
1856 * Drop the block.
1857 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001858 xfs_trans_brelse(tp, fbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 fbp = NULL;
1860 if (fblk && fblk->bp)
1861 fblk->bp = NULL;
1862 }
1863 }
1864 }
1865 /*
1866 * If we don't have a data block, we need to allocate one and make
1867 * the freespace entries refer to it.
1868 */
1869 if (unlikely(dbno == -1)) {
1870 /*
1871 * Not allowed to allocate, return failure.
1872 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001873 if ((args->op_flags & XFS_DA_OP_JUSTCHECK) || args->total == 0)
Dave Chinner24513372014-06-25 14:58:08 +10001874 return -ENOSPC;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001875
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 /*
1877 * Allocate and initialize the new data block.
1878 */
1879 if (unlikely((error = xfs_dir2_grow_inode(args,
1880 XFS_DIR2_DATA_SPACE,
1881 &dbno)) ||
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11001882 (error = xfs_dir3_data_init(args, dbno, &dbp))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001884
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 /*
1886 * If (somehow) we have a freespace block, get rid of it.
1887 */
1888 if (fbp)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001889 xfs_trans_brelse(tp, fbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 if (fblk && fblk->bp)
1891 fblk->bp = NULL;
1892
1893 /*
1894 * Get the freespace block corresponding to the data block
1895 * that was just allocated.
1896 */
Dave Chinner8f661932014-06-06 15:15:59 +10001897 fbno = dp->d_ops->db_to_fdb(args->geo, dbno);
Dave Chinner20252072012-11-12 22:54:13 +11001898 error = xfs_dir2_free_try_read(tp, dp,
Dave Chinner2998ab1d2014-06-06 15:07:53 +10001899 xfs_dir2_db_to_da(args->geo, fbno),
1900 &fbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001901 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001903
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 /*
1905 * If there wasn't a freespace block, the read will
1906 * return a NULL fbp. Allocate and initialize a new one.
1907 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001908 if (!fbp) {
1909 error = xfs_dir2_grow_inode(args, XFS_DIR2_FREE_SPACE,
1910 &fbno);
1911 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
Dave Chinner8f661932014-06-06 15:15:59 +10001914 if (dp->d_ops->db_to_fdb(args->geo, dbno) != fbno) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001915 xfs_alert(mp,
Joe Perchesf41febd2015-07-29 11:52:04 +10001916"%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 +11001917 __func__, (unsigned long long)dp->i_ino,
Dave Chinner8f661932014-06-06 15:15:59 +10001918 (long long)dp->d_ops->db_to_fdb(
1919 args->geo, dbno),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 (long long)dbno, (long long)fbno,
1921 (unsigned long long)ifbno, lastfbno);
1922 if (fblk) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001923 xfs_alert(mp,
Darrick J. Wongc9690042018-01-09 12:02:55 -08001924 " fblk "PTR_FMT" blkno %llu index %d magic 0x%x",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 fblk,
1926 (unsigned long long)fblk->blkno,
1927 fblk->index,
1928 fblk->magic);
1929 } else {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001930 xfs_alert(mp, " ... fblk is NULL");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 }
1932 XFS_ERROR_REPORT("xfs_dir2_node_addname_int",
1933 XFS_ERRLEVEL_LOW, mp);
Dave Chinner24513372014-06-25 14:58:08 +10001934 return -EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 }
1936
1937 /*
1938 * Get a buffer for the new block.
1939 */
Dave Chinner2998ab1d2014-06-06 15:07:53 +10001940 error = xfs_dir3_free_get_buf(args, fbno, &fbp);
Dave Chinnerb0f539d2012-11-14 17:53:49 +11001941 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 return error;
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001943 free = fbp->b_addr;
Dave Chinner24dd0f52013-10-30 13:48:41 -05001944 bests = dp->d_ops->free_bests_p(free);
Dave Chinner01ba43b2013-10-29 22:11:52 +11001945 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
1947 /*
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001948 * Remember the first slot as our empty slot.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 */
Dave Chinner8c44a282014-06-06 15:04:41 +10001950 freehdr.firstdb =
Dave Chinner30028032014-06-06 15:08:18 +10001951 (fbno - xfs_dir2_byte_to_db(args->geo,
Dave Chinner8c44a282014-06-06 15:04:41 +10001952 XFS_DIR2_FREE_OFFSET)) *
Dave Chinner8f661932014-06-06 15:15:59 +10001953 dp->d_ops->free_max_bests(args->geo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 } else {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001955 free = fbp->b_addr;
Dave Chinner24dd0f52013-10-30 13:48:41 -05001956 bests = dp->d_ops->free_bests_p(free);
Dave Chinner01ba43b2013-10-29 22:11:52 +11001957 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 }
1959
1960 /*
1961 * Set the freespace block index from the data block number.
1962 */
Dave Chinner8f661932014-06-06 15:15:59 +10001963 findex = dp->d_ops->db_to_fdindex(args->geo, dbno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 /*
1965 * If it's after the end of the current entries in the
1966 * freespace block, extend that table.
1967 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001968 if (findex >= freehdr.nvalid) {
Dave Chinner8f661932014-06-06 15:15:59 +10001969 ASSERT(findex < dp->d_ops->free_max_bests(args->geo));
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001970 freehdr.nvalid = findex + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 /*
1972 * Tag new entry so nused will go up.
1973 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001974 bests[findex] = cpu_to_be16(NULLDATAOFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 }
1976 /*
1977 * If this entry was for an empty data block
1978 * (this should always be true) then update the header.
1979 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001980 if (bests[findex] == cpu_to_be16(NULLDATAOFF)) {
1981 freehdr.nused++;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001982 dp->d_ops->free_hdr_to_disk(fbp->b_addr, &freehdr);
Dave Chinnerbc851782014-06-06 15:20:54 +10001983 xfs_dir2_free_log_header(args, fbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 }
1985 /*
1986 * Update the real value in the table.
1987 * We haven't allocated the data entry yet so this will
1988 * change again.
1989 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001990 hdr = dbp->b_addr;
Dave Chinner2ca98772013-10-29 22:11:49 +11001991 bf = dp->d_ops->data_bestfree_p(hdr);
Dave Chinner33363fe2013-04-03 16:11:22 +11001992 bests[findex] = bf[0].length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 logfree = 1;
1994 }
1995 /*
1996 * We had a data block so we don't have to make a new one.
1997 */
1998 else {
1999 /*
2000 * If just checking, we succeeded.
2001 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10002002 if (args->op_flags & XFS_DA_OP_JUSTCHECK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 return 0;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002004
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 /*
2006 * Read the data block in.
2007 */
Dave Chinner2998ab1d2014-06-06 15:07:53 +10002008 error = xfs_dir3_data_read(tp, dp,
2009 xfs_dir2_db_to_da(args->geo, dbno),
Dave Chinnere4813572012-11-12 22:54:14 +11002010 -1, &dbp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002011 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002013 hdr = dbp->b_addr;
Dave Chinner2ca98772013-10-29 22:11:49 +11002014 bf = dp->d_ops->data_bestfree_p(hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 logfree = 0;
2016 }
Dave Chinner33363fe2013-04-03 16:11:22 +11002017 ASSERT(be16_to_cpu(bf[0].length) >= length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 /*
2019 * Point to the existing unused space.
2020 */
2021 dup = (xfs_dir2_data_unused_t *)
Dave Chinner33363fe2013-04-03 16:11:22 +11002022 ((char *)hdr + be16_to_cpu(bf[0].offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 needscan = needlog = 0;
2024 /*
2025 * Mark the first part of the unused space, inuse for us.
2026 */
Darrick J. Wong6915ef32018-03-23 10:06:51 -07002027 aoff = (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr);
2028 error = xfs_dir2_data_use_free(args, dbp, dup, aoff, length,
2029 &needlog, &needscan);
2030 if (error) {
2031 xfs_trans_brelse(tp, dbp);
2032 return error;
2033 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 /*
2035 * Fill in the new entry and log it.
2036 */
2037 dep = (xfs_dir2_data_entry_t *)dup;
Christoph Hellwigff9901c2006-06-09 14:48:37 +10002038 dep->inumber = cpu_to_be64(args->inumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 dep->namelen = args->namelen;
2040 memcpy(dep->name, args->name, dep->namelen);
Dave Chinner9d23fc82013-10-29 22:11:48 +11002041 dp->d_ops->data_put_ftype(dep, args->filetype);
2042 tagp = dp->d_ops->data_entry_tag_p(dep);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02002043 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Dave Chinnerbc851782014-06-06 15:20:54 +10002044 xfs_dir2_data_log_entry(args, dbp, dep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 /*
2046 * Rescan the block for bestfree if needed.
2047 */
2048 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +11002049 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 /*
2051 * Log the data block header if needed.
2052 */
2053 if (needlog)
Dave Chinnerbc851782014-06-06 15:20:54 +10002054 xfs_dir2_data_log_header(args, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 /*
2056 * If the freespace entry is now wrong, update it.
2057 */
Dave Chinner24dd0f52013-10-30 13:48:41 -05002058 bests = dp->d_ops->free_bests_p(free); /* gcc is so stupid */
Dave Chinner33363fe2013-04-03 16:11:22 +11002059 if (be16_to_cpu(bests[findex]) != be16_to_cpu(bf[0].length)) {
2060 bests[findex] = bf[0].length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 logfree = 1;
2062 }
2063 /*
2064 * Log the freespace entry if needed.
2065 */
2066 if (logfree)
Dave Chinnerbc851782014-06-06 15:20:54 +10002067 xfs_dir2_free_log_bests(args, fbp, findex, findex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 * Return the data block and offset in args, then drop the data block.
2070 */
2071 args->blkno = (xfs_dablk_t)dbno;
Nathan Scott3d693c62006-03-17 17:28:27 +11002072 args->index = be16_to_cpu(*tagp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 return 0;
2074}
2075
2076/*
2077 * Lookup an entry in a node-format directory.
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002078 * All the real work happens in xfs_da3_node_lookup_int.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 * The only real output is the inode number of the entry.
2080 */
2081int /* error */
2082xfs_dir2_node_lookup(
2083 xfs_da_args_t *args) /* operation arguments */
2084{
2085 int error; /* error return value */
2086 int i; /* btree level */
2087 int rval; /* operation return value */
2088 xfs_da_state_t *state; /* btree cursor */
2089
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002090 trace_xfs_dir2_node_lookup(args);
2091
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 /*
2093 * Allocate and initialize the btree cursor.
2094 */
2095 state = xfs_da_state_alloc();
2096 state->args = args;
2097 state->mp = args->dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 /*
2099 * Fill in the path to the entry in the cursor.
2100 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002101 error = xfs_da3_node_lookup_int(state, &rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 if (error)
2103 rval = error;
Dave Chinner24513372014-06-25 14:58:08 +10002104 else if (rval == -ENOENT && args->cmpresult == XFS_CMP_CASE) {
2105 /* If a CI match, dup the actual name and return -EEXIST */
Barry Naujok384f3ce2008-05-21 16:58:22 +10002106 xfs_dir2_data_entry_t *dep;
2107
Dave Chinner1d9025e2012-06-22 18:50:14 +10002108 dep = (xfs_dir2_data_entry_t *)
2109 ((char *)state->extrablk.bp->b_addr +
2110 state->extrablk.index);
Barry Naujok384f3ce2008-05-21 16:58:22 +10002111 rval = xfs_dir_cilookup_result(args, dep->name, dep->namelen);
2112 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 /*
2114 * Release the btree blocks and leaf block.
2115 */
2116 for (i = 0; i < state->path.active; i++) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002117 xfs_trans_brelse(args->trans, state->path.blk[i].bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 state->path.blk[i].bp = NULL;
2119 }
2120 /*
2121 * Release the data block if we have it.
2122 */
2123 if (state->extravalid && state->extrablk.bp) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002124 xfs_trans_brelse(args->trans, state->extrablk.bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 state->extrablk.bp = NULL;
2126 }
2127 xfs_da_state_free(state);
2128 return rval;
2129}
2130
2131/*
2132 * Remove an entry from a node-format directory.
2133 */
2134int /* error */
2135xfs_dir2_node_removename(
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002136 struct xfs_da_args *args) /* operation arguments */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137{
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002138 struct xfs_da_state_blk *blk; /* leaf block */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 int error; /* error return value */
2140 int rval; /* operation return value */
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002141 struct xfs_da_state *state; /* btree cursor */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002143 trace_xfs_dir2_node_removename(args);
2144
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 /*
2146 * Allocate and initialize the btree cursor.
2147 */
2148 state = xfs_da_state_alloc();
2149 state->args = args;
2150 state->mp = args->dp->i_mount;
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002151
2152 /* Look up the entry we're deleting, set up the cursor. */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002153 error = xfs_da3_node_lookup_int(state, &rval);
Barry Naujok5163f952008-05-21 16:41:01 +10002154 if (error)
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002155 goto out_free;
2156
2157 /* Didn't find it, upper layer screwed up. */
Dave Chinner24513372014-06-25 14:58:08 +10002158 if (rval != -EEXIST) {
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002159 error = rval;
2160 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 }
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002162
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 blk = &state->path.blk[state->path.active - 1];
2164 ASSERT(blk->magic == XFS_DIR2_LEAFN_MAGIC);
2165 ASSERT(state->extravalid);
2166 /*
2167 * Remove the leaf and data entries.
2168 * Extrablk refers to the data block.
2169 */
2170 error = xfs_dir2_leafn_remove(args, blk->bp, blk->index,
2171 &state->extrablk, &rval);
Barry Naujok5163f952008-05-21 16:41:01 +10002172 if (error)
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002173 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 /*
2175 * Fix the hash values up the btree.
2176 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002177 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 /*
2179 * If we need to join leaf blocks, do it.
2180 */
2181 if (rval && state->path.active > 1)
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002182 error = xfs_da3_join(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 /*
2184 * If no errors so far, try conversion to leaf format.
2185 */
2186 if (!error)
2187 error = xfs_dir2_node_to_leaf(state);
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002188out_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 xfs_da_state_free(state);
2190 return error;
2191}
2192
2193/*
2194 * Replace an entry's inode number in a node-format directory.
2195 */
2196int /* error */
2197xfs_dir2_node_replace(
2198 xfs_da_args_t *args) /* operation arguments */
2199{
2200 xfs_da_state_blk_t *blk; /* leaf block */
Christoph Hellwigc2066e22011-07-08 14:35:38 +02002201 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 xfs_dir2_data_entry_t *dep; /* data entry changed */
2203 int error; /* error return value */
2204 int i; /* btree level */
2205 xfs_ino_t inum; /* new inode number */
Jan Kara03754232015-08-25 10:05:13 +10002206 int ftype; /* new file type */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 xfs_dir2_leaf_t *leaf; /* leaf structure */
2208 xfs_dir2_leaf_entry_t *lep; /* leaf entry being changed */
2209 int rval; /* internal return value */
2210 xfs_da_state_t *state; /* btree cursor */
2211
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002212 trace_xfs_dir2_node_replace(args);
2213
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 /*
2215 * Allocate and initialize the btree cursor.
2216 */
2217 state = xfs_da_state_alloc();
2218 state->args = args;
2219 state->mp = args->dp->i_mount;
Jan Kara03754232015-08-25 10:05:13 +10002220
2221 /*
2222 * We have to save new inode number and ftype since
2223 * xfs_da3_node_lookup_int() is going to overwrite them
2224 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 inum = args->inumber;
Jan Kara03754232015-08-25 10:05:13 +10002226 ftype = args->filetype;
2227
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 /*
2229 * Lookup the entry to change in the btree.
2230 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002231 error = xfs_da3_node_lookup_int(state, &rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 if (error) {
2233 rval = error;
2234 }
2235 /*
2236 * It should be found, since the vnodeops layer has looked it up
2237 * and locked it. But paranoia is good.
2238 */
Dave Chinner24513372014-06-25 14:58:08 +10002239 if (rval == -EEXIST) {
Dave Chinner24df33b2013-04-12 07:30:21 +10002240 struct xfs_dir2_leaf_entry *ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 /*
2242 * Find the leaf entry.
2243 */
2244 blk = &state->path.blk[state->path.active - 1];
2245 ASSERT(blk->magic == XFS_DIR2_LEAFN_MAGIC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002246 leaf = blk->bp->b_addr;
Dave Chinner41419562013-10-29 22:11:50 +11002247 ents = args->dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10002248 lep = &ents[blk->index];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 ASSERT(state->extravalid);
2250 /*
2251 * Point to the data entry.
2252 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10002253 hdr = state->extrablk.bp->b_addr;
Dave Chinner33363fe2013-04-03 16:11:22 +11002254 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
2255 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 dep = (xfs_dir2_data_entry_t *)
Christoph Hellwigc2066e22011-07-08 14:35:38 +02002257 ((char *)hdr +
Dave Chinner30028032014-06-06 15:08:18 +10002258 xfs_dir2_dataptr_to_off(args->geo,
2259 be32_to_cpu(lep->address)));
Christoph Hellwigff9901c2006-06-09 14:48:37 +10002260 ASSERT(inum != be64_to_cpu(dep->inumber));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 /*
2262 * Fill in the new inode number and log the entry.
2263 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +10002264 dep->inumber = cpu_to_be64(inum);
Jan Kara03754232015-08-25 10:05:13 +10002265 args->dp->d_ops->data_put_ftype(dep, ftype);
Dave Chinnerbc851782014-06-06 15:20:54 +10002266 xfs_dir2_data_log_entry(args, state->extrablk.bp, dep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 rval = 0;
2268 }
2269 /*
2270 * Didn't find it, and we're holding a data block. Drop it.
2271 */
2272 else if (state->extravalid) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002273 xfs_trans_brelse(args->trans, state->extrablk.bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 state->extrablk.bp = NULL;
2275 }
2276 /*
2277 * Release all the buffers in the cursor.
2278 */
2279 for (i = 0; i < state->path.active; i++) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002280 xfs_trans_brelse(args->trans, state->path.blk[i].bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 state->path.blk[i].bp = NULL;
2282 }
2283 xfs_da_state_free(state);
2284 return rval;
2285}
2286
2287/*
2288 * Trim off a trailing empty freespace block.
2289 * Return (in rvalp) 1 if we did it, 0 if not.
2290 */
2291int /* error */
2292xfs_dir2_node_trim_free(
2293 xfs_da_args_t *args, /* operation arguments */
2294 xfs_fileoff_t fo, /* free block number */
2295 int *rvalp) /* out: did something */
2296{
Dave Chinner1d9025e2012-06-22 18:50:14 +10002297 struct xfs_buf *bp; /* freespace buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 xfs_inode_t *dp; /* incore directory inode */
2299 int error; /* error return code */
2300 xfs_dir2_free_t *free; /* freespace structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 xfs_trans_t *tp; /* transaction pointer */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11002302 struct xfs_dir3_icfree_hdr freehdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303
2304 dp = args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 tp = args->trans;
Christoph Hellwig355cced2016-03-15 11:44:18 +11002306
2307 *rvalp = 0;
2308
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 /*
2310 * Read the freespace block.
2311 */
Dave Chinner20252072012-11-12 22:54:13 +11002312 error = xfs_dir2_free_try_read(tp, dp, fo, &bp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11002313 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 /*
2316 * There can be holes in freespace. If fo is a hole, there's
2317 * nothing to do.
2318 */
Dave Chinner20252072012-11-12 22:54:13 +11002319 if (!bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 return 0;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002321 free = bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11002322 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11002323
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 /*
2325 * If there are used entries, there's nothing to do.
2326 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11002327 if (freehdr.nused > 0) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002328 xfs_trans_brelse(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 return 0;
2330 }
2331 /*
2332 * Blow the block away.
2333 */
Dave Chinner2998ab1d2014-06-06 15:07:53 +10002334 error = xfs_dir2_shrink_inode(args,
2335 xfs_dir2_da_to_db(args->geo, (xfs_dablk_t)fo), bp);
2336 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 /*
2338 * Can't fail with ENOSPC since that only happens with no
2339 * space reservation, when breaking up an extent into two
2340 * pieces. This is the last block of an extent.
2341 */
Dave Chinner24513372014-06-25 14:58:08 +10002342 ASSERT(error != -ENOSPC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002343 xfs_trans_brelse(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 return error;
2345 }
2346 /*
2347 * Return that we succeeded.
2348 */
2349 *rvalp = 1;
2350 return 0;
2351}