blob: 5980f9b7fa9b8c9bf69d2bf0b21408001e99e46a [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.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_types.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "xfs_log.h"
22#include "xfs_trans.h"
23#include "xfs_sb.h"
David Chinnerda353b02007-08-28 14:00:13 +100024#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_mount.h"
Nathan Scotta844f452005-11-02 14:38:42 +110026#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_dinode.h"
29#include "xfs_inode.h"
30#include "xfs_bmap.h"
Christoph Hellwig57926642011-07-13 13:43:48 +020031#include "xfs_dir2_format.h"
32#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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36/*
37 * Function declarations.
38 */
Dave Chinner1d9025e2012-06-22 18:50:14 +100039static int xfs_dir2_leafn_add(struct xfs_buf *bp, xfs_da_args_t *args,
40 int index);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#ifdef DEBUG
Dave Chinner1d9025e2012-06-22 18:50:14 +100042static void xfs_dir2_leafn_check(struct xfs_inode *dp, struct xfs_buf *bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#else
44#define xfs_dir2_leafn_check(dp, bp)
45#endif
Dave Chinner1d9025e2012-06-22 18:50:14 +100046static void xfs_dir2_leafn_moveents(xfs_da_args_t *args, struct xfs_buf *bp_s,
47 int start_s, struct xfs_buf *bp_d,
48 int start_d, int count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049static void xfs_dir2_leafn_rebalance(xfs_da_state_t *state,
50 xfs_da_state_blk_t *blk1,
51 xfs_da_state_blk_t *blk2);
Dave Chinner1d9025e2012-06-22 18:50:14 +100052static int xfs_dir2_leafn_remove(xfs_da_args_t *args, struct xfs_buf *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 int index, xfs_da_state_blk_t *dblk,
54 int *rval);
55static int xfs_dir2_node_addname_int(xfs_da_args_t *args,
56 xfs_da_state_blk_t *fblk);
57
Dave Chinner20252072012-11-12 22:54:13 +110058static void
59xfs_dir2_free_verify(
60 struct xfs_buf *bp)
61{
62 struct xfs_mount *mp = bp->b_target->bt_mount;
63 struct xfs_dir2_free_hdr *hdr = bp->b_addr;
64 int block_ok = 0;
65
66 block_ok = hdr->magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC);
67 if (!block_ok) {
68 XFS_CORRUPTION_ERROR("xfs_dir2_free_verify magic",
69 XFS_ERRLEVEL_LOW, mp, hdr);
70 xfs_buf_ioerror(bp, EFSCORRUPTED);
71 }
Dave Chinner612cfbf2012-11-14 17:52:32 +110072}
Dave Chinner20252072012-11-12 22:54:13 +110073
Dave Chinner612cfbf2012-11-14 17:52:32 +110074static void
Dave Chinner1813dd62012-11-14 17:54:40 +110075xfs_dir2_free_read_verify(
76 struct xfs_buf *bp)
77{
78 xfs_dir2_free_verify(bp);
79}
80
81static void
Dave Chinner612cfbf2012-11-14 17:52:32 +110082xfs_dir2_free_write_verify(
83 struct xfs_buf *bp)
84{
85 xfs_dir2_free_verify(bp);
86}
87
Dave Chinner1813dd62012-11-14 17:54:40 +110088static const struct xfs_buf_ops xfs_dir2_free_buf_ops = {
89 .verify_read = xfs_dir2_free_read_verify,
90 .verify_write = xfs_dir2_free_write_verify,
91};
Dave Chinner20252072012-11-12 22:54:13 +110092
Dave Chinner612cfbf2012-11-14 17:52:32 +110093
Dave Chinner20252072012-11-12 22:54:13 +110094static int
95__xfs_dir2_free_read(
96 struct xfs_trans *tp,
97 struct xfs_inode *dp,
98 xfs_dablk_t fbno,
99 xfs_daddr_t mappedbno,
100 struct xfs_buf **bpp)
101{
102 return xfs_da_read_buf(tp, dp, fbno, mappedbno, bpp,
Dave Chinner1813dd62012-11-14 17:54:40 +1100103 XFS_DATA_FORK, &xfs_dir2_free_buf_ops);
Dave Chinner20252072012-11-12 22:54:13 +1100104}
105
106int
107xfs_dir2_free_read(
108 struct xfs_trans *tp,
109 struct xfs_inode *dp,
110 xfs_dablk_t fbno,
111 struct xfs_buf **bpp)
112{
113 return __xfs_dir2_free_read(tp, dp, fbno, -1, bpp);
114}
115
116static int
117xfs_dir2_free_try_read(
118 struct xfs_trans *tp,
119 struct xfs_inode *dp,
120 xfs_dablk_t fbno,
121 struct xfs_buf **bpp)
122{
123 return __xfs_dir2_free_read(tp, dp, fbno, -2, bpp);
124}
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126/*
127 * Log entries from a freespace block.
128 */
Eric Sandeen5d77c0d2009-11-19 15:52:00 +0000129STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130xfs_dir2_free_log_bests(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000131 struct xfs_trans *tp,
132 struct xfs_buf *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 int first, /* first entry to log */
134 int last) /* last entry to log */
135{
136 xfs_dir2_free_t *free; /* freespace structure */
137
Dave Chinner1d9025e2012-06-22 18:50:14 +1000138 free = bp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200139 ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC));
Dave Chinner1d9025e2012-06-22 18:50:14 +1000140 xfs_trans_log_buf(tp, bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 (uint)((char *)&free->bests[first] - (char *)free),
142 (uint)((char *)&free->bests[last] - (char *)free +
143 sizeof(free->bests[0]) - 1));
144}
145
146/*
147 * Log header from a freespace block.
148 */
149static void
150xfs_dir2_free_log_header(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000151 struct xfs_trans *tp,
152 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
154 xfs_dir2_free_t *free; /* freespace structure */
155
Dave Chinner1d9025e2012-06-22 18:50:14 +1000156 free = bp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200157 ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC));
Dave Chinner1d9025e2012-06-22 18:50:14 +1000158 xfs_trans_log_buf(tp, bp, (uint)((char *)&free->hdr - (char *)free),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 (uint)(sizeof(xfs_dir2_free_hdr_t) - 1));
160}
161
162/*
163 * Convert a leaf-format directory to a node-format directory.
164 * We need to change the magic number of the leaf block, and copy
165 * the freespace table out of the leaf block into its own block.
166 */
167int /* error */
168xfs_dir2_leaf_to_node(
169 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000170 struct xfs_buf *lbp) /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
172 xfs_inode_t *dp; /* incore directory inode */
173 int error; /* error return value */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000174 struct xfs_buf *fbp; /* freespace buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 xfs_dir2_db_t fdb; /* freespace block number */
176 xfs_dir2_free_t *free; /* freespace structure */
Nathan Scott68b3a102006-03-17 17:27:19 +1100177 __be16 *from; /* pointer to freespace entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 int i; /* leaf freespace index */
179 xfs_dir2_leaf_t *leaf; /* leaf structure */
180 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
181 xfs_mount_t *mp; /* filesystem mount point */
182 int n; /* count of live freespc ents */
183 xfs_dir2_data_off_t off; /* freespace entry value */
Nathan Scott0ba962e2006-03-17 17:27:07 +1100184 __be16 *to; /* pointer to freespace entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 xfs_trans_t *tp; /* transaction pointer */
186
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000187 trace_xfs_dir2_leaf_to_node(args);
188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 dp = args->dp;
190 mp = dp->i_mount;
191 tp = args->trans;
192 /*
193 * Add a freespace block to the directory.
194 */
195 if ((error = xfs_dir2_grow_inode(args, XFS_DIR2_FREE_SPACE, &fdb))) {
196 return error;
197 }
198 ASSERT(fdb == XFS_DIR2_FREE_FIRSTDB(mp));
199 /*
200 * Get the buffer for the new freespace block.
201 */
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100202 error = xfs_da_get_buf(tp, dp, xfs_dir2_db_to_da(mp, fdb), -1, &fbp,
203 XFS_DATA_FORK);
204 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 return error;
Dave Chinner1813dd62012-11-14 17:54:40 +1100206 fbp->b_ops = &xfs_dir2_free_buf_ops;
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100207
Dave Chinner1d9025e2012-06-22 18:50:14 +1000208 free = fbp->b_addr;
209 leaf = lbp->b_addr;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000210 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 /*
212 * Initialize the freespace block header.
213 */
Nathan Scott0ba962e2006-03-17 17:27:07 +1100214 free->hdr.magic = cpu_to_be32(XFS_DIR2_FREE_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 free->hdr.firstdb = 0;
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100216 ASSERT(be32_to_cpu(ltp->bestcount) <= (uint)dp->i_d.di_size / mp->m_dirblksize);
Nathan Scott0ba962e2006-03-17 17:27:07 +1100217 free->hdr.nvalid = ltp->bestcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 /*
219 * Copy freespace entries from the leaf block to the new block.
220 * Count active entries.
221 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000222 for (i = n = 0, from = xfs_dir2_leaf_bests_p(ltp), to = free->bests;
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100223 i < be32_to_cpu(ltp->bestcount); i++, from++, to++) {
Nathan Scott68b3a102006-03-17 17:27:19 +1100224 if ((off = be16_to_cpu(*from)) != NULLDATAOFF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 n++;
Nathan Scott0ba962e2006-03-17 17:27:07 +1100226 *to = cpu_to_be16(off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 }
Nathan Scott0ba962e2006-03-17 17:27:07 +1100228 free->hdr.nused = cpu_to_be32(n);
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100229
Dave Chinner1813dd62012-11-14 17:54:40 +1100230 lbp->b_ops = &xfs_dir2_leafn_buf_ops;
Nathan Scott89da0542006-03-17 17:28:40 +1100231 leaf->hdr.info.magic = cpu_to_be16(XFS_DIR2_LEAFN_MAGIC);
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 /*
234 * Log everything.
235 */
236 xfs_dir2_leaf_log_header(tp, lbp);
237 xfs_dir2_free_log_header(tp, fbp);
Nathan Scott0ba962e2006-03-17 17:27:07 +1100238 xfs_dir2_free_log_bests(tp, fbp, 0, be32_to_cpu(free->hdr.nvalid) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 xfs_dir2_leafn_check(dp, lbp);
240 return 0;
241}
242
243/*
244 * Add a leaf entry to a leaf block in a node-form directory.
245 * The other work necessary is done from the caller.
246 */
247static int /* error */
248xfs_dir2_leafn_add(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000249 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 xfs_da_args_t *args, /* operation arguments */
251 int index) /* insertion pt for new entry */
252{
253 int compact; /* compacting stale leaves */
254 xfs_inode_t *dp; /* incore directory inode */
255 int highstale; /* next stale entry */
256 xfs_dir2_leaf_t *leaf; /* leaf structure */
257 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
258 int lfloghigh; /* high leaf entry logging */
259 int lfloglow; /* low leaf entry logging */
260 int lowstale; /* previous stale entry */
261 xfs_mount_t *mp; /* filesystem mount point */
262 xfs_trans_t *tp; /* transaction pointer */
263
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000264 trace_xfs_dir2_leafn_add(args, index);
265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 dp = args->dp;
267 mp = dp->i_mount;
268 tp = args->trans;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000269 leaf = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 /*
272 * Quick check just to make sure we are not going to index
273 * into other peoples memory
274 */
275 if (index < 0)
276 return XFS_ERROR(EFSCORRUPTED);
277
278 /*
279 * If there are already the maximum number of leaf entries in
280 * the block, if there are no stale entries it won't fit.
281 * Caller will do a split. If there are stale entries we'll do
282 * a compact.
283 */
284
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000285 if (be16_to_cpu(leaf->hdr.count) == xfs_dir2_max_leaf_ents(mp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 if (!leaf->hdr.stale)
287 return XFS_ERROR(ENOSPC);
Nathan Scotta818e5d2006-03-17 17:28:07 +1100288 compact = be16_to_cpu(leaf->hdr.stale) > 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 } else
290 compact = 0;
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100291 ASSERT(index == 0 || be32_to_cpu(leaf->ents[index - 1].hashval) <= args->hashval);
Nathan Scotta818e5d2006-03-17 17:28:07 +1100292 ASSERT(index == be16_to_cpu(leaf->hdr.count) ||
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100293 be32_to_cpu(leaf->ents[index].hashval) >= args->hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Barry Naujok6a178102008-05-21 16:42:05 +1000295 if (args->op_flags & XFS_DA_OP_JUSTCHECK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 return 0;
297
298 /*
299 * Compact out all but one stale leaf entry. Leaves behind
300 * the entry closest to index.
301 */
302 if (compact) {
303 xfs_dir2_leaf_compact_x1(bp, &index, &lowstale, &highstale,
304 &lfloglow, &lfloghigh);
305 }
306 /*
307 * Set impossible logging indices for this case.
308 */
309 else if (leaf->hdr.stale) {
Nathan Scotta818e5d2006-03-17 17:28:07 +1100310 lfloglow = be16_to_cpu(leaf->hdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 lfloghigh = -1;
312 }
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 /*
315 * Insert the new entry, log everything.
316 */
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200317 lep = xfs_dir2_leaf_find_entry(leaf, index, compact, lowstale,
318 highstale, &lfloglow, &lfloghigh);
319
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100320 lep->hashval = cpu_to_be32(args->hashval);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000321 lep->address = cpu_to_be32(xfs_dir2_db_off_to_dataptr(mp,
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100322 args->blkno, args->index));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 xfs_dir2_leaf_log_header(tp, bp);
324 xfs_dir2_leaf_log_ents(tp, bp, lfloglow, lfloghigh);
325 xfs_dir2_leafn_check(dp, bp);
326 return 0;
327}
328
329#ifdef DEBUG
330/*
331 * Check internal consistency of a leafn block.
332 */
333void
334xfs_dir2_leafn_check(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000335 struct xfs_inode *dp,
336 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
338 int i; /* leaf index */
339 xfs_dir2_leaf_t *leaf; /* leaf structure */
340 xfs_mount_t *mp; /* filesystem mount point */
341 int stale; /* count of stale leaves */
342
Dave Chinner1d9025e2012-06-22 18:50:14 +1000343 leaf = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 mp = dp->i_mount;
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200345 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000346 ASSERT(be16_to_cpu(leaf->hdr.count) <= xfs_dir2_max_leaf_ents(mp));
Nathan Scotta818e5d2006-03-17 17:28:07 +1100347 for (i = stale = 0; i < be16_to_cpu(leaf->hdr.count); i++) {
348 if (i + 1 < be16_to_cpu(leaf->hdr.count)) {
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100349 ASSERT(be32_to_cpu(leaf->ents[i].hashval) <=
350 be32_to_cpu(leaf->ents[i + 1].hashval));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 }
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200352 if (leaf->ents[i].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 stale++;
354 }
Nathan Scotta818e5d2006-03-17 17:28:07 +1100355 ASSERT(be16_to_cpu(leaf->hdr.stale) == stale);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356}
357#endif /* DEBUG */
358
359/*
360 * Return the last hash value in the leaf.
361 * Stale entries are ok.
362 */
363xfs_dahash_t /* hash value */
364xfs_dir2_leafn_lasthash(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000365 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 int *count) /* count of entries in leaf */
367{
368 xfs_dir2_leaf_t *leaf; /* leaf structure */
369
Dave Chinner1d9025e2012-06-22 18:50:14 +1000370 leaf = bp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200371 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 if (count)
Nathan Scotta818e5d2006-03-17 17:28:07 +1100373 *count = be16_to_cpu(leaf->hdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 if (!leaf->hdr.count)
375 return 0;
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100376 return be32_to_cpu(leaf->ents[be16_to_cpu(leaf->hdr.count) - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
378
379/*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000380 * Look up a leaf entry for space to add a name in a node-format leaf block.
381 * The extrablk in state is a freespace block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000383STATIC int
384xfs_dir2_leafn_lookup_for_addname(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000385 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 xfs_da_args_t *args, /* operation arguments */
387 int *indexp, /* out: leaf entry index */
388 xfs_da_state_t *state) /* state to fill in */
389{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000390 struct xfs_buf *curbp = NULL; /* current data/free buffer */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000391 xfs_dir2_db_t curdb = -1; /* current data block number */
392 xfs_dir2_db_t curfdb = -1; /* current free block number */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 xfs_inode_t *dp; /* incore directory inode */
394 int error; /* error return value */
395 int fi; /* free entry index */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000396 xfs_dir2_free_t *free = NULL; /* free block structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 int index; /* leaf entry index */
398 xfs_dir2_leaf_t *leaf; /* leaf structure */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000399 int length; /* length of new data entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
401 xfs_mount_t *mp; /* filesystem mount point */
402 xfs_dir2_db_t newdb; /* new data block number */
403 xfs_dir2_db_t newfdb; /* new free block number */
404 xfs_trans_t *tp; /* transaction pointer */
405
406 dp = args->dp;
407 tp = args->trans;
408 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000409 leaf = bp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200410 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411#ifdef __KERNEL__
Nathan Scotta818e5d2006-03-17 17:28:07 +1100412 ASSERT(be16_to_cpu(leaf->hdr.count) > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413#endif
414 xfs_dir2_leafn_check(dp, bp);
415 /*
416 * Look up the hash value in the leaf entries.
417 */
418 index = xfs_dir2_leaf_search_hash(args, bp);
419 /*
420 * Do we have a buffer coming in?
421 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000422 if (state->extravalid) {
423 /* If so, it's a free block buffer, get the block number. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 curbp = state->extrablk.bp;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000425 curfdb = state->extrablk.blkno;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000426 free = curbp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200427 ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 }
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000429 length = xfs_dir2_data_entsize(args->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 /*
431 * Loop over leaf entries with the right hash value.
432 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000433 for (lep = &leaf->ents[index]; index < be16_to_cpu(leaf->hdr.count) &&
434 be32_to_cpu(lep->hashval) == args->hashval;
435 lep++, index++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 /*
437 * Skip stale leaf entries.
438 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100439 if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 continue;
441 /*
442 * Pull the data block number from the entry.
443 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000444 newdb = xfs_dir2_dataptr_to_db(mp, be32_to_cpu(lep->address));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 /*
446 * For addname, we're looking for a place to put the new entry.
447 * We want to use a data block with an entry of equal
448 * hash value to ours if there is one with room.
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000449 *
450 * If this block isn't the data block we already have
451 * in hand, take a look at it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000453 if (newdb != curdb) {
454 curdb = newdb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000456 * Convert the data block to the free block
457 * holding its freespace information.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000459 newfdb = xfs_dir2_db_to_fdb(mp, newdb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000461 * If it's not the one we have in hand, read it in.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000463 if (newfdb != curfdb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000465 * If we had one before, drop it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 */
467 if (curbp)
Dave Chinner1d9025e2012-06-22 18:50:14 +1000468 xfs_trans_brelse(tp, curbp);
Dave Chinner20252072012-11-12 22:54:13 +1100469
470 error = xfs_dir2_free_read(tp, dp,
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000471 xfs_dir2_db_to_da(mp, newfdb),
Dave Chinner20252072012-11-12 22:54:13 +1100472 &curbp);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000473 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000475 free = curbp->b_addr;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000476 ASSERT(be32_to_cpu(free->hdr.magic) ==
477 XFS_DIR2_FREE_MAGIC);
478 ASSERT((be32_to_cpu(free->hdr.firstdb) %
Christoph Hellwiga00b7742011-07-13 13:43:48 +0200479 xfs_dir2_free_max_bests(mp)) == 0);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000480 ASSERT(be32_to_cpu(free->hdr.firstdb) <= curdb);
481 ASSERT(curdb < be32_to_cpu(free->hdr.firstdb) +
482 be32_to_cpu(free->hdr.nvalid));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 }
484 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000485 * Get the index for our entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000487 fi = xfs_dir2_db_to_fdindex(mp, curdb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000489 * If it has room, return it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 */
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200491 if (unlikely(free->bests[fi] ==
492 cpu_to_be16(NULLDATAOFF))) {
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000493 XFS_ERROR_REPORT("xfs_dir2_leafn_lookup_int",
494 XFS_ERRLEVEL_LOW, mp);
495 if (curfdb != newfdb)
Dave Chinner1d9025e2012-06-22 18:50:14 +1000496 xfs_trans_brelse(tp, curbp);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000497 return XFS_ERROR(EFSCORRUPTED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 }
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000499 curfdb = newfdb;
500 if (be16_to_cpu(free->bests[fi]) >= length)
501 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
503 }
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000504 /* Didn't find any space */
505 fi = -1;
506out:
Barry Naujok6a178102008-05-21 16:42:05 +1000507 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000508 if (curbp) {
509 /* Giving back a free block. */
510 state->extravalid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 state->extrablk.bp = curbp;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000512 state->extrablk.index = fi;
513 state->extrablk.blkno = curfdb;
514 state->extrablk.magic = XFS_DIR2_FREE_MAGIC;
515 } else {
516 state->extravalid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 }
518 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000519 * Return the index, that will be the insertion point.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 */
521 *indexp = index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 return XFS_ERROR(ENOENT);
523}
524
525/*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000526 * Look up a leaf entry in a node-format leaf block.
527 * The extrablk in state a data block.
528 */
529STATIC int
530xfs_dir2_leafn_lookup_for_entry(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000531 struct xfs_buf *bp, /* leaf buffer */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000532 xfs_da_args_t *args, /* operation arguments */
533 int *indexp, /* out: leaf entry index */
534 xfs_da_state_t *state) /* state to fill in */
535{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000536 struct xfs_buf *curbp = NULL; /* current data/free buffer */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000537 xfs_dir2_db_t curdb = -1; /* current data block number */
538 xfs_dir2_data_entry_t *dep; /* data block entry */
539 xfs_inode_t *dp; /* incore directory inode */
540 int error; /* error return value */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000541 int index; /* leaf entry index */
542 xfs_dir2_leaf_t *leaf; /* leaf structure */
543 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
544 xfs_mount_t *mp; /* filesystem mount point */
545 xfs_dir2_db_t newdb; /* new data block number */
546 xfs_trans_t *tp; /* transaction pointer */
Barry Naujok5163f952008-05-21 16:41:01 +1000547 enum xfs_dacmp cmp; /* comparison result */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000548
549 dp = args->dp;
550 tp = args->trans;
551 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000552 leaf = bp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200553 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000554#ifdef __KERNEL__
555 ASSERT(be16_to_cpu(leaf->hdr.count) > 0);
556#endif
557 xfs_dir2_leafn_check(dp, bp);
558 /*
559 * Look up the hash value in the leaf entries.
560 */
561 index = xfs_dir2_leaf_search_hash(args, bp);
562 /*
563 * Do we have a buffer coming in?
564 */
565 if (state->extravalid) {
566 curbp = state->extrablk.bp;
567 curdb = state->extrablk.blkno;
568 }
569 /*
570 * Loop over leaf entries with the right hash value.
571 */
572 for (lep = &leaf->ents[index]; index < be16_to_cpu(leaf->hdr.count) &&
573 be32_to_cpu(lep->hashval) == args->hashval;
574 lep++, index++) {
575 /*
576 * Skip stale leaf entries.
577 */
578 if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
579 continue;
580 /*
581 * Pull the data block number from the entry.
582 */
583 newdb = xfs_dir2_dataptr_to_db(mp, be32_to_cpu(lep->address));
584 /*
585 * Not adding a new entry, so we really want to find
586 * the name given to us.
587 *
588 * If it's a different data block, go get it.
589 */
590 if (newdb != curdb) {
591 /*
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000592 * If we had a block before that we aren't saving
593 * for a CI name, drop it
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000594 */
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000595 if (curbp && (args->cmpresult == XFS_CMP_DIFFERENT ||
596 curdb != state->extrablk.blkno))
Dave Chinner1d9025e2012-06-22 18:50:14 +1000597 xfs_trans_brelse(tp, curbp);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000598 /*
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000599 * If needing the block that is saved with a CI match,
600 * use it otherwise read in the new data block.
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000601 */
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000602 if (args->cmpresult != XFS_CMP_DIFFERENT &&
603 newdb == state->extrablk.blkno) {
604 ASSERT(state->extravalid);
605 curbp = state->extrablk.bp;
606 } else {
Dave Chinnere4813572012-11-12 22:54:14 +1100607 error = xfs_dir2_data_read(tp, dp,
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000608 xfs_dir2_db_to_da(mp, newdb),
Dave Chinnere4813572012-11-12 22:54:14 +1100609 -1, &curbp);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000610 if (error)
611 return error;
612 }
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000613 xfs_dir2_data_check(dp, curbp);
614 curdb = newdb;
615 }
616 /*
617 * Point to the data entry.
618 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000619 dep = (xfs_dir2_data_entry_t *)((char *)curbp->b_addr +
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000620 xfs_dir2_dataptr_to_off(mp, be32_to_cpu(lep->address)));
621 /*
Barry Naujok5163f952008-05-21 16:41:01 +1000622 * Compare the entry and if it's an exact match, return
623 * EEXIST immediately. If it's the first case-insensitive
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000624 * match, store the block & inode number and continue looking.
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000625 */
Barry Naujok5163f952008-05-21 16:41:01 +1000626 cmp = mp->m_dirnameops->compname(args, dep->name, dep->namelen);
627 if (cmp != XFS_CMP_DIFFERENT && cmp != args->cmpresult) {
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000628 /* If there is a CI match block, drop it */
629 if (args->cmpresult != XFS_CMP_DIFFERENT &&
630 curdb != state->extrablk.blkno)
Dave Chinner1d9025e2012-06-22 18:50:14 +1000631 xfs_trans_brelse(tp, state->extrablk.bp);
Barry Naujok5163f952008-05-21 16:41:01 +1000632 args->cmpresult = cmp;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000633 args->inumber = be64_to_cpu(dep->inumber);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000634 *indexp = index;
635 state->extravalid = 1;
636 state->extrablk.bp = curbp;
637 state->extrablk.blkno = curdb;
638 state->extrablk.index = (int)((char *)dep -
Dave Chinner1d9025e2012-06-22 18:50:14 +1000639 (char *)curbp->b_addr);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000640 state->extrablk.magic = XFS_DIR2_DATA_MAGIC;
Dave Chinner1813dd62012-11-14 17:54:40 +1100641 curbp->b_ops = &xfs_dir2_data_buf_ops;
Barry Naujok5163f952008-05-21 16:41:01 +1000642 if (cmp == XFS_CMP_EXACT)
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000643 return XFS_ERROR(EEXIST);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000644 }
645 }
Barry Naujok6a178102008-05-21 16:42:05 +1000646 ASSERT(index == be16_to_cpu(leaf->hdr.count) ||
647 (args->op_flags & XFS_DA_OP_OKNOENT));
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000648 if (curbp) {
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000649 if (args->cmpresult == XFS_CMP_DIFFERENT) {
650 /* Giving back last used data block. */
651 state->extravalid = 1;
652 state->extrablk.bp = curbp;
653 state->extrablk.index = -1;
654 state->extrablk.blkno = curdb;
655 state->extrablk.magic = XFS_DIR2_DATA_MAGIC;
Dave Chinner1813dd62012-11-14 17:54:40 +1100656 curbp->b_ops = &xfs_dir2_data_buf_ops;
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000657 } else {
658 /* If the curbp is not the CI match block, drop it */
659 if (state->extrablk.bp != curbp)
Dave Chinner1d9025e2012-06-22 18:50:14 +1000660 xfs_trans_brelse(tp, curbp);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000661 }
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000662 } else {
663 state->extravalid = 0;
664 }
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000665 *indexp = index;
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000666 return XFS_ERROR(ENOENT);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000667}
668
669/*
670 * Look up a leaf entry in a node-format leaf block.
671 * If this is an addname then the extrablk in state is a freespace block,
672 * otherwise it's a data block.
673 */
674int
675xfs_dir2_leafn_lookup_int(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000676 struct xfs_buf *bp, /* leaf buffer */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000677 xfs_da_args_t *args, /* operation arguments */
678 int *indexp, /* out: leaf entry index */
679 xfs_da_state_t *state) /* state to fill in */
680{
Barry Naujok6a178102008-05-21 16:42:05 +1000681 if (args->op_flags & XFS_DA_OP_ADDNAME)
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000682 return xfs_dir2_leafn_lookup_for_addname(bp, args, indexp,
683 state);
684 return xfs_dir2_leafn_lookup_for_entry(bp, args, indexp, state);
685}
686
687/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 * Move count leaf entries from source to destination leaf.
689 * Log entries and headers. Stale entries are preserved.
690 */
691static void
692xfs_dir2_leafn_moveents(
693 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000694 struct xfs_buf *bp_s, /* source leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 int start_s, /* source leaf index */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000696 struct xfs_buf *bp_d, /* destination leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 int start_d, /* destination leaf index */
698 int count) /* count of leaves to copy */
699{
700 xfs_dir2_leaf_t *leaf_d; /* destination leaf structure */
701 xfs_dir2_leaf_t *leaf_s; /* source leaf structure */
702 int stale; /* count stale leaves copied */
703 xfs_trans_t *tp; /* transaction pointer */
704
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000705 trace_xfs_dir2_leafn_moveents(args, start_s, start_d, count);
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 /*
708 * Silently return if nothing to do.
709 */
710 if (count == 0) {
711 return;
712 }
713 tp = args->trans;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000714 leaf_s = bp_s->b_addr;
715 leaf_d = bp_d->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 /*
717 * If the destination index is not the end of the current
718 * destination leaf entries, open up a hole in the destination
719 * to hold the new entries.
720 */
Nathan Scotta818e5d2006-03-17 17:28:07 +1100721 if (start_d < be16_to_cpu(leaf_d->hdr.count)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 memmove(&leaf_d->ents[start_d + count], &leaf_d->ents[start_d],
Nathan Scotta818e5d2006-03-17 17:28:07 +1100723 (be16_to_cpu(leaf_d->hdr.count) - start_d) *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 sizeof(xfs_dir2_leaf_entry_t));
725 xfs_dir2_leaf_log_ents(tp, bp_d, start_d + count,
Nathan Scotta818e5d2006-03-17 17:28:07 +1100726 count + be16_to_cpu(leaf_d->hdr.count) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 }
728 /*
729 * If the source has stale leaves, count the ones in the copy range
730 * so we can update the header correctly.
731 */
732 if (leaf_s->hdr.stale) {
733 int i; /* temp leaf index */
734
735 for (i = start_s, stale = 0; i < start_s + count; i++) {
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200736 if (leaf_s->ents[i].address ==
737 cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 stale++;
739 }
740 } else
741 stale = 0;
742 /*
743 * Copy the leaf entries from source to destination.
744 */
745 memcpy(&leaf_d->ents[start_d], &leaf_s->ents[start_s],
746 count * sizeof(xfs_dir2_leaf_entry_t));
747 xfs_dir2_leaf_log_ents(tp, bp_d, start_d, start_d + count - 1);
748 /*
749 * If there are source entries after the ones we copied,
750 * delete the ones we copied by sliding the next ones down.
751 */
Nathan Scotta818e5d2006-03-17 17:28:07 +1100752 if (start_s + count < be16_to_cpu(leaf_s->hdr.count)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 memmove(&leaf_s->ents[start_s], &leaf_s->ents[start_s + count],
754 count * sizeof(xfs_dir2_leaf_entry_t));
755 xfs_dir2_leaf_log_ents(tp, bp_s, start_s, start_s + count - 1);
756 }
757 /*
758 * Update the headers and log them.
759 */
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800760 be16_add_cpu(&leaf_s->hdr.count, -(count));
761 be16_add_cpu(&leaf_s->hdr.stale, -(stale));
762 be16_add_cpu(&leaf_d->hdr.count, count);
763 be16_add_cpu(&leaf_d->hdr.stale, stale);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 xfs_dir2_leaf_log_header(tp, bp_s);
765 xfs_dir2_leaf_log_header(tp, bp_d);
766 xfs_dir2_leafn_check(args->dp, bp_s);
767 xfs_dir2_leafn_check(args->dp, bp_d);
768}
769
770/*
771 * Determine the sort order of two leaf blocks.
772 * Returns 1 if both are valid and leaf2 should be before leaf1, else 0.
773 */
774int /* sort order */
775xfs_dir2_leafn_order(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000776 struct xfs_buf *leaf1_bp, /* leaf1 buffer */
777 struct xfs_buf *leaf2_bp) /* leaf2 buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
779 xfs_dir2_leaf_t *leaf1; /* leaf1 structure */
780 xfs_dir2_leaf_t *leaf2; /* leaf2 structure */
781
Dave Chinner1d9025e2012-06-22 18:50:14 +1000782 leaf1 = leaf1_bp->b_addr;
783 leaf2 = leaf2_bp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200784 ASSERT(leaf1->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
785 ASSERT(leaf2->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
Nathan Scotta818e5d2006-03-17 17:28:07 +1100786 if (be16_to_cpu(leaf1->hdr.count) > 0 &&
787 be16_to_cpu(leaf2->hdr.count) > 0 &&
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100788 (be32_to_cpu(leaf2->ents[0].hashval) < be32_to_cpu(leaf1->ents[0].hashval) ||
789 be32_to_cpu(leaf2->ents[be16_to_cpu(leaf2->hdr.count) - 1].hashval) <
790 be32_to_cpu(leaf1->ents[be16_to_cpu(leaf1->hdr.count) - 1].hashval)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 return 1;
792 return 0;
793}
794
795/*
796 * Rebalance leaf entries between two leaf blocks.
797 * This is actually only called when the second block is new,
798 * though the code deals with the general case.
799 * A new entry will be inserted in one of the blocks, and that
800 * entry is taken into account when balancing.
801 */
802static void
803xfs_dir2_leafn_rebalance(
804 xfs_da_state_t *state, /* btree cursor */
805 xfs_da_state_blk_t *blk1, /* first btree block */
806 xfs_da_state_blk_t *blk2) /* second btree block */
807{
808 xfs_da_args_t *args; /* operation arguments */
809 int count; /* count (& direction) leaves */
810 int isleft; /* new goes in left leaf */
811 xfs_dir2_leaf_t *leaf1; /* first leaf structure */
812 xfs_dir2_leaf_t *leaf2; /* second leaf structure */
813 int mid; /* midpoint leaf index */
814#ifdef DEBUG
815 int oldstale; /* old count of stale leaves */
816#endif
817 int oldsum; /* old total leaf count */
818 int swap; /* swapped leaf blocks */
819
820 args = state->args;
821 /*
822 * If the block order is wrong, swap the arguments.
823 */
824 if ((swap = xfs_dir2_leafn_order(blk1->bp, blk2->bp))) {
825 xfs_da_state_blk_t *tmp; /* temp for block swap */
826
827 tmp = blk1;
828 blk1 = blk2;
829 blk2 = tmp;
830 }
Dave Chinner1d9025e2012-06-22 18:50:14 +1000831 leaf1 = blk1->bp->b_addr;
832 leaf2 = blk2->bp->b_addr;
Nathan Scotta818e5d2006-03-17 17:28:07 +1100833 oldsum = be16_to_cpu(leaf1->hdr.count) + be16_to_cpu(leaf2->hdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834#ifdef DEBUG
Nathan Scotta818e5d2006-03-17 17:28:07 +1100835 oldstale = be16_to_cpu(leaf1->hdr.stale) + be16_to_cpu(leaf2->hdr.stale);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836#endif
837 mid = oldsum >> 1;
838 /*
839 * If the old leaf count was odd then the new one will be even,
840 * so we need to divide the new count evenly.
841 */
842 if (oldsum & 1) {
843 xfs_dahash_t midhash; /* middle entry hash value */
844
Nathan Scotta818e5d2006-03-17 17:28:07 +1100845 if (mid >= be16_to_cpu(leaf1->hdr.count))
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100846 midhash = be32_to_cpu(leaf2->ents[mid - be16_to_cpu(leaf1->hdr.count)].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 else
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100848 midhash = be32_to_cpu(leaf1->ents[mid].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 isleft = args->hashval <= midhash;
850 }
851 /*
852 * If the old count is even then the new count is odd, so there's
853 * no preferred side for the new entry.
854 * Pick the left one.
855 */
856 else
857 isleft = 1;
858 /*
859 * Calculate moved entry count. Positive means left-to-right,
860 * negative means right-to-left. Then move the entries.
861 */
Nathan Scotta818e5d2006-03-17 17:28:07 +1100862 count = be16_to_cpu(leaf1->hdr.count) - mid + (isleft == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 if (count > 0)
864 xfs_dir2_leafn_moveents(args, blk1->bp,
Nathan Scotta818e5d2006-03-17 17:28:07 +1100865 be16_to_cpu(leaf1->hdr.count) - count, blk2->bp, 0, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 else if (count < 0)
867 xfs_dir2_leafn_moveents(args, blk2->bp, 0, blk1->bp,
Nathan Scotta818e5d2006-03-17 17:28:07 +1100868 be16_to_cpu(leaf1->hdr.count), count);
869 ASSERT(be16_to_cpu(leaf1->hdr.count) + be16_to_cpu(leaf2->hdr.count) == oldsum);
870 ASSERT(be16_to_cpu(leaf1->hdr.stale) + be16_to_cpu(leaf2->hdr.stale) == oldstale);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 /*
872 * Mark whether we're inserting into the old or new leaf.
873 */
Nathan Scotta818e5d2006-03-17 17:28:07 +1100874 if (be16_to_cpu(leaf1->hdr.count) < be16_to_cpu(leaf2->hdr.count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 state->inleaf = swap;
Nathan Scotta818e5d2006-03-17 17:28:07 +1100876 else if (be16_to_cpu(leaf1->hdr.count) > be16_to_cpu(leaf2->hdr.count))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 state->inleaf = !swap;
878 else
879 state->inleaf =
Nathan Scotta818e5d2006-03-17 17:28:07 +1100880 swap ^ (blk1->index <= be16_to_cpu(leaf1->hdr.count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 /*
882 * Adjust the expected index for insertion.
883 */
884 if (!state->inleaf)
Nathan Scotta818e5d2006-03-17 17:28:07 +1100885 blk2->index = blk1->index - be16_to_cpu(leaf1->hdr.count);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000886
887 /*
888 * Finally sanity check just to make sure we are not returning a
889 * negative index
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 */
891 if(blk2->index < 0) {
892 state->inleaf = 1;
893 blk2->index = 0;
Dave Chinner0b932cc2011-03-07 10:08:35 +1100894 xfs_alert(args->dp->i_mount,
895 "%s: picked the wrong leaf? reverting original leaf: blk1->index %d\n",
896 __func__, blk1->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 }
898}
899
Dave Chinner20252072012-11-12 22:54:13 +1100900static int
901xfs_dir2_data_block_free(
902 xfs_da_args_t *args,
903 struct xfs_dir2_data_hdr *hdr,
904 struct xfs_dir2_free *free,
905 xfs_dir2_db_t fdb,
906 int findex,
907 struct xfs_buf *fbp,
908 int longest)
909{
910 struct xfs_trans *tp = args->trans;
911 int logfree = 0;
912
913 if (!hdr) {
914 /* One less used entry in the free table. */
915 be32_add_cpu(&free->hdr.nused, -1);
916 xfs_dir2_free_log_header(tp, fbp);
917
918 /*
919 * If this was the last entry in the table, we can trim the
920 * table size back. There might be other entries at the end
921 * referring to non-existent data blocks, get those too.
922 */
923 if (findex == be32_to_cpu(free->hdr.nvalid) - 1) {
924 int i; /* free entry index */
925
926 for (i = findex - 1; i >= 0; i--) {
927 if (free->bests[i] != cpu_to_be16(NULLDATAOFF))
928 break;
929 }
930 free->hdr.nvalid = cpu_to_be32(i + 1);
931 logfree = 0;
932 } else {
933 /* Not the last entry, just punch it out. */
934 free->bests[findex] = cpu_to_be16(NULLDATAOFF);
935 logfree = 1;
936 }
937 /*
938 * If there are no useful entries left in the block,
939 * get rid of the block if we can.
940 */
941 if (!free->hdr.nused) {
942 int error;
943
944 error = xfs_dir2_shrink_inode(args, fdb, fbp);
945 if (error == 0) {
946 fbp = NULL;
947 logfree = 0;
948 } else if (error != ENOSPC || args->total != 0)
949 return error;
950 /*
951 * It's possible to get ENOSPC if there is no
952 * space reservation. In this case some one
953 * else will eventually get rid of this block.
954 */
955 }
956 } else {
957 /*
958 * Data block is not empty, just set the free entry to the new
959 * value.
960 */
961 free->bests[findex] = cpu_to_be16(longest);
962 logfree = 1;
963 }
964
965 /* Log the free entry that changed, unless we got rid of it. */
966 if (logfree)
967 xfs_dir2_free_log_bests(tp, fbp, findex, findex);
968 return 0;
969}
970
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971/*
972 * Remove an entry from a node directory.
973 * This removes the leaf entry and the data entry,
974 * and updates the free block if necessary.
975 */
976static int /* error */
977xfs_dir2_leafn_remove(
978 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000979 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 int index, /* leaf entry index */
981 xfs_da_state_blk_t *dblk, /* data block */
982 int *rval) /* resulting block needs join */
983{
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200984 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 xfs_dir2_db_t db; /* data block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000986 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 xfs_dir2_data_entry_t *dep; /* data block entry */
988 xfs_inode_t *dp; /* incore directory inode */
989 xfs_dir2_leaf_t *leaf; /* leaf structure */
990 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
991 int longest; /* longest data free entry */
992 int off; /* data block entry offset */
993 xfs_mount_t *mp; /* filesystem mount point */
994 int needlog; /* need to log data header */
995 int needscan; /* need to rescan data frees */
996 xfs_trans_t *tp; /* transaction pointer */
997
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000998 trace_xfs_dir2_leafn_remove(args, index);
999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 dp = args->dp;
1001 tp = args->trans;
1002 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001003 leaf = bp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001004 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 /*
1006 * Point to the entry we're removing.
1007 */
1008 lep = &leaf->ents[index];
1009 /*
1010 * Extract the data block and offset from the entry.
1011 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001012 db = xfs_dir2_dataptr_to_db(mp, be32_to_cpu(lep->address));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 ASSERT(dblk->blkno == db);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001014 off = xfs_dir2_dataptr_to_off(mp, be32_to_cpu(lep->address));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 ASSERT(dblk->index == off);
1016 /*
1017 * Kill the leaf entry by marking it stale.
1018 * Log the leaf block changes.
1019 */
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001020 be16_add_cpu(&leaf->hdr.stale, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 xfs_dir2_leaf_log_header(tp, bp);
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001022 lep->address = cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 xfs_dir2_leaf_log_ents(tp, bp, index, index);
1024 /*
1025 * Make the data entry free. Keep track of the longest freespace
1026 * in the data block in case it changes.
1027 */
1028 dbp = dblk->bp;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001029 hdr = dbp->b_addr;
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001030 dep = (xfs_dir2_data_entry_t *)((char *)hdr + off);
1031 longest = be16_to_cpu(hdr->bestfree[0].length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 needlog = needscan = 0;
1033 xfs_dir2_data_make_free(tp, dbp, off,
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001034 xfs_dir2_data_entsize(dep->namelen), &needlog, &needscan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 /*
1036 * Rescan the data block freespaces for bestfree.
1037 * Log the data block header if needed.
1038 */
1039 if (needscan)
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001040 xfs_dir2_data_freescan(mp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 if (needlog)
1042 xfs_dir2_data_log_header(tp, dbp);
1043 xfs_dir2_data_check(dp, dbp);
1044 /*
1045 * If the longest data block freespace changes, need to update
1046 * the corresponding freeblock entry.
1047 */
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001048 if (longest < be16_to_cpu(hdr->bestfree[0].length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 int error; /* error return value */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001050 struct xfs_buf *fbp; /* freeblock buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 xfs_dir2_db_t fdb; /* freeblock block number */
1052 int findex; /* index in freeblock entries */
1053 xfs_dir2_free_t *free; /* freeblock structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
1055 /*
1056 * Convert the data block number to a free block,
1057 * read in the free block.
1058 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001059 fdb = xfs_dir2_db_to_fdb(mp, db);
Dave Chinner20252072012-11-12 22:54:13 +11001060 error = xfs_dir2_free_read(tp, dp, xfs_dir2_db_to_da(mp, fdb),
1061 &fbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001062 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001064 free = fbp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001065 ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC));
Nathan Scott0ba962e2006-03-17 17:27:07 +11001066 ASSERT(be32_to_cpu(free->hdr.firstdb) ==
Christoph Hellwiga00b7742011-07-13 13:43:48 +02001067 xfs_dir2_free_max_bests(mp) *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 (fdb - XFS_DIR2_FREE_FIRSTDB(mp)));
1069 /*
1070 * Calculate which entry we need to fix.
1071 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001072 findex = xfs_dir2_db_to_fdindex(mp, db);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001073 longest = be16_to_cpu(hdr->bestfree[0].length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 /*
1075 * If the data block is now empty we can get rid of it
1076 * (usually).
1077 */
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001078 if (longest == mp->m_dirblksize - (uint)sizeof(*hdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 /*
1080 * Try to punch out the data block.
1081 */
1082 error = xfs_dir2_shrink_inode(args, db, dbp);
1083 if (error == 0) {
1084 dblk->bp = NULL;
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001085 hdr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 }
1087 /*
1088 * We can get ENOSPC if there's no space reservation.
1089 * In this case just drop the buffer and some one else
1090 * will eventually get rid of the empty block.
1091 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001092 else if (!(error == ENOSPC && args->total == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 return error;
1094 }
1095 /*
1096 * If we got rid of the data block, we can eliminate that entry
1097 * in the free block.
1098 */
Dave Chinner20252072012-11-12 22:54:13 +11001099 error = xfs_dir2_data_block_free(args, hdr, free,
1100 fdb, findex, fbp, longest);
1101 if (error)
1102 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 }
Dave Chinner20252072012-11-12 22:54:13 +11001104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 xfs_dir2_leafn_check(dp, bp);
1106 /*
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001107 * Return indication of whether this leaf block is empty enough
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 * to justify trying to join it with a neighbor.
1109 */
1110 *rval =
1111 ((uint)sizeof(leaf->hdr) +
1112 (uint)sizeof(leaf->ents[0]) *
Nathan Scotta818e5d2006-03-17 17:28:07 +11001113 (be16_to_cpu(leaf->hdr.count) - be16_to_cpu(leaf->hdr.stale))) <
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 mp->m_dir_magicpct;
1115 return 0;
1116}
1117
1118/*
1119 * Split the leaf entries in the old block into old and new blocks.
1120 */
1121int /* error */
1122xfs_dir2_leafn_split(
1123 xfs_da_state_t *state, /* btree cursor */
1124 xfs_da_state_blk_t *oldblk, /* original block */
1125 xfs_da_state_blk_t *newblk) /* newly created block */
1126{
1127 xfs_da_args_t *args; /* operation arguments */
1128 xfs_dablk_t blkno; /* new leaf block number */
1129 int error; /* error return value */
1130 xfs_mount_t *mp; /* filesystem mount point */
1131
1132 /*
1133 * Allocate space for a new leaf node.
1134 */
1135 args = state->args;
1136 mp = args->dp->i_mount;
1137 ASSERT(args != NULL);
1138 ASSERT(oldblk->magic == XFS_DIR2_LEAFN_MAGIC);
1139 error = xfs_da_grow_inode(args, &blkno);
1140 if (error) {
1141 return error;
1142 }
1143 /*
1144 * Initialize the new leaf block.
1145 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001146 error = xfs_dir2_leaf_init(args, xfs_dir2_da_to_db(mp, blkno),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 &newblk->bp, XFS_DIR2_LEAFN_MAGIC);
1148 if (error) {
1149 return error;
1150 }
1151 newblk->blkno = blkno;
1152 newblk->magic = XFS_DIR2_LEAFN_MAGIC;
1153 /*
1154 * Rebalance the entries across the two leaves, link the new
1155 * block into the leaves.
1156 */
1157 xfs_dir2_leafn_rebalance(state, oldblk, newblk);
1158 error = xfs_da_blk_link(state, oldblk, newblk);
1159 if (error) {
1160 return error;
1161 }
1162 /*
1163 * Insert the new entry in the correct block.
1164 */
1165 if (state->inleaf)
1166 error = xfs_dir2_leafn_add(oldblk->bp, args, oldblk->index);
1167 else
1168 error = xfs_dir2_leafn_add(newblk->bp, args, newblk->index);
1169 /*
1170 * Update last hashval in each block since we added the name.
1171 */
1172 oldblk->hashval = xfs_dir2_leafn_lasthash(oldblk->bp, NULL);
1173 newblk->hashval = xfs_dir2_leafn_lasthash(newblk->bp, NULL);
1174 xfs_dir2_leafn_check(args->dp, oldblk->bp);
1175 xfs_dir2_leafn_check(args->dp, newblk->bp);
1176 return error;
1177}
1178
1179/*
1180 * Check a leaf block and its neighbors to see if the block should be
1181 * collapsed into one or the other neighbor. Always keep the block
1182 * with the smaller block number.
1183 * If the current block is over 50% full, don't try to join it, return 0.
1184 * If the block is empty, fill in the state structure and return 2.
1185 * If it can be collapsed, fill in the state structure and return 1.
1186 * If nothing can be done, return 0.
1187 */
1188int /* error */
1189xfs_dir2_leafn_toosmall(
1190 xfs_da_state_t *state, /* btree cursor */
1191 int *action) /* resulting action to take */
1192{
1193 xfs_da_state_blk_t *blk; /* leaf block */
1194 xfs_dablk_t blkno; /* leaf block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001195 struct xfs_buf *bp; /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 int bytes; /* bytes in use */
1197 int count; /* leaf live entry count */
1198 int error; /* error return value */
1199 int forward; /* sibling block direction */
1200 int i; /* sibling counter */
1201 xfs_da_blkinfo_t *info; /* leaf block header */
1202 xfs_dir2_leaf_t *leaf; /* leaf structure */
1203 int rval; /* result from path_shift */
1204
1205 /*
1206 * Check for the degenerate case of the block being over 50% full.
1207 * If so, it's not worth even looking to see if we might be able
1208 * to coalesce with a sibling.
1209 */
1210 blk = &state->path.blk[state->path.active - 1];
Dave Chinner1d9025e2012-06-22 18:50:14 +10001211 info = blk->bp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001212 ASSERT(info->magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 leaf = (xfs_dir2_leaf_t *)info;
Nathan Scotta818e5d2006-03-17 17:28:07 +11001214 count = be16_to_cpu(leaf->hdr.count) - be16_to_cpu(leaf->hdr.stale);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 bytes = (uint)sizeof(leaf->hdr) + count * (uint)sizeof(leaf->ents[0]);
1216 if (bytes > (state->blocksize >> 1)) {
1217 /*
1218 * Blk over 50%, don't try to join.
1219 */
1220 *action = 0;
1221 return 0;
1222 }
1223 /*
1224 * Check for the degenerate case of the block being empty.
1225 * If the block is empty, we'll simply delete it, no need to
1226 * coalesce it with a sibling block. We choose (arbitrarily)
1227 * to merge with the forward block unless it is NULL.
1228 */
1229 if (count == 0) {
1230 /*
1231 * Make altpath point to the block we want to keep and
1232 * path point to the block we want to drop (this one).
1233 */
Nathan Scott89da0542006-03-17 17:28:40 +11001234 forward = (info->forw != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 memcpy(&state->altpath, &state->path, sizeof(state->path));
1236 error = xfs_da_path_shift(state, &state->altpath, forward, 0,
1237 &rval);
1238 if (error)
1239 return error;
1240 *action = rval ? 2 : 0;
1241 return 0;
1242 }
1243 /*
1244 * Examine each sibling block to see if we can coalesce with
1245 * at least 25% free space to spare. We need to figure out
1246 * whether to merge with the forward or the backward block.
1247 * We prefer coalescing with the lower numbered sibling so as
1248 * to shrink a directory over time.
1249 */
Nathan Scott89da0542006-03-17 17:28:40 +11001250 forward = be32_to_cpu(info->forw) < be32_to_cpu(info->back);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 for (i = 0, bp = NULL; i < 2; forward = !forward, i++) {
Nathan Scott89da0542006-03-17 17:28:40 +11001252 blkno = forward ? be32_to_cpu(info->forw) : be32_to_cpu(info->back);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 if (blkno == 0)
1254 continue;
1255 /*
1256 * Read the sibling leaf block.
1257 */
Dave Chinnere6f76672012-11-12 22:54:15 +11001258 error = xfs_dir2_leafn_read(state->args->trans, state->args->dp,
1259 blkno, -1, &bp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001260 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 return error;
Dave Chinnere6f76672012-11-12 22:54:15 +11001262
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 /*
1264 * Count bytes in the two blocks combined.
1265 */
1266 leaf = (xfs_dir2_leaf_t *)info;
Nathan Scotta818e5d2006-03-17 17:28:07 +11001267 count = be16_to_cpu(leaf->hdr.count) - be16_to_cpu(leaf->hdr.stale);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 bytes = state->blocksize - (state->blocksize >> 2);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001269 leaf = bp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001270 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
Nathan Scotta818e5d2006-03-17 17:28:07 +11001271 count += be16_to_cpu(leaf->hdr.count) - be16_to_cpu(leaf->hdr.stale);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 bytes -= count * (uint)sizeof(leaf->ents[0]);
1273 /*
1274 * Fits with at least 25% to spare.
1275 */
1276 if (bytes >= 0)
1277 break;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001278 xfs_trans_brelse(state->args->trans, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 }
1280 /*
1281 * Didn't like either block, give up.
1282 */
1283 if (i >= 2) {
1284 *action = 0;
1285 return 0;
1286 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10001287
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 /*
1289 * Make altpath point to the block we want to keep (the lower
1290 * numbered block) and path point to the block we want to drop.
1291 */
1292 memcpy(&state->altpath, &state->path, sizeof(state->path));
1293 if (blkno < blk->blkno)
1294 error = xfs_da_path_shift(state, &state->altpath, forward, 0,
1295 &rval);
1296 else
1297 error = xfs_da_path_shift(state, &state->path, forward, 0,
1298 &rval);
1299 if (error) {
1300 return error;
1301 }
1302 *action = rval ? 0 : 1;
1303 return 0;
1304}
1305
1306/*
1307 * Move all the leaf entries from drop_blk to save_blk.
1308 * This is done as part of a join operation.
1309 */
1310void
1311xfs_dir2_leafn_unbalance(
1312 xfs_da_state_t *state, /* cursor */
1313 xfs_da_state_blk_t *drop_blk, /* dead block */
1314 xfs_da_state_blk_t *save_blk) /* surviving block */
1315{
1316 xfs_da_args_t *args; /* operation arguments */
1317 xfs_dir2_leaf_t *drop_leaf; /* dead leaf structure */
1318 xfs_dir2_leaf_t *save_leaf; /* surviving leaf structure */
1319
1320 args = state->args;
1321 ASSERT(drop_blk->magic == XFS_DIR2_LEAFN_MAGIC);
1322 ASSERT(save_blk->magic == XFS_DIR2_LEAFN_MAGIC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001323 drop_leaf = drop_blk->bp->b_addr;
1324 save_leaf = save_blk->bp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001325 ASSERT(drop_leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
1326 ASSERT(save_leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 /*
1328 * If there are any stale leaf entries, take this opportunity
1329 * to purge them.
1330 */
Nathan Scotta818e5d2006-03-17 17:28:07 +11001331 if (drop_leaf->hdr.stale)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 xfs_dir2_leaf_compact(args, drop_blk->bp);
Nathan Scotta818e5d2006-03-17 17:28:07 +11001333 if (save_leaf->hdr.stale)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 xfs_dir2_leaf_compact(args, save_blk->bp);
1335 /*
1336 * Move the entries from drop to the appropriate end of save.
1337 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001338 drop_blk->hashval = be32_to_cpu(drop_leaf->ents[be16_to_cpu(drop_leaf->hdr.count) - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 if (xfs_dir2_leafn_order(save_blk->bp, drop_blk->bp))
1340 xfs_dir2_leafn_moveents(args, drop_blk->bp, 0, save_blk->bp, 0,
Nathan Scotta818e5d2006-03-17 17:28:07 +11001341 be16_to_cpu(drop_leaf->hdr.count));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 else
1343 xfs_dir2_leafn_moveents(args, drop_blk->bp, 0, save_blk->bp,
Nathan Scotta818e5d2006-03-17 17:28:07 +11001344 be16_to_cpu(save_leaf->hdr.count), be16_to_cpu(drop_leaf->hdr.count));
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001345 save_blk->hashval = be32_to_cpu(save_leaf->ents[be16_to_cpu(save_leaf->hdr.count) - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 xfs_dir2_leafn_check(args->dp, save_blk->bp);
1347}
1348
1349/*
1350 * Top-level node form directory addname routine.
1351 */
1352int /* error */
1353xfs_dir2_node_addname(
1354 xfs_da_args_t *args) /* operation arguments */
1355{
1356 xfs_da_state_blk_t *blk; /* leaf block for insert */
1357 int error; /* error return value */
1358 int rval; /* sub-return value */
1359 xfs_da_state_t *state; /* btree cursor */
1360
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001361 trace_xfs_dir2_node_addname(args);
1362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 /*
1364 * Allocate and initialize the state (btree cursor).
1365 */
1366 state = xfs_da_state_alloc();
1367 state->args = args;
1368 state->mp = args->dp->i_mount;
1369 state->blocksize = state->mp->m_dirblksize;
1370 state->node_ents = state->mp->m_dir_node_ents;
1371 /*
1372 * Look up the name. We're not supposed to find it, but
1373 * this gives us the insertion point.
1374 */
1375 error = xfs_da_node_lookup_int(state, &rval);
1376 if (error)
1377 rval = error;
1378 if (rval != ENOENT) {
1379 goto done;
1380 }
1381 /*
1382 * Add the data entry to a data block.
1383 * Extravalid is set to a freeblock found by lookup.
1384 */
1385 rval = xfs_dir2_node_addname_int(args,
1386 state->extravalid ? &state->extrablk : NULL);
1387 if (rval) {
1388 goto done;
1389 }
1390 blk = &state->path.blk[state->path.active - 1];
1391 ASSERT(blk->magic == XFS_DIR2_LEAFN_MAGIC);
1392 /*
1393 * Add the new leaf entry.
1394 */
1395 rval = xfs_dir2_leafn_add(blk->bp, args, blk->index);
1396 if (rval == 0) {
1397 /*
1398 * It worked, fix the hash values up the btree.
1399 */
Barry Naujok6a178102008-05-21 16:42:05 +10001400 if (!(args->op_flags & XFS_DA_OP_JUSTCHECK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 xfs_da_fixhashpath(state, &state->path);
1402 } else {
1403 /*
1404 * It didn't work, we need to split the leaf block.
1405 */
1406 if (args->total == 0) {
1407 ASSERT(rval == ENOSPC);
1408 goto done;
1409 }
1410 /*
1411 * Split the leaf block and insert the new entry.
1412 */
1413 rval = xfs_da_split(state);
1414 }
1415done:
1416 xfs_da_state_free(state);
1417 return rval;
1418}
1419
1420/*
1421 * Add the data entry for a node-format directory name addition.
1422 * The leaf entry is added in xfs_dir2_leafn_add.
1423 * We may enter with a freespace block that the lookup found.
1424 */
1425static int /* error */
1426xfs_dir2_node_addname_int(
1427 xfs_da_args_t *args, /* operation arguments */
1428 xfs_da_state_blk_t *fblk) /* optional freespace block */
1429{
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001430 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 xfs_dir2_db_t dbno; /* data block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001432 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 xfs_dir2_data_entry_t *dep; /* data entry pointer */
1434 xfs_inode_t *dp; /* incore directory inode */
1435 xfs_dir2_data_unused_t *dup; /* data unused entry pointer */
1436 int error; /* error return value */
1437 xfs_dir2_db_t fbno; /* freespace block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001438 struct xfs_buf *fbp; /* freespace buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 int findex; /* freespace entry index */
1440 xfs_dir2_free_t *free=NULL; /* freespace block structure */
1441 xfs_dir2_db_t ifbno; /* initial freespace block no */
1442 xfs_dir2_db_t lastfbno=0; /* highest freespace block no */
1443 int length; /* length of the new entry */
1444 int logfree; /* need to log free entry */
1445 xfs_mount_t *mp; /* filesystem mount point */
1446 int needlog; /* need to log data header */
1447 int needscan; /* need to rescan data frees */
Nathan Scott3d693c62006-03-17 17:28:27 +11001448 __be16 *tagp; /* data entry tag pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 xfs_trans_t *tp; /* transaction pointer */
1450
1451 dp = args->dp;
1452 mp = dp->i_mount;
1453 tp = args->trans;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001454 length = xfs_dir2_data_entsize(args->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 /*
1456 * If we came in with a freespace block that means that lookup
1457 * found an entry with our hash value. This is the freespace
1458 * block for that data entry.
1459 */
1460 if (fblk) {
1461 fbp = fblk->bp;
1462 /*
1463 * Remember initial freespace block number.
1464 */
1465 ifbno = fblk->blkno;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001466 free = fbp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001467 ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 findex = fblk->index;
1469 /*
1470 * This means the free entry showed that the data block had
1471 * space for our entry, so we remembered it.
1472 * Use that data block.
1473 */
1474 if (findex >= 0) {
Nathan Scott0ba962e2006-03-17 17:27:07 +11001475 ASSERT(findex < be32_to_cpu(free->hdr.nvalid));
1476 ASSERT(be16_to_cpu(free->bests[findex]) != NULLDATAOFF);
1477 ASSERT(be16_to_cpu(free->bests[findex]) >= length);
1478 dbno = be32_to_cpu(free->hdr.firstdb) + findex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 }
1480 /*
1481 * The data block looked at didn't have enough room.
1482 * We'll start at the beginning of the freespace entries.
1483 */
1484 else {
1485 dbno = -1;
1486 findex = 0;
1487 }
1488 }
1489 /*
1490 * Didn't come in with a freespace block, so don't have a data block.
1491 */
1492 else {
1493 ifbno = dbno = -1;
1494 fbp = NULL;
1495 findex = 0;
1496 }
1497 /*
1498 * If we don't have a data block yet, we're going to scan the
1499 * freespace blocks looking for one. Figure out what the
1500 * highest freespace block number is.
1501 */
1502 if (dbno == -1) {
1503 xfs_fileoff_t fo; /* freespace block number */
1504
1505 if ((error = xfs_bmap_last_offset(tp, dp, &fo, XFS_DATA_FORK)))
1506 return error;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001507 lastfbno = xfs_dir2_da_to_db(mp, (xfs_dablk_t)fo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 fbno = ifbno;
1509 }
1510 /*
1511 * While we haven't identified a data block, search the freeblock
1512 * data for a good data block. If we find a null freeblock entry,
1513 * indicating a hole in the data blocks, remember that.
1514 */
1515 while (dbno == -1) {
1516 /*
1517 * If we don't have a freeblock in hand, get the next one.
1518 */
1519 if (fbp == NULL) {
1520 /*
1521 * Happens the first time through unless lookup gave
1522 * us a freespace block to start with.
1523 */
1524 if (++fbno == 0)
1525 fbno = XFS_DIR2_FREE_FIRSTDB(mp);
1526 /*
1527 * If it's ifbno we already looked at it.
1528 */
1529 if (fbno == ifbno)
1530 fbno++;
1531 /*
1532 * If it's off the end we're done.
1533 */
1534 if (fbno >= lastfbno)
1535 break;
1536 /*
1537 * Read the block. There can be holes in the
1538 * freespace blocks, so this might not succeed.
1539 * This should be really rare, so there's no reason
1540 * to avoid it.
1541 */
Dave Chinner20252072012-11-12 22:54:13 +11001542 error = xfs_dir2_free_try_read(tp, dp,
1543 xfs_dir2_db_to_da(mp, fbno),
1544 &fbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001545 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 return error;
Dave Chinner4bb20a82012-11-12 22:54:10 +11001547 if (!fbp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 continue;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001549 free = fbp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001550 ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 findex = 0;
1552 }
1553 /*
1554 * Look at the current free entry. Is it good enough?
1555 */
Nathan Scott0ba962e2006-03-17 17:27:07 +11001556 if (be16_to_cpu(free->bests[findex]) != NULLDATAOFF &&
1557 be16_to_cpu(free->bests[findex]) >= length)
1558 dbno = be32_to_cpu(free->hdr.firstdb) + findex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 else {
1560 /*
1561 * Are we done with the freeblock?
1562 */
Nathan Scott0ba962e2006-03-17 17:27:07 +11001563 if (++findex == be32_to_cpu(free->hdr.nvalid)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 /*
1565 * Drop the block.
1566 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001567 xfs_trans_brelse(tp, fbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 fbp = NULL;
1569 if (fblk && fblk->bp)
1570 fblk->bp = NULL;
1571 }
1572 }
1573 }
1574 /*
1575 * If we don't have a data block, we need to allocate one and make
1576 * the freespace entries refer to it.
1577 */
1578 if (unlikely(dbno == -1)) {
1579 /*
1580 * Not allowed to allocate, return failure.
1581 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001582 if ((args->op_flags & XFS_DA_OP_JUSTCHECK) || args->total == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 return XFS_ERROR(ENOSPC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001584
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 /*
1586 * Allocate and initialize the new data block.
1587 */
1588 if (unlikely((error = xfs_dir2_grow_inode(args,
1589 XFS_DIR2_DATA_SPACE,
1590 &dbno)) ||
Dave Chinner1d9025e2012-06-22 18:50:14 +10001591 (error = xfs_dir2_data_init(args, dbno, &dbp))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001593
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 /*
1595 * If (somehow) we have a freespace block, get rid of it.
1596 */
1597 if (fbp)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001598 xfs_trans_brelse(tp, fbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 if (fblk && fblk->bp)
1600 fblk->bp = NULL;
1601
1602 /*
1603 * Get the freespace block corresponding to the data block
1604 * that was just allocated.
1605 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001606 fbno = xfs_dir2_db_to_fdb(mp, dbno);
Dave Chinner20252072012-11-12 22:54:13 +11001607 error = xfs_dir2_free_try_read(tp, dp,
1608 xfs_dir2_db_to_da(mp, fbno),
1609 &fbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001610 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001612
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 /*
1614 * If there wasn't a freespace block, the read will
1615 * return a NULL fbp. Allocate and initialize a new one.
1616 */
1617 if( fbp == NULL ) {
1618 if ((error = xfs_dir2_grow_inode(args, XFS_DIR2_FREE_SPACE,
1619 &fbno))) {
1620 return error;
1621 }
1622
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001623 if (unlikely(xfs_dir2_db_to_fdb(mp, dbno) != fbno)) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001624 xfs_alert(mp,
Jean Delvaredf2e3012011-07-16 18:10:35 +02001625 "%s: dir ino %llu needed freesp block %lld for\n"
Dave Chinner0b932cc2011-03-07 10:08:35 +11001626 " data block %lld, got %lld ifbno %llu lastfbno %d",
1627 __func__, (unsigned long long)dp->i_ino,
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001628 (long long)xfs_dir2_db_to_fdb(mp, dbno),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 (long long)dbno, (long long)fbno,
1630 (unsigned long long)ifbno, lastfbno);
1631 if (fblk) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001632 xfs_alert(mp,
1633 " fblk 0x%p blkno %llu index %d magic 0x%x",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 fblk,
1635 (unsigned long long)fblk->blkno,
1636 fblk->index,
1637 fblk->magic);
1638 } else {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001639 xfs_alert(mp, " ... fblk is NULL");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 }
1641 XFS_ERROR_REPORT("xfs_dir2_node_addname_int",
1642 XFS_ERRLEVEL_LOW, mp);
1643 return XFS_ERROR(EFSCORRUPTED);
1644 }
1645
1646 /*
1647 * Get a buffer for the new block.
1648 */
Dave Chinnerb0f539d2012-11-14 17:53:49 +11001649 error = xfs_da_get_buf(tp, dp,
1650 xfs_dir2_db_to_da(mp, fbno),
1651 -1, &fbp, XFS_DATA_FORK);
1652 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 return error;
Dave Chinner1813dd62012-11-14 17:54:40 +11001654 fbp->b_ops = &xfs_dir2_free_buf_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
1656 /*
1657 * Initialize the new block to be empty, and remember
1658 * its first slot as our empty slot.
1659 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001660 free = fbp->b_addr;
Nathan Scott0ba962e2006-03-17 17:27:07 +11001661 free->hdr.magic = cpu_to_be32(XFS_DIR2_FREE_MAGIC);
1662 free->hdr.firstdb = cpu_to_be32(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 (fbno - XFS_DIR2_FREE_FIRSTDB(mp)) *
Christoph Hellwiga00b7742011-07-13 13:43:48 +02001664 xfs_dir2_free_max_bests(mp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 free->hdr.nvalid = 0;
1666 free->hdr.nused = 0;
1667 } else {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001668 free = fbp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001669 ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 }
1671
1672 /*
1673 * Set the freespace block index from the data block number.
1674 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001675 findex = xfs_dir2_db_to_fdindex(mp, dbno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 /*
1677 * If it's after the end of the current entries in the
1678 * freespace block, extend that table.
1679 */
Nathan Scott0ba962e2006-03-17 17:27:07 +11001680 if (findex >= be32_to_cpu(free->hdr.nvalid)) {
Christoph Hellwiga00b7742011-07-13 13:43:48 +02001681 ASSERT(findex < xfs_dir2_free_max_bests(mp));
Nathan Scott0ba962e2006-03-17 17:27:07 +11001682 free->hdr.nvalid = cpu_to_be32(findex + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 /*
1684 * Tag new entry so nused will go up.
1685 */
Nathan Scott0ba962e2006-03-17 17:27:07 +11001686 free->bests[findex] = cpu_to_be16(NULLDATAOFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 }
1688 /*
1689 * If this entry was for an empty data block
1690 * (this should always be true) then update the header.
1691 */
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001692 if (free->bests[findex] == cpu_to_be16(NULLDATAOFF)) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001693 be32_add_cpu(&free->hdr.nused, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 xfs_dir2_free_log_header(tp, fbp);
1695 }
1696 /*
1697 * Update the real value in the table.
1698 * We haven't allocated the data entry yet so this will
1699 * change again.
1700 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001701 hdr = dbp->b_addr;
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001702 free->bests[findex] = hdr->bestfree[0].length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 logfree = 1;
1704 }
1705 /*
1706 * We had a data block so we don't have to make a new one.
1707 */
1708 else {
1709 /*
1710 * If just checking, we succeeded.
1711 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001712 if (args->op_flags & XFS_DA_OP_JUSTCHECK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 return 0;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001714
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 /*
1716 * Read the data block in.
1717 */
Dave Chinnere4813572012-11-12 22:54:14 +11001718 error = xfs_dir2_data_read(tp, dp, xfs_dir2_db_to_da(mp, dbno),
1719 -1, &dbp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001720 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001722 hdr = dbp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 logfree = 0;
1724 }
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001725 ASSERT(be16_to_cpu(hdr->bestfree[0].length) >= length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 /*
1727 * Point to the existing unused space.
1728 */
1729 dup = (xfs_dir2_data_unused_t *)
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001730 ((char *)hdr + be16_to_cpu(hdr->bestfree[0].offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 needscan = needlog = 0;
1732 /*
1733 * Mark the first part of the unused space, inuse for us.
1734 */
1735 xfs_dir2_data_use_free(tp, dbp, dup,
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001736 (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr), length,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 &needlog, &needscan);
1738 /*
1739 * Fill in the new entry and log it.
1740 */
1741 dep = (xfs_dir2_data_entry_t *)dup;
Christoph Hellwigff9901c2006-06-09 14:48:37 +10001742 dep->inumber = cpu_to_be64(args->inumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 dep->namelen = args->namelen;
1744 memcpy(dep->name, args->name, dep->namelen);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001745 tagp = xfs_dir2_data_entry_tag_p(dep);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001746 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 xfs_dir2_data_log_entry(tp, dbp, dep);
1748 /*
1749 * Rescan the block for bestfree if needed.
1750 */
1751 if (needscan)
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001752 xfs_dir2_data_freescan(mp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 /*
1754 * Log the data block header if needed.
1755 */
1756 if (needlog)
1757 xfs_dir2_data_log_header(tp, dbp);
1758 /*
1759 * If the freespace entry is now wrong, update it.
1760 */
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001761 if (be16_to_cpu(free->bests[findex]) != be16_to_cpu(hdr->bestfree[0].length)) {
1762 free->bests[findex] = hdr->bestfree[0].length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 logfree = 1;
1764 }
1765 /*
1766 * Log the freespace entry if needed.
1767 */
1768 if (logfree)
1769 xfs_dir2_free_log_bests(tp, fbp, findex, findex);
1770 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 * Return the data block and offset in args, then drop the data block.
1772 */
1773 args->blkno = (xfs_dablk_t)dbno;
Nathan Scott3d693c62006-03-17 17:28:27 +11001774 args->index = be16_to_cpu(*tagp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 return 0;
1776}
1777
1778/*
1779 * Lookup an entry in a node-format directory.
1780 * All the real work happens in xfs_da_node_lookup_int.
1781 * The only real output is the inode number of the entry.
1782 */
1783int /* error */
1784xfs_dir2_node_lookup(
1785 xfs_da_args_t *args) /* operation arguments */
1786{
1787 int error; /* error return value */
1788 int i; /* btree level */
1789 int rval; /* operation return value */
1790 xfs_da_state_t *state; /* btree cursor */
1791
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001792 trace_xfs_dir2_node_lookup(args);
1793
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 /*
1795 * Allocate and initialize the btree cursor.
1796 */
1797 state = xfs_da_state_alloc();
1798 state->args = args;
1799 state->mp = args->dp->i_mount;
1800 state->blocksize = state->mp->m_dirblksize;
1801 state->node_ents = state->mp->m_dir_node_ents;
1802 /*
1803 * Fill in the path to the entry in the cursor.
1804 */
1805 error = xfs_da_node_lookup_int(state, &rval);
1806 if (error)
1807 rval = error;
Barry Naujok384f3ce2008-05-21 16:58:22 +10001808 else if (rval == ENOENT && args->cmpresult == XFS_CMP_CASE) {
1809 /* If a CI match, dup the actual name and return EEXIST */
1810 xfs_dir2_data_entry_t *dep;
1811
Dave Chinner1d9025e2012-06-22 18:50:14 +10001812 dep = (xfs_dir2_data_entry_t *)
1813 ((char *)state->extrablk.bp->b_addr +
1814 state->extrablk.index);
Barry Naujok384f3ce2008-05-21 16:58:22 +10001815 rval = xfs_dir_cilookup_result(args, dep->name, dep->namelen);
1816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 /*
1818 * Release the btree blocks and leaf block.
1819 */
1820 for (i = 0; i < state->path.active; i++) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001821 xfs_trans_brelse(args->trans, state->path.blk[i].bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 state->path.blk[i].bp = NULL;
1823 }
1824 /*
1825 * Release the data block if we have it.
1826 */
1827 if (state->extravalid && state->extrablk.bp) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001828 xfs_trans_brelse(args->trans, state->extrablk.bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 state->extrablk.bp = NULL;
1830 }
1831 xfs_da_state_free(state);
1832 return rval;
1833}
1834
1835/*
1836 * Remove an entry from a node-format directory.
1837 */
1838int /* error */
1839xfs_dir2_node_removename(
1840 xfs_da_args_t *args) /* operation arguments */
1841{
1842 xfs_da_state_blk_t *blk; /* leaf block */
1843 int error; /* error return value */
1844 int rval; /* operation return value */
1845 xfs_da_state_t *state; /* btree cursor */
1846
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001847 trace_xfs_dir2_node_removename(args);
1848
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 /*
1850 * Allocate and initialize the btree cursor.
1851 */
1852 state = xfs_da_state_alloc();
1853 state->args = args;
1854 state->mp = args->dp->i_mount;
1855 state->blocksize = state->mp->m_dirblksize;
1856 state->node_ents = state->mp->m_dir_node_ents;
1857 /*
1858 * Look up the entry we're deleting, set up the cursor.
1859 */
1860 error = xfs_da_node_lookup_int(state, &rval);
Barry Naujok5163f952008-05-21 16:41:01 +10001861 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 rval = error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 /*
1864 * Didn't find it, upper layer screwed up.
1865 */
1866 if (rval != EEXIST) {
1867 xfs_da_state_free(state);
1868 return rval;
1869 }
1870 blk = &state->path.blk[state->path.active - 1];
1871 ASSERT(blk->magic == XFS_DIR2_LEAFN_MAGIC);
1872 ASSERT(state->extravalid);
1873 /*
1874 * Remove the leaf and data entries.
1875 * Extrablk refers to the data block.
1876 */
1877 error = xfs_dir2_leafn_remove(args, blk->bp, blk->index,
1878 &state->extrablk, &rval);
Barry Naujok5163f952008-05-21 16:41:01 +10001879 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 /*
1882 * Fix the hash values up the btree.
1883 */
1884 xfs_da_fixhashpath(state, &state->path);
1885 /*
1886 * If we need to join leaf blocks, do it.
1887 */
1888 if (rval && state->path.active > 1)
1889 error = xfs_da_join(state);
1890 /*
1891 * If no errors so far, try conversion to leaf format.
1892 */
1893 if (!error)
1894 error = xfs_dir2_node_to_leaf(state);
1895 xfs_da_state_free(state);
1896 return error;
1897}
1898
1899/*
1900 * Replace an entry's inode number in a node-format directory.
1901 */
1902int /* error */
1903xfs_dir2_node_replace(
1904 xfs_da_args_t *args) /* operation arguments */
1905{
1906 xfs_da_state_blk_t *blk; /* leaf block */
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001907 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 xfs_dir2_data_entry_t *dep; /* data entry changed */
1909 int error; /* error return value */
1910 int i; /* btree level */
1911 xfs_ino_t inum; /* new inode number */
1912 xfs_dir2_leaf_t *leaf; /* leaf structure */
1913 xfs_dir2_leaf_entry_t *lep; /* leaf entry being changed */
1914 int rval; /* internal return value */
1915 xfs_da_state_t *state; /* btree cursor */
1916
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001917 trace_xfs_dir2_node_replace(args);
1918
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 /*
1920 * Allocate and initialize the btree cursor.
1921 */
1922 state = xfs_da_state_alloc();
1923 state->args = args;
1924 state->mp = args->dp->i_mount;
1925 state->blocksize = state->mp->m_dirblksize;
1926 state->node_ents = state->mp->m_dir_node_ents;
1927 inum = args->inumber;
1928 /*
1929 * Lookup the entry to change in the btree.
1930 */
1931 error = xfs_da_node_lookup_int(state, &rval);
1932 if (error) {
1933 rval = error;
1934 }
1935 /*
1936 * It should be found, since the vnodeops layer has looked it up
1937 * and locked it. But paranoia is good.
1938 */
1939 if (rval == EEXIST) {
1940 /*
1941 * Find the leaf entry.
1942 */
1943 blk = &state->path.blk[state->path.active - 1];
1944 ASSERT(blk->magic == XFS_DIR2_LEAFN_MAGIC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001945 leaf = blk->bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 lep = &leaf->ents[blk->index];
1947 ASSERT(state->extravalid);
1948 /*
1949 * Point to the data entry.
1950 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001951 hdr = state->extrablk.bp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001952 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 dep = (xfs_dir2_data_entry_t *)
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001954 ((char *)hdr +
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001955 xfs_dir2_dataptr_to_off(state->mp, be32_to_cpu(lep->address)));
Christoph Hellwigff9901c2006-06-09 14:48:37 +10001956 ASSERT(inum != be64_to_cpu(dep->inumber));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 /*
1958 * Fill in the new inode number and log the entry.
1959 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +10001960 dep->inumber = cpu_to_be64(inum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 xfs_dir2_data_log_entry(args->trans, state->extrablk.bp, dep);
1962 rval = 0;
1963 }
1964 /*
1965 * Didn't find it, and we're holding a data block. Drop it.
1966 */
1967 else if (state->extravalid) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001968 xfs_trans_brelse(args->trans, state->extrablk.bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 state->extrablk.bp = NULL;
1970 }
1971 /*
1972 * Release all the buffers in the cursor.
1973 */
1974 for (i = 0; i < state->path.active; i++) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001975 xfs_trans_brelse(args->trans, state->path.blk[i].bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 state->path.blk[i].bp = NULL;
1977 }
1978 xfs_da_state_free(state);
1979 return rval;
1980}
1981
1982/*
1983 * Trim off a trailing empty freespace block.
1984 * Return (in rvalp) 1 if we did it, 0 if not.
1985 */
1986int /* error */
1987xfs_dir2_node_trim_free(
1988 xfs_da_args_t *args, /* operation arguments */
1989 xfs_fileoff_t fo, /* free block number */
1990 int *rvalp) /* out: did something */
1991{
Dave Chinner1d9025e2012-06-22 18:50:14 +10001992 struct xfs_buf *bp; /* freespace buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 xfs_inode_t *dp; /* incore directory inode */
1994 int error; /* error return code */
1995 xfs_dir2_free_t *free; /* freespace structure */
1996 xfs_mount_t *mp; /* filesystem mount point */
1997 xfs_trans_t *tp; /* transaction pointer */
1998
1999 dp = args->dp;
2000 mp = dp->i_mount;
2001 tp = args->trans;
2002 /*
2003 * Read the freespace block.
2004 */
Dave Chinner20252072012-11-12 22:54:13 +11002005 error = xfs_dir2_free_try_read(tp, dp, fo, &bp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11002006 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 /*
2009 * There can be holes in freespace. If fo is a hole, there's
2010 * nothing to do.
2011 */
Dave Chinner20252072012-11-12 22:54:13 +11002012 if (!bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 return 0;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002014 free = bp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +02002015 ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 /*
2017 * If there are used entries, there's nothing to do.
2018 */
Nathan Scott0ba962e2006-03-17 17:27:07 +11002019 if (be32_to_cpu(free->hdr.nused) > 0) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002020 xfs_trans_brelse(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 *rvalp = 0;
2022 return 0;
2023 }
2024 /*
2025 * Blow the block away.
2026 */
2027 if ((error =
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10002028 xfs_dir2_shrink_inode(args, xfs_dir2_da_to_db(mp, (xfs_dablk_t)fo),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 bp))) {
2030 /*
2031 * Can't fail with ENOSPC since that only happens with no
2032 * space reservation, when breaking up an extent into two
2033 * pieces. This is the last block of an extent.
2034 */
2035 ASSERT(error != ENOSPC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002036 xfs_trans_brelse(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 return error;
2038 }
2039 /*
2040 * Return that we succeeded.
2041 */
2042 *rvalp = 1;
2043 return 0;
2044}