blob: 65df8cbedbb7970db9d2a44167b4a7c49cf49495 [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_sb.h"
David Chinnerda353b02007-08-28 14:00:13 +100025#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_mount.h"
Dave Chinner57062782013-10-15 09:17:51 +110027#include "xfs_da_format.h"
Nathan Scotta844f452005-11-02 14:38:42 +110028#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_inode.h"
30#include "xfs_bmap.h"
Dave Chinner2b9ab5a2013-08-12 20:49:37 +100031#include "xfs_dir2.h"
Christoph Hellwig57926642011-07-13 13:43:48 +020032#include "xfs_dir2_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_error.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000034#include "xfs_trace.h"
Dave Chinner239880e2013-10-23 10:50:10 +110035#include "xfs_trans.h"
Dave Chinnercbc8adf2013-04-03 16:11:21 +110036#include "xfs_buf_item.h"
37#include "xfs_cksum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39/*
40 * Function declarations.
41 */
Dave Chinner1d9025e2012-06-22 18:50:14 +100042static int xfs_dir2_leafn_add(struct xfs_buf *bp, xfs_da_args_t *args,
43 int index);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044static void xfs_dir2_leafn_rebalance(xfs_da_state_t *state,
45 xfs_da_state_blk_t *blk1,
46 xfs_da_state_blk_t *blk2);
Dave Chinner1d9025e2012-06-22 18:50:14 +100047static int xfs_dir2_leafn_remove(xfs_da_args_t *args, struct xfs_buf *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 int index, xfs_da_state_blk_t *dblk,
49 int *rval);
50static int xfs_dir2_node_addname_int(xfs_da_args_t *args,
51 xfs_da_state_blk_t *fblk);
52
Dave Chinner24df33b2013-04-12 07:30:21 +100053/*
54 * Check internal consistency of a leafn block.
55 */
56#ifdef DEBUG
Dave Chinner41419562013-10-29 22:11:50 +110057#define xfs_dir3_leaf_check(dp, bp) \
Dave Chinner24df33b2013-04-12 07:30:21 +100058do { \
Dave Chinner41419562013-10-29 22:11:50 +110059 if (!xfs_dir3_leafn_check((dp), (bp))) \
Dave Chinner24df33b2013-04-12 07:30:21 +100060 ASSERT(0); \
61} while (0);
62
63static bool
64xfs_dir3_leafn_check(
Dave Chinner41419562013-10-29 22:11:50 +110065 struct xfs_inode *dp,
Dave Chinner24df33b2013-04-12 07:30:21 +100066 struct xfs_buf *bp)
67{
68 struct xfs_dir2_leaf *leaf = bp->b_addr;
69 struct xfs_dir3_icleaf_hdr leafhdr;
70
Dave Chinner01ba43b2013-10-29 22:11:52 +110071 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +100072
73 if (leafhdr.magic == XFS_DIR3_LEAFN_MAGIC) {
74 struct xfs_dir3_leaf_hdr *leaf3 = bp->b_addr;
75 if (be64_to_cpu(leaf3->info.blkno) != bp->b_bn)
76 return false;
77 } else if (leafhdr.magic != XFS_DIR2_LEAFN_MAGIC)
78 return false;
79
Dave Chinner41419562013-10-29 22:11:50 +110080 return xfs_dir3_leaf_check_int(dp->i_mount, dp, &leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +100081}
82#else
Dave Chinner41419562013-10-29 22:11:50 +110083#define xfs_dir3_leaf_check(dp, bp)
Dave Chinner24df33b2013-04-12 07:30:21 +100084#endif
85
Dave Chinnercbc8adf2013-04-03 16:11:21 +110086static bool
87xfs_dir3_free_verify(
Dave Chinner20252072012-11-12 22:54:13 +110088 struct xfs_buf *bp)
89{
90 struct xfs_mount *mp = bp->b_target->bt_mount;
91 struct xfs_dir2_free_hdr *hdr = bp->b_addr;
Dave Chinner20252072012-11-12 22:54:13 +110092
Dave Chinnercbc8adf2013-04-03 16:11:21 +110093 if (xfs_sb_version_hascrc(&mp->m_sb)) {
94 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
95
96 if (hdr3->magic != cpu_to_be32(XFS_DIR3_FREE_MAGIC))
97 return false;
98 if (!uuid_equal(&hdr3->uuid, &mp->m_sb.sb_uuid))
99 return false;
100 if (be64_to_cpu(hdr3->blkno) != bp->b_bn)
101 return false;
102 } else {
103 if (hdr->magic != cpu_to_be32(XFS_DIR2_FREE_MAGIC))
104 return false;
105 }
106
107 /* XXX: should bounds check the xfs_dir3_icfree_hdr here */
108
109 return true;
110}
111
112static void
113xfs_dir3_free_read_verify(
114 struct xfs_buf *bp)
115{
116 struct xfs_mount *mp = bp->b_target->bt_mount;
117
Eric Sandeence5028c2014-02-27 15:23:10 +1100118 if (xfs_sb_version_hascrc(&mp->m_sb) &&
119 !xfs_buf_verify_cksum(bp, XFS_DIR3_FREE_CRC_OFF))
120 xfs_buf_ioerror(bp, EFSBADCRC);
121 else if (!xfs_dir3_free_verify(bp))
Dave Chinner20252072012-11-12 22:54:13 +1100122 xfs_buf_ioerror(bp, EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100123
124 if (bp->b_error)
125 xfs_verifier_error(bp);
Dave Chinner612cfbf2012-11-14 17:52:32 +1100126}
Dave Chinner20252072012-11-12 22:54:13 +1100127
Dave Chinner612cfbf2012-11-14 17:52:32 +1100128static void
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100129xfs_dir3_free_write_verify(
Dave Chinner1813dd62012-11-14 17:54:40 +1100130 struct xfs_buf *bp)
131{
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100132 struct xfs_mount *mp = bp->b_target->bt_mount;
133 struct xfs_buf_log_item *bip = bp->b_fspriv;
134 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
135
136 if (!xfs_dir3_free_verify(bp)) {
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100137 xfs_buf_ioerror(bp, EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100138 xfs_verifier_error(bp);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100139 return;
140 }
141
142 if (!xfs_sb_version_hascrc(&mp->m_sb))
143 return;
144
145 if (bip)
146 hdr3->lsn = cpu_to_be64(bip->bli_item.li_lsn);
147
Eric Sandeenf1dbcd72014-02-27 15:18:23 +1100148 xfs_buf_update_cksum(bp, XFS_DIR3_FREE_CRC_OFF);
Dave Chinner1813dd62012-11-14 17:54:40 +1100149}
150
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100151const struct xfs_buf_ops xfs_dir3_free_buf_ops = {
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100152 .verify_read = xfs_dir3_free_read_verify,
153 .verify_write = xfs_dir3_free_write_verify,
Dave Chinner1813dd62012-11-14 17:54:40 +1100154};
Dave Chinner20252072012-11-12 22:54:13 +1100155
Dave Chinner612cfbf2012-11-14 17:52:32 +1100156
Dave Chinner20252072012-11-12 22:54:13 +1100157static int
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100158__xfs_dir3_free_read(
Dave Chinner20252072012-11-12 22:54:13 +1100159 struct xfs_trans *tp,
160 struct xfs_inode *dp,
161 xfs_dablk_t fbno,
162 xfs_daddr_t mappedbno,
163 struct xfs_buf **bpp)
164{
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100165 int err;
166
167 err = xfs_da_read_buf(tp, dp, fbno, mappedbno, bpp,
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100168 XFS_DATA_FORK, &xfs_dir3_free_buf_ops);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100169
170 /* try read returns without an error or *bpp if it lands in a hole */
171 if (!err && tp && *bpp)
Dave Chinner61fe1352013-04-03 16:11:30 +1100172 xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_DIR_FREE_BUF);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100173 return err;
Dave Chinner20252072012-11-12 22:54:13 +1100174}
175
176int
177xfs_dir2_free_read(
178 struct xfs_trans *tp,
179 struct xfs_inode *dp,
180 xfs_dablk_t fbno,
181 struct xfs_buf **bpp)
182{
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100183 return __xfs_dir3_free_read(tp, dp, fbno, -1, bpp);
Dave Chinner20252072012-11-12 22:54:13 +1100184}
185
186static int
187xfs_dir2_free_try_read(
188 struct xfs_trans *tp,
189 struct xfs_inode *dp,
190 xfs_dablk_t fbno,
191 struct xfs_buf **bpp)
192{
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100193 return __xfs_dir3_free_read(tp, dp, fbno, -2, bpp);
194}
195
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100196static int
197xfs_dir3_free_get_buf(
Dave Chinner2998ab1d2014-06-06 15:07:53 +1000198 xfs_da_args_t *args,
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100199 xfs_dir2_db_t fbno,
200 struct xfs_buf **bpp)
201{
Dave Chinner2998ab1d2014-06-06 15:07:53 +1000202 struct xfs_trans *tp = args->trans;
203 struct xfs_inode *dp = args->dp;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100204 struct xfs_mount *mp = dp->i_mount;
205 struct xfs_buf *bp;
206 int error;
207 struct xfs_dir3_icfree_hdr hdr;
208
Dave Chinner2998ab1d2014-06-06 15:07:53 +1000209 error = xfs_da_get_buf(tp, dp, xfs_dir2_db_to_da(args->geo, fbno),
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100210 -1, &bp, XFS_DATA_FORK);
211 if (error)
212 return error;
213
Dave Chinner61fe1352013-04-03 16:11:30 +1100214 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_FREE_BUF);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100215 bp->b_ops = &xfs_dir3_free_buf_ops;
216
217 /*
218 * Initialize the new block to be empty, and remember
219 * its first slot as our empty slot.
220 */
Dave Chinnere400d272013-05-28 18:37:17 +1000221 memset(bp->b_addr, 0, sizeof(struct xfs_dir3_free_hdr));
222 memset(&hdr, 0, sizeof(hdr));
223
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100224 if (xfs_sb_version_hascrc(&mp->m_sb)) {
225 struct xfs_dir3_free_hdr *hdr3 = bp->b_addr;
226
227 hdr.magic = XFS_DIR3_FREE_MAGIC;
Dave Chinnere400d272013-05-28 18:37:17 +1000228
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100229 hdr3->hdr.blkno = cpu_to_be64(bp->b_bn);
230 hdr3->hdr.owner = cpu_to_be64(dp->i_ino);
231 uuid_copy(&hdr3->hdr.uuid, &mp->m_sb.sb_uuid);
Dave Chinnere400d272013-05-28 18:37:17 +1000232 } else
233 hdr.magic = XFS_DIR2_FREE_MAGIC;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100234 dp->d_ops->free_hdr_to_disk(bp->b_addr, &hdr);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100235 *bpp = bp;
236 return 0;
Dave Chinner20252072012-11-12 22:54:13 +1100237}
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239/*
240 * Log entries from a freespace block.
241 */
Eric Sandeen5d77c0d2009-11-19 15:52:00 +0000242STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243xfs_dir2_free_log_bests(
Dave Chinnerbc851782014-06-06 15:20:54 +1000244 struct xfs_da_args *args,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000245 struct xfs_buf *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 int first, /* first entry to log */
247 int last) /* last entry to log */
248{
249 xfs_dir2_free_t *free; /* freespace structure */
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100250 __be16 *bests;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Dave Chinner1d9025e2012-06-22 18:50:14 +1000252 free = bp->b_addr;
Dave Chinnerbc851782014-06-06 15:20:54 +1000253 bests = args->dp->d_ops->free_bests_p(free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100254 ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC) ||
255 free->hdr.magic == cpu_to_be32(XFS_DIR3_FREE_MAGIC));
Dave Chinnerbc851782014-06-06 15:20:54 +1000256 xfs_trans_log_buf(args->trans, bp,
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100257 (uint)((char *)&bests[first] - (char *)free),
258 (uint)((char *)&bests[last] - (char *)free +
259 sizeof(bests[0]) - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
261
262/*
263 * Log header from a freespace block.
264 */
265static void
266xfs_dir2_free_log_header(
Dave Chinnerbc851782014-06-06 15:20:54 +1000267 struct xfs_da_args *args,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000268 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
Dave Chinner836a94a2013-08-12 20:49:44 +1000270#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 xfs_dir2_free_t *free; /* freespace structure */
272
Dave Chinner1d9025e2012-06-22 18:50:14 +1000273 free = bp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100274 ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC) ||
275 free->hdr.magic == cpu_to_be32(XFS_DIR3_FREE_MAGIC));
Dave Chinner836a94a2013-08-12 20:49:44 +1000276#endif
Dave Chinnerbc851782014-06-06 15:20:54 +1000277 xfs_trans_log_buf(args->trans, bp, 0,
278 args->dp->d_ops->free_hdr_size - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
281/*
282 * Convert a leaf-format directory to a node-format directory.
283 * We need to change the magic number of the leaf block, and copy
284 * the freespace table out of the leaf block into its own block.
285 */
286int /* error */
287xfs_dir2_leaf_to_node(
288 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000289 struct xfs_buf *lbp) /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{
291 xfs_inode_t *dp; /* incore directory inode */
292 int error; /* error return value */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000293 struct xfs_buf *fbp; /* freespace buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 xfs_dir2_db_t fdb; /* freespace block number */
295 xfs_dir2_free_t *free; /* freespace structure */
Nathan Scott68b3a102006-03-17 17:27:19 +1100296 __be16 *from; /* pointer to freespace entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 int i; /* leaf freespace index */
298 xfs_dir2_leaf_t *leaf; /* leaf structure */
299 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
300 xfs_mount_t *mp; /* filesystem mount point */
301 int n; /* count of live freespc ents */
302 xfs_dir2_data_off_t off; /* freespace entry value */
Nathan Scott0ba962e2006-03-17 17:27:07 +1100303 __be16 *to; /* pointer to freespace entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 xfs_trans_t *tp; /* transaction pointer */
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100305 struct xfs_dir3_icfree_hdr freehdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000307 trace_xfs_dir2_leaf_to_node(args);
308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 dp = args->dp;
310 mp = dp->i_mount;
311 tp = args->trans;
312 /*
313 * Add a freespace block to the directory.
314 */
315 if ((error = xfs_dir2_grow_inode(args, XFS_DIR2_FREE_SPACE, &fdb))) {
316 return error;
317 }
Dave Chinner30028032014-06-06 15:08:18 +1000318 ASSERT(fdb == xfs_dir2_byte_to_db(args->geo, XFS_DIR2_FREE_OFFSET));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 /*
320 * Get the buffer for the new freespace block.
321 */
Dave Chinner2998ab1d2014-06-06 15:07:53 +1000322 error = xfs_dir3_free_get_buf(args, fdb, &fbp);
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100323 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 return error;
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100325
Dave Chinner1d9025e2012-06-22 18:50:14 +1000326 free = fbp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100327 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000328 leaf = lbp->b_addr;
Dave Chinner8f661932014-06-06 15:15:59 +1000329 ltp = xfs_dir2_leaf_tail_p(args->geo, leaf);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100330 ASSERT(be32_to_cpu(ltp->bestcount) <=
Dave Chinner8f661932014-06-06 15:15:59 +1000331 (uint)dp->i_d.di_size / args->geo->blksize);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 /*
334 * Copy freespace entries from the leaf block to the new block.
335 * Count active entries.
336 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100337 from = xfs_dir2_leaf_bests_p(ltp);
Dave Chinner24dd0f52013-10-30 13:48:41 -0500338 to = dp->d_ops->free_bests_p(free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100339 for (i = n = 0; i < be32_to_cpu(ltp->bestcount); i++, from++, to++) {
Nathan Scott68b3a102006-03-17 17:27:19 +1100340 if ((off = be16_to_cpu(*from)) != NULLDATAOFF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 n++;
Nathan Scott0ba962e2006-03-17 17:27:07 +1100342 *to = cpu_to_be16(off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 }
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 /*
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100346 * Now initialize the freespace block header.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100348 freehdr.nused = n;
349 freehdr.nvalid = be32_to_cpu(ltp->bestcount);
350
Dave Chinner01ba43b2013-10-29 22:11:52 +1100351 dp->d_ops->free_hdr_to_disk(fbp->b_addr, &freehdr);
Dave Chinnerbc851782014-06-06 15:20:54 +1000352 xfs_dir2_free_log_bests(args, fbp, 0, freehdr.nvalid - 1);
353 xfs_dir2_free_log_header(args, fbp);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100354
Dave Chinner24df33b2013-04-12 07:30:21 +1000355 /*
356 * Converting the leaf to a leafnode is just a matter of changing the
357 * magic number and the ops. Do the change directly to the buffer as
358 * it's less work (and less code) than decoding the header to host
359 * format and back again.
360 */
361 if (leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC))
362 leaf->hdr.info.magic = cpu_to_be16(XFS_DIR2_LEAFN_MAGIC);
363 else
364 leaf->hdr.info.magic = cpu_to_be16(XFS_DIR3_LEAFN_MAGIC);
365 lbp->b_ops = &xfs_dir3_leafn_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100366 xfs_trans_buf_set_type(tp, lbp, XFS_BLFT_DIR_LEAFN_BUF);
Dave Chinnerbc851782014-06-06 15:20:54 +1000367 xfs_dir3_leaf_log_header(args, lbp);
Dave Chinner41419562013-10-29 22:11:50 +1100368 xfs_dir3_leaf_check(dp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 return 0;
370}
371
372/*
373 * Add a leaf entry to a leaf block in a node-form directory.
374 * The other work necessary is done from the caller.
375 */
376static int /* error */
377xfs_dir2_leafn_add(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000378 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 xfs_da_args_t *args, /* operation arguments */
380 int index) /* insertion pt for new entry */
381{
382 int compact; /* compacting stale leaves */
383 xfs_inode_t *dp; /* incore directory inode */
384 int highstale; /* next stale entry */
385 xfs_dir2_leaf_t *leaf; /* leaf structure */
386 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
387 int lfloghigh; /* high leaf entry logging */
388 int lfloglow; /* low leaf entry logging */
389 int lowstale; /* previous stale entry */
390 xfs_mount_t *mp; /* filesystem mount point */
391 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner24df33b2013-04-12 07:30:21 +1000392 struct xfs_dir3_icleaf_hdr leafhdr;
393 struct xfs_dir2_leaf_entry *ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000395 trace_xfs_dir2_leafn_add(args, index);
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 dp = args->dp;
398 mp = dp->i_mount;
399 tp = args->trans;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000400 leaf = bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100401 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +1100402 ents = dp->d_ops->leaf_ents_p(leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 /*
405 * Quick check just to make sure we are not going to index
406 * into other peoples memory
407 */
408 if (index < 0)
409 return XFS_ERROR(EFSCORRUPTED);
410
411 /*
412 * If there are already the maximum number of leaf entries in
413 * the block, if there are no stale entries it won't fit.
414 * Caller will do a split. If there are stale entries we'll do
415 * a compact.
416 */
417
Dave Chinner8f661932014-06-06 15:15:59 +1000418 if (leafhdr.count == dp->d_ops->leaf_max_ents(args->geo)) {
Dave Chinner24df33b2013-04-12 07:30:21 +1000419 if (!leafhdr.stale)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 return XFS_ERROR(ENOSPC);
Dave Chinner24df33b2013-04-12 07:30:21 +1000421 compact = leafhdr.stale > 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 } else
423 compact = 0;
Dave Chinner24df33b2013-04-12 07:30:21 +1000424 ASSERT(index == 0 || be32_to_cpu(ents[index - 1].hashval) <= args->hashval);
425 ASSERT(index == leafhdr.count ||
426 be32_to_cpu(ents[index].hashval) >= args->hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Barry Naujok6a178102008-05-21 16:42:05 +1000428 if (args->op_flags & XFS_DA_OP_JUSTCHECK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 return 0;
430
431 /*
432 * Compact out all but one stale leaf entry. Leaves behind
433 * the entry closest to index.
434 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000435 if (compact)
436 xfs_dir3_leaf_compact_x1(&leafhdr, ents, &index, &lowstale,
437 &highstale, &lfloglow, &lfloghigh);
438 else if (leafhdr.stale) {
439 /*
440 * Set impossible logging indices for this case.
441 */
442 lfloglow = leafhdr.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 lfloghigh = -1;
444 }
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 /*
447 * Insert the new entry, log everything.
448 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000449 lep = xfs_dir3_leaf_find_entry(&leafhdr, ents, index, compact, lowstale,
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200450 highstale, &lfloglow, &lfloghigh);
451
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100452 lep->hashval = cpu_to_be32(args->hashval);
Dave Chinner30028032014-06-06 15:08:18 +1000453 lep->address = cpu_to_be32(xfs_dir2_db_off_to_dataptr(args->geo,
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100454 args->blkno, args->index));
Dave Chinner24df33b2013-04-12 07:30:21 +1000455
Dave Chinner01ba43b2013-10-29 22:11:52 +1100456 dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr);
Dave Chinnerbc851782014-06-06 15:20:54 +1000457 xfs_dir3_leaf_log_header(args, bp);
458 xfs_dir3_leaf_log_ents(args, bp, lfloglow, lfloghigh);
Dave Chinner41419562013-10-29 22:11:50 +1100459 xfs_dir3_leaf_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 return 0;
461}
462
463#ifdef DEBUG
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100464static void
465xfs_dir2_free_hdr_check(
Dave Chinner01ba43b2013-10-29 22:11:52 +1100466 struct xfs_inode *dp,
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100467 struct xfs_buf *bp,
468 xfs_dir2_db_t db)
469{
470 struct xfs_dir3_icfree_hdr hdr;
471
Dave Chinner01ba43b2013-10-29 22:11:52 +1100472 dp->d_ops->free_hdr_from_disk(&hdr, bp->b_addr);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100473
Dave Chinner8f661932014-06-06 15:15:59 +1000474 ASSERT((hdr.firstdb %
475 dp->d_ops->free_max_bests(dp->i_mount->m_dir_geo)) == 0);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100476 ASSERT(hdr.firstdb <= db);
477 ASSERT(db < hdr.firstdb + hdr.nvalid);
478}
479#else
Dave Chinner01ba43b2013-10-29 22:11:52 +1100480#define xfs_dir2_free_hdr_check(dp, bp, db)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481#endif /* DEBUG */
482
483/*
484 * Return the last hash value in the leaf.
485 * Stale entries are ok.
486 */
487xfs_dahash_t /* hash value */
488xfs_dir2_leafn_lasthash(
Dave Chinner41419562013-10-29 22:11:50 +1100489 struct xfs_inode *dp,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000490 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 int *count) /* count of entries in leaf */
492{
Dave Chinner24df33b2013-04-12 07:30:21 +1000493 struct xfs_dir2_leaf *leaf = bp->b_addr;
494 struct xfs_dir2_leaf_entry *ents;
495 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Dave Chinner01ba43b2013-10-29 22:11:52 +1100497 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000498
499 ASSERT(leafhdr.magic == XFS_DIR2_LEAFN_MAGIC ||
500 leafhdr.magic == XFS_DIR3_LEAFN_MAGIC);
501
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 if (count)
Dave Chinner24df33b2013-04-12 07:30:21 +1000503 *count = leafhdr.count;
504 if (!leafhdr.count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 return 0;
Dave Chinner24df33b2013-04-12 07:30:21 +1000506
Dave Chinner41419562013-10-29 22:11:50 +1100507 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000508 return be32_to_cpu(ents[leafhdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
511/*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000512 * Look up a leaf entry for space to add a name in a node-format leaf block.
513 * The extrablk in state is a freespace block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000515STATIC int
516xfs_dir2_leafn_lookup_for_addname(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000517 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 xfs_da_args_t *args, /* operation arguments */
519 int *indexp, /* out: leaf entry index */
520 xfs_da_state_t *state) /* state to fill in */
521{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000522 struct xfs_buf *curbp = NULL; /* current data/free buffer */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000523 xfs_dir2_db_t curdb = -1; /* current data block number */
524 xfs_dir2_db_t curfdb = -1; /* current free block number */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 xfs_inode_t *dp; /* incore directory inode */
526 int error; /* error return value */
527 int fi; /* free entry index */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000528 xfs_dir2_free_t *free = NULL; /* free block structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 int index; /* leaf entry index */
530 xfs_dir2_leaf_t *leaf; /* leaf structure */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000531 int length; /* length of new data entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
533 xfs_mount_t *mp; /* filesystem mount point */
534 xfs_dir2_db_t newdb; /* new data block number */
535 xfs_dir2_db_t newfdb; /* new free block number */
536 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner24df33b2013-04-12 07:30:21 +1000537 struct xfs_dir2_leaf_entry *ents;
538 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 dp = args->dp;
541 tp = args->trans;
542 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000543 leaf = bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100544 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +1100545 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000546
Dave Chinner41419562013-10-29 22:11:50 +1100547 xfs_dir3_leaf_check(dp, bp);
Dave Chinner24df33b2013-04-12 07:30:21 +1000548 ASSERT(leafhdr.count > 0);
549
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 /*
551 * Look up the hash value in the leaf entries.
552 */
553 index = xfs_dir2_leaf_search_hash(args, bp);
554 /*
555 * Do we have a buffer coming in?
556 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000557 if (state->extravalid) {
558 /* If so, it's a free block buffer, get the block number. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 curbp = state->extrablk.bp;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000560 curfdb = state->extrablk.blkno;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000561 free = curbp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100562 ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC) ||
563 free->hdr.magic == cpu_to_be32(XFS_DIR3_FREE_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 }
Dave Chinner9d23fc82013-10-29 22:11:48 +1100565 length = dp->d_ops->data_entsize(args->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 /*
567 * Loop over leaf entries with the right hash value.
568 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000569 for (lep = &ents[index];
570 index < leafhdr.count && be32_to_cpu(lep->hashval) == args->hashval;
571 lep++, index++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 /*
573 * Skip stale leaf entries.
574 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100575 if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 continue;
577 /*
578 * Pull the data block number from the entry.
579 */
Dave Chinner30028032014-06-06 15:08:18 +1000580 newdb = xfs_dir2_dataptr_to_db(args->geo,
581 be32_to_cpu(lep->address));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 /*
583 * For addname, we're looking for a place to put the new entry.
584 * We want to use a data block with an entry of equal
585 * hash value to ours if there is one with room.
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000586 *
587 * If this block isn't the data block we already have
588 * in hand, take a look at it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000590 if (newdb != curdb) {
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100591 __be16 *bests;
592
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000593 curdb = newdb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000595 * Convert the data block to the free block
596 * holding its freespace information.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 */
Dave Chinner8f661932014-06-06 15:15:59 +1000598 newfdb = dp->d_ops->db_to_fdb(args->geo, newdb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000600 * If it's not the one we have in hand, read it in.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000602 if (newfdb != curfdb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000604 * If we had one before, drop it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 */
606 if (curbp)
Dave Chinner1d9025e2012-06-22 18:50:14 +1000607 xfs_trans_brelse(tp, curbp);
Dave Chinner20252072012-11-12 22:54:13 +1100608
609 error = xfs_dir2_free_read(tp, dp,
Dave Chinner2998ab1d2014-06-06 15:07:53 +1000610 xfs_dir2_db_to_da(args->geo,
611 newfdb),
Dave Chinner20252072012-11-12 22:54:13 +1100612 &curbp);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000613 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000615 free = curbp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100616
Dave Chinner01ba43b2013-10-29 22:11:52 +1100617 xfs_dir2_free_hdr_check(dp, curbp, curdb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 }
619 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000620 * Get the index for our entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 */
Dave Chinner8f661932014-06-06 15:15:59 +1000622 fi = dp->d_ops->db_to_fdindex(args->geo, curdb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000624 * If it has room, return it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 */
Dave Chinner24dd0f52013-10-30 13:48:41 -0500626 bests = dp->d_ops->free_bests_p(free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100627 if (unlikely(bests[fi] == cpu_to_be16(NULLDATAOFF))) {
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000628 XFS_ERROR_REPORT("xfs_dir2_leafn_lookup_int",
629 XFS_ERRLEVEL_LOW, mp);
630 if (curfdb != newfdb)
Dave Chinner1d9025e2012-06-22 18:50:14 +1000631 xfs_trans_brelse(tp, curbp);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000632 return XFS_ERROR(EFSCORRUPTED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 }
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000634 curfdb = newfdb;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100635 if (be16_to_cpu(bests[fi]) >= length)
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000636 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 }
638 }
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000639 /* Didn't find any space */
640 fi = -1;
641out:
Barry Naujok6a178102008-05-21 16:42:05 +1000642 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000643 if (curbp) {
644 /* Giving back a free block. */
645 state->extravalid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 state->extrablk.bp = curbp;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000647 state->extrablk.index = fi;
648 state->extrablk.blkno = curfdb;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100649
650 /*
651 * Important: this magic number is not in the buffer - it's for
652 * buffer type information and therefore only the free/data type
653 * matters here, not whether CRCs are enabled or not.
654 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000655 state->extrablk.magic = XFS_DIR2_FREE_MAGIC;
656 } else {
657 state->extravalid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 }
659 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000660 * Return the index, that will be the insertion point.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 */
662 *indexp = index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 return XFS_ERROR(ENOENT);
664}
665
666/*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000667 * Look up a leaf entry in a node-format leaf block.
668 * The extrablk in state a data block.
669 */
670STATIC int
671xfs_dir2_leafn_lookup_for_entry(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000672 struct xfs_buf *bp, /* leaf buffer */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000673 xfs_da_args_t *args, /* operation arguments */
674 int *indexp, /* out: leaf entry index */
675 xfs_da_state_t *state) /* state to fill in */
676{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000677 struct xfs_buf *curbp = NULL; /* current data/free buffer */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000678 xfs_dir2_db_t curdb = -1; /* current data block number */
679 xfs_dir2_data_entry_t *dep; /* data block entry */
680 xfs_inode_t *dp; /* incore directory inode */
681 int error; /* error return value */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000682 int index; /* leaf entry index */
683 xfs_dir2_leaf_t *leaf; /* leaf structure */
684 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
685 xfs_mount_t *mp; /* filesystem mount point */
686 xfs_dir2_db_t newdb; /* new data block number */
687 xfs_trans_t *tp; /* transaction pointer */
Barry Naujok5163f952008-05-21 16:41:01 +1000688 enum xfs_dacmp cmp; /* comparison result */
Dave Chinner24df33b2013-04-12 07:30:21 +1000689 struct xfs_dir2_leaf_entry *ents;
690 struct xfs_dir3_icleaf_hdr leafhdr;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000691
692 dp = args->dp;
693 tp = args->trans;
694 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000695 leaf = bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100696 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +1100697 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000698
Dave Chinner41419562013-10-29 22:11:50 +1100699 xfs_dir3_leaf_check(dp, bp);
Dave Chinner24df33b2013-04-12 07:30:21 +1000700 ASSERT(leafhdr.count > 0);
701
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000702 /*
703 * Look up the hash value in the leaf entries.
704 */
705 index = xfs_dir2_leaf_search_hash(args, bp);
706 /*
707 * Do we have a buffer coming in?
708 */
709 if (state->extravalid) {
710 curbp = state->extrablk.bp;
711 curdb = state->extrablk.blkno;
712 }
713 /*
714 * Loop over leaf entries with the right hash value.
715 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000716 for (lep = &ents[index];
717 index < leafhdr.count && be32_to_cpu(lep->hashval) == args->hashval;
718 lep++, index++) {
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000719 /*
720 * Skip stale leaf entries.
721 */
722 if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
723 continue;
724 /*
725 * Pull the data block number from the entry.
726 */
Dave Chinner30028032014-06-06 15:08:18 +1000727 newdb = xfs_dir2_dataptr_to_db(args->geo,
728 be32_to_cpu(lep->address));
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000729 /*
730 * Not adding a new entry, so we really want to find
731 * the name given to us.
732 *
733 * If it's a different data block, go get it.
734 */
735 if (newdb != curdb) {
736 /*
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000737 * If we had a block before that we aren't saving
738 * for a CI name, drop it
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000739 */
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000740 if (curbp && (args->cmpresult == XFS_CMP_DIFFERENT ||
741 curdb != state->extrablk.blkno))
Dave Chinner1d9025e2012-06-22 18:50:14 +1000742 xfs_trans_brelse(tp, curbp);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000743 /*
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000744 * If needing the block that is saved with a CI match,
745 * use it otherwise read in the new data block.
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000746 */
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000747 if (args->cmpresult != XFS_CMP_DIFFERENT &&
748 newdb == state->extrablk.blkno) {
749 ASSERT(state->extravalid);
750 curbp = state->extrablk.bp;
751 } else {
Dave Chinner33363fe2013-04-03 16:11:22 +1100752 error = xfs_dir3_data_read(tp, dp,
Dave Chinner2998ab1d2014-06-06 15:07:53 +1000753 xfs_dir2_db_to_da(args->geo,
754 newdb),
Dave Chinnere4813572012-11-12 22:54:14 +1100755 -1, &curbp);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000756 if (error)
757 return error;
758 }
Dave Chinner33363fe2013-04-03 16:11:22 +1100759 xfs_dir3_data_check(dp, curbp);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000760 curdb = newdb;
761 }
762 /*
763 * Point to the data entry.
764 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000765 dep = (xfs_dir2_data_entry_t *)((char *)curbp->b_addr +
Dave Chinner30028032014-06-06 15:08:18 +1000766 xfs_dir2_dataptr_to_off(args->geo,
767 be32_to_cpu(lep->address)));
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000768 /*
Barry Naujok5163f952008-05-21 16:41:01 +1000769 * Compare the entry and if it's an exact match, return
770 * EEXIST immediately. If it's the first case-insensitive
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000771 * match, store the block & inode number and continue looking.
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000772 */
Barry Naujok5163f952008-05-21 16:41:01 +1000773 cmp = mp->m_dirnameops->compname(args, dep->name, dep->namelen);
774 if (cmp != XFS_CMP_DIFFERENT && cmp != args->cmpresult) {
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000775 /* If there is a CI match block, drop it */
776 if (args->cmpresult != XFS_CMP_DIFFERENT &&
777 curdb != state->extrablk.blkno)
Dave Chinner1d9025e2012-06-22 18:50:14 +1000778 xfs_trans_brelse(tp, state->extrablk.bp);
Barry Naujok5163f952008-05-21 16:41:01 +1000779 args->cmpresult = cmp;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000780 args->inumber = be64_to_cpu(dep->inumber);
Dave Chinner9d23fc82013-10-29 22:11:48 +1100781 args->filetype = dp->d_ops->data_get_ftype(dep);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000782 *indexp = index;
783 state->extravalid = 1;
784 state->extrablk.bp = curbp;
785 state->extrablk.blkno = curdb;
786 state->extrablk.index = (int)((char *)dep -
Dave Chinner1d9025e2012-06-22 18:50:14 +1000787 (char *)curbp->b_addr);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000788 state->extrablk.magic = XFS_DIR2_DATA_MAGIC;
Dave Chinner33363fe2013-04-03 16:11:22 +1100789 curbp->b_ops = &xfs_dir3_data_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100790 xfs_trans_buf_set_type(tp, curbp, XFS_BLFT_DIR_DATA_BUF);
Barry Naujok5163f952008-05-21 16:41:01 +1000791 if (cmp == XFS_CMP_EXACT)
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000792 return XFS_ERROR(EEXIST);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000793 }
794 }
Dave Chinner24df33b2013-04-12 07:30:21 +1000795 ASSERT(index == leafhdr.count || (args->op_flags & XFS_DA_OP_OKNOENT));
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000796 if (curbp) {
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000797 if (args->cmpresult == XFS_CMP_DIFFERENT) {
798 /* Giving back last used data block. */
799 state->extravalid = 1;
800 state->extrablk.bp = curbp;
801 state->extrablk.index = -1;
802 state->extrablk.blkno = curdb;
803 state->extrablk.magic = XFS_DIR2_DATA_MAGIC;
Dave Chinner33363fe2013-04-03 16:11:22 +1100804 curbp->b_ops = &xfs_dir3_data_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100805 xfs_trans_buf_set_type(tp, curbp, XFS_BLFT_DIR_DATA_BUF);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000806 } else {
807 /* If the curbp is not the CI match block, drop it */
808 if (state->extrablk.bp != curbp)
Dave Chinner1d9025e2012-06-22 18:50:14 +1000809 xfs_trans_brelse(tp, curbp);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000810 }
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000811 } else {
812 state->extravalid = 0;
813 }
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000814 *indexp = index;
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000815 return XFS_ERROR(ENOENT);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000816}
817
818/*
819 * Look up a leaf entry in a node-format leaf block.
820 * If this is an addname then the extrablk in state is a freespace block,
821 * otherwise it's a data block.
822 */
823int
824xfs_dir2_leafn_lookup_int(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000825 struct xfs_buf *bp, /* leaf buffer */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000826 xfs_da_args_t *args, /* operation arguments */
827 int *indexp, /* out: leaf entry index */
828 xfs_da_state_t *state) /* state to fill in */
829{
Barry Naujok6a178102008-05-21 16:42:05 +1000830 if (args->op_flags & XFS_DA_OP_ADDNAME)
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000831 return xfs_dir2_leafn_lookup_for_addname(bp, args, indexp,
832 state);
833 return xfs_dir2_leafn_lookup_for_entry(bp, args, indexp, state);
834}
835
836/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 * Move count leaf entries from source to destination leaf.
838 * Log entries and headers. Stale entries are preserved.
839 */
840static void
Dave Chinner24df33b2013-04-12 07:30:21 +1000841xfs_dir3_leafn_moveents(
842 xfs_da_args_t *args, /* operation arguments */
843 struct xfs_buf *bp_s, /* source */
844 struct xfs_dir3_icleaf_hdr *shdr,
845 struct xfs_dir2_leaf_entry *sents,
846 int start_s,/* source leaf index */
847 struct xfs_buf *bp_d, /* destination */
848 struct xfs_dir3_icleaf_hdr *dhdr,
849 struct xfs_dir2_leaf_entry *dents,
850 int start_d,/* destination leaf index */
851 int count) /* count of leaves to copy */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
Dave Chinner24df33b2013-04-12 07:30:21 +1000853 int stale; /* count stale leaves copied */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000855 trace_xfs_dir2_leafn_moveents(args, start_s, start_d, count);
856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 /*
858 * Silently return if nothing to do.
859 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000860 if (count == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 return;
Dave Chinner24df33b2013-04-12 07:30:21 +1000862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 /*
864 * If the destination index is not the end of the current
865 * destination leaf entries, open up a hole in the destination
866 * to hold the new entries.
867 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000868 if (start_d < dhdr->count) {
869 memmove(&dents[start_d + count], &dents[start_d],
870 (dhdr->count - start_d) * sizeof(xfs_dir2_leaf_entry_t));
Dave Chinnerbc851782014-06-06 15:20:54 +1000871 xfs_dir3_leaf_log_ents(args, bp_d, start_d + count,
Dave Chinner24df33b2013-04-12 07:30:21 +1000872 count + dhdr->count - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 }
874 /*
875 * If the source has stale leaves, count the ones in the copy range
876 * so we can update the header correctly.
877 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000878 if (shdr->stale) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 int i; /* temp leaf index */
880
881 for (i = start_s, stale = 0; i < start_s + count; i++) {
Dave Chinner24df33b2013-04-12 07:30:21 +1000882 if (sents[i].address ==
883 cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 stale++;
885 }
886 } else
887 stale = 0;
888 /*
889 * Copy the leaf entries from source to destination.
890 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000891 memcpy(&dents[start_d], &sents[start_s],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 count * sizeof(xfs_dir2_leaf_entry_t));
Dave Chinnerbc851782014-06-06 15:20:54 +1000893 xfs_dir3_leaf_log_ents(args, bp_d, start_d, start_d + count - 1);
Dave Chinner24df33b2013-04-12 07:30:21 +1000894
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 /*
896 * If there are source entries after the ones we copied,
897 * delete the ones we copied by sliding the next ones down.
898 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000899 if (start_s + count < shdr->count) {
900 memmove(&sents[start_s], &sents[start_s + count],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 count * sizeof(xfs_dir2_leaf_entry_t));
Dave Chinnerbc851782014-06-06 15:20:54 +1000902 xfs_dir3_leaf_log_ents(args, bp_s, start_s, start_s + count - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 }
Dave Chinner24df33b2013-04-12 07:30:21 +1000904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 /*
906 * Update the headers and log them.
907 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000908 shdr->count -= count;
909 shdr->stale -= stale;
910 dhdr->count += count;
911 dhdr->stale += stale;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912}
913
914/*
915 * Determine the sort order of two leaf blocks.
916 * Returns 1 if both are valid and leaf2 should be before leaf1, else 0.
917 */
918int /* sort order */
919xfs_dir2_leafn_order(
Dave Chinner41419562013-10-29 22:11:50 +1100920 struct xfs_inode *dp,
Dave Chinner24df33b2013-04-12 07:30:21 +1000921 struct xfs_buf *leaf1_bp, /* leaf1 buffer */
922 struct xfs_buf *leaf2_bp) /* leaf2 buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
Dave Chinner24df33b2013-04-12 07:30:21 +1000924 struct xfs_dir2_leaf *leaf1 = leaf1_bp->b_addr;
925 struct xfs_dir2_leaf *leaf2 = leaf2_bp->b_addr;
926 struct xfs_dir2_leaf_entry *ents1;
927 struct xfs_dir2_leaf_entry *ents2;
928 struct xfs_dir3_icleaf_hdr hdr1;
929 struct xfs_dir3_icleaf_hdr hdr2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Dave Chinner01ba43b2013-10-29 22:11:52 +1100931 dp->d_ops->leaf_hdr_from_disk(&hdr1, leaf1);
932 dp->d_ops->leaf_hdr_from_disk(&hdr2, leaf2);
Dave Chinner41419562013-10-29 22:11:50 +1100933 ents1 = dp->d_ops->leaf_ents_p(leaf1);
934 ents2 = dp->d_ops->leaf_ents_p(leaf2);
Dave Chinner24df33b2013-04-12 07:30:21 +1000935
936 if (hdr1.count > 0 && hdr2.count > 0 &&
937 (be32_to_cpu(ents2[0].hashval) < be32_to_cpu(ents1[0].hashval) ||
938 be32_to_cpu(ents2[hdr2.count - 1].hashval) <
939 be32_to_cpu(ents1[hdr1.count - 1].hashval)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 return 1;
941 return 0;
942}
943
944/*
945 * Rebalance leaf entries between two leaf blocks.
946 * This is actually only called when the second block is new,
947 * though the code deals with the general case.
948 * A new entry will be inserted in one of the blocks, and that
949 * entry is taken into account when balancing.
950 */
951static void
952xfs_dir2_leafn_rebalance(
953 xfs_da_state_t *state, /* btree cursor */
954 xfs_da_state_blk_t *blk1, /* first btree block */
955 xfs_da_state_blk_t *blk2) /* second btree block */
956{
957 xfs_da_args_t *args; /* operation arguments */
958 int count; /* count (& direction) leaves */
959 int isleft; /* new goes in left leaf */
960 xfs_dir2_leaf_t *leaf1; /* first leaf structure */
961 xfs_dir2_leaf_t *leaf2; /* second leaf structure */
962 int mid; /* midpoint leaf index */
Dave Chinner742ae1e2013-04-30 21:39:34 +1000963#if defined(DEBUG) || defined(XFS_WARN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 int oldstale; /* old count of stale leaves */
965#endif
966 int oldsum; /* old total leaf count */
967 int swap; /* swapped leaf blocks */
Dave Chinner24df33b2013-04-12 07:30:21 +1000968 struct xfs_dir2_leaf_entry *ents1;
969 struct xfs_dir2_leaf_entry *ents2;
970 struct xfs_dir3_icleaf_hdr hdr1;
971 struct xfs_dir3_icleaf_hdr hdr2;
Dave Chinner41419562013-10-29 22:11:50 +1100972 struct xfs_inode *dp = state->args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
974 args = state->args;
975 /*
976 * If the block order is wrong, swap the arguments.
977 */
Dave Chinner41419562013-10-29 22:11:50 +1100978 if ((swap = xfs_dir2_leafn_order(dp, blk1->bp, blk2->bp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 xfs_da_state_blk_t *tmp; /* temp for block swap */
980
981 tmp = blk1;
982 blk1 = blk2;
983 blk2 = tmp;
984 }
Dave Chinner1d9025e2012-06-22 18:50:14 +1000985 leaf1 = blk1->bp->b_addr;
986 leaf2 = blk2->bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100987 dp->d_ops->leaf_hdr_from_disk(&hdr1, leaf1);
988 dp->d_ops->leaf_hdr_from_disk(&hdr2, leaf2);
Dave Chinner41419562013-10-29 22:11:50 +1100989 ents1 = dp->d_ops->leaf_ents_p(leaf1);
990 ents2 = dp->d_ops->leaf_ents_p(leaf2);
Dave Chinner24df33b2013-04-12 07:30:21 +1000991
992 oldsum = hdr1.count + hdr2.count;
Dave Chinner742ae1e2013-04-30 21:39:34 +1000993#if defined(DEBUG) || defined(XFS_WARN)
Dave Chinner24df33b2013-04-12 07:30:21 +1000994 oldstale = hdr1.stale + hdr2.stale;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995#endif
996 mid = oldsum >> 1;
Dave Chinner24df33b2013-04-12 07:30:21 +1000997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 /*
999 * If the old leaf count was odd then the new one will be even,
1000 * so we need to divide the new count evenly.
1001 */
1002 if (oldsum & 1) {
1003 xfs_dahash_t midhash; /* middle entry hash value */
1004
Dave Chinner24df33b2013-04-12 07:30:21 +10001005 if (mid >= hdr1.count)
1006 midhash = be32_to_cpu(ents2[mid - hdr1.count].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 else
Dave Chinner24df33b2013-04-12 07:30:21 +10001008 midhash = be32_to_cpu(ents1[mid].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 isleft = args->hashval <= midhash;
1010 }
1011 /*
1012 * If the old count is even then the new count is odd, so there's
1013 * no preferred side for the new entry.
1014 * Pick the left one.
1015 */
1016 else
1017 isleft = 1;
1018 /*
1019 * Calculate moved entry count. Positive means left-to-right,
1020 * negative means right-to-left. Then move the entries.
1021 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001022 count = hdr1.count - mid + (isleft == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 if (count > 0)
Dave Chinner24df33b2013-04-12 07:30:21 +10001024 xfs_dir3_leafn_moveents(args, blk1->bp, &hdr1, ents1,
1025 hdr1.count - count, blk2->bp,
1026 &hdr2, ents2, 0, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 else if (count < 0)
Dave Chinner24df33b2013-04-12 07:30:21 +10001028 xfs_dir3_leafn_moveents(args, blk2->bp, &hdr2, ents2, 0,
1029 blk1->bp, &hdr1, ents1,
1030 hdr1.count, count);
1031
1032 ASSERT(hdr1.count + hdr2.count == oldsum);
1033 ASSERT(hdr1.stale + hdr2.stale == oldstale);
1034
1035 /* log the changes made when moving the entries */
Dave Chinner01ba43b2013-10-29 22:11:52 +11001036 dp->d_ops->leaf_hdr_to_disk(leaf1, &hdr1);
1037 dp->d_ops->leaf_hdr_to_disk(leaf2, &hdr2);
Dave Chinnerbc851782014-06-06 15:20:54 +10001038 xfs_dir3_leaf_log_header(args, blk1->bp);
1039 xfs_dir3_leaf_log_header(args, blk2->bp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001040
Dave Chinner41419562013-10-29 22:11:50 +11001041 xfs_dir3_leaf_check(dp, blk1->bp);
1042 xfs_dir3_leaf_check(dp, blk2->bp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001043
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 /*
1045 * Mark whether we're inserting into the old or new leaf.
1046 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001047 if (hdr1.count < hdr2.count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 state->inleaf = swap;
Dave Chinner24df33b2013-04-12 07:30:21 +10001049 else if (hdr1.count > hdr2.count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 state->inleaf = !swap;
1051 else
Dave Chinner24df33b2013-04-12 07:30:21 +10001052 state->inleaf = swap ^ (blk1->index <= hdr1.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 /*
1054 * Adjust the expected index for insertion.
1055 */
1056 if (!state->inleaf)
Dave Chinner24df33b2013-04-12 07:30:21 +10001057 blk2->index = blk1->index - hdr1.count;
Barry Naujokf9f6dce2008-04-17 16:49:43 +10001058
1059 /*
1060 * Finally sanity check just to make sure we are not returning a
1061 * negative index
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 */
Dave Chinner41419562013-10-29 22:11:50 +11001063 if (blk2->index < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 state->inleaf = 1;
1065 blk2->index = 0;
Dave Chinner41419562013-10-29 22:11:50 +11001066 xfs_alert(dp->i_mount,
Eric Sandeen08e96e12013-10-11 20:59:05 -05001067 "%s: picked the wrong leaf? reverting original leaf: blk1->index %d",
Dave Chinner0b932cc2011-03-07 10:08:35 +11001068 __func__, blk1->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 }
1070}
1071
Dave Chinner20252072012-11-12 22:54:13 +11001072static int
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001073xfs_dir3_data_block_free(
Dave Chinner20252072012-11-12 22:54:13 +11001074 xfs_da_args_t *args,
1075 struct xfs_dir2_data_hdr *hdr,
1076 struct xfs_dir2_free *free,
1077 xfs_dir2_db_t fdb,
1078 int findex,
1079 struct xfs_buf *fbp,
1080 int longest)
1081{
Dave Chinner20252072012-11-12 22:54:13 +11001082 int logfree = 0;
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001083 __be16 *bests;
1084 struct xfs_dir3_icfree_hdr freehdr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001085 struct xfs_inode *dp = args->dp;
Dave Chinner20252072012-11-12 22:54:13 +11001086
Dave Chinner01ba43b2013-10-29 22:11:52 +11001087 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Dave Chinner24dd0f52013-10-30 13:48:41 -05001088 bests = dp->d_ops->free_bests_p(free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001089 if (hdr) {
Dave Chinner20252072012-11-12 22:54:13 +11001090 /*
1091 * Data block is not empty, just set the free entry to the new
1092 * value.
1093 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001094 bests[findex] = cpu_to_be16(longest);
Dave Chinnerbc851782014-06-06 15:20:54 +10001095 xfs_dir2_free_log_bests(args, fbp, findex, findex);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001096 return 0;
1097 }
1098
1099 /* One less used entry in the free table. */
1100 freehdr.nused--;
1101
1102 /*
1103 * If this was the last entry in the table, we can trim the table size
1104 * back. There might be other entries at the end referring to
1105 * non-existent data blocks, get those too.
1106 */
1107 if (findex == freehdr.nvalid - 1) {
1108 int i; /* free entry index */
1109
1110 for (i = findex - 1; i >= 0; i--) {
1111 if (bests[i] != cpu_to_be16(NULLDATAOFF))
1112 break;
1113 }
1114 freehdr.nvalid = i + 1;
1115 logfree = 0;
1116 } else {
1117 /* Not the last entry, just punch it out. */
1118 bests[findex] = cpu_to_be16(NULLDATAOFF);
Dave Chinner20252072012-11-12 22:54:13 +11001119 logfree = 1;
1120 }
1121
Dave Chinner01ba43b2013-10-29 22:11:52 +11001122 dp->d_ops->free_hdr_to_disk(free, &freehdr);
Dave Chinnerbc851782014-06-06 15:20:54 +10001123 xfs_dir2_free_log_header(args, fbp);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001124
1125 /*
1126 * If there are no useful entries left in the block, get rid of the
1127 * block if we can.
1128 */
1129 if (!freehdr.nused) {
1130 int error;
1131
1132 error = xfs_dir2_shrink_inode(args, fdb, fbp);
1133 if (error == 0) {
1134 fbp = NULL;
1135 logfree = 0;
1136 } else if (error != ENOSPC || args->total != 0)
1137 return error;
1138 /*
1139 * It's possible to get ENOSPC if there is no
1140 * space reservation. In this case some one
1141 * else will eventually get rid of this block.
1142 */
1143 }
1144
Dave Chinner20252072012-11-12 22:54:13 +11001145 /* Log the free entry that changed, unless we got rid of it. */
1146 if (logfree)
Dave Chinnerbc851782014-06-06 15:20:54 +10001147 xfs_dir2_free_log_bests(args, fbp, findex, findex);
Dave Chinner20252072012-11-12 22:54:13 +11001148 return 0;
1149}
1150
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151/*
1152 * Remove an entry from a node directory.
1153 * This removes the leaf entry and the data entry,
1154 * and updates the free block if necessary.
1155 */
1156static int /* error */
1157xfs_dir2_leafn_remove(
1158 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001159 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 int index, /* leaf entry index */
1161 xfs_da_state_blk_t *dblk, /* data block */
1162 int *rval) /* resulting block needs join */
1163{
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001164 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 xfs_dir2_db_t db; /* data block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001166 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 xfs_dir2_data_entry_t *dep; /* data block entry */
1168 xfs_inode_t *dp; /* incore directory inode */
1169 xfs_dir2_leaf_t *leaf; /* leaf structure */
1170 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1171 int longest; /* longest data free entry */
1172 int off; /* data block entry offset */
1173 xfs_mount_t *mp; /* filesystem mount point */
1174 int needlog; /* need to log data header */
1175 int needscan; /* need to rescan data frees */
1176 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner33363fe2013-04-03 16:11:22 +11001177 struct xfs_dir2_data_free *bf; /* bestfree table */
Dave Chinner24df33b2013-04-12 07:30:21 +10001178 struct xfs_dir3_icleaf_hdr leafhdr;
1179 struct xfs_dir2_leaf_entry *ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001181 trace_xfs_dir2_leafn_remove(args, index);
1182
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 dp = args->dp;
1184 tp = args->trans;
1185 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001186 leaf = bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001187 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +11001188 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001189
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 /*
1191 * Point to the entry we're removing.
1192 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001193 lep = &ents[index];
1194
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 /*
1196 * Extract the data block and offset from the entry.
1197 */
Dave Chinner30028032014-06-06 15:08:18 +10001198 db = xfs_dir2_dataptr_to_db(args->geo, be32_to_cpu(lep->address));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 ASSERT(dblk->blkno == db);
Dave Chinner30028032014-06-06 15:08:18 +10001200 off = xfs_dir2_dataptr_to_off(args->geo, be32_to_cpu(lep->address));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 ASSERT(dblk->index == off);
Dave Chinner24df33b2013-04-12 07:30:21 +10001202
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 /*
1204 * Kill the leaf entry by marking it stale.
1205 * Log the leaf block changes.
1206 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001207 leafhdr.stale++;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001208 dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr);
Dave Chinnerbc851782014-06-06 15:20:54 +10001209 xfs_dir3_leaf_log_header(args, bp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001210
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001211 lep->address = cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
Dave Chinnerbc851782014-06-06 15:20:54 +10001212 xfs_dir3_leaf_log_ents(args, bp, index, index);
Dave Chinner24df33b2013-04-12 07:30:21 +10001213
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 /*
1215 * Make the data entry free. Keep track of the longest freespace
1216 * in the data block in case it changes.
1217 */
1218 dbp = dblk->bp;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001219 hdr = dbp->b_addr;
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001220 dep = (xfs_dir2_data_entry_t *)((char *)hdr + off);
Dave Chinner2ca98772013-10-29 22:11:49 +11001221 bf = dp->d_ops->data_bestfree_p(hdr);
Dave Chinner33363fe2013-04-03 16:11:22 +11001222 longest = be16_to_cpu(bf[0].length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 needlog = needscan = 0;
Dave Chinnerbc851782014-06-06 15:20:54 +10001224 xfs_dir2_data_make_free(args, dbp, off,
Dave Chinner9d23fc82013-10-29 22:11:48 +11001225 dp->d_ops->data_entsize(dep->namelen), &needlog, &needscan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 /*
1227 * Rescan the data block freespaces for bestfree.
1228 * Log the data block header if needed.
1229 */
1230 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +11001231 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 if (needlog)
Dave Chinnerbc851782014-06-06 15:20:54 +10001233 xfs_dir2_data_log_header(args, dbp);
Dave Chinner33363fe2013-04-03 16:11:22 +11001234 xfs_dir3_data_check(dp, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 /*
1236 * If the longest data block freespace changes, need to update
1237 * the corresponding freeblock entry.
1238 */
Dave Chinner33363fe2013-04-03 16:11:22 +11001239 if (longest < be16_to_cpu(bf[0].length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 int error; /* error return value */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001241 struct xfs_buf *fbp; /* freeblock buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 xfs_dir2_db_t fdb; /* freeblock block number */
1243 int findex; /* index in freeblock entries */
1244 xfs_dir2_free_t *free; /* freeblock structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
1246 /*
1247 * Convert the data block number to a free block,
1248 * read in the free block.
1249 */
Dave Chinner8f661932014-06-06 15:15:59 +10001250 fdb = dp->d_ops->db_to_fdb(args->geo, db);
Dave Chinner2998ab1d2014-06-06 15:07:53 +10001251 error = xfs_dir2_free_read(tp, dp,
1252 xfs_dir2_db_to_da(args->geo, fdb),
Dave Chinner20252072012-11-12 22:54:13 +11001253 &fbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001254 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001256 free = fbp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001257#ifdef DEBUG
1258 {
1259 struct xfs_dir3_icfree_hdr freehdr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001260 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Dave Chinner8f661932014-06-06 15:15:59 +10001261 ASSERT(freehdr.firstdb == dp->d_ops->free_max_bests(args->geo) *
Dave Chinner30028032014-06-06 15:08:18 +10001262 (fdb - xfs_dir2_byte_to_db(args->geo,
1263 XFS_DIR2_FREE_OFFSET)));
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001264 }
1265#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 /*
1267 * Calculate which entry we need to fix.
1268 */
Dave Chinner8f661932014-06-06 15:15:59 +10001269 findex = dp->d_ops->db_to_fdindex(args->geo, db);
Dave Chinner33363fe2013-04-03 16:11:22 +11001270 longest = be16_to_cpu(bf[0].length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 /*
1272 * If the data block is now empty we can get rid of it
1273 * (usually).
1274 */
Dave Chinner8f661932014-06-06 15:15:59 +10001275 if (longest == args->geo->blksize -
Dave Chinner1c9a5b22013-10-30 09:15:02 +11001276 dp->d_ops->data_entry_offset) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 /*
1278 * Try to punch out the data block.
1279 */
1280 error = xfs_dir2_shrink_inode(args, db, dbp);
1281 if (error == 0) {
1282 dblk->bp = NULL;
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001283 hdr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 }
1285 /*
1286 * We can get ENOSPC if there's no space reservation.
1287 * In this case just drop the buffer and some one else
1288 * will eventually get rid of the empty block.
1289 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001290 else if (!(error == ENOSPC && args->total == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 return error;
1292 }
1293 /*
1294 * If we got rid of the data block, we can eliminate that entry
1295 * in the free block.
1296 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001297 error = xfs_dir3_data_block_free(args, hdr, free,
Dave Chinner20252072012-11-12 22:54:13 +11001298 fdb, findex, fbp, longest);
1299 if (error)
1300 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 }
Dave Chinner20252072012-11-12 22:54:13 +11001302
Dave Chinner41419562013-10-29 22:11:50 +11001303 xfs_dir3_leaf_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 /*
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001305 * Return indication of whether this leaf block is empty enough
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 * to justify trying to join it with a neighbor.
1307 */
Dave Chinner1c9a5b22013-10-30 09:15:02 +11001308 *rval = (dp->d_ops->leaf_hdr_size +
Dave Chinner24df33b2013-04-12 07:30:21 +10001309 (uint)sizeof(ents[0]) * (leafhdr.count - leafhdr.stale)) <
Dave Chinnered358c02014-06-06 15:18:10 +10001310 args->geo->magicpct;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 return 0;
1312}
1313
1314/*
1315 * Split the leaf entries in the old block into old and new blocks.
1316 */
1317int /* error */
1318xfs_dir2_leafn_split(
1319 xfs_da_state_t *state, /* btree cursor */
1320 xfs_da_state_blk_t *oldblk, /* original block */
1321 xfs_da_state_blk_t *newblk) /* newly created block */
1322{
1323 xfs_da_args_t *args; /* operation arguments */
1324 xfs_dablk_t blkno; /* new leaf block number */
1325 int error; /* error return value */
1326 xfs_mount_t *mp; /* filesystem mount point */
Dave Chinner41419562013-10-29 22:11:50 +11001327 struct xfs_inode *dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
1329 /*
1330 * Allocate space for a new leaf node.
1331 */
1332 args = state->args;
Dave Chinner41419562013-10-29 22:11:50 +11001333 dp = args->dp;
1334 mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 ASSERT(oldblk->magic == XFS_DIR2_LEAFN_MAGIC);
1336 error = xfs_da_grow_inode(args, &blkno);
1337 if (error) {
1338 return error;
1339 }
1340 /*
1341 * Initialize the new leaf block.
1342 */
Dave Chinner2998ab1d2014-06-06 15:07:53 +10001343 error = xfs_dir3_leaf_get_buf(args, xfs_dir2_da_to_db(args->geo, blkno),
Dave Chinner24df33b2013-04-12 07:30:21 +10001344 &newblk->bp, XFS_DIR2_LEAFN_MAGIC);
1345 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 return error;
Dave Chinner24df33b2013-04-12 07:30:21 +10001347
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 newblk->blkno = blkno;
1349 newblk->magic = XFS_DIR2_LEAFN_MAGIC;
1350 /*
1351 * Rebalance the entries across the two leaves, link the new
1352 * block into the leaves.
1353 */
1354 xfs_dir2_leafn_rebalance(state, oldblk, newblk);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001355 error = xfs_da3_blk_link(state, oldblk, newblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 if (error) {
1357 return error;
1358 }
1359 /*
1360 * Insert the new entry in the correct block.
1361 */
1362 if (state->inleaf)
1363 error = xfs_dir2_leafn_add(oldblk->bp, args, oldblk->index);
1364 else
1365 error = xfs_dir2_leafn_add(newblk->bp, args, newblk->index);
1366 /*
1367 * Update last hashval in each block since we added the name.
1368 */
Dave Chinner41419562013-10-29 22:11:50 +11001369 oldblk->hashval = xfs_dir2_leafn_lasthash(dp, oldblk->bp, NULL);
1370 newblk->hashval = xfs_dir2_leafn_lasthash(dp, newblk->bp, NULL);
1371 xfs_dir3_leaf_check(dp, oldblk->bp);
1372 xfs_dir3_leaf_check(dp, newblk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 return error;
1374}
1375
1376/*
1377 * Check a leaf block and its neighbors to see if the block should be
1378 * collapsed into one or the other neighbor. Always keep the block
1379 * with the smaller block number.
1380 * If the current block is over 50% full, don't try to join it, return 0.
1381 * If the block is empty, fill in the state structure and return 2.
1382 * If it can be collapsed, fill in the state structure and return 1.
1383 * If nothing can be done, return 0.
1384 */
1385int /* error */
1386xfs_dir2_leafn_toosmall(
1387 xfs_da_state_t *state, /* btree cursor */
1388 int *action) /* resulting action to take */
1389{
1390 xfs_da_state_blk_t *blk; /* leaf block */
1391 xfs_dablk_t blkno; /* leaf block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001392 struct xfs_buf *bp; /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 int bytes; /* bytes in use */
1394 int count; /* leaf live entry count */
1395 int error; /* error return value */
1396 int forward; /* sibling block direction */
1397 int i; /* sibling counter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 xfs_dir2_leaf_t *leaf; /* leaf structure */
1399 int rval; /* result from path_shift */
Dave Chinner24df33b2013-04-12 07:30:21 +10001400 struct xfs_dir3_icleaf_hdr leafhdr;
1401 struct xfs_dir2_leaf_entry *ents;
Dave Chinner41419562013-10-29 22:11:50 +11001402 struct xfs_inode *dp = state->args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403
1404 /*
1405 * Check for the degenerate case of the block being over 50% full.
1406 * If so, it's not worth even looking to see if we might be able
1407 * to coalesce with a sibling.
1408 */
1409 blk = &state->path.blk[state->path.active - 1];
Dave Chinner24df33b2013-04-12 07:30:21 +10001410 leaf = blk->bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001411 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +11001412 ents = dp->d_ops->leaf_ents_p(leaf);
1413 xfs_dir3_leaf_check(dp, blk->bp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001414
1415 count = leafhdr.count - leafhdr.stale;
Dave Chinner1c9a5b22013-10-30 09:15:02 +11001416 bytes = dp->d_ops->leaf_hdr_size + count * sizeof(ents[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 if (bytes > (state->blocksize >> 1)) {
1418 /*
1419 * Blk over 50%, don't try to join.
1420 */
1421 *action = 0;
1422 return 0;
1423 }
1424 /*
1425 * Check for the degenerate case of the block being empty.
1426 * If the block is empty, we'll simply delete it, no need to
1427 * coalesce it with a sibling block. We choose (arbitrarily)
1428 * to merge with the forward block unless it is NULL.
1429 */
1430 if (count == 0) {
1431 /*
1432 * Make altpath point to the block we want to keep and
1433 * path point to the block we want to drop (this one).
1434 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001435 forward = (leafhdr.forw != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 memcpy(&state->altpath, &state->path, sizeof(state->path));
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001437 error = xfs_da3_path_shift(state, &state->altpath, forward, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 &rval);
1439 if (error)
1440 return error;
1441 *action = rval ? 2 : 0;
1442 return 0;
1443 }
1444 /*
1445 * Examine each sibling block to see if we can coalesce with
1446 * at least 25% free space to spare. We need to figure out
1447 * whether to merge with the forward or the backward block.
1448 * We prefer coalescing with the lower numbered sibling so as
1449 * to shrink a directory over time.
1450 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001451 forward = leafhdr.forw < leafhdr.back;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 for (i = 0, bp = NULL; i < 2; forward = !forward, i++) {
Dave Chinner24df33b2013-04-12 07:30:21 +10001453 struct xfs_dir3_icleaf_hdr hdr2;
1454
1455 blkno = forward ? leafhdr.forw : leafhdr.back;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 if (blkno == 0)
1457 continue;
1458 /*
1459 * Read the sibling leaf block.
1460 */
Dave Chinner41419562013-10-29 22:11:50 +11001461 error = xfs_dir3_leafn_read(state->args->trans, dp,
Dave Chinnere6f76672012-11-12 22:54:15 +11001462 blkno, -1, &bp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001463 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 return error;
Dave Chinnere6f76672012-11-12 22:54:15 +11001465
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 /*
1467 * Count bytes in the two blocks combined.
1468 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001469 count = leafhdr.count - leafhdr.stale;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 bytes = state->blocksize - (state->blocksize >> 2);
Dave Chinner24df33b2013-04-12 07:30:21 +10001471
Dave Chinner1d9025e2012-06-22 18:50:14 +10001472 leaf = bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001473 dp->d_ops->leaf_hdr_from_disk(&hdr2, leaf);
Dave Chinner41419562013-10-29 22:11:50 +11001474 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001475 count += hdr2.count - hdr2.stale;
1476 bytes -= count * sizeof(ents[0]);
1477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 /*
1479 * Fits with at least 25% to spare.
1480 */
1481 if (bytes >= 0)
1482 break;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001483 xfs_trans_brelse(state->args->trans, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 }
1485 /*
1486 * Didn't like either block, give up.
1487 */
1488 if (i >= 2) {
1489 *action = 0;
1490 return 0;
1491 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10001492
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 /*
1494 * Make altpath point to the block we want to keep (the lower
1495 * numbered block) and path point to the block we want to drop.
1496 */
1497 memcpy(&state->altpath, &state->path, sizeof(state->path));
1498 if (blkno < blk->blkno)
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001499 error = xfs_da3_path_shift(state, &state->altpath, forward, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 &rval);
1501 else
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001502 error = xfs_da3_path_shift(state, &state->path, forward, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 &rval);
1504 if (error) {
1505 return error;
1506 }
1507 *action = rval ? 0 : 1;
1508 return 0;
1509}
1510
1511/*
1512 * Move all the leaf entries from drop_blk to save_blk.
1513 * This is done as part of a join operation.
1514 */
1515void
1516xfs_dir2_leafn_unbalance(
1517 xfs_da_state_t *state, /* cursor */
1518 xfs_da_state_blk_t *drop_blk, /* dead block */
1519 xfs_da_state_blk_t *save_blk) /* surviving block */
1520{
1521 xfs_da_args_t *args; /* operation arguments */
1522 xfs_dir2_leaf_t *drop_leaf; /* dead leaf structure */
1523 xfs_dir2_leaf_t *save_leaf; /* surviving leaf structure */
Dave Chinner24df33b2013-04-12 07:30:21 +10001524 struct xfs_dir3_icleaf_hdr savehdr;
1525 struct xfs_dir3_icleaf_hdr drophdr;
1526 struct xfs_dir2_leaf_entry *sents;
1527 struct xfs_dir2_leaf_entry *dents;
Dave Chinner41419562013-10-29 22:11:50 +11001528 struct xfs_inode *dp = state->args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
1530 args = state->args;
1531 ASSERT(drop_blk->magic == XFS_DIR2_LEAFN_MAGIC);
1532 ASSERT(save_blk->magic == XFS_DIR2_LEAFN_MAGIC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001533 drop_leaf = drop_blk->bp->b_addr;
1534 save_leaf = save_blk->bp->b_addr;
Dave Chinner24df33b2013-04-12 07:30:21 +10001535
Dave Chinner01ba43b2013-10-29 22:11:52 +11001536 dp->d_ops->leaf_hdr_from_disk(&savehdr, save_leaf);
1537 dp->d_ops->leaf_hdr_from_disk(&drophdr, drop_leaf);
1538 sents = dp->d_ops->leaf_ents_p(save_leaf);
1539 dents = dp->d_ops->leaf_ents_p(drop_leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001540
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 /*
1542 * If there are any stale leaf entries, take this opportunity
1543 * to purge them.
1544 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001545 if (drophdr.stale)
1546 xfs_dir3_leaf_compact(args, &drophdr, drop_blk->bp);
1547 if (savehdr.stale)
1548 xfs_dir3_leaf_compact(args, &savehdr, save_blk->bp);
1549
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 /*
1551 * Move the entries from drop to the appropriate end of save.
1552 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001553 drop_blk->hashval = be32_to_cpu(dents[drophdr.count - 1].hashval);
Dave Chinner41419562013-10-29 22:11:50 +11001554 if (xfs_dir2_leafn_order(dp, save_blk->bp, drop_blk->bp))
Dave Chinner24df33b2013-04-12 07:30:21 +10001555 xfs_dir3_leafn_moveents(args, drop_blk->bp, &drophdr, dents, 0,
1556 save_blk->bp, &savehdr, sents, 0,
1557 drophdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 else
Dave Chinner24df33b2013-04-12 07:30:21 +10001559 xfs_dir3_leafn_moveents(args, drop_blk->bp, &drophdr, dents, 0,
1560 save_blk->bp, &savehdr, sents,
1561 savehdr.count, drophdr.count);
1562 save_blk->hashval = be32_to_cpu(sents[savehdr.count - 1].hashval);
1563
1564 /* log the changes made when moving the entries */
Dave Chinner01ba43b2013-10-29 22:11:52 +11001565 dp->d_ops->leaf_hdr_to_disk(save_leaf, &savehdr);
1566 dp->d_ops->leaf_hdr_to_disk(drop_leaf, &drophdr);
Dave Chinnerbc851782014-06-06 15:20:54 +10001567 xfs_dir3_leaf_log_header(args, save_blk->bp);
1568 xfs_dir3_leaf_log_header(args, drop_blk->bp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001569
Dave Chinner41419562013-10-29 22:11:50 +11001570 xfs_dir3_leaf_check(dp, save_blk->bp);
1571 xfs_dir3_leaf_check(dp, drop_blk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572}
1573
1574/*
1575 * Top-level node form directory addname routine.
1576 */
1577int /* error */
1578xfs_dir2_node_addname(
1579 xfs_da_args_t *args) /* operation arguments */
1580{
1581 xfs_da_state_blk_t *blk; /* leaf block for insert */
1582 int error; /* error return value */
1583 int rval; /* sub-return value */
1584 xfs_da_state_t *state; /* btree cursor */
1585
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001586 trace_xfs_dir2_node_addname(args);
1587
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 /*
1589 * Allocate and initialize the state (btree cursor).
1590 */
1591 state = xfs_da_state_alloc();
1592 state->args = args;
1593 state->mp = args->dp->i_mount;
Dave Chinner7ab610f2014-06-06 15:20:02 +10001594 state->blocksize = args->geo->blksize;
1595 state->node_ents = args->geo->node_ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 /*
1597 * Look up the name. We're not supposed to find it, but
1598 * this gives us the insertion point.
1599 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001600 error = xfs_da3_node_lookup_int(state, &rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 if (error)
1602 rval = error;
1603 if (rval != ENOENT) {
1604 goto done;
1605 }
1606 /*
1607 * Add the data entry to a data block.
1608 * Extravalid is set to a freeblock found by lookup.
1609 */
1610 rval = xfs_dir2_node_addname_int(args,
1611 state->extravalid ? &state->extrablk : NULL);
1612 if (rval) {
1613 goto done;
1614 }
1615 blk = &state->path.blk[state->path.active - 1];
1616 ASSERT(blk->magic == XFS_DIR2_LEAFN_MAGIC);
1617 /*
1618 * Add the new leaf entry.
1619 */
1620 rval = xfs_dir2_leafn_add(blk->bp, args, blk->index);
1621 if (rval == 0) {
1622 /*
1623 * It worked, fix the hash values up the btree.
1624 */
Barry Naujok6a178102008-05-21 16:42:05 +10001625 if (!(args->op_flags & XFS_DA_OP_JUSTCHECK))
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001626 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 } else {
1628 /*
1629 * It didn't work, we need to split the leaf block.
1630 */
1631 if (args->total == 0) {
1632 ASSERT(rval == ENOSPC);
1633 goto done;
1634 }
1635 /*
1636 * Split the leaf block and insert the new entry.
1637 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001638 rval = xfs_da3_split(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 }
1640done:
1641 xfs_da_state_free(state);
1642 return rval;
1643}
1644
1645/*
1646 * Add the data entry for a node-format directory name addition.
1647 * The leaf entry is added in xfs_dir2_leafn_add.
1648 * We may enter with a freespace block that the lookup found.
1649 */
1650static int /* error */
1651xfs_dir2_node_addname_int(
1652 xfs_da_args_t *args, /* operation arguments */
1653 xfs_da_state_blk_t *fblk) /* optional freespace block */
1654{
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001655 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 xfs_dir2_db_t dbno; /* data block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001657 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 xfs_dir2_data_entry_t *dep; /* data entry pointer */
1659 xfs_inode_t *dp; /* incore directory inode */
1660 xfs_dir2_data_unused_t *dup; /* data unused entry pointer */
1661 int error; /* error return value */
1662 xfs_dir2_db_t fbno; /* freespace block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001663 struct xfs_buf *fbp; /* freespace buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 int findex; /* freespace entry index */
1665 xfs_dir2_free_t *free=NULL; /* freespace block structure */
1666 xfs_dir2_db_t ifbno; /* initial freespace block no */
1667 xfs_dir2_db_t lastfbno=0; /* highest freespace block no */
1668 int length; /* length of the new entry */
1669 int logfree; /* need to log free entry */
1670 xfs_mount_t *mp; /* filesystem mount point */
1671 int needlog; /* need to log data header */
1672 int needscan; /* need to rescan data frees */
Nathan Scott3d693c62006-03-17 17:28:27 +11001673 __be16 *tagp; /* data entry tag pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 xfs_trans_t *tp; /* transaction pointer */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001675 __be16 *bests;
1676 struct xfs_dir3_icfree_hdr freehdr;
Dave Chinner33363fe2013-04-03 16:11:22 +11001677 struct xfs_dir2_data_free *bf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
1679 dp = args->dp;
1680 mp = dp->i_mount;
1681 tp = args->trans;
Dave Chinner9d23fc82013-10-29 22:11:48 +11001682 length = dp->d_ops->data_entsize(args->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 /*
1684 * If we came in with a freespace block that means that lookup
1685 * found an entry with our hash value. This is the freespace
1686 * block for that data entry.
1687 */
1688 if (fblk) {
1689 fbp = fblk->bp;
1690 /*
1691 * Remember initial freespace block number.
1692 */
1693 ifbno = fblk->blkno;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001694 free = fbp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 findex = fblk->index;
Dave Chinner24dd0f52013-10-30 13:48:41 -05001696 bests = dp->d_ops->free_bests_p(free);
Dave Chinner01ba43b2013-10-29 22:11:52 +11001697 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001698
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 /*
1700 * This means the free entry showed that the data block had
1701 * space for our entry, so we remembered it.
1702 * Use that data block.
1703 */
1704 if (findex >= 0) {
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001705 ASSERT(findex < freehdr.nvalid);
1706 ASSERT(be16_to_cpu(bests[findex]) != NULLDATAOFF);
1707 ASSERT(be16_to_cpu(bests[findex]) >= length);
1708 dbno = freehdr.firstdb + findex;
1709 } else {
1710 /*
1711 * The data block looked at didn't have enough room.
1712 * We'll start at the beginning of the freespace entries.
1713 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 dbno = -1;
1715 findex = 0;
1716 }
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001717 } else {
1718 /*
1719 * Didn't come in with a freespace block, so no data block.
1720 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 ifbno = dbno = -1;
1722 fbp = NULL;
1723 findex = 0;
1724 }
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001725
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 /*
1727 * If we don't have a data block yet, we're going to scan the
1728 * freespace blocks looking for one. Figure out what the
1729 * highest freespace block number is.
1730 */
1731 if (dbno == -1) {
1732 xfs_fileoff_t fo; /* freespace block number */
1733
Eric Sandeen7fb2cd42014-04-14 18:58:05 +10001734 if ((error = xfs_bmap_last_offset(dp, &fo, XFS_DATA_FORK)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 return error;
Dave Chinner2998ab1d2014-06-06 15:07:53 +10001736 lastfbno = xfs_dir2_da_to_db(args->geo, (xfs_dablk_t)fo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 fbno = ifbno;
1738 }
1739 /*
1740 * While we haven't identified a data block, search the freeblock
1741 * data for a good data block. If we find a null freeblock entry,
1742 * indicating a hole in the data blocks, remember that.
1743 */
1744 while (dbno == -1) {
1745 /*
1746 * If we don't have a freeblock in hand, get the next one.
1747 */
1748 if (fbp == NULL) {
1749 /*
1750 * Happens the first time through unless lookup gave
1751 * us a freespace block to start with.
1752 */
1753 if (++fbno == 0)
Dave Chinner30028032014-06-06 15:08:18 +10001754 fbno = xfs_dir2_byte_to_db(args->geo,
Dave Chinner8c44a282014-06-06 15:04:41 +10001755 XFS_DIR2_FREE_OFFSET);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 /*
1757 * If it's ifbno we already looked at it.
1758 */
1759 if (fbno == ifbno)
1760 fbno++;
1761 /*
1762 * If it's off the end we're done.
1763 */
1764 if (fbno >= lastfbno)
1765 break;
1766 /*
1767 * Read the block. There can be holes in the
1768 * freespace blocks, so this might not succeed.
1769 * This should be really rare, so there's no reason
1770 * to avoid it.
1771 */
Dave Chinner20252072012-11-12 22:54:13 +11001772 error = xfs_dir2_free_try_read(tp, dp,
Dave Chinner2998ab1d2014-06-06 15:07:53 +10001773 xfs_dir2_db_to_da(args->geo, fbno),
1774 &fbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001775 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 return error;
Dave Chinner4bb20a82012-11-12 22:54:10 +11001777 if (!fbp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 continue;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001779 free = fbp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 findex = 0;
1781 }
1782 /*
1783 * Look at the current free entry. Is it good enough?
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001784 *
1785 * The bests initialisation should be where the bufer is read in
1786 * the above branch. But gcc is too stupid to realise that bests
1787 * and the freehdr are actually initialised if they are placed
1788 * there, so we have to do it here to avoid warnings. Blech.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 */
Dave Chinner24dd0f52013-10-30 13:48:41 -05001790 bests = dp->d_ops->free_bests_p(free);
Dave Chinner01ba43b2013-10-29 22:11:52 +11001791 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001792 if (be16_to_cpu(bests[findex]) != NULLDATAOFF &&
1793 be16_to_cpu(bests[findex]) >= length)
1794 dbno = freehdr.firstdb + findex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 else {
1796 /*
1797 * Are we done with the freeblock?
1798 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001799 if (++findex == freehdr.nvalid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 /*
1801 * Drop the block.
1802 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001803 xfs_trans_brelse(tp, fbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 fbp = NULL;
1805 if (fblk && fblk->bp)
1806 fblk->bp = NULL;
1807 }
1808 }
1809 }
1810 /*
1811 * If we don't have a data block, we need to allocate one and make
1812 * the freespace entries refer to it.
1813 */
1814 if (unlikely(dbno == -1)) {
1815 /*
1816 * Not allowed to allocate, return failure.
1817 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001818 if ((args->op_flags & XFS_DA_OP_JUSTCHECK) || args->total == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 return XFS_ERROR(ENOSPC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001820
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 /*
1822 * Allocate and initialize the new data block.
1823 */
1824 if (unlikely((error = xfs_dir2_grow_inode(args,
1825 XFS_DIR2_DATA_SPACE,
1826 &dbno)) ||
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11001827 (error = xfs_dir3_data_init(args, dbno, &dbp))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001829
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 /*
1831 * If (somehow) we have a freespace block, get rid of it.
1832 */
1833 if (fbp)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001834 xfs_trans_brelse(tp, fbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 if (fblk && fblk->bp)
1836 fblk->bp = NULL;
1837
1838 /*
1839 * Get the freespace block corresponding to the data block
1840 * that was just allocated.
1841 */
Dave Chinner8f661932014-06-06 15:15:59 +10001842 fbno = dp->d_ops->db_to_fdb(args->geo, dbno);
Dave Chinner20252072012-11-12 22:54:13 +11001843 error = xfs_dir2_free_try_read(tp, dp,
Dave Chinner2998ab1d2014-06-06 15:07:53 +10001844 xfs_dir2_db_to_da(args->geo, fbno),
1845 &fbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001846 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001848
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 /*
1850 * If there wasn't a freespace block, the read will
1851 * return a NULL fbp. Allocate and initialize a new one.
1852 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001853 if (!fbp) {
1854 error = xfs_dir2_grow_inode(args, XFS_DIR2_FREE_SPACE,
1855 &fbno);
1856 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858
Dave Chinner8f661932014-06-06 15:15:59 +10001859 if (dp->d_ops->db_to_fdb(args->geo, dbno) != fbno) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001860 xfs_alert(mp,
Jean Delvaredf2e3012011-07-16 18:10:35 +02001861 "%s: dir ino %llu needed freesp block %lld for\n"
Dave Chinner0b932cc2011-03-07 10:08:35 +11001862 " data block %lld, got %lld ifbno %llu lastfbno %d",
1863 __func__, (unsigned long long)dp->i_ino,
Dave Chinner8f661932014-06-06 15:15:59 +10001864 (long long)dp->d_ops->db_to_fdb(
1865 args->geo, dbno),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 (long long)dbno, (long long)fbno,
1867 (unsigned long long)ifbno, lastfbno);
1868 if (fblk) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001869 xfs_alert(mp,
1870 " fblk 0x%p blkno %llu index %d magic 0x%x",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 fblk,
1872 (unsigned long long)fblk->blkno,
1873 fblk->index,
1874 fblk->magic);
1875 } else {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001876 xfs_alert(mp, " ... fblk is NULL");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 }
1878 XFS_ERROR_REPORT("xfs_dir2_node_addname_int",
1879 XFS_ERRLEVEL_LOW, mp);
1880 return XFS_ERROR(EFSCORRUPTED);
1881 }
1882
1883 /*
1884 * Get a buffer for the new block.
1885 */
Dave Chinner2998ab1d2014-06-06 15:07:53 +10001886 error = xfs_dir3_free_get_buf(args, fbno, &fbp);
Dave Chinnerb0f539d2012-11-14 17:53:49 +11001887 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 return error;
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001889 free = fbp->b_addr;
Dave Chinner24dd0f52013-10-30 13:48:41 -05001890 bests = dp->d_ops->free_bests_p(free);
Dave Chinner01ba43b2013-10-29 22:11:52 +11001891 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
1893 /*
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001894 * Remember the first slot as our empty slot.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 */
Dave Chinner8c44a282014-06-06 15:04:41 +10001896 freehdr.firstdb =
Dave Chinner30028032014-06-06 15:08:18 +10001897 (fbno - xfs_dir2_byte_to_db(args->geo,
Dave Chinner8c44a282014-06-06 15:04:41 +10001898 XFS_DIR2_FREE_OFFSET)) *
Dave Chinner8f661932014-06-06 15:15:59 +10001899 dp->d_ops->free_max_bests(args->geo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 } else {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001901 free = fbp->b_addr;
Dave Chinner24dd0f52013-10-30 13:48:41 -05001902 bests = dp->d_ops->free_bests_p(free);
Dave Chinner01ba43b2013-10-29 22:11:52 +11001903 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 }
1905
1906 /*
1907 * Set the freespace block index from the data block number.
1908 */
Dave Chinner8f661932014-06-06 15:15:59 +10001909 findex = dp->d_ops->db_to_fdindex(args->geo, dbno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 /*
1911 * If it's after the end of the current entries in the
1912 * freespace block, extend that table.
1913 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001914 if (findex >= freehdr.nvalid) {
Dave Chinner8f661932014-06-06 15:15:59 +10001915 ASSERT(findex < dp->d_ops->free_max_bests(args->geo));
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001916 freehdr.nvalid = findex + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 /*
1918 * Tag new entry so nused will go up.
1919 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001920 bests[findex] = cpu_to_be16(NULLDATAOFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 }
1922 /*
1923 * If this entry was for an empty data block
1924 * (this should always be true) then update the header.
1925 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001926 if (bests[findex] == cpu_to_be16(NULLDATAOFF)) {
1927 freehdr.nused++;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001928 dp->d_ops->free_hdr_to_disk(fbp->b_addr, &freehdr);
Dave Chinnerbc851782014-06-06 15:20:54 +10001929 xfs_dir2_free_log_header(args, fbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 }
1931 /*
1932 * Update the real value in the table.
1933 * We haven't allocated the data entry yet so this will
1934 * change again.
1935 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001936 hdr = dbp->b_addr;
Dave Chinner2ca98772013-10-29 22:11:49 +11001937 bf = dp->d_ops->data_bestfree_p(hdr);
Dave Chinner33363fe2013-04-03 16:11:22 +11001938 bests[findex] = bf[0].length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 logfree = 1;
1940 }
1941 /*
1942 * We had a data block so we don't have to make a new one.
1943 */
1944 else {
1945 /*
1946 * If just checking, we succeeded.
1947 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001948 if (args->op_flags & XFS_DA_OP_JUSTCHECK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 return 0;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001950
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 /*
1952 * Read the data block in.
1953 */
Dave Chinner2998ab1d2014-06-06 15:07:53 +10001954 error = xfs_dir3_data_read(tp, dp,
1955 xfs_dir2_db_to_da(args->geo, dbno),
Dave Chinnere4813572012-11-12 22:54:14 +11001956 -1, &dbp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001957 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001959 hdr = dbp->b_addr;
Dave Chinner2ca98772013-10-29 22:11:49 +11001960 bf = dp->d_ops->data_bestfree_p(hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 logfree = 0;
1962 }
Dave Chinner33363fe2013-04-03 16:11:22 +11001963 ASSERT(be16_to_cpu(bf[0].length) >= length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 /*
1965 * Point to the existing unused space.
1966 */
1967 dup = (xfs_dir2_data_unused_t *)
Dave Chinner33363fe2013-04-03 16:11:22 +11001968 ((char *)hdr + be16_to_cpu(bf[0].offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 needscan = needlog = 0;
1970 /*
1971 * Mark the first part of the unused space, inuse for us.
1972 */
Dave Chinnerbc851782014-06-06 15:20:54 +10001973 xfs_dir2_data_use_free(args, dbp, dup,
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001974 (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr), length,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 &needlog, &needscan);
1976 /*
1977 * Fill in the new entry and log it.
1978 */
1979 dep = (xfs_dir2_data_entry_t *)dup;
Christoph Hellwigff9901c2006-06-09 14:48:37 +10001980 dep->inumber = cpu_to_be64(args->inumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 dep->namelen = args->namelen;
1982 memcpy(dep->name, args->name, dep->namelen);
Dave Chinner9d23fc82013-10-29 22:11:48 +11001983 dp->d_ops->data_put_ftype(dep, args->filetype);
1984 tagp = dp->d_ops->data_entry_tag_p(dep);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001985 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Dave Chinnerbc851782014-06-06 15:20:54 +10001986 xfs_dir2_data_log_entry(args, dbp, dep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 /*
1988 * Rescan the block for bestfree if needed.
1989 */
1990 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +11001991 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 /*
1993 * Log the data block header if needed.
1994 */
1995 if (needlog)
Dave Chinnerbc851782014-06-06 15:20:54 +10001996 xfs_dir2_data_log_header(args, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 /*
1998 * If the freespace entry is now wrong, update it.
1999 */
Dave Chinner24dd0f52013-10-30 13:48:41 -05002000 bests = dp->d_ops->free_bests_p(free); /* gcc is so stupid */
Dave Chinner33363fe2013-04-03 16:11:22 +11002001 if (be16_to_cpu(bests[findex]) != be16_to_cpu(bf[0].length)) {
2002 bests[findex] = bf[0].length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 logfree = 1;
2004 }
2005 /*
2006 * Log the freespace entry if needed.
2007 */
2008 if (logfree)
Dave Chinnerbc851782014-06-06 15:20:54 +10002009 xfs_dir2_free_log_bests(args, fbp, findex, findex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 * Return the data block and offset in args, then drop the data block.
2012 */
2013 args->blkno = (xfs_dablk_t)dbno;
Nathan Scott3d693c62006-03-17 17:28:27 +11002014 args->index = be16_to_cpu(*tagp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 return 0;
2016}
2017
2018/*
2019 * Lookup an entry in a node-format directory.
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002020 * All the real work happens in xfs_da3_node_lookup_int.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 * The only real output is the inode number of the entry.
2022 */
2023int /* error */
2024xfs_dir2_node_lookup(
2025 xfs_da_args_t *args) /* operation arguments */
2026{
2027 int error; /* error return value */
2028 int i; /* btree level */
2029 int rval; /* operation return value */
2030 xfs_da_state_t *state; /* btree cursor */
2031
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002032 trace_xfs_dir2_node_lookup(args);
2033
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 /*
2035 * Allocate and initialize the btree cursor.
2036 */
2037 state = xfs_da_state_alloc();
2038 state->args = args;
2039 state->mp = args->dp->i_mount;
Dave Chinner8f661932014-06-06 15:15:59 +10002040 state->blocksize = args->geo->blksize;
Dave Chinner7ab610f2014-06-06 15:20:02 +10002041 state->node_ents = args->geo->node_ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 /*
2043 * Fill in the path to the entry in the cursor.
2044 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002045 error = xfs_da3_node_lookup_int(state, &rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 if (error)
2047 rval = error;
Barry Naujok384f3ce2008-05-21 16:58:22 +10002048 else if (rval == ENOENT && args->cmpresult == XFS_CMP_CASE) {
2049 /* If a CI match, dup the actual name and return EEXIST */
2050 xfs_dir2_data_entry_t *dep;
2051
Dave Chinner1d9025e2012-06-22 18:50:14 +10002052 dep = (xfs_dir2_data_entry_t *)
2053 ((char *)state->extrablk.bp->b_addr +
2054 state->extrablk.index);
Barry Naujok384f3ce2008-05-21 16:58:22 +10002055 rval = xfs_dir_cilookup_result(args, dep->name, dep->namelen);
2056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 /*
2058 * Release the btree blocks and leaf block.
2059 */
2060 for (i = 0; i < state->path.active; i++) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002061 xfs_trans_brelse(args->trans, state->path.blk[i].bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 state->path.blk[i].bp = NULL;
2063 }
2064 /*
2065 * Release the data block if we have it.
2066 */
2067 if (state->extravalid && state->extrablk.bp) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002068 xfs_trans_brelse(args->trans, state->extrablk.bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 state->extrablk.bp = NULL;
2070 }
2071 xfs_da_state_free(state);
2072 return rval;
2073}
2074
2075/*
2076 * Remove an entry from a node-format directory.
2077 */
2078int /* error */
2079xfs_dir2_node_removename(
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002080 struct xfs_da_args *args) /* operation arguments */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081{
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002082 struct xfs_da_state_blk *blk; /* leaf block */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 int error; /* error return value */
2084 int rval; /* operation return value */
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002085 struct xfs_da_state *state; /* btree cursor */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002087 trace_xfs_dir2_node_removename(args);
2088
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 /*
2090 * Allocate and initialize the btree cursor.
2091 */
2092 state = xfs_da_state_alloc();
2093 state->args = args;
2094 state->mp = args->dp->i_mount;
Dave Chinner8f661932014-06-06 15:15:59 +10002095 state->blocksize = args->geo->blksize;
Dave Chinner7ab610f2014-06-06 15:20:02 +10002096 state->node_ents = args->geo->node_ents;
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002097
2098 /* Look up the entry we're deleting, set up the cursor. */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002099 error = xfs_da3_node_lookup_int(state, &rval);
Barry Naujok5163f952008-05-21 16:41:01 +10002100 if (error)
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002101 goto out_free;
2102
2103 /* Didn't find it, upper layer screwed up. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 if (rval != EEXIST) {
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002105 error = rval;
2106 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 }
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002108
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 blk = &state->path.blk[state->path.active - 1];
2110 ASSERT(blk->magic == XFS_DIR2_LEAFN_MAGIC);
2111 ASSERT(state->extravalid);
2112 /*
2113 * Remove the leaf and data entries.
2114 * Extrablk refers to the data block.
2115 */
2116 error = xfs_dir2_leafn_remove(args, blk->bp, blk->index,
2117 &state->extrablk, &rval);
Barry Naujok5163f952008-05-21 16:41:01 +10002118 if (error)
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002119 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 /*
2121 * Fix the hash values up the btree.
2122 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002123 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 /*
2125 * If we need to join leaf blocks, do it.
2126 */
2127 if (rval && state->path.active > 1)
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002128 error = xfs_da3_join(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 /*
2130 * If no errors so far, try conversion to leaf format.
2131 */
2132 if (!error)
2133 error = xfs_dir2_node_to_leaf(state);
Mark Tinguely3a8c9202013-10-05 21:48:25 -05002134out_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 xfs_da_state_free(state);
2136 return error;
2137}
2138
2139/*
2140 * Replace an entry's inode number in a node-format directory.
2141 */
2142int /* error */
2143xfs_dir2_node_replace(
2144 xfs_da_args_t *args) /* operation arguments */
2145{
2146 xfs_da_state_blk_t *blk; /* leaf block */
Christoph Hellwigc2066e22011-07-08 14:35:38 +02002147 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 xfs_dir2_data_entry_t *dep; /* data entry changed */
2149 int error; /* error return value */
2150 int i; /* btree level */
2151 xfs_ino_t inum; /* new inode number */
2152 xfs_dir2_leaf_t *leaf; /* leaf structure */
2153 xfs_dir2_leaf_entry_t *lep; /* leaf entry being changed */
2154 int rval; /* internal return value */
2155 xfs_da_state_t *state; /* btree cursor */
2156
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002157 trace_xfs_dir2_node_replace(args);
2158
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 /*
2160 * Allocate and initialize the btree cursor.
2161 */
2162 state = xfs_da_state_alloc();
2163 state->args = args;
2164 state->mp = args->dp->i_mount;
Dave Chinner8f661932014-06-06 15:15:59 +10002165 state->blocksize = args->geo->blksize;
Dave Chinner7ab610f2014-06-06 15:20:02 +10002166 state->node_ents = args->geo->node_ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 inum = args->inumber;
2168 /*
2169 * Lookup the entry to change in the btree.
2170 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002171 error = xfs_da3_node_lookup_int(state, &rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 if (error) {
2173 rval = error;
2174 }
2175 /*
2176 * It should be found, since the vnodeops layer has looked it up
2177 * and locked it. But paranoia is good.
2178 */
2179 if (rval == EEXIST) {
Dave Chinner24df33b2013-04-12 07:30:21 +10002180 struct xfs_dir2_leaf_entry *ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 /*
2182 * Find the leaf entry.
2183 */
2184 blk = &state->path.blk[state->path.active - 1];
2185 ASSERT(blk->magic == XFS_DIR2_LEAFN_MAGIC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002186 leaf = blk->bp->b_addr;
Dave Chinner41419562013-10-29 22:11:50 +11002187 ents = args->dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10002188 lep = &ents[blk->index];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 ASSERT(state->extravalid);
2190 /*
2191 * Point to the data entry.
2192 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10002193 hdr = state->extrablk.bp->b_addr;
Dave Chinner33363fe2013-04-03 16:11:22 +11002194 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
2195 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 dep = (xfs_dir2_data_entry_t *)
Christoph Hellwigc2066e22011-07-08 14:35:38 +02002197 ((char *)hdr +
Dave Chinner30028032014-06-06 15:08:18 +10002198 xfs_dir2_dataptr_to_off(args->geo,
2199 be32_to_cpu(lep->address)));
Christoph Hellwigff9901c2006-06-09 14:48:37 +10002200 ASSERT(inum != be64_to_cpu(dep->inumber));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 /*
2202 * Fill in the new inode number and log the entry.
2203 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +10002204 dep->inumber = cpu_to_be64(inum);
Dave Chinner9d23fc82013-10-29 22:11:48 +11002205 args->dp->d_ops->data_put_ftype(dep, args->filetype);
Dave Chinnerbc851782014-06-06 15:20:54 +10002206 xfs_dir2_data_log_entry(args, state->extrablk.bp, dep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 rval = 0;
2208 }
2209 /*
2210 * Didn't find it, and we're holding a data block. Drop it.
2211 */
2212 else if (state->extravalid) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002213 xfs_trans_brelse(args->trans, state->extrablk.bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 state->extrablk.bp = NULL;
2215 }
2216 /*
2217 * Release all the buffers in the cursor.
2218 */
2219 for (i = 0; i < state->path.active; i++) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002220 xfs_trans_brelse(args->trans, state->path.blk[i].bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 state->path.blk[i].bp = NULL;
2222 }
2223 xfs_da_state_free(state);
2224 return rval;
2225}
2226
2227/*
2228 * Trim off a trailing empty freespace block.
2229 * Return (in rvalp) 1 if we did it, 0 if not.
2230 */
2231int /* error */
2232xfs_dir2_node_trim_free(
2233 xfs_da_args_t *args, /* operation arguments */
2234 xfs_fileoff_t fo, /* free block number */
2235 int *rvalp) /* out: did something */
2236{
Dave Chinner1d9025e2012-06-22 18:50:14 +10002237 struct xfs_buf *bp; /* freespace buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 xfs_inode_t *dp; /* incore directory inode */
2239 int error; /* error return code */
2240 xfs_dir2_free_t *free; /* freespace structure */
2241 xfs_mount_t *mp; /* filesystem mount point */
2242 xfs_trans_t *tp; /* transaction pointer */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11002243 struct xfs_dir3_icfree_hdr freehdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
2245 dp = args->dp;
2246 mp = dp->i_mount;
2247 tp = args->trans;
2248 /*
2249 * Read the freespace block.
2250 */
Dave Chinner20252072012-11-12 22:54:13 +11002251 error = xfs_dir2_free_try_read(tp, dp, fo, &bp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11002252 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 /*
2255 * There can be holes in freespace. If fo is a hole, there's
2256 * nothing to do.
2257 */
Dave Chinner20252072012-11-12 22:54:13 +11002258 if (!bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 return 0;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002260 free = bp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11002261 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11002262
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 /*
2264 * If there are used entries, there's nothing to do.
2265 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11002266 if (freehdr.nused > 0) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002267 xfs_trans_brelse(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 *rvalp = 0;
2269 return 0;
2270 }
2271 /*
2272 * Blow the block away.
2273 */
Dave Chinner2998ab1d2014-06-06 15:07:53 +10002274 error = xfs_dir2_shrink_inode(args,
2275 xfs_dir2_da_to_db(args->geo, (xfs_dablk_t)fo), bp);
2276 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 /*
2278 * Can't fail with ENOSPC since that only happens with no
2279 * space reservation, when breaking up an extent into two
2280 * pieces. This is the last block of an extent.
2281 */
2282 ASSERT(error != ENOSPC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002283 xfs_trans_brelse(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 return error;
2285 }
2286 /*
2287 * Return that we succeeded.
2288 */
2289 *rvalp = 1;
2290 return 0;
2291}