blob: bbd1238852b3c4f66b76b159847d33e827ced077 [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
Dave Chinner41419562013-10-29 22:11:50 +110056#define xfs_dir3_leaf_check(dp, bp) \
Dave Chinner24df33b2013-04-12 07:30:21 +100057do { \
Dave Chinner41419562013-10-29 22:11:50 +110058 if (!xfs_dir3_leafn_check((dp), (bp))) \
Dave Chinner24df33b2013-04-12 07:30:21 +100059 ASSERT(0); \
60} while (0);
61
62static bool
63xfs_dir3_leafn_check(
Dave Chinner41419562013-10-29 22:11:50 +110064 struct xfs_inode *dp,
Dave Chinner24df33b2013-04-12 07:30:21 +100065 struct xfs_buf *bp)
66{
67 struct xfs_dir2_leaf *leaf = bp->b_addr;
68 struct xfs_dir3_icleaf_hdr leafhdr;
69
Dave Chinner01ba43b2013-10-29 22:11:52 +110070 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +100071
72 if (leafhdr.magic == XFS_DIR3_LEAFN_MAGIC) {
73 struct xfs_dir3_leaf_hdr *leaf3 = bp->b_addr;
74 if (be64_to_cpu(leaf3->info.blkno) != bp->b_bn)
75 return false;
76 } else if (leafhdr.magic != XFS_DIR2_LEAFN_MAGIC)
77 return false;
78
Dave Chinner41419562013-10-29 22:11:50 +110079 return xfs_dir3_leaf_check_int(dp->i_mount, dp, &leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +100080}
81#else
Dave Chinner41419562013-10-29 22:11:50 +110082#define xfs_dir3_leaf_check(dp, bp)
Dave Chinner24df33b2013-04-12 07:30:21 +100083#endif
84
Dave Chinnercbc8adf2013-04-03 16:11:21 +110085static bool
86xfs_dir3_free_verify(
Dave Chinner20252072012-11-12 22:54:13 +110087 struct xfs_buf *bp)
88{
89 struct xfs_mount *mp = bp->b_target->bt_mount;
90 struct xfs_dir2_free_hdr *hdr = bp->b_addr;
Dave Chinner20252072012-11-12 22:54:13 +110091
Dave Chinnercbc8adf2013-04-03 16:11:21 +110092 if (xfs_sb_version_hascrc(&mp->m_sb)) {
93 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
94
95 if (hdr3->magic != cpu_to_be32(XFS_DIR3_FREE_MAGIC))
96 return false;
Eric Sandeence748ea2015-07-29 11:53:31 +100097 if (!uuid_equal(&hdr3->uuid, &mp->m_sb.sb_meta_uuid))
Dave Chinnercbc8adf2013-04-03 16:11:21 +110098 return false;
99 if (be64_to_cpu(hdr3->blkno) != bp->b_bn)
100 return false;
Brian Fostera45086e2015-10-12 15:59:25 +1100101 if (!xfs_log_check_lsn(mp, be64_to_cpu(hdr3->lsn)))
102 return false;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100103 } else {
104 if (hdr->magic != cpu_to_be32(XFS_DIR2_FREE_MAGIC))
105 return false;
106 }
107
108 /* XXX: should bounds check the xfs_dir3_icfree_hdr here */
109
110 return true;
111}
112
113static void
114xfs_dir3_free_read_verify(
115 struct xfs_buf *bp)
116{
117 struct xfs_mount *mp = bp->b_target->bt_mount;
118
Eric Sandeence5028c2014-02-27 15:23:10 +1100119 if (xfs_sb_version_hascrc(&mp->m_sb) &&
120 !xfs_buf_verify_cksum(bp, XFS_DIR3_FREE_CRC_OFF))
Dave Chinner24513372014-06-25 14:58:08 +1000121 xfs_buf_ioerror(bp, -EFSBADCRC);
Eric Sandeence5028c2014-02-27 15:23:10 +1100122 else if (!xfs_dir3_free_verify(bp))
Dave Chinner24513372014-06-25 14:58:08 +1000123 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100124
125 if (bp->b_error)
126 xfs_verifier_error(bp);
Dave Chinner612cfbf2012-11-14 17:52:32 +1100127}
Dave Chinner20252072012-11-12 22:54:13 +1100128
Dave Chinner612cfbf2012-11-14 17:52:32 +1100129static void
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100130xfs_dir3_free_write_verify(
Dave Chinner1813dd62012-11-14 17:54:40 +1100131 struct xfs_buf *bp)
132{
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100133 struct xfs_mount *mp = bp->b_target->bt_mount;
134 struct xfs_buf_log_item *bip = bp->b_fspriv;
135 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
136
137 if (!xfs_dir3_free_verify(bp)) {
Dave Chinner24513372014-06-25 14:58:08 +1000138 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100139 xfs_verifier_error(bp);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100140 return;
141 }
142
143 if (!xfs_sb_version_hascrc(&mp->m_sb))
144 return;
145
146 if (bip)
147 hdr3->lsn = cpu_to_be64(bip->bli_item.li_lsn);
148
Eric Sandeenf1dbcd72014-02-27 15:18:23 +1100149 xfs_buf_update_cksum(bp, XFS_DIR3_FREE_CRC_OFF);
Dave Chinner1813dd62012-11-14 17:54:40 +1100150}
151
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100152const struct xfs_buf_ops xfs_dir3_free_buf_ops = {
Eric Sandeen233135b2016-01-04 16:10:19 +1100153 .name = "xfs_dir3_free",
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100154 .verify_read = xfs_dir3_free_read_verify,
155 .verify_write = xfs_dir3_free_write_verify,
Dave Chinner1813dd62012-11-14 17:54:40 +1100156};
Dave Chinner20252072012-11-12 22:54:13 +1100157
Darrick J. Wong3d2bd2f2017-02-02 15:14:00 -0800158/* Everything ok in the free block header? */
159static bool
160xfs_dir3_free_header_check(
161 struct xfs_inode *dp,
162 xfs_dablk_t fbno,
163 struct xfs_buf *bp)
164{
165 struct xfs_mount *mp = dp->i_mount;
166 unsigned int firstdb;
167 int maxbests;
168
169 maxbests = dp->d_ops->free_max_bests(mp->m_dir_geo);
170 firstdb = (xfs_dir2_da_to_db(mp->m_dir_geo, fbno) -
171 xfs_dir2_byte_to_db(mp->m_dir_geo, XFS_DIR2_FREE_OFFSET)) *
172 maxbests;
173 if (xfs_sb_version_hascrc(&mp->m_sb)) {
174 struct xfs_dir3_free_hdr *hdr3 = bp->b_addr;
175
176 if (be32_to_cpu(hdr3->firstdb) != firstdb)
177 return false;
178 if (be32_to_cpu(hdr3->nvalid) > maxbests)
179 return false;
180 if (be32_to_cpu(hdr3->nvalid) < be32_to_cpu(hdr3->nused))
181 return false;
182 } else {
183 struct xfs_dir2_free_hdr *hdr = bp->b_addr;
184
185 if (be32_to_cpu(hdr->firstdb) != firstdb)
186 return false;
187 if (be32_to_cpu(hdr->nvalid) > maxbests)
188 return false;
189 if (be32_to_cpu(hdr->nvalid) < be32_to_cpu(hdr->nused))
190 return false;
191 }
192 return true;
193}
Dave Chinner612cfbf2012-11-14 17:52:32 +1100194
Dave Chinner20252072012-11-12 22:54:13 +1100195static int
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100196__xfs_dir3_free_read(
Dave Chinner20252072012-11-12 22:54:13 +1100197 struct xfs_trans *tp,
198 struct xfs_inode *dp,
199 xfs_dablk_t fbno,
200 xfs_daddr_t mappedbno,
201 struct xfs_buf **bpp)
202{
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100203 int err;
204
205 err = xfs_da_read_buf(tp, dp, fbno, mappedbno, bpp,
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100206 XFS_DATA_FORK, &xfs_dir3_free_buf_ops);
Darrick J. Wong3d2bd2f2017-02-02 15:14:00 -0800207 if (err || !*bpp)
208 return err;
209
210 /* Check things that we can't do in the verifier. */
211 if (!xfs_dir3_free_header_check(dp, fbno, *bpp)) {
212 xfs_buf_ioerror(*bpp, -EFSCORRUPTED);
213 xfs_verifier_error(*bpp);
214 xfs_trans_brelse(tp, *bpp);
215 return -EFSCORRUPTED;
216 }
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100217
218 /* try read returns without an error or *bpp if it lands in a hole */
Darrick J. Wong3d2bd2f2017-02-02 15:14:00 -0800219 if (tp)
Dave Chinner61fe1352013-04-03 16:11:30 +1100220 xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_DIR_FREE_BUF);
Darrick J. Wong3d2bd2f2017-02-02 15:14:00 -0800221
222 return 0;
Dave Chinner20252072012-11-12 22:54:13 +1100223}
224
225int
226xfs_dir2_free_read(
227 struct xfs_trans *tp,
228 struct xfs_inode *dp,
229 xfs_dablk_t fbno,
230 struct xfs_buf **bpp)
231{
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100232 return __xfs_dir3_free_read(tp, dp, fbno, -1, bpp);
Dave Chinner20252072012-11-12 22:54:13 +1100233}
234
235static int
236xfs_dir2_free_try_read(
237 struct xfs_trans *tp,
238 struct xfs_inode *dp,
239 xfs_dablk_t fbno,
240 struct xfs_buf **bpp)
241{
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100242 return __xfs_dir3_free_read(tp, dp, fbno, -2, bpp);
243}
244
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100245static int
246xfs_dir3_free_get_buf(
Dave Chinner2998ab12014-06-06 15:07:53 +1000247 xfs_da_args_t *args,
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100248 xfs_dir2_db_t fbno,
249 struct xfs_buf **bpp)
250{
Dave Chinner2998ab12014-06-06 15:07:53 +1000251 struct xfs_trans *tp = args->trans;
252 struct xfs_inode *dp = args->dp;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100253 struct xfs_mount *mp = dp->i_mount;
254 struct xfs_buf *bp;
255 int error;
256 struct xfs_dir3_icfree_hdr hdr;
257
Dave Chinner2998ab12014-06-06 15:07:53 +1000258 error = xfs_da_get_buf(tp, dp, xfs_dir2_db_to_da(args->geo, fbno),
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100259 -1, &bp, XFS_DATA_FORK);
260 if (error)
261 return error;
262
Dave Chinner61fe1352013-04-03 16:11:30 +1100263 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_FREE_BUF);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100264 bp->b_ops = &xfs_dir3_free_buf_ops;
265
266 /*
267 * Initialize the new block to be empty, and remember
268 * its first slot as our empty slot.
269 */
Dave Chinnere400d272013-05-28 18:37:17 +1000270 memset(bp->b_addr, 0, sizeof(struct xfs_dir3_free_hdr));
271 memset(&hdr, 0, sizeof(hdr));
272
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100273 if (xfs_sb_version_hascrc(&mp->m_sb)) {
274 struct xfs_dir3_free_hdr *hdr3 = bp->b_addr;
275
276 hdr.magic = XFS_DIR3_FREE_MAGIC;
Dave Chinnere400d272013-05-28 18:37:17 +1000277
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100278 hdr3->hdr.blkno = cpu_to_be64(bp->b_bn);
279 hdr3->hdr.owner = cpu_to_be64(dp->i_ino);
Eric Sandeence748ea2015-07-29 11:53:31 +1000280 uuid_copy(&hdr3->hdr.uuid, &mp->m_sb.sb_meta_uuid);
Dave Chinnere400d272013-05-28 18:37:17 +1000281 } else
282 hdr.magic = XFS_DIR2_FREE_MAGIC;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100283 dp->d_ops->free_hdr_to_disk(bp->b_addr, &hdr);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100284 *bpp = bp;
285 return 0;
Dave Chinner20252072012-11-12 22:54:13 +1100286}
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288/*
289 * Log entries from a freespace block.
290 */
Eric Sandeen5d77c0d2009-11-19 15:52:00 +0000291STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292xfs_dir2_free_log_bests(
Dave Chinnerbc851782014-06-06 15:20:54 +1000293 struct xfs_da_args *args,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000294 struct xfs_buf *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 int first, /* first entry to log */
296 int last) /* last entry to log */
297{
298 xfs_dir2_free_t *free; /* freespace structure */
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100299 __be16 *bests;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Dave Chinner1d9025e2012-06-22 18:50:14 +1000301 free = bp->b_addr;
Dave Chinnerbc851782014-06-06 15:20:54 +1000302 bests = args->dp->d_ops->free_bests_p(free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100303 ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC) ||
304 free->hdr.magic == cpu_to_be32(XFS_DIR3_FREE_MAGIC));
Dave Chinnerbc851782014-06-06 15:20:54 +1000305 xfs_trans_log_buf(args->trans, bp,
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100306 (uint)((char *)&bests[first] - (char *)free),
307 (uint)((char *)&bests[last] - (char *)free +
308 sizeof(bests[0]) - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309}
310
311/*
312 * Log header from a freespace block.
313 */
314static void
315xfs_dir2_free_log_header(
Dave Chinnerbc851782014-06-06 15:20:54 +1000316 struct xfs_da_args *args,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000317 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
Dave Chinner836a94a2013-08-12 20:49:44 +1000319#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 xfs_dir2_free_t *free; /* freespace structure */
321
Dave Chinner1d9025e2012-06-22 18:50:14 +1000322 free = bp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100323 ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC) ||
324 free->hdr.magic == cpu_to_be32(XFS_DIR3_FREE_MAGIC));
Dave Chinner836a94a2013-08-12 20:49:44 +1000325#endif
Dave Chinnerbc851782014-06-06 15:20:54 +1000326 xfs_trans_log_buf(args->trans, bp, 0,
327 args->dp->d_ops->free_hdr_size - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329
330/*
331 * Convert a leaf-format directory to a node-format directory.
332 * We need to change the magic number of the leaf block, and copy
333 * the freespace table out of the leaf block into its own block.
334 */
335int /* error */
336xfs_dir2_leaf_to_node(
337 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000338 struct xfs_buf *lbp) /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
340 xfs_inode_t *dp; /* incore directory inode */
341 int error; /* error return value */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000342 struct xfs_buf *fbp; /* freespace buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 xfs_dir2_db_t fdb; /* freespace block number */
344 xfs_dir2_free_t *free; /* freespace structure */
Nathan Scott68b3a102006-03-17 17:27:19 +1100345 __be16 *from; /* pointer to freespace entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 int i; /* leaf freespace index */
347 xfs_dir2_leaf_t *leaf; /* leaf structure */
348 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 int n; /* count of live freespc ents */
350 xfs_dir2_data_off_t off; /* freespace entry value */
Nathan Scott0ba962e2006-03-17 17:27:07 +1100351 __be16 *to; /* pointer to freespace entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 xfs_trans_t *tp; /* transaction pointer */
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100353 struct xfs_dir3_icfree_hdr freehdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000355 trace_xfs_dir2_leaf_to_node(args);
356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 dp = args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 tp = args->trans;
359 /*
360 * Add a freespace block to the directory.
361 */
362 if ((error = xfs_dir2_grow_inode(args, XFS_DIR2_FREE_SPACE, &fdb))) {
363 return error;
364 }
Dave Chinner30028032014-06-06 15:08:18 +1000365 ASSERT(fdb == xfs_dir2_byte_to_db(args->geo, XFS_DIR2_FREE_OFFSET));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 /*
367 * Get the buffer for the new freespace block.
368 */
Dave Chinner2998ab12014-06-06 15:07:53 +1000369 error = xfs_dir3_free_get_buf(args, fdb, &fbp);
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100370 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 return error;
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100372
Dave Chinner1d9025e2012-06-22 18:50:14 +1000373 free = fbp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100374 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000375 leaf = lbp->b_addr;
Dave Chinner8f661932014-06-06 15:15:59 +1000376 ltp = xfs_dir2_leaf_tail_p(args->geo, leaf);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100377 ASSERT(be32_to_cpu(ltp->bestcount) <=
Dave Chinner8f661932014-06-06 15:15:59 +1000378 (uint)dp->i_d.di_size / args->geo->blksize);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 /*
381 * Copy freespace entries from the leaf block to the new block.
382 * Count active entries.
383 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100384 from = xfs_dir2_leaf_bests_p(ltp);
Dave Chinner24dd0f52013-10-30 13:48:41 -0500385 to = dp->d_ops->free_bests_p(free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100386 for (i = n = 0; i < be32_to_cpu(ltp->bestcount); i++, from++, to++) {
Nathan Scott68b3a102006-03-17 17:27:19 +1100387 if ((off = be16_to_cpu(*from)) != NULLDATAOFF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 n++;
Nathan Scott0ba962e2006-03-17 17:27:07 +1100389 *to = cpu_to_be16(off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 }
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 /*
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100393 * Now initialize the freespace block header.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100395 freehdr.nused = n;
396 freehdr.nvalid = be32_to_cpu(ltp->bestcount);
397
Dave Chinner01ba43b2013-10-29 22:11:52 +1100398 dp->d_ops->free_hdr_to_disk(fbp->b_addr, &freehdr);
Dave Chinnerbc851782014-06-06 15:20:54 +1000399 xfs_dir2_free_log_bests(args, fbp, 0, freehdr.nvalid - 1);
400 xfs_dir2_free_log_header(args, fbp);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100401
Dave Chinner24df33b2013-04-12 07:30:21 +1000402 /*
403 * Converting the leaf to a leafnode is just a matter of changing the
404 * magic number and the ops. Do the change directly to the buffer as
405 * it's less work (and less code) than decoding the header to host
406 * format and back again.
407 */
408 if (leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC))
409 leaf->hdr.info.magic = cpu_to_be16(XFS_DIR2_LEAFN_MAGIC);
410 else
411 leaf->hdr.info.magic = cpu_to_be16(XFS_DIR3_LEAFN_MAGIC);
412 lbp->b_ops = &xfs_dir3_leafn_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100413 xfs_trans_buf_set_type(tp, lbp, XFS_BLFT_DIR_LEAFN_BUF);
Dave Chinnerbc851782014-06-06 15:20:54 +1000414 xfs_dir3_leaf_log_header(args, lbp);
Dave Chinner41419562013-10-29 22:11:50 +1100415 xfs_dir3_leaf_check(dp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 return 0;
417}
418
419/*
420 * Add a leaf entry to a leaf block in a node-form directory.
421 * The other work necessary is done from the caller.
422 */
423static int /* error */
424xfs_dir2_leafn_add(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000425 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 xfs_da_args_t *args, /* operation arguments */
427 int index) /* insertion pt for new entry */
428{
429 int compact; /* compacting stale leaves */
430 xfs_inode_t *dp; /* incore directory inode */
431 int highstale; /* next stale entry */
432 xfs_dir2_leaf_t *leaf; /* leaf structure */
433 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
434 int lfloghigh; /* high leaf entry logging */
435 int lfloglow; /* low leaf entry logging */
436 int lowstale; /* previous stale entry */
Dave Chinner24df33b2013-04-12 07:30:21 +1000437 struct xfs_dir3_icleaf_hdr leafhdr;
438 struct xfs_dir2_leaf_entry *ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000440 trace_xfs_dir2_leafn_add(args, index);
441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 dp = args->dp;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000443 leaf = bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100444 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +1100445 ents = dp->d_ops->leaf_ents_p(leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
447 /*
448 * Quick check just to make sure we are not going to index
449 * into other peoples memory
450 */
451 if (index < 0)
Dave Chinner24513372014-06-25 14:58:08 +1000452 return -EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454 /*
455 * If there are already the maximum number of leaf entries in
456 * the block, if there are no stale entries it won't fit.
457 * Caller will do a split. If there are stale entries we'll do
458 * a compact.
459 */
460
Dave Chinner8f661932014-06-06 15:15:59 +1000461 if (leafhdr.count == dp->d_ops->leaf_max_ents(args->geo)) {
Dave Chinner24df33b2013-04-12 07:30:21 +1000462 if (!leafhdr.stale)
Dave Chinner24513372014-06-25 14:58:08 +1000463 return -ENOSPC;
Dave Chinner24df33b2013-04-12 07:30:21 +1000464 compact = leafhdr.stale > 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 } else
466 compact = 0;
Dave Chinner24df33b2013-04-12 07:30:21 +1000467 ASSERT(index == 0 || be32_to_cpu(ents[index - 1].hashval) <= args->hashval);
468 ASSERT(index == leafhdr.count ||
469 be32_to_cpu(ents[index].hashval) >= args->hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
Barry Naujok6a178102008-05-21 16:42:05 +1000471 if (args->op_flags & XFS_DA_OP_JUSTCHECK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 return 0;
473
474 /*
475 * Compact out all but one stale leaf entry. Leaves behind
476 * the entry closest to index.
477 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000478 if (compact)
479 xfs_dir3_leaf_compact_x1(&leafhdr, ents, &index, &lowstale,
480 &highstale, &lfloglow, &lfloghigh);
481 else if (leafhdr.stale) {
482 /*
483 * Set impossible logging indices for this case.
484 */
485 lfloglow = leafhdr.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 lfloghigh = -1;
487 }
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 /*
490 * Insert the new entry, log everything.
491 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000492 lep = xfs_dir3_leaf_find_entry(&leafhdr, ents, index, compact, lowstale,
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200493 highstale, &lfloglow, &lfloghigh);
494
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100495 lep->hashval = cpu_to_be32(args->hashval);
Dave Chinner30028032014-06-06 15:08:18 +1000496 lep->address = cpu_to_be32(xfs_dir2_db_off_to_dataptr(args->geo,
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100497 args->blkno, args->index));
Dave Chinner24df33b2013-04-12 07:30:21 +1000498
Dave Chinner01ba43b2013-10-29 22:11:52 +1100499 dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr);
Dave Chinnerbc851782014-06-06 15:20:54 +1000500 xfs_dir3_leaf_log_header(args, bp);
501 xfs_dir3_leaf_log_ents(args, bp, lfloglow, lfloghigh);
Dave Chinner41419562013-10-29 22:11:50 +1100502 xfs_dir3_leaf_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 return 0;
504}
505
506#ifdef DEBUG
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100507static void
508xfs_dir2_free_hdr_check(
Dave Chinner01ba43b2013-10-29 22:11:52 +1100509 struct xfs_inode *dp,
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100510 struct xfs_buf *bp,
511 xfs_dir2_db_t db)
512{
513 struct xfs_dir3_icfree_hdr hdr;
514
Dave Chinner01ba43b2013-10-29 22:11:52 +1100515 dp->d_ops->free_hdr_from_disk(&hdr, bp->b_addr);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100516
Dave Chinner8f661932014-06-06 15:15:59 +1000517 ASSERT((hdr.firstdb %
518 dp->d_ops->free_max_bests(dp->i_mount->m_dir_geo)) == 0);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100519 ASSERT(hdr.firstdb <= db);
520 ASSERT(db < hdr.firstdb + hdr.nvalid);
521}
522#else
Dave Chinner01ba43b2013-10-29 22:11:52 +1100523#define xfs_dir2_free_hdr_check(dp, bp, db)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524#endif /* DEBUG */
525
526/*
527 * Return the last hash value in the leaf.
528 * Stale entries are ok.
529 */
530xfs_dahash_t /* hash value */
531xfs_dir2_leafn_lasthash(
Dave Chinner41419562013-10-29 22:11:50 +1100532 struct xfs_inode *dp,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000533 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 int *count) /* count of entries in leaf */
535{
Dave Chinner24df33b2013-04-12 07:30:21 +1000536 struct xfs_dir2_leaf *leaf = bp->b_addr;
537 struct xfs_dir2_leaf_entry *ents;
538 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Dave Chinner01ba43b2013-10-29 22:11:52 +1100540 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000541
542 ASSERT(leafhdr.magic == XFS_DIR2_LEAFN_MAGIC ||
543 leafhdr.magic == XFS_DIR3_LEAFN_MAGIC);
544
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 if (count)
Dave Chinner24df33b2013-04-12 07:30:21 +1000546 *count = leafhdr.count;
547 if (!leafhdr.count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 return 0;
Dave Chinner24df33b2013-04-12 07:30:21 +1000549
Dave Chinner41419562013-10-29 22:11:50 +1100550 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000551 return be32_to_cpu(ents[leafhdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
554/*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000555 * Look up a leaf entry for space to add a name in a node-format leaf block.
556 * The extrablk in state is a freespace block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000558STATIC int
559xfs_dir2_leafn_lookup_for_addname(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000560 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 xfs_da_args_t *args, /* operation arguments */
562 int *indexp, /* out: leaf entry index */
563 xfs_da_state_t *state) /* state to fill in */
564{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000565 struct xfs_buf *curbp = NULL; /* current data/free buffer */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000566 xfs_dir2_db_t curdb = -1; /* current data block number */
567 xfs_dir2_db_t curfdb = -1; /* current free block number */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 xfs_inode_t *dp; /* incore directory inode */
569 int error; /* error return value */
570 int fi; /* free entry index */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000571 xfs_dir2_free_t *free = NULL; /* free block structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 int index; /* leaf entry index */
573 xfs_dir2_leaf_t *leaf; /* leaf structure */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000574 int length; /* length of new data entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
576 xfs_mount_t *mp; /* filesystem mount point */
577 xfs_dir2_db_t newdb; /* new data block number */
578 xfs_dir2_db_t newfdb; /* new free block number */
579 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner24df33b2013-04-12 07:30:21 +1000580 struct xfs_dir2_leaf_entry *ents;
581 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583 dp = args->dp;
584 tp = args->trans;
585 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000586 leaf = bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100587 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +1100588 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000589
Dave Chinner41419562013-10-29 22:11:50 +1100590 xfs_dir3_leaf_check(dp, bp);
Dave Chinner24df33b2013-04-12 07:30:21 +1000591 ASSERT(leafhdr.count > 0);
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 /*
594 * Look up the hash value in the leaf entries.
595 */
596 index = xfs_dir2_leaf_search_hash(args, bp);
597 /*
598 * Do we have a buffer coming in?
599 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000600 if (state->extravalid) {
601 /* If so, it's a free block buffer, get the block number. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 curbp = state->extrablk.bp;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000603 curfdb = state->extrablk.blkno;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000604 free = curbp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100605 ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC) ||
606 free->hdr.magic == cpu_to_be32(XFS_DIR3_FREE_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 }
Dave Chinner9d23fc82013-10-29 22:11:48 +1100608 length = dp->d_ops->data_entsize(args->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 /*
610 * Loop over leaf entries with the right hash value.
611 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000612 for (lep = &ents[index];
613 index < leafhdr.count && be32_to_cpu(lep->hashval) == args->hashval;
614 lep++, index++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 /*
616 * Skip stale leaf entries.
617 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100618 if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 continue;
620 /*
621 * Pull the data block number from the entry.
622 */
Dave Chinner30028032014-06-06 15:08:18 +1000623 newdb = xfs_dir2_dataptr_to_db(args->geo,
624 be32_to_cpu(lep->address));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 /*
626 * For addname, we're looking for a place to put the new entry.
627 * We want to use a data block with an entry of equal
628 * hash value to ours if there is one with room.
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000629 *
630 * If this block isn't the data block we already have
631 * in hand, take a look at it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000633 if (newdb != curdb) {
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100634 __be16 *bests;
635
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000636 curdb = newdb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000638 * Convert the data block to the free block
639 * holding its freespace information.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 */
Dave Chinner8f661932014-06-06 15:15:59 +1000641 newfdb = dp->d_ops->db_to_fdb(args->geo, newdb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000643 * If it's not the one we have in hand, read it in.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000645 if (newfdb != curfdb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000647 * If we had one before, drop it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 */
649 if (curbp)
Dave Chinner1d9025e2012-06-22 18:50:14 +1000650 xfs_trans_brelse(tp, curbp);
Dave Chinner20252072012-11-12 22:54:13 +1100651
652 error = xfs_dir2_free_read(tp, dp,
Dave Chinner2998ab12014-06-06 15:07:53 +1000653 xfs_dir2_db_to_da(args->geo,
654 newfdb),
Dave Chinner20252072012-11-12 22:54:13 +1100655 &curbp);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000656 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000658 free = curbp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100659
Dave Chinner01ba43b2013-10-29 22:11:52 +1100660 xfs_dir2_free_hdr_check(dp, curbp, curdb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 }
662 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000663 * Get the index for our entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 */
Dave Chinner8f661932014-06-06 15:15:59 +1000665 fi = dp->d_ops->db_to_fdindex(args->geo, curdb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000667 * If it has room, return it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 */
Dave Chinner24dd0f52013-10-30 13:48:41 -0500669 bests = dp->d_ops->free_bests_p(free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100670 if (unlikely(bests[fi] == cpu_to_be16(NULLDATAOFF))) {
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000671 XFS_ERROR_REPORT("xfs_dir2_leafn_lookup_int",
672 XFS_ERRLEVEL_LOW, mp);
673 if (curfdb != newfdb)
Dave Chinner1d9025e2012-06-22 18:50:14 +1000674 xfs_trans_brelse(tp, curbp);
Dave Chinner24513372014-06-25 14:58:08 +1000675 return -EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 }
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000677 curfdb = newfdb;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100678 if (be16_to_cpu(bests[fi]) >= length)
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000679 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 }
681 }
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000682 /* Didn't find any space */
683 fi = -1;
684out:
Barry Naujok6a178102008-05-21 16:42:05 +1000685 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000686 if (curbp) {
687 /* Giving back a free block. */
688 state->extravalid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 state->extrablk.bp = curbp;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000690 state->extrablk.index = fi;
691 state->extrablk.blkno = curfdb;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100692
693 /*
694 * Important: this magic number is not in the buffer - it's for
695 * buffer type information and therefore only the free/data type
696 * matters here, not whether CRCs are enabled or not.
697 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000698 state->extrablk.magic = XFS_DIR2_FREE_MAGIC;
699 } else {
700 state->extravalid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 }
702 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000703 * Return the index, that will be the insertion point.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 */
705 *indexp = index;
Dave Chinner24513372014-06-25 14:58:08 +1000706 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707}
708
709/*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000710 * Look up a leaf entry in a node-format leaf block.
711 * The extrablk in state a data block.
712 */
713STATIC int
714xfs_dir2_leafn_lookup_for_entry(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000715 struct xfs_buf *bp, /* leaf buffer */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000716 xfs_da_args_t *args, /* operation arguments */
717 int *indexp, /* out: leaf entry index */
718 xfs_da_state_t *state) /* state to fill in */
719{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000720 struct xfs_buf *curbp = NULL; /* current data/free buffer */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000721 xfs_dir2_db_t curdb = -1; /* current data block number */
722 xfs_dir2_data_entry_t *dep; /* data block entry */
723 xfs_inode_t *dp; /* incore directory inode */
724 int error; /* error return value */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000725 int index; /* leaf entry index */
726 xfs_dir2_leaf_t *leaf; /* leaf structure */
727 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
728 xfs_mount_t *mp; /* filesystem mount point */
729 xfs_dir2_db_t newdb; /* new data block number */
730 xfs_trans_t *tp; /* transaction pointer */
Barry Naujok5163f952008-05-21 16:41:01 +1000731 enum xfs_dacmp cmp; /* comparison result */
Dave Chinner24df33b2013-04-12 07:30:21 +1000732 struct xfs_dir2_leaf_entry *ents;
733 struct xfs_dir3_icleaf_hdr leafhdr;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000734
735 dp = args->dp;
736 tp = args->trans;
737 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000738 leaf = bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100739 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +1100740 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000741
Dave Chinner41419562013-10-29 22:11:50 +1100742 xfs_dir3_leaf_check(dp, bp);
Dave Chinner24df33b2013-04-12 07:30:21 +1000743 ASSERT(leafhdr.count > 0);
744
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000745 /*
746 * Look up the hash value in the leaf entries.
747 */
748 index = xfs_dir2_leaf_search_hash(args, bp);
749 /*
750 * Do we have a buffer coming in?
751 */
752 if (state->extravalid) {
753 curbp = state->extrablk.bp;
754 curdb = state->extrablk.blkno;
755 }
756 /*
757 * Loop over leaf entries with the right hash value.
758 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000759 for (lep = &ents[index];
760 index < leafhdr.count && be32_to_cpu(lep->hashval) == args->hashval;
761 lep++, index++) {
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000762 /*
763 * Skip stale leaf entries.
764 */
765 if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
766 continue;
767 /*
768 * Pull the data block number from the entry.
769 */
Dave Chinner30028032014-06-06 15:08:18 +1000770 newdb = xfs_dir2_dataptr_to_db(args->geo,
771 be32_to_cpu(lep->address));
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000772 /*
773 * Not adding a new entry, so we really want to find
774 * the name given to us.
775 *
776 * If it's a different data block, go get it.
777 */
778 if (newdb != curdb) {
779 /*
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000780 * If we had a block before that we aren't saving
781 * for a CI name, drop it
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000782 */
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000783 if (curbp && (args->cmpresult == XFS_CMP_DIFFERENT ||
784 curdb != state->extrablk.blkno))
Dave Chinner1d9025e2012-06-22 18:50:14 +1000785 xfs_trans_brelse(tp, curbp);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000786 /*
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000787 * If needing the block that is saved with a CI match,
788 * use it otherwise read in the new data block.
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000789 */
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000790 if (args->cmpresult != XFS_CMP_DIFFERENT &&
791 newdb == state->extrablk.blkno) {
792 ASSERT(state->extravalid);
793 curbp = state->extrablk.bp;
794 } else {
Dave Chinner33363fe2013-04-03 16:11:22 +1100795 error = xfs_dir3_data_read(tp, dp,
Dave Chinner2998ab12014-06-06 15:07:53 +1000796 xfs_dir2_db_to_da(args->geo,
797 newdb),
Dave Chinnere4813572012-11-12 22:54:14 +1100798 -1, &curbp);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000799 if (error)
800 return error;
801 }
Dave Chinner33363fe2013-04-03 16:11:22 +1100802 xfs_dir3_data_check(dp, curbp);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000803 curdb = newdb;
804 }
805 /*
806 * Point to the data entry.
807 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000808 dep = (xfs_dir2_data_entry_t *)((char *)curbp->b_addr +
Dave Chinner30028032014-06-06 15:08:18 +1000809 xfs_dir2_dataptr_to_off(args->geo,
810 be32_to_cpu(lep->address)));
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000811 /*
Barry Naujok5163f952008-05-21 16:41:01 +1000812 * Compare the entry and if it's an exact match, return
813 * EEXIST immediately. If it's the first case-insensitive
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000814 * match, store the block & inode number and continue looking.
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000815 */
Barry Naujok5163f952008-05-21 16:41:01 +1000816 cmp = mp->m_dirnameops->compname(args, dep->name, dep->namelen);
817 if (cmp != XFS_CMP_DIFFERENT && cmp != args->cmpresult) {
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000818 /* If there is a CI match block, drop it */
819 if (args->cmpresult != XFS_CMP_DIFFERENT &&
820 curdb != state->extrablk.blkno)
Dave Chinner1d9025e2012-06-22 18:50:14 +1000821 xfs_trans_brelse(tp, state->extrablk.bp);
Barry Naujok5163f952008-05-21 16:41:01 +1000822 args->cmpresult = cmp;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000823 args->inumber = be64_to_cpu(dep->inumber);
Dave Chinner9d23fc82013-10-29 22:11:48 +1100824 args->filetype = dp->d_ops->data_get_ftype(dep);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000825 *indexp = index;
826 state->extravalid = 1;
827 state->extrablk.bp = curbp;
828 state->extrablk.blkno = curdb;
829 state->extrablk.index = (int)((char *)dep -
Dave Chinner1d9025e2012-06-22 18:50:14 +1000830 (char *)curbp->b_addr);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000831 state->extrablk.magic = XFS_DIR2_DATA_MAGIC;
Dave Chinner33363fe2013-04-03 16:11:22 +1100832 curbp->b_ops = &xfs_dir3_data_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100833 xfs_trans_buf_set_type(tp, curbp, XFS_BLFT_DIR_DATA_BUF);
Barry Naujok5163f952008-05-21 16:41:01 +1000834 if (cmp == XFS_CMP_EXACT)
Dave Chinner24513372014-06-25 14:58:08 +1000835 return -EEXIST;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000836 }
837 }
Dave Chinner24df33b2013-04-12 07:30:21 +1000838 ASSERT(index == leafhdr.count || (args->op_flags & XFS_DA_OP_OKNOENT));
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000839 if (curbp) {
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000840 if (args->cmpresult == XFS_CMP_DIFFERENT) {
841 /* Giving back last used data block. */
842 state->extravalid = 1;
843 state->extrablk.bp = curbp;
844 state->extrablk.index = -1;
845 state->extrablk.blkno = curdb;
846 state->extrablk.magic = XFS_DIR2_DATA_MAGIC;
Dave Chinner33363fe2013-04-03 16:11:22 +1100847 curbp->b_ops = &xfs_dir3_data_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100848 xfs_trans_buf_set_type(tp, curbp, XFS_BLFT_DIR_DATA_BUF);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000849 } else {
850 /* If the curbp is not the CI match block, drop it */
851 if (state->extrablk.bp != curbp)
Dave Chinner1d9025e2012-06-22 18:50:14 +1000852 xfs_trans_brelse(tp, curbp);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000853 }
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000854 } else {
855 state->extravalid = 0;
856 }
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000857 *indexp = index;
Dave Chinner24513372014-06-25 14:58:08 +1000858 return -ENOENT;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000859}
860
861/*
862 * Look up a leaf entry in a node-format leaf block.
863 * If this is an addname then the extrablk in state is a freespace block,
864 * otherwise it's a data block.
865 */
866int
867xfs_dir2_leafn_lookup_int(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000868 struct xfs_buf *bp, /* leaf buffer */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000869 xfs_da_args_t *args, /* operation arguments */
870 int *indexp, /* out: leaf entry index */
871 xfs_da_state_t *state) /* state to fill in */
872{
Barry Naujok6a178102008-05-21 16:42:05 +1000873 if (args->op_flags & XFS_DA_OP_ADDNAME)
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000874 return xfs_dir2_leafn_lookup_for_addname(bp, args, indexp,
875 state);
876 return xfs_dir2_leafn_lookup_for_entry(bp, args, indexp, state);
877}
878
879/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 * Move count leaf entries from source to destination leaf.
881 * Log entries and headers. Stale entries are preserved.
882 */
883static void
Dave Chinner24df33b2013-04-12 07:30:21 +1000884xfs_dir3_leafn_moveents(
885 xfs_da_args_t *args, /* operation arguments */
886 struct xfs_buf *bp_s, /* source */
887 struct xfs_dir3_icleaf_hdr *shdr,
888 struct xfs_dir2_leaf_entry *sents,
889 int start_s,/* source leaf index */
890 struct xfs_buf *bp_d, /* destination */
891 struct xfs_dir3_icleaf_hdr *dhdr,
892 struct xfs_dir2_leaf_entry *dents,
893 int start_d,/* destination leaf index */
894 int count) /* count of leaves to copy */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895{
Dave Chinner24df33b2013-04-12 07:30:21 +1000896 int stale; /* count stale leaves copied */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000898 trace_xfs_dir2_leafn_moveents(args, start_s, start_d, count);
899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 /*
901 * Silently return if nothing to do.
902 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000903 if (count == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 return;
Dave Chinner24df33b2013-04-12 07:30:21 +1000905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 /*
907 * If the destination index is not the end of the current
908 * destination leaf entries, open up a hole in the destination
909 * to hold the new entries.
910 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000911 if (start_d < dhdr->count) {
912 memmove(&dents[start_d + count], &dents[start_d],
913 (dhdr->count - start_d) * sizeof(xfs_dir2_leaf_entry_t));
Dave Chinnerbc851782014-06-06 15:20:54 +1000914 xfs_dir3_leaf_log_ents(args, bp_d, start_d + count,
Dave Chinner24df33b2013-04-12 07:30:21 +1000915 count + dhdr->count - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 }
917 /*
918 * If the source has stale leaves, count the ones in the copy range
919 * so we can update the header correctly.
920 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000921 if (shdr->stale) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 int i; /* temp leaf index */
923
924 for (i = start_s, stale = 0; i < start_s + count; i++) {
Dave Chinner24df33b2013-04-12 07:30:21 +1000925 if (sents[i].address ==
926 cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 stale++;
928 }
929 } else
930 stale = 0;
931 /*
932 * Copy the leaf entries from source to destination.
933 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000934 memcpy(&dents[start_d], &sents[start_s],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 count * sizeof(xfs_dir2_leaf_entry_t));
Dave Chinnerbc851782014-06-06 15:20:54 +1000936 xfs_dir3_leaf_log_ents(args, bp_d, start_d, start_d + count - 1);
Dave Chinner24df33b2013-04-12 07:30:21 +1000937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 /*
939 * If there are source entries after the ones we copied,
940 * delete the ones we copied by sliding the next ones down.
941 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000942 if (start_s + count < shdr->count) {
943 memmove(&sents[start_s], &sents[start_s + count],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 count * sizeof(xfs_dir2_leaf_entry_t));
Dave Chinnerbc851782014-06-06 15:20:54 +1000945 xfs_dir3_leaf_log_ents(args, bp_s, start_s, start_s + count - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 }
Dave Chinner24df33b2013-04-12 07:30:21 +1000947
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 /*
949 * Update the headers and log them.
950 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000951 shdr->count -= count;
952 shdr->stale -= stale;
953 dhdr->count += count;
954 dhdr->stale += stale;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955}
956
957/*
958 * Determine the sort order of two leaf blocks.
959 * Returns 1 if both are valid and leaf2 should be before leaf1, else 0.
960 */
961int /* sort order */
962xfs_dir2_leafn_order(
Dave Chinner41419562013-10-29 22:11:50 +1100963 struct xfs_inode *dp,
Dave Chinner24df33b2013-04-12 07:30:21 +1000964 struct xfs_buf *leaf1_bp, /* leaf1 buffer */
965 struct xfs_buf *leaf2_bp) /* leaf2 buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966{
Dave Chinner24df33b2013-04-12 07:30:21 +1000967 struct xfs_dir2_leaf *leaf1 = leaf1_bp->b_addr;
968 struct xfs_dir2_leaf *leaf2 = leaf2_bp->b_addr;
969 struct xfs_dir2_leaf_entry *ents1;
970 struct xfs_dir2_leaf_entry *ents2;
971 struct xfs_dir3_icleaf_hdr hdr1;
972 struct xfs_dir3_icleaf_hdr hdr2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Dave Chinner01ba43b2013-10-29 22:11:52 +1100974 dp->d_ops->leaf_hdr_from_disk(&hdr1, leaf1);
975 dp->d_ops->leaf_hdr_from_disk(&hdr2, leaf2);
Dave Chinner41419562013-10-29 22:11:50 +1100976 ents1 = dp->d_ops->leaf_ents_p(leaf1);
977 ents2 = dp->d_ops->leaf_ents_p(leaf2);
Dave Chinner24df33b2013-04-12 07:30:21 +1000978
979 if (hdr1.count > 0 && hdr2.count > 0 &&
980 (be32_to_cpu(ents2[0].hashval) < be32_to_cpu(ents1[0].hashval) ||
981 be32_to_cpu(ents2[hdr2.count - 1].hashval) <
982 be32_to_cpu(ents1[hdr1.count - 1].hashval)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 return 1;
984 return 0;
985}
986
987/*
988 * Rebalance leaf entries between two leaf blocks.
989 * This is actually only called when the second block is new,
990 * though the code deals with the general case.
991 * A new entry will be inserted in one of the blocks, and that
992 * entry is taken into account when balancing.
993 */
994static void
995xfs_dir2_leafn_rebalance(
996 xfs_da_state_t *state, /* btree cursor */
997 xfs_da_state_blk_t *blk1, /* first btree block */
998 xfs_da_state_blk_t *blk2) /* second btree block */
999{
1000 xfs_da_args_t *args; /* operation arguments */
1001 int count; /* count (& direction) leaves */
1002 int isleft; /* new goes in left leaf */
1003 xfs_dir2_leaf_t *leaf1; /* first leaf structure */
1004 xfs_dir2_leaf_t *leaf2; /* second leaf structure */
1005 int mid; /* midpoint leaf index */
Dave Chinner742ae1e2013-04-30 21:39:34 +10001006#if defined(DEBUG) || defined(XFS_WARN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 int oldstale; /* old count of stale leaves */
1008#endif
1009 int oldsum; /* old total leaf count */
1010 int swap; /* swapped leaf blocks */
Dave Chinner24df33b2013-04-12 07:30:21 +10001011 struct xfs_dir2_leaf_entry *ents1;
1012 struct xfs_dir2_leaf_entry *ents2;
1013 struct xfs_dir3_icleaf_hdr hdr1;
1014 struct xfs_dir3_icleaf_hdr hdr2;
Dave Chinner41419562013-10-29 22:11:50 +11001015 struct xfs_inode *dp = state->args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
1017 args = state->args;
1018 /*
1019 * If the block order is wrong, swap the arguments.
1020 */
Dave Chinner41419562013-10-29 22:11:50 +11001021 if ((swap = xfs_dir2_leafn_order(dp, blk1->bp, blk2->bp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 xfs_da_state_blk_t *tmp; /* temp for block swap */
1023
1024 tmp = blk1;
1025 blk1 = blk2;
1026 blk2 = tmp;
1027 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10001028 leaf1 = blk1->bp->b_addr;
1029 leaf2 = blk2->bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001030 dp->d_ops->leaf_hdr_from_disk(&hdr1, leaf1);
1031 dp->d_ops->leaf_hdr_from_disk(&hdr2, leaf2);
Dave Chinner41419562013-10-29 22:11:50 +11001032 ents1 = dp->d_ops->leaf_ents_p(leaf1);
1033 ents2 = dp->d_ops->leaf_ents_p(leaf2);
Dave Chinner24df33b2013-04-12 07:30:21 +10001034
1035 oldsum = hdr1.count + hdr2.count;
Dave Chinner742ae1e2013-04-30 21:39:34 +10001036#if defined(DEBUG) || defined(XFS_WARN)
Dave Chinner24df33b2013-04-12 07:30:21 +10001037 oldstale = hdr1.stale + hdr2.stale;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038#endif
1039 mid = oldsum >> 1;
Dave Chinner24df33b2013-04-12 07:30:21 +10001040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 /*
1042 * If the old leaf count was odd then the new one will be even,
1043 * so we need to divide the new count evenly.
1044 */
1045 if (oldsum & 1) {
1046 xfs_dahash_t midhash; /* middle entry hash value */
1047
Dave Chinner24df33b2013-04-12 07:30:21 +10001048 if (mid >= hdr1.count)
1049 midhash = be32_to_cpu(ents2[mid - hdr1.count].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 else
Dave Chinner24df33b2013-04-12 07:30:21 +10001051 midhash = be32_to_cpu(ents1[mid].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 isleft = args->hashval <= midhash;
1053 }
1054 /*
1055 * If the old count is even then the new count is odd, so there's
1056 * no preferred side for the new entry.
1057 * Pick the left one.
1058 */
1059 else
1060 isleft = 1;
1061 /*
1062 * Calculate moved entry count. Positive means left-to-right,
1063 * negative means right-to-left. Then move the entries.
1064 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001065 count = hdr1.count - mid + (isleft == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 if (count > 0)
Dave Chinner24df33b2013-04-12 07:30:21 +10001067 xfs_dir3_leafn_moveents(args, blk1->bp, &hdr1, ents1,
1068 hdr1.count - count, blk2->bp,
1069 &hdr2, ents2, 0, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 else if (count < 0)
Dave Chinner24df33b2013-04-12 07:30:21 +10001071 xfs_dir3_leafn_moveents(args, blk2->bp, &hdr2, ents2, 0,
1072 blk1->bp, &hdr1, ents1,
1073 hdr1.count, count);
1074
1075 ASSERT(hdr1.count + hdr2.count == oldsum);
1076 ASSERT(hdr1.stale + hdr2.stale == oldstale);
1077
1078 /* log the changes made when moving the entries */
Dave Chinner01ba43b2013-10-29 22:11:52 +11001079 dp->d_ops->leaf_hdr_to_disk(leaf1, &hdr1);
1080 dp->d_ops->leaf_hdr_to_disk(leaf2, &hdr2);
Dave Chinnerbc851782014-06-06 15:20:54 +10001081 xfs_dir3_leaf_log_header(args, blk1->bp);
1082 xfs_dir3_leaf_log_header(args, blk2->bp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001083
Dave Chinner41419562013-10-29 22:11:50 +11001084 xfs_dir3_leaf_check(dp, blk1->bp);
1085 xfs_dir3_leaf_check(dp, blk2->bp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001086
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 /*
1088 * Mark whether we're inserting into the old or new leaf.
1089 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001090 if (hdr1.count < hdr2.count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 state->inleaf = swap;
Dave Chinner24df33b2013-04-12 07:30:21 +10001092 else if (hdr1.count > hdr2.count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 state->inleaf = !swap;
1094 else
Dave Chinner24df33b2013-04-12 07:30:21 +10001095 state->inleaf = swap ^ (blk1->index <= hdr1.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 /*
1097 * Adjust the expected index for insertion.
1098 */
1099 if (!state->inleaf)
Dave Chinner24df33b2013-04-12 07:30:21 +10001100 blk2->index = blk1->index - hdr1.count;
Barry Naujokf9f6dce2008-04-17 16:49:43 +10001101
1102 /*
1103 * Finally sanity check just to make sure we are not returning a
1104 * negative index
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 */
Dave Chinner41419562013-10-29 22:11:50 +11001106 if (blk2->index < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 state->inleaf = 1;
1108 blk2->index = 0;
Dave Chinner41419562013-10-29 22:11:50 +11001109 xfs_alert(dp->i_mount,
Eric Sandeen08e96e12013-10-11 20:59:05 -05001110 "%s: picked the wrong leaf? reverting original leaf: blk1->index %d",
Dave Chinner0b932cc2011-03-07 10:08:35 +11001111 __func__, blk1->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 }
1113}
1114
Dave Chinner20252072012-11-12 22:54:13 +11001115static int
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001116xfs_dir3_data_block_free(
Dave Chinner20252072012-11-12 22:54:13 +11001117 xfs_da_args_t *args,
1118 struct xfs_dir2_data_hdr *hdr,
1119 struct xfs_dir2_free *free,
1120 xfs_dir2_db_t fdb,
1121 int findex,
1122 struct xfs_buf *fbp,
1123 int longest)
1124{
Dave Chinner20252072012-11-12 22:54:13 +11001125 int logfree = 0;
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001126 __be16 *bests;
1127 struct xfs_dir3_icfree_hdr freehdr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001128 struct xfs_inode *dp = args->dp;
Dave Chinner20252072012-11-12 22:54:13 +11001129
Dave Chinner01ba43b2013-10-29 22:11:52 +11001130 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Dave Chinner24dd0f52013-10-30 13:48:41 -05001131 bests = dp->d_ops->free_bests_p(free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001132 if (hdr) {
Dave Chinner20252072012-11-12 22:54:13 +11001133 /*
1134 * Data block is not empty, just set the free entry to the new
1135 * value.
1136 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001137 bests[findex] = cpu_to_be16(longest);
Dave Chinnerbc851782014-06-06 15:20:54 +10001138 xfs_dir2_free_log_bests(args, fbp, findex, findex);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001139 return 0;
1140 }
1141
1142 /* One less used entry in the free table. */
1143 freehdr.nused--;
1144
1145 /*
1146 * If this was the last entry in the table, we can trim the table size
1147 * back. There might be other entries at the end referring to
1148 * non-existent data blocks, get those too.
1149 */
1150 if (findex == freehdr.nvalid - 1) {
1151 int i; /* free entry index */
1152
1153 for (i = findex - 1; i >= 0; i--) {
1154 if (bests[i] != cpu_to_be16(NULLDATAOFF))
1155 break;
1156 }
1157 freehdr.nvalid = i + 1;
1158 logfree = 0;
1159 } else {
1160 /* Not the last entry, just punch it out. */
1161 bests[findex] = cpu_to_be16(NULLDATAOFF);
Dave Chinner20252072012-11-12 22:54:13 +11001162 logfree = 1;
1163 }
1164
Dave Chinner01ba43b2013-10-29 22:11:52 +11001165 dp->d_ops->free_hdr_to_disk(free, &freehdr);
Dave Chinnerbc851782014-06-06 15:20:54 +10001166 xfs_dir2_free_log_header(args, fbp);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001167
1168 /*
1169 * If there are no useful entries left in the block, get rid of the
1170 * block if we can.
1171 */
1172 if (!freehdr.nused) {
1173 int error;
1174
1175 error = xfs_dir2_shrink_inode(args, fdb, fbp);
1176 if (error == 0) {
1177 fbp = NULL;
1178 logfree = 0;
Dave Chinner24513372014-06-25 14:58:08 +10001179 } else if (error != -ENOSPC || args->total != 0)
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001180 return error;
1181 /*
1182 * It's possible to get ENOSPC if there is no
1183 * space reservation. In this case some one
1184 * else will eventually get rid of this block.
1185 */
1186 }
1187
Dave Chinner20252072012-11-12 22:54:13 +11001188 /* Log the free entry that changed, unless we got rid of it. */
1189 if (logfree)
Dave Chinnerbc851782014-06-06 15:20:54 +10001190 xfs_dir2_free_log_bests(args, fbp, findex, findex);
Dave Chinner20252072012-11-12 22:54:13 +11001191 return 0;
1192}
1193
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194/*
1195 * Remove an entry from a node directory.
1196 * This removes the leaf entry and the data entry,
1197 * and updates the free block if necessary.
1198 */
1199static int /* error */
1200xfs_dir2_leafn_remove(
1201 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001202 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 int index, /* leaf entry index */
1204 xfs_da_state_blk_t *dblk, /* data block */
1205 int *rval) /* resulting block needs join */
1206{
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001207 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 xfs_dir2_db_t db; /* data block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001209 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 xfs_dir2_data_entry_t *dep; /* data block entry */
1211 xfs_inode_t *dp; /* incore directory inode */
1212 xfs_dir2_leaf_t *leaf; /* leaf structure */
1213 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1214 int longest; /* longest data free entry */
1215 int off; /* data block entry offset */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 int needlog; /* need to log data header */
1217 int needscan; /* need to rescan data frees */
1218 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner33363fe2013-04-03 16:11:22 +11001219 struct xfs_dir2_data_free *bf; /* bestfree table */
Dave Chinner24df33b2013-04-12 07:30:21 +10001220 struct xfs_dir3_icleaf_hdr leafhdr;
1221 struct xfs_dir2_leaf_entry *ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001223 trace_xfs_dir2_leafn_remove(args, index);
1224
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 dp = args->dp;
1226 tp = args->trans;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001227 leaf = bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001228 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +11001229 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001230
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 /*
1232 * Point to the entry we're removing.
1233 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001234 lep = &ents[index];
1235
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 /*
1237 * Extract the data block and offset from the entry.
1238 */
Dave Chinner30028032014-06-06 15:08:18 +10001239 db = xfs_dir2_dataptr_to_db(args->geo, be32_to_cpu(lep->address));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 ASSERT(dblk->blkno == db);
Dave Chinner30028032014-06-06 15:08:18 +10001241 off = xfs_dir2_dataptr_to_off(args->geo, be32_to_cpu(lep->address));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 ASSERT(dblk->index == off);
Dave Chinner24df33b2013-04-12 07:30:21 +10001243
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 /*
1245 * Kill the leaf entry by marking it stale.
1246 * Log the leaf block changes.
1247 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001248 leafhdr.stale++;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001249 dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr);
Dave Chinnerbc851782014-06-06 15:20:54 +10001250 xfs_dir3_leaf_log_header(args, bp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001251
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001252 lep->address = cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
Dave Chinnerbc851782014-06-06 15:20:54 +10001253 xfs_dir3_leaf_log_ents(args, bp, index, index);
Dave Chinner24df33b2013-04-12 07:30:21 +10001254
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 /*
1256 * Make the data entry free. Keep track of the longest freespace
1257 * in the data block in case it changes.
1258 */
1259 dbp = dblk->bp;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001260 hdr = dbp->b_addr;
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001261 dep = (xfs_dir2_data_entry_t *)((char *)hdr + off);
Dave Chinner2ca98772013-10-29 22:11:49 +11001262 bf = dp->d_ops->data_bestfree_p(hdr);
Dave Chinner33363fe2013-04-03 16:11:22 +11001263 longest = be16_to_cpu(bf[0].length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 needlog = needscan = 0;
Dave Chinnerbc851782014-06-06 15:20:54 +10001265 xfs_dir2_data_make_free(args, dbp, off,
Dave Chinner9d23fc82013-10-29 22:11:48 +11001266 dp->d_ops->data_entsize(dep->namelen), &needlog, &needscan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 /*
1268 * Rescan the data block freespaces for bestfree.
1269 * Log the data block header if needed.
1270 */
1271 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +11001272 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 if (needlog)
Dave Chinnerbc851782014-06-06 15:20:54 +10001274 xfs_dir2_data_log_header(args, dbp);
Dave Chinner33363fe2013-04-03 16:11:22 +11001275 xfs_dir3_data_check(dp, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 /*
1277 * If the longest data block freespace changes, need to update
1278 * the corresponding freeblock entry.
1279 */
Dave Chinner33363fe2013-04-03 16:11:22 +11001280 if (longest < be16_to_cpu(bf[0].length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 int error; /* error return value */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001282 struct xfs_buf *fbp; /* freeblock buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 xfs_dir2_db_t fdb; /* freeblock block number */
1284 int findex; /* index in freeblock entries */
1285 xfs_dir2_free_t *free; /* freeblock structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
1287 /*
1288 * Convert the data block number to a free block,
1289 * read in the free block.
1290 */
Dave Chinner8f661932014-06-06 15:15:59 +10001291 fdb = dp->d_ops->db_to_fdb(args->geo, db);
Dave Chinner2998ab12014-06-06 15:07:53 +10001292 error = xfs_dir2_free_read(tp, dp,
1293 xfs_dir2_db_to_da(args->geo, fdb),
Dave Chinner20252072012-11-12 22:54:13 +11001294 &fbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001295 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001297 free = fbp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001298#ifdef DEBUG
1299 {
1300 struct xfs_dir3_icfree_hdr freehdr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001301 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Dave Chinner8f661932014-06-06 15:15:59 +10001302 ASSERT(freehdr.firstdb == dp->d_ops->free_max_bests(args->geo) *
Dave Chinner30028032014-06-06 15:08:18 +10001303 (fdb - xfs_dir2_byte_to_db(args->geo,
1304 XFS_DIR2_FREE_OFFSET)));
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001305 }
1306#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 /*
1308 * Calculate which entry we need to fix.
1309 */
Dave Chinner8f661932014-06-06 15:15:59 +10001310 findex = dp->d_ops->db_to_fdindex(args->geo, db);
Dave Chinner33363fe2013-04-03 16:11:22 +11001311 longest = be16_to_cpu(bf[0].length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 /*
1313 * If the data block is now empty we can get rid of it
1314 * (usually).
1315 */
Dave Chinner8f661932014-06-06 15:15:59 +10001316 if (longest == args->geo->blksize -
Dave Chinner1c9a5b22013-10-30 09:15:02 +11001317 dp->d_ops->data_entry_offset) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 /*
1319 * Try to punch out the data block.
1320 */
1321 error = xfs_dir2_shrink_inode(args, db, dbp);
1322 if (error == 0) {
1323 dblk->bp = NULL;
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001324 hdr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 }
1326 /*
1327 * We can get ENOSPC if there's no space reservation.
1328 * In this case just drop the buffer and some one else
1329 * will eventually get rid of the empty block.
1330 */
Dave Chinner24513372014-06-25 14:58:08 +10001331 else if (!(error == -ENOSPC && args->total == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 return error;
1333 }
1334 /*
1335 * If we got rid of the data block, we can eliminate that entry
1336 * in the free block.
1337 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001338 error = xfs_dir3_data_block_free(args, hdr, free,
Dave Chinner20252072012-11-12 22:54:13 +11001339 fdb, findex, fbp, longest);
1340 if (error)
1341 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 }
Dave Chinner20252072012-11-12 22:54:13 +11001343
Dave Chinner41419562013-10-29 22:11:50 +11001344 xfs_dir3_leaf_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 /*
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001346 * Return indication of whether this leaf block is empty enough
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 * to justify trying to join it with a neighbor.
1348 */
Dave Chinner1c9a5b22013-10-30 09:15:02 +11001349 *rval = (dp->d_ops->leaf_hdr_size +
Dave Chinner24df33b2013-04-12 07:30:21 +10001350 (uint)sizeof(ents[0]) * (leafhdr.count - leafhdr.stale)) <
Dave Chinnered358c02014-06-06 15:18:10 +10001351 args->geo->magicpct;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 return 0;
1353}
1354
1355/*
1356 * Split the leaf entries in the old block into old and new blocks.
1357 */
1358int /* error */
1359xfs_dir2_leafn_split(
1360 xfs_da_state_t *state, /* btree cursor */
1361 xfs_da_state_blk_t *oldblk, /* original block */
1362 xfs_da_state_blk_t *newblk) /* newly created block */
1363{
1364 xfs_da_args_t *args; /* operation arguments */
1365 xfs_dablk_t blkno; /* new leaf block number */
1366 int error; /* error return value */
Dave Chinner41419562013-10-29 22:11:50 +11001367 struct xfs_inode *dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
1369 /*
1370 * Allocate space for a new leaf node.
1371 */
1372 args = state->args;
Dave Chinner41419562013-10-29 22:11:50 +11001373 dp = args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 ASSERT(oldblk->magic == XFS_DIR2_LEAFN_MAGIC);
1375 error = xfs_da_grow_inode(args, &blkno);
1376 if (error) {
1377 return error;
1378 }
1379 /*
1380 * Initialize the new leaf block.
1381 */
Dave Chinner2998ab12014-06-06 15:07:53 +10001382 error = xfs_dir3_leaf_get_buf(args, xfs_dir2_da_to_db(args->geo, blkno),
Dave Chinner24df33b2013-04-12 07:30:21 +10001383 &newblk->bp, XFS_DIR2_LEAFN_MAGIC);
1384 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 return error;
Dave Chinner24df33b2013-04-12 07:30:21 +10001386
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 newblk->blkno = blkno;
1388 newblk->magic = XFS_DIR2_LEAFN_MAGIC;
1389 /*
1390 * Rebalance the entries across the two leaves, link the new
1391 * block into the leaves.
1392 */
1393 xfs_dir2_leafn_rebalance(state, oldblk, newblk);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001394 error = xfs_da3_blk_link(state, oldblk, newblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 if (error) {
1396 return error;
1397 }
1398 /*
1399 * Insert the new entry in the correct block.
1400 */
1401 if (state->inleaf)
1402 error = xfs_dir2_leafn_add(oldblk->bp, args, oldblk->index);
1403 else
1404 error = xfs_dir2_leafn_add(newblk->bp, args, newblk->index);
1405 /*
1406 * Update last hashval in each block since we added the name.
1407 */
Dave Chinner41419562013-10-29 22:11:50 +11001408 oldblk->hashval = xfs_dir2_leafn_lasthash(dp, oldblk->bp, NULL);
1409 newblk->hashval = xfs_dir2_leafn_lasthash(dp, newblk->bp, NULL);
1410 xfs_dir3_leaf_check(dp, oldblk->bp);
1411 xfs_dir3_leaf_check(dp, newblk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 return error;
1413}
1414
1415/*
1416 * Check a leaf block and its neighbors to see if the block should be
1417 * collapsed into one or the other neighbor. Always keep the block
1418 * with the smaller block number.
1419 * If the current block is over 50% full, don't try to join it, return 0.
1420 * If the block is empty, fill in the state structure and return 2.
1421 * If it can be collapsed, fill in the state structure and return 1.
1422 * If nothing can be done, return 0.
1423 */
1424int /* error */
1425xfs_dir2_leafn_toosmall(
1426 xfs_da_state_t *state, /* btree cursor */
1427 int *action) /* resulting action to take */
1428{
1429 xfs_da_state_blk_t *blk; /* leaf block */
1430 xfs_dablk_t blkno; /* leaf block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001431 struct xfs_buf *bp; /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 int bytes; /* bytes in use */
1433 int count; /* leaf live entry count */
1434 int error; /* error return value */
1435 int forward; /* sibling block direction */
1436 int i; /* sibling counter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 xfs_dir2_leaf_t *leaf; /* leaf structure */
1438 int rval; /* result from path_shift */
Dave Chinner24df33b2013-04-12 07:30:21 +10001439 struct xfs_dir3_icleaf_hdr leafhdr;
1440 struct xfs_dir2_leaf_entry *ents;
Dave Chinner41419562013-10-29 22:11:50 +11001441 struct xfs_inode *dp = state->args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
1443 /*
1444 * Check for the degenerate case of the block being over 50% full.
1445 * If so, it's not worth even looking to see if we might be able
1446 * to coalesce with a sibling.
1447 */
1448 blk = &state->path.blk[state->path.active - 1];
Dave Chinner24df33b2013-04-12 07:30:21 +10001449 leaf = blk->bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001450 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +11001451 ents = dp->d_ops->leaf_ents_p(leaf);
1452 xfs_dir3_leaf_check(dp, blk->bp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001453
1454 count = leafhdr.count - leafhdr.stale;
Dave Chinner1c9a5b22013-10-30 09:15:02 +11001455 bytes = dp->d_ops->leaf_hdr_size + count * sizeof(ents[0]);
Dave Chinnerb2a21e72014-06-06 15:22:04 +10001456 if (bytes > (state->args->geo->blksize >> 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 /*
1458 * Blk over 50%, don't try to join.
1459 */
1460 *action = 0;
1461 return 0;
1462 }
1463 /*
1464 * Check for the degenerate case of the block being empty.
1465 * If the block is empty, we'll simply delete it, no need to
1466 * coalesce it with a sibling block. We choose (arbitrarily)
1467 * to merge with the forward block unless it is NULL.
1468 */
1469 if (count == 0) {
1470 /*
1471 * Make altpath point to the block we want to keep and
1472 * path point to the block we want to drop (this one).
1473 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001474 forward = (leafhdr.forw != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 memcpy(&state->altpath, &state->path, sizeof(state->path));
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001476 error = xfs_da3_path_shift(state, &state->altpath, forward, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 &rval);
1478 if (error)
1479 return error;
1480 *action = rval ? 2 : 0;
1481 return 0;
1482 }
1483 /*
1484 * Examine each sibling block to see if we can coalesce with
1485 * at least 25% free space to spare. We need to figure out
1486 * whether to merge with the forward or the backward block.
1487 * We prefer coalescing with the lower numbered sibling so as
1488 * to shrink a directory over time.
1489 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001490 forward = leafhdr.forw < leafhdr.back;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 for (i = 0, bp = NULL; i < 2; forward = !forward, i++) {
Dave Chinner24df33b2013-04-12 07:30:21 +10001492 struct xfs_dir3_icleaf_hdr hdr2;
1493
1494 blkno = forward ? leafhdr.forw : leafhdr.back;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 if (blkno == 0)
1496 continue;
1497 /*
1498 * Read the sibling leaf block.
1499 */
Dave Chinner41419562013-10-29 22:11:50 +11001500 error = xfs_dir3_leafn_read(state->args->trans, dp,
Dave Chinnere6f76672012-11-12 22:54:15 +11001501 blkno, -1, &bp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001502 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 return error;
Dave Chinnere6f76672012-11-12 22:54:15 +11001504
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 /*
1506 * Count bytes in the two blocks combined.
1507 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001508 count = leafhdr.count - leafhdr.stale;
Dave Chinnerb2a21e72014-06-06 15:22:04 +10001509 bytes = state->args->geo->blksize -
1510 (state->args->geo->blksize >> 2);
Dave Chinner24df33b2013-04-12 07:30:21 +10001511
Dave Chinner1d9025e2012-06-22 18:50:14 +10001512 leaf = bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001513 dp->d_ops->leaf_hdr_from_disk(&hdr2, leaf);
Dave Chinner41419562013-10-29 22:11:50 +11001514 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001515 count += hdr2.count - hdr2.stale;
1516 bytes -= count * sizeof(ents[0]);
1517
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 /*
1519 * Fits with at least 25% to spare.
1520 */
1521 if (bytes >= 0)
1522 break;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001523 xfs_trans_brelse(state->args->trans, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 }
1525 /*
1526 * Didn't like either block, give up.
1527 */
1528 if (i >= 2) {
1529 *action = 0;
1530 return 0;
1531 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10001532
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 /*
1534 * Make altpath point to the block we want to keep (the lower
1535 * numbered block) and path point to the block we want to drop.
1536 */
1537 memcpy(&state->altpath, &state->path, sizeof(state->path));
1538 if (blkno < blk->blkno)
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001539 error = xfs_da3_path_shift(state, &state->altpath, forward, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 &rval);
1541 else
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001542 error = xfs_da3_path_shift(state, &state->path, forward, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 &rval);
1544 if (error) {
1545 return error;
1546 }
1547 *action = rval ? 0 : 1;
1548 return 0;
1549}
1550
1551/*
1552 * Move all the leaf entries from drop_blk to save_blk.
1553 * This is done as part of a join operation.
1554 */
1555void
1556xfs_dir2_leafn_unbalance(
1557 xfs_da_state_t *state, /* cursor */
1558 xfs_da_state_blk_t *drop_blk, /* dead block */
1559 xfs_da_state_blk_t *save_blk) /* surviving block */
1560{
1561 xfs_da_args_t *args; /* operation arguments */
1562 xfs_dir2_leaf_t *drop_leaf; /* dead leaf structure */
1563 xfs_dir2_leaf_t *save_leaf; /* surviving leaf structure */
Dave Chinner24df33b2013-04-12 07:30:21 +10001564 struct xfs_dir3_icleaf_hdr savehdr;
1565 struct xfs_dir3_icleaf_hdr drophdr;
1566 struct xfs_dir2_leaf_entry *sents;
1567 struct xfs_dir2_leaf_entry *dents;
Dave Chinner41419562013-10-29 22:11:50 +11001568 struct xfs_inode *dp = state->args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569
1570 args = state->args;
1571 ASSERT(drop_blk->magic == XFS_DIR2_LEAFN_MAGIC);
1572 ASSERT(save_blk->magic == XFS_DIR2_LEAFN_MAGIC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001573 drop_leaf = drop_blk->bp->b_addr;
1574 save_leaf = save_blk->bp->b_addr;
Dave Chinner24df33b2013-04-12 07:30:21 +10001575
Dave Chinner01ba43b2013-10-29 22:11:52 +11001576 dp->d_ops->leaf_hdr_from_disk(&savehdr, save_leaf);
1577 dp->d_ops->leaf_hdr_from_disk(&drophdr, drop_leaf);
1578 sents = dp->d_ops->leaf_ents_p(save_leaf);
1579 dents = dp->d_ops->leaf_ents_p(drop_leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001580
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 /*
1582 * If there are any stale leaf entries, take this opportunity
1583 * to purge them.
1584 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001585 if (drophdr.stale)
1586 xfs_dir3_leaf_compact(args, &drophdr, drop_blk->bp);
1587 if (savehdr.stale)
1588 xfs_dir3_leaf_compact(args, &savehdr, save_blk->bp);
1589
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 /*
1591 * Move the entries from drop to the appropriate end of save.
1592 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001593 drop_blk->hashval = be32_to_cpu(dents[drophdr.count - 1].hashval);
Dave Chinner41419562013-10-29 22:11:50 +11001594 if (xfs_dir2_leafn_order(dp, save_blk->bp, drop_blk->bp))
Dave Chinner24df33b2013-04-12 07:30:21 +10001595 xfs_dir3_leafn_moveents(args, drop_blk->bp, &drophdr, dents, 0,
1596 save_blk->bp, &savehdr, sents, 0,
1597 drophdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 else
Dave Chinner24df33b2013-04-12 07:30:21 +10001599 xfs_dir3_leafn_moveents(args, drop_blk->bp, &drophdr, dents, 0,
1600 save_blk->bp, &savehdr, sents,
1601 savehdr.count, drophdr.count);
1602 save_blk->hashval = be32_to_cpu(sents[savehdr.count - 1].hashval);
1603
1604 /* log the changes made when moving the entries */
Dave Chinner01ba43b2013-10-29 22:11:52 +11001605 dp->d_ops->leaf_hdr_to_disk(save_leaf, &savehdr);
1606 dp->d_ops->leaf_hdr_to_disk(drop_leaf, &drophdr);
Dave Chinnerbc851782014-06-06 15:20:54 +10001607 xfs_dir3_leaf_log_header(args, save_blk->bp);
1608 xfs_dir3_leaf_log_header(args, drop_blk->bp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001609
Dave Chinner41419562013-10-29 22:11:50 +11001610 xfs_dir3_leaf_check(dp, save_blk->bp);
1611 xfs_dir3_leaf_check(dp, drop_blk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612}
1613
1614/*
1615 * Top-level node form directory addname routine.
1616 */
1617int /* error */
1618xfs_dir2_node_addname(
1619 xfs_da_args_t *args) /* operation arguments */
1620{
1621 xfs_da_state_blk_t *blk; /* leaf block for insert */
1622 int error; /* error return value */
1623 int rval; /* sub-return value */
1624 xfs_da_state_t *state; /* btree cursor */
1625
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001626 trace_xfs_dir2_node_addname(args);
1627
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 /*
1629 * Allocate and initialize the state (btree cursor).
1630 */
1631 state = xfs_da_state_alloc();
1632 state->args = args;
1633 state->mp = args->dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 /*
1635 * Look up the name. We're not supposed to find it, but
1636 * this gives us the insertion point.
1637 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001638 error = xfs_da3_node_lookup_int(state, &rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 if (error)
1640 rval = error;
Dave Chinner24513372014-06-25 14:58:08 +10001641 if (rval != -ENOENT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 goto done;
1643 }
1644 /*
1645 * Add the data entry to a data block.
1646 * Extravalid is set to a freeblock found by lookup.
1647 */
1648 rval = xfs_dir2_node_addname_int(args,
1649 state->extravalid ? &state->extrablk : NULL);
1650 if (rval) {
1651 goto done;
1652 }
1653 blk = &state->path.blk[state->path.active - 1];
1654 ASSERT(blk->magic == XFS_DIR2_LEAFN_MAGIC);
1655 /*
1656 * Add the new leaf entry.
1657 */
1658 rval = xfs_dir2_leafn_add(blk->bp, args, blk->index);
1659 if (rval == 0) {
1660 /*
1661 * It worked, fix the hash values up the btree.
1662 */
Barry Naujok6a178102008-05-21 16:42:05 +10001663 if (!(args->op_flags & XFS_DA_OP_JUSTCHECK))
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001664 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 } else {
1666 /*
1667 * It didn't work, we need to split the leaf block.
1668 */
1669 if (args->total == 0) {
Dave Chinner24513372014-06-25 14:58:08 +10001670 ASSERT(rval == -ENOSPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 goto done;
1672 }
1673 /*
1674 * Split the leaf block and insert the new entry.
1675 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001676 rval = xfs_da3_split(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 }
1678done:
1679 xfs_da_state_free(state);
1680 return rval;
1681}
1682
1683/*
1684 * Add the data entry for a node-format directory name addition.
1685 * The leaf entry is added in xfs_dir2_leafn_add.
1686 * We may enter with a freespace block that the lookup found.
1687 */
1688static int /* error */
1689xfs_dir2_node_addname_int(
1690 xfs_da_args_t *args, /* operation arguments */
1691 xfs_da_state_blk_t *fblk) /* optional freespace block */
1692{
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001693 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 xfs_dir2_db_t dbno; /* data block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001695 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 xfs_dir2_data_entry_t *dep; /* data entry pointer */
1697 xfs_inode_t *dp; /* incore directory inode */
1698 xfs_dir2_data_unused_t *dup; /* data unused entry pointer */
1699 int error; /* error return value */
1700 xfs_dir2_db_t fbno; /* freespace block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001701 struct xfs_buf *fbp; /* freespace buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 int findex; /* freespace entry index */
1703 xfs_dir2_free_t *free=NULL; /* freespace block structure */
1704 xfs_dir2_db_t ifbno; /* initial freespace block no */
1705 xfs_dir2_db_t lastfbno=0; /* highest freespace block no */
1706 int length; /* length of the new entry */
1707 int logfree; /* need to log free entry */
1708 xfs_mount_t *mp; /* filesystem mount point */
1709 int needlog; /* need to log data header */
1710 int needscan; /* need to rescan data frees */
Nathan Scott3d693c62006-03-17 17:28:27 +11001711 __be16 *tagp; /* data entry tag pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 xfs_trans_t *tp; /* transaction pointer */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001713 __be16 *bests;
1714 struct xfs_dir3_icfree_hdr freehdr;
Dave Chinner33363fe2013-04-03 16:11:22 +11001715 struct xfs_dir2_data_free *bf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
1717 dp = args->dp;
1718 mp = dp->i_mount;
1719 tp = args->trans;
Dave Chinner9d23fc82013-10-29 22:11:48 +11001720 length = dp->d_ops->data_entsize(args->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 /*
1722 * If we came in with a freespace block that means that lookup
1723 * found an entry with our hash value. This is the freespace
1724 * block for that data entry.
1725 */
1726 if (fblk) {
1727 fbp = fblk->bp;
1728 /*
1729 * Remember initial freespace block number.
1730 */
1731 ifbno = fblk->blkno;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001732 free = fbp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 findex = fblk->index;
Dave Chinner24dd0f52013-10-30 13:48:41 -05001734 bests = dp->d_ops->free_bests_p(free);
Dave Chinner01ba43b2013-10-29 22:11:52 +11001735 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001736
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 /*
1738 * This means the free entry showed that the data block had
1739 * space for our entry, so we remembered it.
1740 * Use that data block.
1741 */
1742 if (findex >= 0) {
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001743 ASSERT(findex < freehdr.nvalid);
1744 ASSERT(be16_to_cpu(bests[findex]) != NULLDATAOFF);
1745 ASSERT(be16_to_cpu(bests[findex]) >= length);
1746 dbno = freehdr.firstdb + findex;
1747 } else {
1748 /*
1749 * The data block looked at didn't have enough room.
1750 * We'll start at the beginning of the freespace entries.
1751 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 dbno = -1;
1753 findex = 0;
1754 }
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001755 } else {
1756 /*
1757 * Didn't come in with a freespace block, so no data block.
1758 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 ifbno = dbno = -1;
1760 fbp = NULL;
1761 findex = 0;
1762 }
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001763
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 /*
1765 * If we don't have a data block yet, we're going to scan the
1766 * freespace blocks looking for one. Figure out what the
1767 * highest freespace block number is.
1768 */
1769 if (dbno == -1) {
1770 xfs_fileoff_t fo; /* freespace block number */
1771
Eric Sandeen7fb2cd42014-04-14 18:58:05 +10001772 if ((error = xfs_bmap_last_offset(dp, &fo, XFS_DATA_FORK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 return error;
Dave Chinner2998ab12014-06-06 15:07:53 +10001774 lastfbno = xfs_dir2_da_to_db(args->geo, (xfs_dablk_t)fo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 fbno = ifbno;
1776 }
1777 /*
1778 * While we haven't identified a data block, search the freeblock
1779 * data for a good data block. If we find a null freeblock entry,
1780 * indicating a hole in the data blocks, remember that.
1781 */
1782 while (dbno == -1) {
1783 /*
1784 * If we don't have a freeblock in hand, get the next one.
1785 */
1786 if (fbp == NULL) {
1787 /*
1788 * Happens the first time through unless lookup gave
1789 * us a freespace block to start with.
1790 */
1791 if (++fbno == 0)
Dave Chinner30028032014-06-06 15:08:18 +10001792 fbno = xfs_dir2_byte_to_db(args->geo,
Dave Chinner8c44a282014-06-06 15:04:41 +10001793 XFS_DIR2_FREE_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 /*
1795 * If it's ifbno we already looked at it.
1796 */
1797 if (fbno == ifbno)
1798 fbno++;
1799 /*
1800 * If it's off the end we're done.
1801 */
1802 if (fbno >= lastfbno)
1803 break;
1804 /*
1805 * Read the block. There can be holes in the
1806 * freespace blocks, so this might not succeed.
1807 * This should be really rare, so there's no reason
1808 * to avoid it.
1809 */
Dave Chinner20252072012-11-12 22:54:13 +11001810 error = xfs_dir2_free_try_read(tp, dp,
Dave Chinner2998ab12014-06-06 15:07:53 +10001811 xfs_dir2_db_to_da(args->geo, fbno),
1812 &fbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001813 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 return error;
Dave Chinner4bb20a82012-11-12 22:54:10 +11001815 if (!fbp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 continue;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001817 free = fbp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 findex = 0;
1819 }
1820 /*
1821 * Look at the current free entry. Is it good enough?
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001822 *
1823 * The bests initialisation should be where the bufer is read in
1824 * the above branch. But gcc is too stupid to realise that bests
1825 * and the freehdr are actually initialised if they are placed
1826 * there, so we have to do it here to avoid warnings. Blech.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 */
Dave Chinner24dd0f52013-10-30 13:48:41 -05001828 bests = dp->d_ops->free_bests_p(free);
Dave Chinner01ba43b2013-10-29 22:11:52 +11001829 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001830 if (be16_to_cpu(bests[findex]) != NULLDATAOFF &&
1831 be16_to_cpu(bests[findex]) >= length)
1832 dbno = freehdr.firstdb + findex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 else {
1834 /*
1835 * Are we done with the freeblock?
1836 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001837 if (++findex == freehdr.nvalid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 /*
1839 * Drop the block.
1840 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001841 xfs_trans_brelse(tp, fbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 fbp = NULL;
1843 if (fblk && fblk->bp)
1844 fblk->bp = NULL;
1845 }
1846 }
1847 }
1848 /*
1849 * If we don't have a data block, we need to allocate one and make
1850 * the freespace entries refer to it.
1851 */
1852 if (unlikely(dbno == -1)) {
1853 /*
1854 * Not allowed to allocate, return failure.
1855 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001856 if ((args->op_flags & XFS_DA_OP_JUSTCHECK) || args->total == 0)
Dave Chinner24513372014-06-25 14:58:08 +10001857 return -ENOSPC;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001858
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 /*
1860 * Allocate and initialize the new data block.
1861 */
1862 if (unlikely((error = xfs_dir2_grow_inode(args,
1863 XFS_DIR2_DATA_SPACE,
1864 &dbno)) ||
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11001865 (error = xfs_dir3_data_init(args, dbno, &dbp))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001867
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 /*
1869 * If (somehow) we have a freespace block, get rid of it.
1870 */
1871 if (fbp)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001872 xfs_trans_brelse(tp, fbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 if (fblk && fblk->bp)
1874 fblk->bp = NULL;
1875
1876 /*
1877 * Get the freespace block corresponding to the data block
1878 * that was just allocated.
1879 */
Dave Chinner8f661932014-06-06 15:15:59 +10001880 fbno = dp->d_ops->db_to_fdb(args->geo, dbno);
Dave Chinner20252072012-11-12 22:54:13 +11001881 error = xfs_dir2_free_try_read(tp, dp,
Dave Chinner2998ab12014-06-06 15:07:53 +10001882 xfs_dir2_db_to_da(args->geo, fbno),
1883 &fbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001884 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001886
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 /*
1888 * If there wasn't a freespace block, the read will
1889 * return a NULL fbp. Allocate and initialize a new one.
1890 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001891 if (!fbp) {
1892 error = xfs_dir2_grow_inode(args, XFS_DIR2_FREE_SPACE,
1893 &fbno);
1894 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
Dave Chinner8f661932014-06-06 15:15:59 +10001897 if (dp->d_ops->db_to_fdb(args->geo, dbno) != fbno) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001898 xfs_alert(mp,
Joe Perchesf41febd2015-07-29 11:52:04 +10001899"%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 +11001900 __func__, (unsigned long long)dp->i_ino,
Dave Chinner8f661932014-06-06 15:15:59 +10001901 (long long)dp->d_ops->db_to_fdb(
1902 args->geo, dbno),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 (long long)dbno, (long long)fbno,
1904 (unsigned long long)ifbno, lastfbno);
1905 if (fblk) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001906 xfs_alert(mp,
1907 " fblk 0x%p blkno %llu index %d magic 0x%x",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 fblk,
1909 (unsigned long long)fblk->blkno,
1910 fblk->index,
1911 fblk->magic);
1912 } else {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001913 xfs_alert(mp, " ... fblk is NULL");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 }
1915 XFS_ERROR_REPORT("xfs_dir2_node_addname_int",
1916 XFS_ERRLEVEL_LOW, mp);
Dave Chinner24513372014-06-25 14:58:08 +10001917 return -EFSCORRUPTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 }
1919
1920 /*
1921 * Get a buffer for the new block.
1922 */
Dave Chinner2998ab12014-06-06 15:07:53 +10001923 error = xfs_dir3_free_get_buf(args, fbno, &fbp);
Dave Chinnerb0f539d2012-11-14 17:53:49 +11001924 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 return error;
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001926 free = fbp->b_addr;
Dave Chinner24dd0f52013-10-30 13:48:41 -05001927 bests = dp->d_ops->free_bests_p(free);
Dave Chinner01ba43b2013-10-29 22:11:52 +11001928 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929
1930 /*
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001931 * Remember the first slot as our empty slot.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 */
Dave Chinner8c44a282014-06-06 15:04:41 +10001933 freehdr.firstdb =
Dave Chinner30028032014-06-06 15:08:18 +10001934 (fbno - xfs_dir2_byte_to_db(args->geo,
Dave Chinner8c44a282014-06-06 15:04:41 +10001935 XFS_DIR2_FREE_OFFSET)) *
Dave Chinner8f661932014-06-06 15:15:59 +10001936 dp->d_ops->free_max_bests(args->geo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 } else {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001938 free = fbp->b_addr;
Dave Chinner24dd0f52013-10-30 13:48:41 -05001939 bests = dp->d_ops->free_bests_p(free);
Dave Chinner01ba43b2013-10-29 22:11:52 +11001940 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 }
1942
1943 /*
1944 * Set the freespace block index from the data block number.
1945 */
Dave Chinner8f661932014-06-06 15:15:59 +10001946 findex = dp->d_ops->db_to_fdindex(args->geo, dbno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 /*
1948 * If it's after the end of the current entries in the
1949 * freespace block, extend that table.
1950 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001951 if (findex >= freehdr.nvalid) {
Dave Chinner8f661932014-06-06 15:15:59 +10001952 ASSERT(findex < dp->d_ops->free_max_bests(args->geo));
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001953 freehdr.nvalid = findex + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 /*
1955 * Tag new entry so nused will go up.
1956 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001957 bests[findex] = cpu_to_be16(NULLDATAOFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 }
1959 /*
1960 * If this entry was for an empty data block
1961 * (this should always be true) then update the header.
1962 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001963 if (bests[findex] == cpu_to_be16(NULLDATAOFF)) {
1964 freehdr.nused++;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001965 dp->d_ops->free_hdr_to_disk(fbp->b_addr, &freehdr);
Dave Chinnerbc851782014-06-06 15:20:54 +10001966 xfs_dir2_free_log_header(args, fbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 }
1968 /*
1969 * Update the real value in the table.
1970 * We haven't allocated the data entry yet so this will
1971 * change again.
1972 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001973 hdr = dbp->b_addr;
Dave Chinner2ca98772013-10-29 22:11:49 +11001974 bf = dp->d_ops->data_bestfree_p(hdr);
Dave Chinner33363fe2013-04-03 16:11:22 +11001975 bests[findex] = bf[0].length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 logfree = 1;
1977 }
1978 /*
1979 * We had a data block so we don't have to make a new one.
1980 */
1981 else {
1982 /*
1983 * If just checking, we succeeded.
1984 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001985 if (args->op_flags & XFS_DA_OP_JUSTCHECK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 return 0;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001987
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 /*
1989 * Read the data block in.
1990 */
Dave Chinner2998ab12014-06-06 15:07:53 +10001991 error = xfs_dir3_data_read(tp, dp,
1992 xfs_dir2_db_to_da(args->geo, dbno),
Dave Chinnere4813572012-11-12 22:54:14 +11001993 -1, &dbp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001994 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001996 hdr = dbp->b_addr;
Dave Chinner2ca98772013-10-29 22:11:49 +11001997 bf = dp->d_ops->data_bestfree_p(hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 logfree = 0;
1999 }
Dave Chinner33363fe2013-04-03 16:11:22 +11002000 ASSERT(be16_to_cpu(bf[0].length) >= length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 /*
2002 * Point to the existing unused space.
2003 */
2004 dup = (xfs_dir2_data_unused_t *)
Dave Chinner33363fe2013-04-03 16:11:22 +11002005 ((char *)hdr + be16_to_cpu(bf[0].offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 needscan = needlog = 0;
2007 /*
2008 * Mark the first part of the unused space, inuse for us.
2009 */
Dave Chinnerbc851782014-06-06 15:20:54 +10002010 xfs_dir2_data_use_free(args, dbp, dup,
Christoph Hellwigc2066e22011-07-08 14:35:38 +02002011 (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr), length,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 &needlog, &needscan);
2013 /*
2014 * Fill in the new entry and log it.
2015 */
2016 dep = (xfs_dir2_data_entry_t *)dup;
Christoph Hellwigff9901c2006-06-09 14:48:37 +10002017 dep->inumber = cpu_to_be64(args->inumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 dep->namelen = args->namelen;
2019 memcpy(dep->name, args->name, dep->namelen);
Dave Chinner9d23fc82013-10-29 22:11:48 +11002020 dp->d_ops->data_put_ftype(dep, args->filetype);
2021 tagp = dp->d_ops->data_entry_tag_p(dep);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02002022 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Dave Chinnerbc851782014-06-06 15:20:54 +10002023 xfs_dir2_data_log_entry(args, dbp, dep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 /*
2025 * Rescan the block for bestfree if needed.
2026 */
2027 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +11002028 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 /*
2030 * Log the data block header if needed.
2031 */
2032 if (needlog)
Dave Chinnerbc851782014-06-06 15:20:54 +10002033 xfs_dir2_data_log_header(args, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 /*
2035 * If the freespace entry is now wrong, update it.
2036 */
Dave Chinner24dd0f52013-10-30 13:48:41 -05002037 bests = dp->d_ops->free_bests_p(free); /* gcc is so stupid */
Dave Chinner33363fe2013-04-03 16:11:22 +11002038 if (be16_to_cpu(bests[findex]) != be16_to_cpu(bf[0].length)) {
2039 bests[findex] = bf[0].length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 logfree = 1;
2041 }
2042 /*
2043 * Log the freespace entry if needed.
2044 */
2045 if (logfree)
Dave Chinnerbc851782014-06-06 15:20:54 +10002046 xfs_dir2_free_log_bests(args, fbp, findex, findex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 * Return the data block and offset in args, then drop the data block.
2049 */
2050 args->blkno = (xfs_dablk_t)dbno;
Nathan Scott3d693c62006-03-17 17:28:27 +11002051 args->index = be16_to_cpu(*tagp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 return 0;
2053}
2054
2055/*
2056 * Lookup an entry in a node-format directory.
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002057 * All the real work happens in xfs_da3_node_lookup_int.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 * The only real output is the inode number of the entry.
2059 */
2060int /* error */
2061xfs_dir2_node_lookup(
2062 xfs_da_args_t *args) /* operation arguments */
2063{
2064 int error; /* error return value */
2065 int i; /* btree level */
2066 int rval; /* operation return value */
2067 xfs_da_state_t *state; /* btree cursor */
2068
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002069 trace_xfs_dir2_node_lookup(args);
2070
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 /*
2072 * Allocate and initialize the btree cursor.
2073 */
2074 state = xfs_da_state_alloc();
2075 state->args = args;
2076 state->mp = args->dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 /*
2078 * Fill in the path to the entry in the cursor.
2079 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002080 error = xfs_da3_node_lookup_int(state, &rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 if (error)
2082 rval = error;
Dave Chinner24513372014-06-25 14:58:08 +10002083 else if (rval == -ENOENT && args->cmpresult == XFS_CMP_CASE) {
2084 /* If a CI match, dup the actual name and return -EEXIST */
Barry Naujok384f3ce2008-05-21 16:58:22 +10002085 xfs_dir2_data_entry_t *dep;
2086
Dave Chinner1d9025e2012-06-22 18:50:14 +10002087 dep = (xfs_dir2_data_entry_t *)
2088 ((char *)state->extrablk.bp->b_addr +
2089 state->extrablk.index);
Barry Naujok384f3ce2008-05-21 16:58:22 +10002090 rval = xfs_dir_cilookup_result(args, dep->name, dep->namelen);
2091 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 /*
2093 * Release the btree blocks and leaf block.
2094 */
2095 for (i = 0; i < state->path.active; i++) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002096 xfs_trans_brelse(args->trans, state->path.blk[i].bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 state->path.blk[i].bp = NULL;
2098 }
2099 /*
2100 * Release the data block if we have it.
2101 */
2102 if (state->extravalid && state->extrablk.bp) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002103 xfs_trans_brelse(args->trans, state->extrablk.bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 state->extrablk.bp = NULL;
2105 }
2106 xfs_da_state_free(state);
2107 return rval;
2108}
2109
2110/*
2111 * Remove an entry from a node-format directory.
2112 */
2113int /* error */
2114xfs_dir2_node_removename(
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002115 struct xfs_da_args *args) /* operation arguments */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116{
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002117 struct xfs_da_state_blk *blk; /* leaf block */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 int error; /* error return value */
2119 int rval; /* operation return value */
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002120 struct xfs_da_state *state; /* btree cursor */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002122 trace_xfs_dir2_node_removename(args);
2123
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 /*
2125 * Allocate and initialize the btree cursor.
2126 */
2127 state = xfs_da_state_alloc();
2128 state->args = args;
2129 state->mp = args->dp->i_mount;
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002130
2131 /* Look up the entry we're deleting, set up the cursor. */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002132 error = xfs_da3_node_lookup_int(state, &rval);
Barry Naujok5163f952008-05-21 16:41:01 +10002133 if (error)
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002134 goto out_free;
2135
2136 /* Didn't find it, upper layer screwed up. */
Dave Chinner24513372014-06-25 14:58:08 +10002137 if (rval != -EEXIST) {
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002138 error = rval;
2139 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 }
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002141
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 blk = &state->path.blk[state->path.active - 1];
2143 ASSERT(blk->magic == XFS_DIR2_LEAFN_MAGIC);
2144 ASSERT(state->extravalid);
2145 /*
2146 * Remove the leaf and data entries.
2147 * Extrablk refers to the data block.
2148 */
2149 error = xfs_dir2_leafn_remove(args, blk->bp, blk->index,
2150 &state->extrablk, &rval);
Barry Naujok5163f952008-05-21 16:41:01 +10002151 if (error)
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002152 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 /*
2154 * Fix the hash values up the btree.
2155 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002156 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 /*
2158 * If we need to join leaf blocks, do it.
2159 */
2160 if (rval && state->path.active > 1)
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002161 error = xfs_da3_join(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 /*
2163 * If no errors so far, try conversion to leaf format.
2164 */
2165 if (!error)
2166 error = xfs_dir2_node_to_leaf(state);
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002167out_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 xfs_da_state_free(state);
2169 return error;
2170}
2171
2172/*
2173 * Replace an entry's inode number in a node-format directory.
2174 */
2175int /* error */
2176xfs_dir2_node_replace(
2177 xfs_da_args_t *args) /* operation arguments */
2178{
2179 xfs_da_state_blk_t *blk; /* leaf block */
Christoph Hellwigc2066e22011-07-08 14:35:38 +02002180 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 xfs_dir2_data_entry_t *dep; /* data entry changed */
2182 int error; /* error return value */
2183 int i; /* btree level */
2184 xfs_ino_t inum; /* new inode number */
Jan Kara03754232015-08-25 10:05:13 +10002185 int ftype; /* new file type */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 xfs_dir2_leaf_t *leaf; /* leaf structure */
2187 xfs_dir2_leaf_entry_t *lep; /* leaf entry being changed */
2188 int rval; /* internal return value */
2189 xfs_da_state_t *state; /* btree cursor */
2190
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002191 trace_xfs_dir2_node_replace(args);
2192
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 /*
2194 * Allocate and initialize the btree cursor.
2195 */
2196 state = xfs_da_state_alloc();
2197 state->args = args;
2198 state->mp = args->dp->i_mount;
Jan Kara03754232015-08-25 10:05:13 +10002199
2200 /*
2201 * We have to save new inode number and ftype since
2202 * xfs_da3_node_lookup_int() is going to overwrite them
2203 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 inum = args->inumber;
Jan Kara03754232015-08-25 10:05:13 +10002205 ftype = args->filetype;
2206
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 /*
2208 * Lookup the entry to change in the btree.
2209 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002210 error = xfs_da3_node_lookup_int(state, &rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 if (error) {
2212 rval = error;
2213 }
2214 /*
2215 * It should be found, since the vnodeops layer has looked it up
2216 * and locked it. But paranoia is good.
2217 */
Dave Chinner24513372014-06-25 14:58:08 +10002218 if (rval == -EEXIST) {
Dave Chinner24df33b2013-04-12 07:30:21 +10002219 struct xfs_dir2_leaf_entry *ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 /*
2221 * Find the leaf entry.
2222 */
2223 blk = &state->path.blk[state->path.active - 1];
2224 ASSERT(blk->magic == XFS_DIR2_LEAFN_MAGIC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002225 leaf = blk->bp->b_addr;
Dave Chinner41419562013-10-29 22:11:50 +11002226 ents = args->dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10002227 lep = &ents[blk->index];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 ASSERT(state->extravalid);
2229 /*
2230 * Point to the data entry.
2231 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10002232 hdr = state->extrablk.bp->b_addr;
Dave Chinner33363fe2013-04-03 16:11:22 +11002233 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
2234 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 dep = (xfs_dir2_data_entry_t *)
Christoph Hellwigc2066e22011-07-08 14:35:38 +02002236 ((char *)hdr +
Dave Chinner30028032014-06-06 15:08:18 +10002237 xfs_dir2_dataptr_to_off(args->geo,
2238 be32_to_cpu(lep->address)));
Christoph Hellwigff9901c2006-06-09 14:48:37 +10002239 ASSERT(inum != be64_to_cpu(dep->inumber));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 /*
2241 * Fill in the new inode number and log the entry.
2242 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +10002243 dep->inumber = cpu_to_be64(inum);
Jan Kara03754232015-08-25 10:05:13 +10002244 args->dp->d_ops->data_put_ftype(dep, ftype);
Dave Chinnerbc851782014-06-06 15:20:54 +10002245 xfs_dir2_data_log_entry(args, state->extrablk.bp, dep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 rval = 0;
2247 }
2248 /*
2249 * Didn't find it, and we're holding a data block. Drop it.
2250 */
2251 else if (state->extravalid) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002252 xfs_trans_brelse(args->trans, state->extrablk.bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 state->extrablk.bp = NULL;
2254 }
2255 /*
2256 * Release all the buffers in the cursor.
2257 */
2258 for (i = 0; i < state->path.active; i++) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002259 xfs_trans_brelse(args->trans, state->path.blk[i].bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 state->path.blk[i].bp = NULL;
2261 }
2262 xfs_da_state_free(state);
2263 return rval;
2264}
2265
2266/*
2267 * Trim off a trailing empty freespace block.
2268 * Return (in rvalp) 1 if we did it, 0 if not.
2269 */
2270int /* error */
2271xfs_dir2_node_trim_free(
2272 xfs_da_args_t *args, /* operation arguments */
2273 xfs_fileoff_t fo, /* free block number */
2274 int *rvalp) /* out: did something */
2275{
Dave Chinner1d9025e2012-06-22 18:50:14 +10002276 struct xfs_buf *bp; /* freespace buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 xfs_inode_t *dp; /* incore directory inode */
2278 int error; /* error return code */
2279 xfs_dir2_free_t *free; /* freespace structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 xfs_trans_t *tp; /* transaction pointer */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11002281 struct xfs_dir3_icfree_hdr freehdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
2283 dp = args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 tp = args->trans;
Christoph Hellwig355cced2016-03-15 11:44:18 +11002285
2286 *rvalp = 0;
2287
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 /*
2289 * Read the freespace block.
2290 */
Dave Chinner20252072012-11-12 22:54:13 +11002291 error = xfs_dir2_free_try_read(tp, dp, fo, &bp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11002292 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 /*
2295 * There can be holes in freespace. If fo is a hole, there's
2296 * nothing to do.
2297 */
Dave Chinner20252072012-11-12 22:54:13 +11002298 if (!bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 return 0;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002300 free = bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11002301 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11002302
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 /*
2304 * If there are used entries, there's nothing to do.
2305 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11002306 if (freehdr.nused > 0) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002307 xfs_trans_brelse(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 return 0;
2309 }
2310 /*
2311 * Blow the block away.
2312 */
Dave Chinner2998ab12014-06-06 15:07:53 +10002313 error = xfs_dir2_shrink_inode(args,
2314 xfs_dir2_da_to_db(args->geo, (xfs_dablk_t)fo), bp);
2315 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 /*
2317 * Can't fail with ENOSPC since that only happens with no
2318 * space reservation, when breaking up an extent into two
2319 * pieces. This is the last block of an extent.
2320 */
Dave Chinner24513372014-06-25 14:58:08 +10002321 ASSERT(error != -ENOSPC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002322 xfs_trans_brelse(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 return error;
2324 }
2325 /*
2326 * Return that we succeeded.
2327 */
2328 *rvalp = 1;
2329 return 0;
2330}