blob: abf617d5060bff582f5c9beb9c7b57e5e16226ba [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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "xfs_types.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_log.h"
23#include "xfs_trans.h"
24#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"
Nathan Scotta844f452005-11-02 14:38:42 +110027#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_dinode.h"
30#include "xfs_inode.h"
31#include "xfs_bmap.h"
Christoph Hellwig57926642011-07-13 13:43:48 +020032#include "xfs_dir2_format.h"
33#include "xfs_dir2_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_error.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000035#include "xfs_trace.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 -070044#ifdef DEBUG
Dave Chinner1d9025e2012-06-22 18:50:14 +100045static void xfs_dir2_leafn_check(struct xfs_inode *dp, struct xfs_buf *bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#else
47#define xfs_dir2_leafn_check(dp, bp)
48#endif
Dave Chinner1d9025e2012-06-22 18:50:14 +100049static void xfs_dir2_leafn_moveents(xfs_da_args_t *args, struct xfs_buf *bp_s,
50 int start_s, struct xfs_buf *bp_d,
51 int start_d, int count);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052static void xfs_dir2_leafn_rebalance(xfs_da_state_t *state,
53 xfs_da_state_blk_t *blk1,
54 xfs_da_state_blk_t *blk2);
Dave Chinner1d9025e2012-06-22 18:50:14 +100055static int xfs_dir2_leafn_remove(xfs_da_args_t *args, struct xfs_buf *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 int index, xfs_da_state_blk_t *dblk,
57 int *rval);
58static int xfs_dir2_node_addname_int(xfs_da_args_t *args,
59 xfs_da_state_blk_t *fblk);
60
Dave Chinnercbc8adf2013-04-03 16:11:21 +110061static bool
62xfs_dir3_free_verify(
Dave Chinner20252072012-11-12 22:54:13 +110063 struct xfs_buf *bp)
64{
65 struct xfs_mount *mp = bp->b_target->bt_mount;
66 struct xfs_dir2_free_hdr *hdr = bp->b_addr;
Dave Chinner20252072012-11-12 22:54:13 +110067
Dave Chinnercbc8adf2013-04-03 16:11:21 +110068 if (xfs_sb_version_hascrc(&mp->m_sb)) {
69 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
70
71 if (hdr3->magic != cpu_to_be32(XFS_DIR3_FREE_MAGIC))
72 return false;
73 if (!uuid_equal(&hdr3->uuid, &mp->m_sb.sb_uuid))
74 return false;
75 if (be64_to_cpu(hdr3->blkno) != bp->b_bn)
76 return false;
77 } else {
78 if (hdr->magic != cpu_to_be32(XFS_DIR2_FREE_MAGIC))
79 return false;
80 }
81
82 /* XXX: should bounds check the xfs_dir3_icfree_hdr here */
83
84 return true;
85}
86
87static void
88xfs_dir3_free_read_verify(
89 struct xfs_buf *bp)
90{
91 struct xfs_mount *mp = bp->b_target->bt_mount;
92
93 if ((xfs_sb_version_hascrc(&mp->m_sb) &&
94 !xfs_verify_cksum(bp->b_addr, BBTOB(bp->b_length),
95 XFS_DIR3_FREE_CRC_OFF)) ||
96 !xfs_dir3_free_verify(bp)) {
97 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
Dave Chinner20252072012-11-12 22:54:13 +110098 xfs_buf_ioerror(bp, EFSCORRUPTED);
99 }
Dave Chinner612cfbf2012-11-14 17:52:32 +1100100}
Dave Chinner20252072012-11-12 22:54:13 +1100101
Dave Chinner612cfbf2012-11-14 17:52:32 +1100102static void
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100103xfs_dir3_free_write_verify(
Dave Chinner1813dd62012-11-14 17:54:40 +1100104 struct xfs_buf *bp)
105{
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100106 struct xfs_mount *mp = bp->b_target->bt_mount;
107 struct xfs_buf_log_item *bip = bp->b_fspriv;
108 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
109
110 if (!xfs_dir3_free_verify(bp)) {
111 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
112 xfs_buf_ioerror(bp, EFSCORRUPTED);
113 return;
114 }
115
116 if (!xfs_sb_version_hascrc(&mp->m_sb))
117 return;
118
119 if (bip)
120 hdr3->lsn = cpu_to_be64(bip->bli_item.li_lsn);
121
122 xfs_update_cksum(bp->b_addr, BBTOB(bp->b_length), XFS_DIR3_FREE_CRC_OFF);
Dave Chinner1813dd62012-11-14 17:54:40 +1100123}
124
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100125static const struct xfs_buf_ops xfs_dir3_free_buf_ops = {
126 .verify_read = xfs_dir3_free_read_verify,
127 .verify_write = xfs_dir3_free_write_verify,
Dave Chinner1813dd62012-11-14 17:54:40 +1100128};
Dave Chinner20252072012-11-12 22:54:13 +1100129
Dave Chinner612cfbf2012-11-14 17:52:32 +1100130
Dave Chinner20252072012-11-12 22:54:13 +1100131static int
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100132__xfs_dir3_free_read(
Dave Chinner20252072012-11-12 22:54:13 +1100133 struct xfs_trans *tp,
134 struct xfs_inode *dp,
135 xfs_dablk_t fbno,
136 xfs_daddr_t mappedbno,
137 struct xfs_buf **bpp)
138{
139 return xfs_da_read_buf(tp, dp, fbno, mappedbno, bpp,
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100140 XFS_DATA_FORK, &xfs_dir3_free_buf_ops);
Dave Chinner20252072012-11-12 22:54:13 +1100141}
142
143int
144xfs_dir2_free_read(
145 struct xfs_trans *tp,
146 struct xfs_inode *dp,
147 xfs_dablk_t fbno,
148 struct xfs_buf **bpp)
149{
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100150 return __xfs_dir3_free_read(tp, dp, fbno, -1, bpp);
Dave Chinner20252072012-11-12 22:54:13 +1100151}
152
153static int
154xfs_dir2_free_try_read(
155 struct xfs_trans *tp,
156 struct xfs_inode *dp,
157 xfs_dablk_t fbno,
158 struct xfs_buf **bpp)
159{
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100160 return __xfs_dir3_free_read(tp, dp, fbno, -2, bpp);
161}
162
163
164void
165xfs_dir3_free_hdr_from_disk(
166 struct xfs_dir3_icfree_hdr *to,
167 struct xfs_dir2_free *from)
168{
169 if (from->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC)) {
170 to->magic = be32_to_cpu(from->hdr.magic);
171 to->firstdb = be32_to_cpu(from->hdr.firstdb);
172 to->nvalid = be32_to_cpu(from->hdr.nvalid);
173 to->nused = be32_to_cpu(from->hdr.nused);
174 } else {
175 struct xfs_dir3_free_hdr *hdr3 = (struct xfs_dir3_free_hdr *)from;
176
177 to->magic = be32_to_cpu(hdr3->hdr.magic);
178 to->firstdb = be32_to_cpu(hdr3->firstdb);
179 to->nvalid = be32_to_cpu(hdr3->nvalid);
180 to->nused = be32_to_cpu(hdr3->nused);
181 }
182
183 ASSERT(to->magic == XFS_DIR2_FREE_MAGIC ||
184 to->magic == XFS_DIR3_FREE_MAGIC);
185}
186
187static void
188xfs_dir3_free_hdr_to_disk(
189 struct xfs_dir2_free *to,
190 struct xfs_dir3_icfree_hdr *from)
191{
192 ASSERT(from->magic == XFS_DIR2_FREE_MAGIC ||
193 from->magic == XFS_DIR3_FREE_MAGIC);
194
195 if (from->magic == XFS_DIR2_FREE_MAGIC) {
196 to->hdr.magic = cpu_to_be32(from->magic);
197 to->hdr.firstdb = cpu_to_be32(from->firstdb);
198 to->hdr.nvalid = cpu_to_be32(from->nvalid);
199 to->hdr.nused = cpu_to_be32(from->nused);
200 } else {
201 struct xfs_dir3_free_hdr *hdr3 = (struct xfs_dir3_free_hdr *)to;
202
203 hdr3->hdr.magic = cpu_to_be32(from->magic);
204 hdr3->firstdb = cpu_to_be32(from->firstdb);
205 hdr3->nvalid = cpu_to_be32(from->nvalid);
206 hdr3->nused = cpu_to_be32(from->nused);
207 }
208}
209
210static int
211xfs_dir3_free_get_buf(
212 struct xfs_trans *tp,
213 struct xfs_inode *dp,
214 xfs_dir2_db_t fbno,
215 struct xfs_buf **bpp)
216{
217 struct xfs_mount *mp = dp->i_mount;
218 struct xfs_buf *bp;
219 int error;
220 struct xfs_dir3_icfree_hdr hdr;
221
222 error = xfs_da_get_buf(tp, dp, xfs_dir2_db_to_da(mp, fbno),
223 -1, &bp, XFS_DATA_FORK);
224 if (error)
225 return error;
226
227 bp->b_ops = &xfs_dir3_free_buf_ops;
228
229 /*
230 * Initialize the new block to be empty, and remember
231 * its first slot as our empty slot.
232 */
233 hdr.magic = XFS_DIR2_FREE_MAGIC;
234 hdr.firstdb = 0;
235 hdr.nused = 0;
236 hdr.nvalid = 0;
237 if (xfs_sb_version_hascrc(&mp->m_sb)) {
238 struct xfs_dir3_free_hdr *hdr3 = bp->b_addr;
239
240 hdr.magic = XFS_DIR3_FREE_MAGIC;
241 hdr3->hdr.blkno = cpu_to_be64(bp->b_bn);
242 hdr3->hdr.owner = cpu_to_be64(dp->i_ino);
243 uuid_copy(&hdr3->hdr.uuid, &mp->m_sb.sb_uuid);
244 }
245 xfs_dir3_free_hdr_to_disk(bp->b_addr, &hdr);
246 *bpp = bp;
247 return 0;
Dave Chinner20252072012-11-12 22:54:13 +1100248}
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250/*
251 * Log entries from a freespace block.
252 */
Eric Sandeen5d77c0d2009-11-19 15:52:00 +0000253STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254xfs_dir2_free_log_bests(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000255 struct xfs_trans *tp,
256 struct xfs_buf *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 int first, /* first entry to log */
258 int last) /* last entry to log */
259{
260 xfs_dir2_free_t *free; /* freespace structure */
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100261 __be16 *bests;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Dave Chinner1d9025e2012-06-22 18:50:14 +1000263 free = bp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100264 bests = xfs_dir3_free_bests_p(tp->t_mountp, free);
265 ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC) ||
266 free->hdr.magic == cpu_to_be32(XFS_DIR3_FREE_MAGIC));
Dave Chinner1d9025e2012-06-22 18:50:14 +1000267 xfs_trans_log_buf(tp, bp,
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100268 (uint)((char *)&bests[first] - (char *)free),
269 (uint)((char *)&bests[last] - (char *)free +
270 sizeof(bests[0]) - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
272
273/*
274 * Log header from a freespace block.
275 */
276static void
277xfs_dir2_free_log_header(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000278 struct xfs_trans *tp,
279 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
281 xfs_dir2_free_t *free; /* freespace structure */
282
Dave Chinner1d9025e2012-06-22 18:50:14 +1000283 free = bp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100284 ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC) ||
285 free->hdr.magic == cpu_to_be32(XFS_DIR3_FREE_MAGIC));
286 xfs_trans_log_buf(tp, bp, 0, xfs_dir3_free_hdr_size(tp->t_mountp) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287}
288
289/*
290 * Convert a leaf-format directory to a node-format directory.
291 * We need to change the magic number of the leaf block, and copy
292 * the freespace table out of the leaf block into its own block.
293 */
294int /* error */
295xfs_dir2_leaf_to_node(
296 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000297 struct xfs_buf *lbp) /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
299 xfs_inode_t *dp; /* incore directory inode */
300 int error; /* error return value */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000301 struct xfs_buf *fbp; /* freespace buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 xfs_dir2_db_t fdb; /* freespace block number */
303 xfs_dir2_free_t *free; /* freespace structure */
Nathan Scott68b3a102006-03-17 17:27:19 +1100304 __be16 *from; /* pointer to freespace entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 int i; /* leaf freespace index */
306 xfs_dir2_leaf_t *leaf; /* leaf structure */
307 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
308 xfs_mount_t *mp; /* filesystem mount point */
309 int n; /* count of live freespc ents */
310 xfs_dir2_data_off_t off; /* freespace entry value */
Nathan Scott0ba962e2006-03-17 17:27:07 +1100311 __be16 *to; /* pointer to freespace entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 xfs_trans_t *tp; /* transaction pointer */
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100313 struct xfs_dir3_icfree_hdr freehdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000315 trace_xfs_dir2_leaf_to_node(args);
316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 dp = args->dp;
318 mp = dp->i_mount;
319 tp = args->trans;
320 /*
321 * Add a freespace block to the directory.
322 */
323 if ((error = xfs_dir2_grow_inode(args, XFS_DIR2_FREE_SPACE, &fdb))) {
324 return error;
325 }
326 ASSERT(fdb == XFS_DIR2_FREE_FIRSTDB(mp));
327 /*
328 * Get the buffer for the new freespace block.
329 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100330 error = xfs_dir3_free_get_buf(tp, dp, fdb, &fbp);
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100331 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 return error;
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100333
Dave Chinner1d9025e2012-06-22 18:50:14 +1000334 free = fbp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100335 xfs_dir3_free_hdr_from_disk(&freehdr, free);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000336 leaf = lbp->b_addr;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000337 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100338 ASSERT(be32_to_cpu(ltp->bestcount) <=
339 (uint)dp->i_d.di_size / mp->m_dirblksize);
340
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 /*
342 * Copy freespace entries from the leaf block to the new block.
343 * Count active entries.
344 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100345 from = xfs_dir2_leaf_bests_p(ltp);
346 to = xfs_dir3_free_bests_p(mp, free);
347 for (i = n = 0; i < be32_to_cpu(ltp->bestcount); i++, from++, to++) {
Nathan Scott68b3a102006-03-17 17:27:19 +1100348 if ((off = be16_to_cpu(*from)) != NULLDATAOFF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 n++;
Nathan Scott0ba962e2006-03-17 17:27:07 +1100350 *to = cpu_to_be16(off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 }
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 /*
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100354 * Now initialize the freespace block header.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100356 freehdr.nused = n;
357 freehdr.nvalid = be32_to_cpu(ltp->bestcount);
358
359 xfs_dir3_free_hdr_to_disk(fbp->b_addr, &freehdr);
360 xfs_dir2_free_log_bests(tp, fbp, 0, freehdr.nvalid - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 xfs_dir2_free_log_header(tp, fbp);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100362
363 /* convert the leaf to a leafnode */
364 leaf->hdr.info.magic = cpu_to_be16(XFS_DIR2_LEAFN_MAGIC);
365 lbp->b_ops = &xfs_dir2_leafn_buf_ops;
366 xfs_dir2_leaf_log_header(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 xfs_dir2_leafn_check(dp, lbp);
368 return 0;
369}
370
371/*
372 * Add a leaf entry to a leaf block in a node-form directory.
373 * The other work necessary is done from the caller.
374 */
375static int /* error */
376xfs_dir2_leafn_add(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000377 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 xfs_da_args_t *args, /* operation arguments */
379 int index) /* insertion pt for new entry */
380{
381 int compact; /* compacting stale leaves */
382 xfs_inode_t *dp; /* incore directory inode */
383 int highstale; /* next stale entry */
384 xfs_dir2_leaf_t *leaf; /* leaf structure */
385 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
386 int lfloghigh; /* high leaf entry logging */
387 int lfloglow; /* low leaf entry logging */
388 int lowstale; /* previous stale entry */
389 xfs_mount_t *mp; /* filesystem mount point */
390 xfs_trans_t *tp; /* transaction pointer */
391
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000392 trace_xfs_dir2_leafn_add(args, index);
393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 dp = args->dp;
395 mp = dp->i_mount;
396 tp = args->trans;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000397 leaf = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399 /*
400 * Quick check just to make sure we are not going to index
401 * into other peoples memory
402 */
403 if (index < 0)
404 return XFS_ERROR(EFSCORRUPTED);
405
406 /*
407 * If there are already the maximum number of leaf entries in
408 * the block, if there are no stale entries it won't fit.
409 * Caller will do a split. If there are stale entries we'll do
410 * a compact.
411 */
412
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000413 if (be16_to_cpu(leaf->hdr.count) == xfs_dir2_max_leaf_ents(mp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 if (!leaf->hdr.stale)
415 return XFS_ERROR(ENOSPC);
Nathan Scotta818e5d2006-03-17 17:28:07 +1100416 compact = be16_to_cpu(leaf->hdr.stale) > 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 } else
418 compact = 0;
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100419 ASSERT(index == 0 || be32_to_cpu(leaf->ents[index - 1].hashval) <= args->hashval);
Nathan Scotta818e5d2006-03-17 17:28:07 +1100420 ASSERT(index == be16_to_cpu(leaf->hdr.count) ||
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100421 be32_to_cpu(leaf->ents[index].hashval) >= args->hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422
Barry Naujok6a178102008-05-21 16:42:05 +1000423 if (args->op_flags & XFS_DA_OP_JUSTCHECK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return 0;
425
426 /*
427 * Compact out all but one stale leaf entry. Leaves behind
428 * the entry closest to index.
429 */
430 if (compact) {
431 xfs_dir2_leaf_compact_x1(bp, &index, &lowstale, &highstale,
432 &lfloglow, &lfloghigh);
433 }
434 /*
435 * Set impossible logging indices for this case.
436 */
437 else if (leaf->hdr.stale) {
Nathan Scotta818e5d2006-03-17 17:28:07 +1100438 lfloglow = be16_to_cpu(leaf->hdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 lfloghigh = -1;
440 }
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200441
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 /*
443 * Insert the new entry, log everything.
444 */
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200445 lep = xfs_dir2_leaf_find_entry(leaf, index, compact, lowstale,
446 highstale, &lfloglow, &lfloghigh);
447
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100448 lep->hashval = cpu_to_be32(args->hashval);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000449 lep->address = cpu_to_be32(xfs_dir2_db_off_to_dataptr(mp,
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100450 args->blkno, args->index));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 xfs_dir2_leaf_log_header(tp, bp);
452 xfs_dir2_leaf_log_ents(tp, bp, lfloglow, lfloghigh);
453 xfs_dir2_leafn_check(dp, bp);
454 return 0;
455}
456
457#ifdef DEBUG
458/*
459 * Check internal consistency of a leafn block.
460 */
461void
462xfs_dir2_leafn_check(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000463 struct xfs_inode *dp,
464 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465{
466 int i; /* leaf index */
467 xfs_dir2_leaf_t *leaf; /* leaf structure */
468 xfs_mount_t *mp; /* filesystem mount point */
469 int stale; /* count of stale leaves */
470
Dave Chinner1d9025e2012-06-22 18:50:14 +1000471 leaf = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 mp = dp->i_mount;
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200473 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000474 ASSERT(be16_to_cpu(leaf->hdr.count) <= xfs_dir2_max_leaf_ents(mp));
Nathan Scotta818e5d2006-03-17 17:28:07 +1100475 for (i = stale = 0; i < be16_to_cpu(leaf->hdr.count); i++) {
476 if (i + 1 < be16_to_cpu(leaf->hdr.count)) {
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100477 ASSERT(be32_to_cpu(leaf->ents[i].hashval) <=
478 be32_to_cpu(leaf->ents[i + 1].hashval));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 }
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200480 if (leaf->ents[i].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 stale++;
482 }
Nathan Scotta818e5d2006-03-17 17:28:07 +1100483 ASSERT(be16_to_cpu(leaf->hdr.stale) == stale);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100485
486static void
487xfs_dir2_free_hdr_check(
488 struct xfs_mount *mp,
489 struct xfs_buf *bp,
490 xfs_dir2_db_t db)
491{
492 struct xfs_dir3_icfree_hdr hdr;
493
494 xfs_dir3_free_hdr_from_disk(&hdr, bp->b_addr);
495
496 ASSERT((hdr.firstdb % xfs_dir3_free_max_bests(mp)) == 0);
497 ASSERT(hdr.firstdb <= db);
498 ASSERT(db < hdr.firstdb + hdr.nvalid);
499}
500#else
501#define xfs_dir2_free_hdr_check(mp, dp, db)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502#endif /* DEBUG */
503
504/*
505 * Return the last hash value in the leaf.
506 * Stale entries are ok.
507 */
508xfs_dahash_t /* hash value */
509xfs_dir2_leafn_lasthash(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000510 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 int *count) /* count of entries in leaf */
512{
513 xfs_dir2_leaf_t *leaf; /* leaf structure */
514
Dave Chinner1d9025e2012-06-22 18:50:14 +1000515 leaf = bp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200516 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 if (count)
Nathan Scotta818e5d2006-03-17 17:28:07 +1100518 *count = be16_to_cpu(leaf->hdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 if (!leaf->hdr.count)
520 return 0;
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100521 return be32_to_cpu(leaf->ents[be16_to_cpu(leaf->hdr.count) - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522}
523
524/*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000525 * Look up a leaf entry for space to add a name in a node-format leaf block.
526 * The extrablk in state is a freespace block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000528STATIC int
529xfs_dir2_leafn_lookup_for_addname(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000530 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 xfs_da_args_t *args, /* operation arguments */
532 int *indexp, /* out: leaf entry index */
533 xfs_da_state_t *state) /* state to fill in */
534{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000535 struct xfs_buf *curbp = NULL; /* current data/free buffer */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000536 xfs_dir2_db_t curdb = -1; /* current data block number */
537 xfs_dir2_db_t curfdb = -1; /* current free block number */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 xfs_inode_t *dp; /* incore directory inode */
539 int error; /* error return value */
540 int fi; /* free entry index */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000541 xfs_dir2_free_t *free = NULL; /* free block structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 int index; /* leaf entry index */
543 xfs_dir2_leaf_t *leaf; /* leaf structure */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000544 int length; /* length of new data entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
546 xfs_mount_t *mp; /* filesystem mount point */
547 xfs_dir2_db_t newdb; /* new data block number */
548 xfs_dir2_db_t newfdb; /* new free block number */
549 xfs_trans_t *tp; /* transaction pointer */
550
551 dp = args->dp;
552 tp = args->trans;
553 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000554 leaf = bp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200555 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556#ifdef __KERNEL__
Nathan Scotta818e5d2006-03-17 17:28:07 +1100557 ASSERT(be16_to_cpu(leaf->hdr.count) > 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558#endif
559 xfs_dir2_leafn_check(dp, bp);
560 /*
561 * Look up the hash value in the leaf entries.
562 */
563 index = xfs_dir2_leaf_search_hash(args, bp);
564 /*
565 * Do we have a buffer coming in?
566 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000567 if (state->extravalid) {
568 /* If so, it's a free block buffer, get the block number. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 curbp = state->extrablk.bp;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000570 curfdb = state->extrablk.blkno;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000571 free = curbp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100572 ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC) ||
573 free->hdr.magic == cpu_to_be32(XFS_DIR3_FREE_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 }
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000575 length = xfs_dir2_data_entsize(args->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 /*
577 * Loop over leaf entries with the right hash value.
578 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000579 for (lep = &leaf->ents[index]; index < be16_to_cpu(leaf->hdr.count) &&
580 be32_to_cpu(lep->hashval) == args->hashval;
581 lep++, index++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 /*
583 * Skip stale leaf entries.
584 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100585 if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 continue;
587 /*
588 * Pull the data block number from the entry.
589 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000590 newdb = xfs_dir2_dataptr_to_db(mp, be32_to_cpu(lep->address));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 /*
592 * For addname, we're looking for a place to put the new entry.
593 * We want to use a data block with an entry of equal
594 * hash value to ours if there is one with room.
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000595 *
596 * If this block isn't the data block we already have
597 * in hand, take a look at it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000599 if (newdb != curdb) {
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100600 __be16 *bests;
601
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000602 curdb = newdb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000604 * Convert the data block to the free block
605 * holding its freespace information.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000607 newfdb = xfs_dir2_db_to_fdb(mp, newdb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000609 * If it's not the one we have in hand, read it in.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000611 if (newfdb != curfdb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000613 * If we had one before, drop it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 */
615 if (curbp)
Dave Chinner1d9025e2012-06-22 18:50:14 +1000616 xfs_trans_brelse(tp, curbp);
Dave Chinner20252072012-11-12 22:54:13 +1100617
618 error = xfs_dir2_free_read(tp, dp,
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000619 xfs_dir2_db_to_da(mp, newfdb),
Dave Chinner20252072012-11-12 22:54:13 +1100620 &curbp);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000621 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000623 free = curbp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100624
625 xfs_dir2_free_hdr_check(mp, curbp, curdb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 }
627 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000628 * Get the index for our entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000630 fi = xfs_dir2_db_to_fdindex(mp, curdb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000632 * If it has room, return it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100634 bests = xfs_dir3_free_bests_p(mp, free);
635 if (unlikely(bests[fi] == cpu_to_be16(NULLDATAOFF))) {
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000636 XFS_ERROR_REPORT("xfs_dir2_leafn_lookup_int",
637 XFS_ERRLEVEL_LOW, mp);
638 if (curfdb != newfdb)
Dave Chinner1d9025e2012-06-22 18:50:14 +1000639 xfs_trans_brelse(tp, curbp);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000640 return XFS_ERROR(EFSCORRUPTED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 }
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000642 curfdb = newfdb;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100643 if (be16_to_cpu(bests[fi]) >= length)
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000644 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 }
646 }
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000647 /* Didn't find any space */
648 fi = -1;
649out:
Barry Naujok6a178102008-05-21 16:42:05 +1000650 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000651 if (curbp) {
652 /* Giving back a free block. */
653 state->extravalid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 state->extrablk.bp = curbp;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000655 state->extrablk.index = fi;
656 state->extrablk.blkno = curfdb;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100657
658 /*
659 * Important: this magic number is not in the buffer - it's for
660 * buffer type information and therefore only the free/data type
661 * matters here, not whether CRCs are enabled or not.
662 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000663 state->extrablk.magic = XFS_DIR2_FREE_MAGIC;
664 } else {
665 state->extravalid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 }
667 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000668 * Return the index, that will be the insertion point.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 */
670 *indexp = index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 return XFS_ERROR(ENOENT);
672}
673
674/*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000675 * Look up a leaf entry in a node-format leaf block.
676 * The extrablk in state a data block.
677 */
678STATIC int
679xfs_dir2_leafn_lookup_for_entry(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000680 struct xfs_buf *bp, /* leaf buffer */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000681 xfs_da_args_t *args, /* operation arguments */
682 int *indexp, /* out: leaf entry index */
683 xfs_da_state_t *state) /* state to fill in */
684{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000685 struct xfs_buf *curbp = NULL; /* current data/free buffer */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000686 xfs_dir2_db_t curdb = -1; /* current data block number */
687 xfs_dir2_data_entry_t *dep; /* data block entry */
688 xfs_inode_t *dp; /* incore directory inode */
689 int error; /* error return value */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000690 int index; /* leaf entry index */
691 xfs_dir2_leaf_t *leaf; /* leaf structure */
692 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
693 xfs_mount_t *mp; /* filesystem mount point */
694 xfs_dir2_db_t newdb; /* new data block number */
695 xfs_trans_t *tp; /* transaction pointer */
Barry Naujok5163f952008-05-21 16:41:01 +1000696 enum xfs_dacmp cmp; /* comparison result */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000697
698 dp = args->dp;
699 tp = args->trans;
700 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000701 leaf = bp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200702 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000703#ifdef __KERNEL__
704 ASSERT(be16_to_cpu(leaf->hdr.count) > 0);
705#endif
706 xfs_dir2_leafn_check(dp, bp);
707 /*
708 * Look up the hash value in the leaf entries.
709 */
710 index = xfs_dir2_leaf_search_hash(args, bp);
711 /*
712 * Do we have a buffer coming in?
713 */
714 if (state->extravalid) {
715 curbp = state->extrablk.bp;
716 curdb = state->extrablk.blkno;
717 }
718 /*
719 * Loop over leaf entries with the right hash value.
720 */
721 for (lep = &leaf->ents[index]; index < be16_to_cpu(leaf->hdr.count) &&
722 be32_to_cpu(lep->hashval) == args->hashval;
723 lep++, index++) {
724 /*
725 * Skip stale leaf entries.
726 */
727 if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
728 continue;
729 /*
730 * Pull the data block number from the entry.
731 */
732 newdb = xfs_dir2_dataptr_to_db(mp, be32_to_cpu(lep->address));
733 /*
734 * Not adding a new entry, so we really want to find
735 * the name given to us.
736 *
737 * If it's a different data block, go get it.
738 */
739 if (newdb != curdb) {
740 /*
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000741 * If we had a block before that we aren't saving
742 * for a CI name, drop it
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000743 */
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000744 if (curbp && (args->cmpresult == XFS_CMP_DIFFERENT ||
745 curdb != state->extrablk.blkno))
Dave Chinner1d9025e2012-06-22 18:50:14 +1000746 xfs_trans_brelse(tp, curbp);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000747 /*
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000748 * If needing the block that is saved with a CI match,
749 * use it otherwise read in the new data block.
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000750 */
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000751 if (args->cmpresult != XFS_CMP_DIFFERENT &&
752 newdb == state->extrablk.blkno) {
753 ASSERT(state->extravalid);
754 curbp = state->extrablk.bp;
755 } else {
Dave Chinner33363fe2013-04-03 16:11:22 +1100756 error = xfs_dir3_data_read(tp, dp,
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000757 xfs_dir2_db_to_da(mp, newdb),
Dave Chinnere4813572012-11-12 22:54:14 +1100758 -1, &curbp);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000759 if (error)
760 return error;
761 }
Dave Chinner33363fe2013-04-03 16:11:22 +1100762 xfs_dir3_data_check(dp, curbp);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000763 curdb = newdb;
764 }
765 /*
766 * Point to the data entry.
767 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000768 dep = (xfs_dir2_data_entry_t *)((char *)curbp->b_addr +
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000769 xfs_dir2_dataptr_to_off(mp, be32_to_cpu(lep->address)));
770 /*
Barry Naujok5163f952008-05-21 16:41:01 +1000771 * Compare the entry and if it's an exact match, return
772 * EEXIST immediately. If it's the first case-insensitive
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000773 * match, store the block & inode number and continue looking.
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000774 */
Barry Naujok5163f952008-05-21 16:41:01 +1000775 cmp = mp->m_dirnameops->compname(args, dep->name, dep->namelen);
776 if (cmp != XFS_CMP_DIFFERENT && cmp != args->cmpresult) {
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000777 /* If there is a CI match block, drop it */
778 if (args->cmpresult != XFS_CMP_DIFFERENT &&
779 curdb != state->extrablk.blkno)
Dave Chinner1d9025e2012-06-22 18:50:14 +1000780 xfs_trans_brelse(tp, state->extrablk.bp);
Barry Naujok5163f952008-05-21 16:41:01 +1000781 args->cmpresult = cmp;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000782 args->inumber = be64_to_cpu(dep->inumber);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000783 *indexp = index;
784 state->extravalid = 1;
785 state->extrablk.bp = curbp;
786 state->extrablk.blkno = curdb;
787 state->extrablk.index = (int)((char *)dep -
Dave Chinner1d9025e2012-06-22 18:50:14 +1000788 (char *)curbp->b_addr);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000789 state->extrablk.magic = XFS_DIR2_DATA_MAGIC;
Dave Chinner33363fe2013-04-03 16:11:22 +1100790 curbp->b_ops = &xfs_dir3_data_buf_ops;
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 }
Barry Naujok6a178102008-05-21 16:42:05 +1000795 ASSERT(index == be16_to_cpu(leaf->hdr.count) ||
796 (args->op_flags & XFS_DA_OP_OKNOENT));
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000797 if (curbp) {
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000798 if (args->cmpresult == XFS_CMP_DIFFERENT) {
799 /* Giving back last used data block. */
800 state->extravalid = 1;
801 state->extrablk.bp = curbp;
802 state->extrablk.index = -1;
803 state->extrablk.blkno = curdb;
804 state->extrablk.magic = XFS_DIR2_DATA_MAGIC;
Dave Chinner33363fe2013-04-03 16:11:22 +1100805 curbp->b_ops = &xfs_dir3_data_buf_ops;
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
841xfs_dir2_leafn_moveents(
842 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000843 struct xfs_buf *bp_s, /* source leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 int start_s, /* source leaf index */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000845 struct xfs_buf *bp_d, /* destination leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 int start_d, /* destination leaf index */
847 int count) /* count of leaves to copy */
848{
849 xfs_dir2_leaf_t *leaf_d; /* destination leaf structure */
850 xfs_dir2_leaf_t *leaf_s; /* source leaf structure */
851 int stale; /* count stale leaves copied */
852 xfs_trans_t *tp; /* transaction pointer */
853
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000854 trace_xfs_dir2_leafn_moveents(args, start_s, start_d, count);
855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 /*
857 * Silently return if nothing to do.
858 */
859 if (count == 0) {
860 return;
861 }
862 tp = args->trans;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000863 leaf_s = bp_s->b_addr;
864 leaf_d = bp_d->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 /*
866 * If the destination index is not the end of the current
867 * destination leaf entries, open up a hole in the destination
868 * to hold the new entries.
869 */
Nathan Scotta818e5d2006-03-17 17:28:07 +1100870 if (start_d < be16_to_cpu(leaf_d->hdr.count)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 memmove(&leaf_d->ents[start_d + count], &leaf_d->ents[start_d],
Nathan Scotta818e5d2006-03-17 17:28:07 +1100872 (be16_to_cpu(leaf_d->hdr.count) - start_d) *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 sizeof(xfs_dir2_leaf_entry_t));
874 xfs_dir2_leaf_log_ents(tp, bp_d, start_d + count,
Nathan Scotta818e5d2006-03-17 17:28:07 +1100875 count + be16_to_cpu(leaf_d->hdr.count) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
877 /*
878 * If the source has stale leaves, count the ones in the copy range
879 * so we can update the header correctly.
880 */
881 if (leaf_s->hdr.stale) {
882 int i; /* temp leaf index */
883
884 for (i = start_s, stale = 0; i < start_s + count; i++) {
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200885 if (leaf_s->ents[i].address ==
886 cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 stale++;
888 }
889 } else
890 stale = 0;
891 /*
892 * Copy the leaf entries from source to destination.
893 */
894 memcpy(&leaf_d->ents[start_d], &leaf_s->ents[start_s],
895 count * sizeof(xfs_dir2_leaf_entry_t));
896 xfs_dir2_leaf_log_ents(tp, bp_d, start_d, start_d + count - 1);
897 /*
898 * If there are source entries after the ones we copied,
899 * delete the ones we copied by sliding the next ones down.
900 */
Nathan Scotta818e5d2006-03-17 17:28:07 +1100901 if (start_s + count < be16_to_cpu(leaf_s->hdr.count)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 memmove(&leaf_s->ents[start_s], &leaf_s->ents[start_s + count],
903 count * sizeof(xfs_dir2_leaf_entry_t));
904 xfs_dir2_leaf_log_ents(tp, bp_s, start_s, start_s + count - 1);
905 }
906 /*
907 * Update the headers and log them.
908 */
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800909 be16_add_cpu(&leaf_s->hdr.count, -(count));
910 be16_add_cpu(&leaf_s->hdr.stale, -(stale));
911 be16_add_cpu(&leaf_d->hdr.count, count);
912 be16_add_cpu(&leaf_d->hdr.stale, stale);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 xfs_dir2_leaf_log_header(tp, bp_s);
914 xfs_dir2_leaf_log_header(tp, bp_d);
915 xfs_dir2_leafn_check(args->dp, bp_s);
916 xfs_dir2_leafn_check(args->dp, bp_d);
917}
918
919/*
920 * Determine the sort order of two leaf blocks.
921 * Returns 1 if both are valid and leaf2 should be before leaf1, else 0.
922 */
923int /* sort order */
924xfs_dir2_leafn_order(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000925 struct xfs_buf *leaf1_bp, /* leaf1 buffer */
926 struct xfs_buf *leaf2_bp) /* leaf2 buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
928 xfs_dir2_leaf_t *leaf1; /* leaf1 structure */
929 xfs_dir2_leaf_t *leaf2; /* leaf2 structure */
930
Dave Chinner1d9025e2012-06-22 18:50:14 +1000931 leaf1 = leaf1_bp->b_addr;
932 leaf2 = leaf2_bp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200933 ASSERT(leaf1->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
934 ASSERT(leaf2->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
Nathan Scotta818e5d2006-03-17 17:28:07 +1100935 if (be16_to_cpu(leaf1->hdr.count) > 0 &&
936 be16_to_cpu(leaf2->hdr.count) > 0 &&
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100937 (be32_to_cpu(leaf2->ents[0].hashval) < be32_to_cpu(leaf1->ents[0].hashval) ||
938 be32_to_cpu(leaf2->ents[be16_to_cpu(leaf2->hdr.count) - 1].hashval) <
939 be32_to_cpu(leaf1->ents[be16_to_cpu(leaf1->hdr.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 */
963#ifdef DEBUG
964 int oldstale; /* old count of stale leaves */
965#endif
966 int oldsum; /* old total leaf count */
967 int swap; /* swapped leaf blocks */
968
969 args = state->args;
970 /*
971 * If the block order is wrong, swap the arguments.
972 */
973 if ((swap = xfs_dir2_leafn_order(blk1->bp, blk2->bp))) {
974 xfs_da_state_blk_t *tmp; /* temp for block swap */
975
976 tmp = blk1;
977 blk1 = blk2;
978 blk2 = tmp;
979 }
Dave Chinner1d9025e2012-06-22 18:50:14 +1000980 leaf1 = blk1->bp->b_addr;
981 leaf2 = blk2->bp->b_addr;
Nathan Scotta818e5d2006-03-17 17:28:07 +1100982 oldsum = be16_to_cpu(leaf1->hdr.count) + be16_to_cpu(leaf2->hdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983#ifdef DEBUG
Nathan Scotta818e5d2006-03-17 17:28:07 +1100984 oldstale = be16_to_cpu(leaf1->hdr.stale) + be16_to_cpu(leaf2->hdr.stale);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985#endif
986 mid = oldsum >> 1;
987 /*
988 * If the old leaf count was odd then the new one will be even,
989 * so we need to divide the new count evenly.
990 */
991 if (oldsum & 1) {
992 xfs_dahash_t midhash; /* middle entry hash value */
993
Nathan Scotta818e5d2006-03-17 17:28:07 +1100994 if (mid >= be16_to_cpu(leaf1->hdr.count))
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100995 midhash = be32_to_cpu(leaf2->ents[mid - be16_to_cpu(leaf1->hdr.count)].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 else
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100997 midhash = be32_to_cpu(leaf1->ents[mid].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 isleft = args->hashval <= midhash;
999 }
1000 /*
1001 * If the old count is even then the new count is odd, so there's
1002 * no preferred side for the new entry.
1003 * Pick the left one.
1004 */
1005 else
1006 isleft = 1;
1007 /*
1008 * Calculate moved entry count. Positive means left-to-right,
1009 * negative means right-to-left. Then move the entries.
1010 */
Nathan Scotta818e5d2006-03-17 17:28:07 +11001011 count = be16_to_cpu(leaf1->hdr.count) - mid + (isleft == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 if (count > 0)
1013 xfs_dir2_leafn_moveents(args, blk1->bp,
Nathan Scotta818e5d2006-03-17 17:28:07 +11001014 be16_to_cpu(leaf1->hdr.count) - count, blk2->bp, 0, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 else if (count < 0)
1016 xfs_dir2_leafn_moveents(args, blk2->bp, 0, blk1->bp,
Nathan Scotta818e5d2006-03-17 17:28:07 +11001017 be16_to_cpu(leaf1->hdr.count), count);
1018 ASSERT(be16_to_cpu(leaf1->hdr.count) + be16_to_cpu(leaf2->hdr.count) == oldsum);
1019 ASSERT(be16_to_cpu(leaf1->hdr.stale) + be16_to_cpu(leaf2->hdr.stale) == oldstale);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 /*
1021 * Mark whether we're inserting into the old or new leaf.
1022 */
Nathan Scotta818e5d2006-03-17 17:28:07 +11001023 if (be16_to_cpu(leaf1->hdr.count) < be16_to_cpu(leaf2->hdr.count))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 state->inleaf = swap;
Nathan Scotta818e5d2006-03-17 17:28:07 +11001025 else if (be16_to_cpu(leaf1->hdr.count) > be16_to_cpu(leaf2->hdr.count))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 state->inleaf = !swap;
1027 else
1028 state->inleaf =
Nathan Scotta818e5d2006-03-17 17:28:07 +11001029 swap ^ (blk1->index <= be16_to_cpu(leaf1->hdr.count));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 /*
1031 * Adjust the expected index for insertion.
1032 */
1033 if (!state->inleaf)
Nathan Scotta818e5d2006-03-17 17:28:07 +11001034 blk2->index = blk1->index - be16_to_cpu(leaf1->hdr.count);
Barry Naujokf9f6dce2008-04-17 16:49:43 +10001035
1036 /*
1037 * Finally sanity check just to make sure we are not returning a
1038 * negative index
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 */
1040 if(blk2->index < 0) {
1041 state->inleaf = 1;
1042 blk2->index = 0;
Dave Chinner0b932cc2011-03-07 10:08:35 +11001043 xfs_alert(args->dp->i_mount,
1044 "%s: picked the wrong leaf? reverting original leaf: blk1->index %d\n",
1045 __func__, blk1->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 }
1047}
1048
Dave Chinner20252072012-11-12 22:54:13 +11001049static int
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001050xfs_dir3_data_block_free(
Dave Chinner20252072012-11-12 22:54:13 +11001051 xfs_da_args_t *args,
1052 struct xfs_dir2_data_hdr *hdr,
1053 struct xfs_dir2_free *free,
1054 xfs_dir2_db_t fdb,
1055 int findex,
1056 struct xfs_buf *fbp,
1057 int longest)
1058{
1059 struct xfs_trans *tp = args->trans;
1060 int logfree = 0;
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001061 __be16 *bests;
1062 struct xfs_dir3_icfree_hdr freehdr;
Dave Chinner20252072012-11-12 22:54:13 +11001063
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001064 xfs_dir3_free_hdr_from_disk(&freehdr, free);
Dave Chinner20252072012-11-12 22:54:13 +11001065
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001066 bests = xfs_dir3_free_bests_p(tp->t_mountp, free);
1067 if (hdr) {
Dave Chinner20252072012-11-12 22:54:13 +11001068 /*
1069 * Data block is not empty, just set the free entry to the new
1070 * value.
1071 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001072 bests[findex] = cpu_to_be16(longest);
1073 xfs_dir2_free_log_bests(tp, fbp, findex, findex);
1074 return 0;
1075 }
1076
1077 /* One less used entry in the free table. */
1078 freehdr.nused--;
1079
1080 /*
1081 * If this was the last entry in the table, we can trim the table size
1082 * back. There might be other entries at the end referring to
1083 * non-existent data blocks, get those too.
1084 */
1085 if (findex == freehdr.nvalid - 1) {
1086 int i; /* free entry index */
1087
1088 for (i = findex - 1; i >= 0; i--) {
1089 if (bests[i] != cpu_to_be16(NULLDATAOFF))
1090 break;
1091 }
1092 freehdr.nvalid = i + 1;
1093 logfree = 0;
1094 } else {
1095 /* Not the last entry, just punch it out. */
1096 bests[findex] = cpu_to_be16(NULLDATAOFF);
Dave Chinner20252072012-11-12 22:54:13 +11001097 logfree = 1;
1098 }
1099
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001100 xfs_dir3_free_hdr_to_disk(free, &freehdr);
1101 xfs_dir2_free_log_header(tp, fbp);
1102
1103 /*
1104 * If there are no useful entries left in the block, get rid of the
1105 * block if we can.
1106 */
1107 if (!freehdr.nused) {
1108 int error;
1109
1110 error = xfs_dir2_shrink_inode(args, fdb, fbp);
1111 if (error == 0) {
1112 fbp = NULL;
1113 logfree = 0;
1114 } else if (error != ENOSPC || args->total != 0)
1115 return error;
1116 /*
1117 * It's possible to get ENOSPC if there is no
1118 * space reservation. In this case some one
1119 * else will eventually get rid of this block.
1120 */
1121 }
1122
Dave Chinner20252072012-11-12 22:54:13 +11001123 /* Log the free entry that changed, unless we got rid of it. */
1124 if (logfree)
1125 xfs_dir2_free_log_bests(tp, fbp, findex, findex);
1126 return 0;
1127}
1128
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129/*
1130 * Remove an entry from a node directory.
1131 * This removes the leaf entry and the data entry,
1132 * and updates the free block if necessary.
1133 */
1134static int /* error */
1135xfs_dir2_leafn_remove(
1136 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001137 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 int index, /* leaf entry index */
1139 xfs_da_state_blk_t *dblk, /* data block */
1140 int *rval) /* resulting block needs join */
1141{
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001142 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 xfs_dir2_db_t db; /* data block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001144 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 xfs_dir2_data_entry_t *dep; /* data block entry */
1146 xfs_inode_t *dp; /* incore directory inode */
1147 xfs_dir2_leaf_t *leaf; /* leaf structure */
1148 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1149 int longest; /* longest data free entry */
1150 int off; /* data block entry offset */
1151 xfs_mount_t *mp; /* filesystem mount point */
1152 int needlog; /* need to log data header */
1153 int needscan; /* need to rescan data frees */
1154 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner33363fe2013-04-03 16:11:22 +11001155 struct xfs_dir2_data_free *bf; /* bestfree table */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001157 trace_xfs_dir2_leafn_remove(args, index);
1158
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 dp = args->dp;
1160 tp = args->trans;
1161 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001162 leaf = bp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001163 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 /*
1165 * Point to the entry we're removing.
1166 */
1167 lep = &leaf->ents[index];
1168 /*
1169 * Extract the data block and offset from the entry.
1170 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001171 db = xfs_dir2_dataptr_to_db(mp, be32_to_cpu(lep->address));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 ASSERT(dblk->blkno == db);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001173 off = xfs_dir2_dataptr_to_off(mp, be32_to_cpu(lep->address));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 ASSERT(dblk->index == off);
1175 /*
1176 * Kill the leaf entry by marking it stale.
1177 * Log the leaf block changes.
1178 */
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001179 be16_add_cpu(&leaf->hdr.stale, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 xfs_dir2_leaf_log_header(tp, bp);
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001181 lep->address = cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 xfs_dir2_leaf_log_ents(tp, bp, index, index);
1183 /*
1184 * Make the data entry free. Keep track of the longest freespace
1185 * in the data block in case it changes.
1186 */
1187 dbp = dblk->bp;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001188 hdr = dbp->b_addr;
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001189 dep = (xfs_dir2_data_entry_t *)((char *)hdr + off);
Dave Chinner33363fe2013-04-03 16:11:22 +11001190 bf = xfs_dir3_data_bestfree_p(hdr);
1191 longest = be16_to_cpu(bf[0].length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 needlog = needscan = 0;
1193 xfs_dir2_data_make_free(tp, dbp, off,
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001194 xfs_dir2_data_entsize(dep->namelen), &needlog, &needscan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 /*
1196 * Rescan the data block freespaces for bestfree.
1197 * Log the data block header if needed.
1198 */
1199 if (needscan)
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001200 xfs_dir2_data_freescan(mp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 if (needlog)
1202 xfs_dir2_data_log_header(tp, dbp);
Dave Chinner33363fe2013-04-03 16:11:22 +11001203 xfs_dir3_data_check(dp, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 /*
1205 * If the longest data block freespace changes, need to update
1206 * the corresponding freeblock entry.
1207 */
Dave Chinner33363fe2013-04-03 16:11:22 +11001208 if (longest < be16_to_cpu(bf[0].length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 int error; /* error return value */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001210 struct xfs_buf *fbp; /* freeblock buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 xfs_dir2_db_t fdb; /* freeblock block number */
1212 int findex; /* index in freeblock entries */
1213 xfs_dir2_free_t *free; /* freeblock structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214
1215 /*
1216 * Convert the data block number to a free block,
1217 * read in the free block.
1218 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001219 fdb = xfs_dir2_db_to_fdb(mp, db);
Dave Chinner20252072012-11-12 22:54:13 +11001220 error = xfs_dir2_free_read(tp, dp, xfs_dir2_db_to_da(mp, fdb),
1221 &fbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001222 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001224 free = fbp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001225#ifdef DEBUG
1226 {
1227 struct xfs_dir3_icfree_hdr freehdr;
1228 xfs_dir3_free_hdr_from_disk(&freehdr, free);
1229 ASSERT(freehdr.firstdb == xfs_dir3_free_max_bests(mp) *
1230 (fdb - XFS_DIR2_FREE_FIRSTDB(mp)));
1231 }
1232#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 /*
1234 * Calculate which entry we need to fix.
1235 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001236 findex = xfs_dir2_db_to_fdindex(mp, db);
Dave Chinner33363fe2013-04-03 16:11:22 +11001237 longest = be16_to_cpu(bf[0].length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 /*
1239 * If the data block is now empty we can get rid of it
1240 * (usually).
1241 */
Dave Chinner33363fe2013-04-03 16:11:22 +11001242 if (longest == mp->m_dirblksize -
1243 xfs_dir3_data_entry_offset(hdr)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 /*
1245 * Try to punch out the data block.
1246 */
1247 error = xfs_dir2_shrink_inode(args, db, dbp);
1248 if (error == 0) {
1249 dblk->bp = NULL;
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001250 hdr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 }
1252 /*
1253 * We can get ENOSPC if there's no space reservation.
1254 * In this case just drop the buffer and some one else
1255 * will eventually get rid of the empty block.
1256 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001257 else if (!(error == ENOSPC && args->total == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 return error;
1259 }
1260 /*
1261 * If we got rid of the data block, we can eliminate that entry
1262 * in the free block.
1263 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001264 error = xfs_dir3_data_block_free(args, hdr, free,
Dave Chinner20252072012-11-12 22:54:13 +11001265 fdb, findex, fbp, longest);
1266 if (error)
1267 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 }
Dave Chinner20252072012-11-12 22:54:13 +11001269
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 xfs_dir2_leafn_check(dp, bp);
1271 /*
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001272 * Return indication of whether this leaf block is empty enough
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 * to justify trying to join it with a neighbor.
1274 */
1275 *rval =
1276 ((uint)sizeof(leaf->hdr) +
1277 (uint)sizeof(leaf->ents[0]) *
Nathan Scotta818e5d2006-03-17 17:28:07 +11001278 (be16_to_cpu(leaf->hdr.count) - be16_to_cpu(leaf->hdr.stale))) <
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 mp->m_dir_magicpct;
1280 return 0;
1281}
1282
1283/*
1284 * Split the leaf entries in the old block into old and new blocks.
1285 */
1286int /* error */
1287xfs_dir2_leafn_split(
1288 xfs_da_state_t *state, /* btree cursor */
1289 xfs_da_state_blk_t *oldblk, /* original block */
1290 xfs_da_state_blk_t *newblk) /* newly created block */
1291{
1292 xfs_da_args_t *args; /* operation arguments */
1293 xfs_dablk_t blkno; /* new leaf block number */
1294 int error; /* error return value */
1295 xfs_mount_t *mp; /* filesystem mount point */
1296
1297 /*
1298 * Allocate space for a new leaf node.
1299 */
1300 args = state->args;
1301 mp = args->dp->i_mount;
1302 ASSERT(args != NULL);
1303 ASSERT(oldblk->magic == XFS_DIR2_LEAFN_MAGIC);
1304 error = xfs_da_grow_inode(args, &blkno);
1305 if (error) {
1306 return error;
1307 }
1308 /*
1309 * Initialize the new leaf block.
1310 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001311 error = xfs_dir2_leaf_init(args, xfs_dir2_da_to_db(mp, blkno),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 &newblk->bp, XFS_DIR2_LEAFN_MAGIC);
1313 if (error) {
1314 return error;
1315 }
1316 newblk->blkno = blkno;
1317 newblk->magic = XFS_DIR2_LEAFN_MAGIC;
1318 /*
1319 * Rebalance the entries across the two leaves, link the new
1320 * block into the leaves.
1321 */
1322 xfs_dir2_leafn_rebalance(state, oldblk, newblk);
1323 error = xfs_da_blk_link(state, oldblk, newblk);
1324 if (error) {
1325 return error;
1326 }
1327 /*
1328 * Insert the new entry in the correct block.
1329 */
1330 if (state->inleaf)
1331 error = xfs_dir2_leafn_add(oldblk->bp, args, oldblk->index);
1332 else
1333 error = xfs_dir2_leafn_add(newblk->bp, args, newblk->index);
1334 /*
1335 * Update last hashval in each block since we added the name.
1336 */
1337 oldblk->hashval = xfs_dir2_leafn_lasthash(oldblk->bp, NULL);
1338 newblk->hashval = xfs_dir2_leafn_lasthash(newblk->bp, NULL);
1339 xfs_dir2_leafn_check(args->dp, oldblk->bp);
1340 xfs_dir2_leafn_check(args->dp, newblk->bp);
1341 return error;
1342}
1343
1344/*
1345 * Check a leaf block and its neighbors to see if the block should be
1346 * collapsed into one or the other neighbor. Always keep the block
1347 * with the smaller block number.
1348 * If the current block is over 50% full, don't try to join it, return 0.
1349 * If the block is empty, fill in the state structure and return 2.
1350 * If it can be collapsed, fill in the state structure and return 1.
1351 * If nothing can be done, return 0.
1352 */
1353int /* error */
1354xfs_dir2_leafn_toosmall(
1355 xfs_da_state_t *state, /* btree cursor */
1356 int *action) /* resulting action to take */
1357{
1358 xfs_da_state_blk_t *blk; /* leaf block */
1359 xfs_dablk_t blkno; /* leaf block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001360 struct xfs_buf *bp; /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 int bytes; /* bytes in use */
1362 int count; /* leaf live entry count */
1363 int error; /* error return value */
1364 int forward; /* sibling block direction */
1365 int i; /* sibling counter */
1366 xfs_da_blkinfo_t *info; /* leaf block header */
1367 xfs_dir2_leaf_t *leaf; /* leaf structure */
1368 int rval; /* result from path_shift */
1369
1370 /*
1371 * Check for the degenerate case of the block being over 50% full.
1372 * If so, it's not worth even looking to see if we might be able
1373 * to coalesce with a sibling.
1374 */
1375 blk = &state->path.blk[state->path.active - 1];
Dave Chinner1d9025e2012-06-22 18:50:14 +10001376 info = blk->bp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001377 ASSERT(info->magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 leaf = (xfs_dir2_leaf_t *)info;
Nathan Scotta818e5d2006-03-17 17:28:07 +11001379 count = be16_to_cpu(leaf->hdr.count) - be16_to_cpu(leaf->hdr.stale);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 bytes = (uint)sizeof(leaf->hdr) + count * (uint)sizeof(leaf->ents[0]);
1381 if (bytes > (state->blocksize >> 1)) {
1382 /*
1383 * Blk over 50%, don't try to join.
1384 */
1385 *action = 0;
1386 return 0;
1387 }
1388 /*
1389 * Check for the degenerate case of the block being empty.
1390 * If the block is empty, we'll simply delete it, no need to
1391 * coalesce it with a sibling block. We choose (arbitrarily)
1392 * to merge with the forward block unless it is NULL.
1393 */
1394 if (count == 0) {
1395 /*
1396 * Make altpath point to the block we want to keep and
1397 * path point to the block we want to drop (this one).
1398 */
Nathan Scott89da0542006-03-17 17:28:40 +11001399 forward = (info->forw != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 memcpy(&state->altpath, &state->path, sizeof(state->path));
1401 error = xfs_da_path_shift(state, &state->altpath, forward, 0,
1402 &rval);
1403 if (error)
1404 return error;
1405 *action = rval ? 2 : 0;
1406 return 0;
1407 }
1408 /*
1409 * Examine each sibling block to see if we can coalesce with
1410 * at least 25% free space to spare. We need to figure out
1411 * whether to merge with the forward or the backward block.
1412 * We prefer coalescing with the lower numbered sibling so as
1413 * to shrink a directory over time.
1414 */
Nathan Scott89da0542006-03-17 17:28:40 +11001415 forward = be32_to_cpu(info->forw) < be32_to_cpu(info->back);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 for (i = 0, bp = NULL; i < 2; forward = !forward, i++) {
Nathan Scott89da0542006-03-17 17:28:40 +11001417 blkno = forward ? be32_to_cpu(info->forw) : be32_to_cpu(info->back);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 if (blkno == 0)
1419 continue;
1420 /*
1421 * Read the sibling leaf block.
1422 */
Dave Chinnere6f76672012-11-12 22:54:15 +11001423 error = xfs_dir2_leafn_read(state->args->trans, state->args->dp,
1424 blkno, -1, &bp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001425 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 return error;
Dave Chinnere6f76672012-11-12 22:54:15 +11001427
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 /*
1429 * Count bytes in the two blocks combined.
1430 */
1431 leaf = (xfs_dir2_leaf_t *)info;
Nathan Scotta818e5d2006-03-17 17:28:07 +11001432 count = be16_to_cpu(leaf->hdr.count) - be16_to_cpu(leaf->hdr.stale);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 bytes = state->blocksize - (state->blocksize >> 2);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001434 leaf = bp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001435 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
Nathan Scotta818e5d2006-03-17 17:28:07 +11001436 count += be16_to_cpu(leaf->hdr.count) - be16_to_cpu(leaf->hdr.stale);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 bytes -= count * (uint)sizeof(leaf->ents[0]);
1438 /*
1439 * Fits with at least 25% to spare.
1440 */
1441 if (bytes >= 0)
1442 break;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001443 xfs_trans_brelse(state->args->trans, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 }
1445 /*
1446 * Didn't like either block, give up.
1447 */
1448 if (i >= 2) {
1449 *action = 0;
1450 return 0;
1451 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10001452
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 /*
1454 * Make altpath point to the block we want to keep (the lower
1455 * numbered block) and path point to the block we want to drop.
1456 */
1457 memcpy(&state->altpath, &state->path, sizeof(state->path));
1458 if (blkno < blk->blkno)
1459 error = xfs_da_path_shift(state, &state->altpath, forward, 0,
1460 &rval);
1461 else
1462 error = xfs_da_path_shift(state, &state->path, forward, 0,
1463 &rval);
1464 if (error) {
1465 return error;
1466 }
1467 *action = rval ? 0 : 1;
1468 return 0;
1469}
1470
1471/*
1472 * Move all the leaf entries from drop_blk to save_blk.
1473 * This is done as part of a join operation.
1474 */
1475void
1476xfs_dir2_leafn_unbalance(
1477 xfs_da_state_t *state, /* cursor */
1478 xfs_da_state_blk_t *drop_blk, /* dead block */
1479 xfs_da_state_blk_t *save_blk) /* surviving block */
1480{
1481 xfs_da_args_t *args; /* operation arguments */
1482 xfs_dir2_leaf_t *drop_leaf; /* dead leaf structure */
1483 xfs_dir2_leaf_t *save_leaf; /* surviving leaf structure */
1484
1485 args = state->args;
1486 ASSERT(drop_blk->magic == XFS_DIR2_LEAFN_MAGIC);
1487 ASSERT(save_blk->magic == XFS_DIR2_LEAFN_MAGIC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001488 drop_leaf = drop_blk->bp->b_addr;
1489 save_leaf = save_blk->bp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001490 ASSERT(drop_leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
1491 ASSERT(save_leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 /*
1493 * If there are any stale leaf entries, take this opportunity
1494 * to purge them.
1495 */
Nathan Scotta818e5d2006-03-17 17:28:07 +11001496 if (drop_leaf->hdr.stale)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 xfs_dir2_leaf_compact(args, drop_blk->bp);
Nathan Scotta818e5d2006-03-17 17:28:07 +11001498 if (save_leaf->hdr.stale)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 xfs_dir2_leaf_compact(args, save_blk->bp);
1500 /*
1501 * Move the entries from drop to the appropriate end of save.
1502 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001503 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 -07001504 if (xfs_dir2_leafn_order(save_blk->bp, drop_blk->bp))
1505 xfs_dir2_leafn_moveents(args, drop_blk->bp, 0, save_blk->bp, 0,
Nathan Scotta818e5d2006-03-17 17:28:07 +11001506 be16_to_cpu(drop_leaf->hdr.count));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 else
1508 xfs_dir2_leafn_moveents(args, drop_blk->bp, 0, save_blk->bp,
Nathan Scotta818e5d2006-03-17 17:28:07 +11001509 be16_to_cpu(save_leaf->hdr.count), be16_to_cpu(drop_leaf->hdr.count));
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001510 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 -07001511 xfs_dir2_leafn_check(args->dp, save_blk->bp);
1512}
1513
1514/*
1515 * Top-level node form directory addname routine.
1516 */
1517int /* error */
1518xfs_dir2_node_addname(
1519 xfs_da_args_t *args) /* operation arguments */
1520{
1521 xfs_da_state_blk_t *blk; /* leaf block for insert */
1522 int error; /* error return value */
1523 int rval; /* sub-return value */
1524 xfs_da_state_t *state; /* btree cursor */
1525
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001526 trace_xfs_dir2_node_addname(args);
1527
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 /*
1529 * Allocate and initialize the state (btree cursor).
1530 */
1531 state = xfs_da_state_alloc();
1532 state->args = args;
1533 state->mp = args->dp->i_mount;
1534 state->blocksize = state->mp->m_dirblksize;
1535 state->node_ents = state->mp->m_dir_node_ents;
1536 /*
1537 * Look up the name. We're not supposed to find it, but
1538 * this gives us the insertion point.
1539 */
1540 error = xfs_da_node_lookup_int(state, &rval);
1541 if (error)
1542 rval = error;
1543 if (rval != ENOENT) {
1544 goto done;
1545 }
1546 /*
1547 * Add the data entry to a data block.
1548 * Extravalid is set to a freeblock found by lookup.
1549 */
1550 rval = xfs_dir2_node_addname_int(args,
1551 state->extravalid ? &state->extrablk : NULL);
1552 if (rval) {
1553 goto done;
1554 }
1555 blk = &state->path.blk[state->path.active - 1];
1556 ASSERT(blk->magic == XFS_DIR2_LEAFN_MAGIC);
1557 /*
1558 * Add the new leaf entry.
1559 */
1560 rval = xfs_dir2_leafn_add(blk->bp, args, blk->index);
1561 if (rval == 0) {
1562 /*
1563 * It worked, fix the hash values up the btree.
1564 */
Barry Naujok6a178102008-05-21 16:42:05 +10001565 if (!(args->op_flags & XFS_DA_OP_JUSTCHECK))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 xfs_da_fixhashpath(state, &state->path);
1567 } else {
1568 /*
1569 * It didn't work, we need to split the leaf block.
1570 */
1571 if (args->total == 0) {
1572 ASSERT(rval == ENOSPC);
1573 goto done;
1574 }
1575 /*
1576 * Split the leaf block and insert the new entry.
1577 */
1578 rval = xfs_da_split(state);
1579 }
1580done:
1581 xfs_da_state_free(state);
1582 return rval;
1583}
1584
1585/*
1586 * Add the data entry for a node-format directory name addition.
1587 * The leaf entry is added in xfs_dir2_leafn_add.
1588 * We may enter with a freespace block that the lookup found.
1589 */
1590static int /* error */
1591xfs_dir2_node_addname_int(
1592 xfs_da_args_t *args, /* operation arguments */
1593 xfs_da_state_blk_t *fblk) /* optional freespace block */
1594{
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001595 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 xfs_dir2_db_t dbno; /* data block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001597 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 xfs_dir2_data_entry_t *dep; /* data entry pointer */
1599 xfs_inode_t *dp; /* incore directory inode */
1600 xfs_dir2_data_unused_t *dup; /* data unused entry pointer */
1601 int error; /* error return value */
1602 xfs_dir2_db_t fbno; /* freespace block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001603 struct xfs_buf *fbp; /* freespace buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 int findex; /* freespace entry index */
1605 xfs_dir2_free_t *free=NULL; /* freespace block structure */
1606 xfs_dir2_db_t ifbno; /* initial freespace block no */
1607 xfs_dir2_db_t lastfbno=0; /* highest freespace block no */
1608 int length; /* length of the new entry */
1609 int logfree; /* need to log free entry */
1610 xfs_mount_t *mp; /* filesystem mount point */
1611 int needlog; /* need to log data header */
1612 int needscan; /* need to rescan data frees */
Nathan Scott3d693c62006-03-17 17:28:27 +11001613 __be16 *tagp; /* data entry tag pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 xfs_trans_t *tp; /* transaction pointer */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001615 __be16 *bests;
1616 struct xfs_dir3_icfree_hdr freehdr;
Dave Chinner33363fe2013-04-03 16:11:22 +11001617 struct xfs_dir2_data_free *bf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
1619 dp = args->dp;
1620 mp = dp->i_mount;
1621 tp = args->trans;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001622 length = xfs_dir2_data_entsize(args->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 /*
1624 * If we came in with a freespace block that means that lookup
1625 * found an entry with our hash value. This is the freespace
1626 * block for that data entry.
1627 */
1628 if (fblk) {
1629 fbp = fblk->bp;
1630 /*
1631 * Remember initial freespace block number.
1632 */
1633 ifbno = fblk->blkno;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001634 free = fbp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 findex = fblk->index;
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001636 bests = xfs_dir3_free_bests_p(mp, free);
1637 xfs_dir3_free_hdr_from_disk(&freehdr, free);
1638
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 /*
1640 * This means the free entry showed that the data block had
1641 * space for our entry, so we remembered it.
1642 * Use that data block.
1643 */
1644 if (findex >= 0) {
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001645 ASSERT(findex < freehdr.nvalid);
1646 ASSERT(be16_to_cpu(bests[findex]) != NULLDATAOFF);
1647 ASSERT(be16_to_cpu(bests[findex]) >= length);
1648 dbno = freehdr.firstdb + findex;
1649 } else {
1650 /*
1651 * The data block looked at didn't have enough room.
1652 * We'll start at the beginning of the freespace entries.
1653 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 dbno = -1;
1655 findex = 0;
1656 }
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001657 } else {
1658 /*
1659 * Didn't come in with a freespace block, so no data block.
1660 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 ifbno = dbno = -1;
1662 fbp = NULL;
1663 findex = 0;
1664 }
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001665
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 /*
1667 * If we don't have a data block yet, we're going to scan the
1668 * freespace blocks looking for one. Figure out what the
1669 * highest freespace block number is.
1670 */
1671 if (dbno == -1) {
1672 xfs_fileoff_t fo; /* freespace block number */
1673
1674 if ((error = xfs_bmap_last_offset(tp, dp, &fo, XFS_DATA_FORK)))
1675 return error;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001676 lastfbno = xfs_dir2_da_to_db(mp, (xfs_dablk_t)fo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 fbno = ifbno;
1678 }
1679 /*
1680 * While we haven't identified a data block, search the freeblock
1681 * data for a good data block. If we find a null freeblock entry,
1682 * indicating a hole in the data blocks, remember that.
1683 */
1684 while (dbno == -1) {
1685 /*
1686 * If we don't have a freeblock in hand, get the next one.
1687 */
1688 if (fbp == NULL) {
1689 /*
1690 * Happens the first time through unless lookup gave
1691 * us a freespace block to start with.
1692 */
1693 if (++fbno == 0)
1694 fbno = XFS_DIR2_FREE_FIRSTDB(mp);
1695 /*
1696 * If it's ifbno we already looked at it.
1697 */
1698 if (fbno == ifbno)
1699 fbno++;
1700 /*
1701 * If it's off the end we're done.
1702 */
1703 if (fbno >= lastfbno)
1704 break;
1705 /*
1706 * Read the block. There can be holes in the
1707 * freespace blocks, so this might not succeed.
1708 * This should be really rare, so there's no reason
1709 * to avoid it.
1710 */
Dave Chinner20252072012-11-12 22:54:13 +11001711 error = xfs_dir2_free_try_read(tp, dp,
1712 xfs_dir2_db_to_da(mp, fbno),
1713 &fbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001714 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 return error;
Dave Chinner4bb20a82012-11-12 22:54:10 +11001716 if (!fbp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 continue;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001718 free = fbp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 findex = 0;
1720 }
1721 /*
1722 * Look at the current free entry. Is it good enough?
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001723 *
1724 * The bests initialisation should be where the bufer is read in
1725 * the above branch. But gcc is too stupid to realise that bests
1726 * and the freehdr are actually initialised if they are placed
1727 * there, so we have to do it here to avoid warnings. Blech.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001729 bests = xfs_dir3_free_bests_p(mp, free);
1730 xfs_dir3_free_hdr_from_disk(&freehdr, free);
1731 if (be16_to_cpu(bests[findex]) != NULLDATAOFF &&
1732 be16_to_cpu(bests[findex]) >= length)
1733 dbno = freehdr.firstdb + findex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 else {
1735 /*
1736 * Are we done with the freeblock?
1737 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001738 if (++findex == freehdr.nvalid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 /*
1740 * Drop the block.
1741 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001742 xfs_trans_brelse(tp, fbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 fbp = NULL;
1744 if (fblk && fblk->bp)
1745 fblk->bp = NULL;
1746 }
1747 }
1748 }
1749 /*
1750 * If we don't have a data block, we need to allocate one and make
1751 * the freespace entries refer to it.
1752 */
1753 if (unlikely(dbno == -1)) {
1754 /*
1755 * Not allowed to allocate, return failure.
1756 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001757 if ((args->op_flags & XFS_DA_OP_JUSTCHECK) || args->total == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 return XFS_ERROR(ENOSPC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001759
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 /*
1761 * Allocate and initialize the new data block.
1762 */
1763 if (unlikely((error = xfs_dir2_grow_inode(args,
1764 XFS_DIR2_DATA_SPACE,
1765 &dbno)) ||
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11001766 (error = xfs_dir3_data_init(args, dbno, &dbp))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001768
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 /*
1770 * If (somehow) we have a freespace block, get rid of it.
1771 */
1772 if (fbp)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001773 xfs_trans_brelse(tp, fbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 if (fblk && fblk->bp)
1775 fblk->bp = NULL;
1776
1777 /*
1778 * Get the freespace block corresponding to the data block
1779 * that was just allocated.
1780 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001781 fbno = xfs_dir2_db_to_fdb(mp, dbno);
Dave Chinner20252072012-11-12 22:54:13 +11001782 error = xfs_dir2_free_try_read(tp, dp,
1783 xfs_dir2_db_to_da(mp, fbno),
1784 &fbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001785 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001787
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 /*
1789 * If there wasn't a freespace block, the read will
1790 * return a NULL fbp. Allocate and initialize a new one.
1791 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001792 if (!fbp) {
1793 error = xfs_dir2_grow_inode(args, XFS_DIR2_FREE_SPACE,
1794 &fbno);
1795 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001798 if (unlikely(xfs_dir2_db_to_fdb(mp, dbno) != fbno)) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001799 xfs_alert(mp,
Jean Delvaredf2e3012011-07-16 18:10:35 +02001800 "%s: dir ino %llu needed freesp block %lld for\n"
Dave Chinner0b932cc2011-03-07 10:08:35 +11001801 " data block %lld, got %lld ifbno %llu lastfbno %d",
1802 __func__, (unsigned long long)dp->i_ino,
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001803 (long long)xfs_dir2_db_to_fdb(mp, dbno),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 (long long)dbno, (long long)fbno,
1805 (unsigned long long)ifbno, lastfbno);
1806 if (fblk) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001807 xfs_alert(mp,
1808 " fblk 0x%p blkno %llu index %d magic 0x%x",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 fblk,
1810 (unsigned long long)fblk->blkno,
1811 fblk->index,
1812 fblk->magic);
1813 } else {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001814 xfs_alert(mp, " ... fblk is NULL");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 }
1816 XFS_ERROR_REPORT("xfs_dir2_node_addname_int",
1817 XFS_ERRLEVEL_LOW, mp);
1818 return XFS_ERROR(EFSCORRUPTED);
1819 }
1820
1821 /*
1822 * Get a buffer for the new block.
1823 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001824 error = xfs_dir3_free_get_buf(tp, dp, fbno, &fbp);
Dave Chinnerb0f539d2012-11-14 17:53:49 +11001825 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 return error;
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001827 free = fbp->b_addr;
1828 bests = xfs_dir3_free_bests_p(mp, free);
1829 xfs_dir3_free_hdr_from_disk(&freehdr, free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
1831 /*
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001832 * Remember the first slot as our empty slot.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001834 freehdr.firstdb = (fbno - XFS_DIR2_FREE_FIRSTDB(mp)) *
1835 xfs_dir3_free_max_bests(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 free->hdr.nvalid = 0;
1837 free->hdr.nused = 0;
1838 } else {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001839 free = fbp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001840 bests = xfs_dir3_free_bests_p(mp, free);
1841 xfs_dir3_free_hdr_from_disk(&freehdr, free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 }
1843
1844 /*
1845 * Set the freespace block index from the data block number.
1846 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001847 findex = xfs_dir2_db_to_fdindex(mp, dbno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 /*
1849 * If it's after the end of the current entries in the
1850 * freespace block, extend that table.
1851 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001852 if (findex >= freehdr.nvalid) {
1853 ASSERT(findex < xfs_dir3_free_max_bests(mp));
1854 freehdr.nvalid = findex + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 /*
1856 * Tag new entry so nused will go up.
1857 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001858 bests[findex] = cpu_to_be16(NULLDATAOFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 }
1860 /*
1861 * If this entry was for an empty data block
1862 * (this should always be true) then update the header.
1863 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001864 if (bests[findex] == cpu_to_be16(NULLDATAOFF)) {
1865 freehdr.nused++;
1866 xfs_dir3_free_hdr_to_disk(fbp->b_addr, &freehdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 xfs_dir2_free_log_header(tp, fbp);
1868 }
1869 /*
1870 * Update the real value in the table.
1871 * We haven't allocated the data entry yet so this will
1872 * change again.
1873 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001874 hdr = dbp->b_addr;
Dave Chinner33363fe2013-04-03 16:11:22 +11001875 bf = xfs_dir3_data_bestfree_p(hdr);
1876 bests[findex] = bf[0].length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 logfree = 1;
1878 }
1879 /*
1880 * We had a data block so we don't have to make a new one.
1881 */
1882 else {
1883 /*
1884 * If just checking, we succeeded.
1885 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001886 if (args->op_flags & XFS_DA_OP_JUSTCHECK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 return 0;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001888
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 /*
1890 * Read the data block in.
1891 */
Dave Chinner33363fe2013-04-03 16:11:22 +11001892 error = xfs_dir3_data_read(tp, dp, xfs_dir2_db_to_da(mp, dbno),
Dave Chinnere4813572012-11-12 22:54:14 +11001893 -1, &dbp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001894 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001896 hdr = dbp->b_addr;
Dave Chinner33363fe2013-04-03 16:11:22 +11001897 bf = xfs_dir3_data_bestfree_p(hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 logfree = 0;
1899 }
Dave Chinner33363fe2013-04-03 16:11:22 +11001900 ASSERT(be16_to_cpu(bf[0].length) >= length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 /*
1902 * Point to the existing unused space.
1903 */
1904 dup = (xfs_dir2_data_unused_t *)
Dave Chinner33363fe2013-04-03 16:11:22 +11001905 ((char *)hdr + be16_to_cpu(bf[0].offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 needscan = needlog = 0;
1907 /*
1908 * Mark the first part of the unused space, inuse for us.
1909 */
1910 xfs_dir2_data_use_free(tp, dbp, dup,
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001911 (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr), length,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 &needlog, &needscan);
1913 /*
1914 * Fill in the new entry and log it.
1915 */
1916 dep = (xfs_dir2_data_entry_t *)dup;
Christoph Hellwigff9901c2006-06-09 14:48:37 +10001917 dep->inumber = cpu_to_be64(args->inumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 dep->namelen = args->namelen;
1919 memcpy(dep->name, args->name, dep->namelen);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001920 tagp = xfs_dir2_data_entry_tag_p(dep);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001921 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 xfs_dir2_data_log_entry(tp, dbp, dep);
1923 /*
1924 * Rescan the block for bestfree if needed.
1925 */
1926 if (needscan)
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001927 xfs_dir2_data_freescan(mp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 /*
1929 * Log the data block header if needed.
1930 */
1931 if (needlog)
1932 xfs_dir2_data_log_header(tp, dbp);
1933 /*
1934 * If the freespace entry is now wrong, update it.
1935 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001936 bests = xfs_dir3_free_bests_p(mp, free); /* gcc is so stupid */
Dave Chinner33363fe2013-04-03 16:11:22 +11001937 if (be16_to_cpu(bests[findex]) != be16_to_cpu(bf[0].length)) {
1938 bests[findex] = bf[0].length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 logfree = 1;
1940 }
1941 /*
1942 * Log the freespace entry if needed.
1943 */
1944 if (logfree)
1945 xfs_dir2_free_log_bests(tp, fbp, findex, findex);
1946 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 * Return the data block and offset in args, then drop the data block.
1948 */
1949 args->blkno = (xfs_dablk_t)dbno;
Nathan Scott3d693c62006-03-17 17:28:27 +11001950 args->index = be16_to_cpu(*tagp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 return 0;
1952}
1953
1954/*
1955 * Lookup an entry in a node-format directory.
1956 * All the real work happens in xfs_da_node_lookup_int.
1957 * The only real output is the inode number of the entry.
1958 */
1959int /* error */
1960xfs_dir2_node_lookup(
1961 xfs_da_args_t *args) /* operation arguments */
1962{
1963 int error; /* error return value */
1964 int i; /* btree level */
1965 int rval; /* operation return value */
1966 xfs_da_state_t *state; /* btree cursor */
1967
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001968 trace_xfs_dir2_node_lookup(args);
1969
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 /*
1971 * Allocate and initialize the btree cursor.
1972 */
1973 state = xfs_da_state_alloc();
1974 state->args = args;
1975 state->mp = args->dp->i_mount;
1976 state->blocksize = state->mp->m_dirblksize;
1977 state->node_ents = state->mp->m_dir_node_ents;
1978 /*
1979 * Fill in the path to the entry in the cursor.
1980 */
1981 error = xfs_da_node_lookup_int(state, &rval);
1982 if (error)
1983 rval = error;
Barry Naujok384f3ce2008-05-21 16:58:22 +10001984 else if (rval == ENOENT && args->cmpresult == XFS_CMP_CASE) {
1985 /* If a CI match, dup the actual name and return EEXIST */
1986 xfs_dir2_data_entry_t *dep;
1987
Dave Chinner1d9025e2012-06-22 18:50:14 +10001988 dep = (xfs_dir2_data_entry_t *)
1989 ((char *)state->extrablk.bp->b_addr +
1990 state->extrablk.index);
Barry Naujok384f3ce2008-05-21 16:58:22 +10001991 rval = xfs_dir_cilookup_result(args, dep->name, dep->namelen);
1992 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 /*
1994 * Release the btree blocks and leaf block.
1995 */
1996 for (i = 0; i < state->path.active; i++) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001997 xfs_trans_brelse(args->trans, state->path.blk[i].bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 state->path.blk[i].bp = NULL;
1999 }
2000 /*
2001 * Release the data block if we have it.
2002 */
2003 if (state->extravalid && state->extrablk.bp) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002004 xfs_trans_brelse(args->trans, state->extrablk.bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 state->extrablk.bp = NULL;
2006 }
2007 xfs_da_state_free(state);
2008 return rval;
2009}
2010
2011/*
2012 * Remove an entry from a node-format directory.
2013 */
2014int /* error */
2015xfs_dir2_node_removename(
2016 xfs_da_args_t *args) /* operation arguments */
2017{
2018 xfs_da_state_blk_t *blk; /* leaf block */
2019 int error; /* error return value */
2020 int rval; /* operation return value */
2021 xfs_da_state_t *state; /* btree cursor */
2022
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002023 trace_xfs_dir2_node_removename(args);
2024
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 /*
2026 * Allocate and initialize the btree cursor.
2027 */
2028 state = xfs_da_state_alloc();
2029 state->args = args;
2030 state->mp = args->dp->i_mount;
2031 state->blocksize = state->mp->m_dirblksize;
2032 state->node_ents = state->mp->m_dir_node_ents;
2033 /*
2034 * Look up the entry we're deleting, set up the cursor.
2035 */
2036 error = xfs_da_node_lookup_int(state, &rval);
Barry Naujok5163f952008-05-21 16:41:01 +10002037 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 rval = error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 /*
2040 * Didn't find it, upper layer screwed up.
2041 */
2042 if (rval != EEXIST) {
2043 xfs_da_state_free(state);
2044 return rval;
2045 }
2046 blk = &state->path.blk[state->path.active - 1];
2047 ASSERT(blk->magic == XFS_DIR2_LEAFN_MAGIC);
2048 ASSERT(state->extravalid);
2049 /*
2050 * Remove the leaf and data entries.
2051 * Extrablk refers to the data block.
2052 */
2053 error = xfs_dir2_leafn_remove(args, blk->bp, blk->index,
2054 &state->extrablk, &rval);
Barry Naujok5163f952008-05-21 16:41:01 +10002055 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 /*
2058 * Fix the hash values up the btree.
2059 */
2060 xfs_da_fixhashpath(state, &state->path);
2061 /*
2062 * If we need to join leaf blocks, do it.
2063 */
2064 if (rval && state->path.active > 1)
2065 error = xfs_da_join(state);
2066 /*
2067 * If no errors so far, try conversion to leaf format.
2068 */
2069 if (!error)
2070 error = xfs_dir2_node_to_leaf(state);
2071 xfs_da_state_free(state);
2072 return error;
2073}
2074
2075/*
2076 * Replace an entry's inode number in a node-format directory.
2077 */
2078int /* error */
2079xfs_dir2_node_replace(
2080 xfs_da_args_t *args) /* operation arguments */
2081{
2082 xfs_da_state_blk_t *blk; /* leaf block */
Christoph Hellwigc2066e22011-07-08 14:35:38 +02002083 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 xfs_dir2_data_entry_t *dep; /* data entry changed */
2085 int error; /* error return value */
2086 int i; /* btree level */
2087 xfs_ino_t inum; /* new inode number */
2088 xfs_dir2_leaf_t *leaf; /* leaf structure */
2089 xfs_dir2_leaf_entry_t *lep; /* leaf entry being changed */
2090 int rval; /* internal return value */
2091 xfs_da_state_t *state; /* btree cursor */
2092
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002093 trace_xfs_dir2_node_replace(args);
2094
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 /*
2096 * Allocate and initialize the btree cursor.
2097 */
2098 state = xfs_da_state_alloc();
2099 state->args = args;
2100 state->mp = args->dp->i_mount;
2101 state->blocksize = state->mp->m_dirblksize;
2102 state->node_ents = state->mp->m_dir_node_ents;
2103 inum = args->inumber;
2104 /*
2105 * Lookup the entry to change in the btree.
2106 */
2107 error = xfs_da_node_lookup_int(state, &rval);
2108 if (error) {
2109 rval = error;
2110 }
2111 /*
2112 * It should be found, since the vnodeops layer has looked it up
2113 * and locked it. But paranoia is good.
2114 */
2115 if (rval == EEXIST) {
2116 /*
2117 * Find the leaf entry.
2118 */
2119 blk = &state->path.blk[state->path.active - 1];
2120 ASSERT(blk->magic == XFS_DIR2_LEAFN_MAGIC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002121 leaf = blk->bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 lep = &leaf->ents[blk->index];
2123 ASSERT(state->extravalid);
2124 /*
2125 * Point to the data entry.
2126 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10002127 hdr = state->extrablk.bp->b_addr;
Dave Chinner33363fe2013-04-03 16:11:22 +11002128 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
2129 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 dep = (xfs_dir2_data_entry_t *)
Christoph Hellwigc2066e22011-07-08 14:35:38 +02002131 ((char *)hdr +
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10002132 xfs_dir2_dataptr_to_off(state->mp, be32_to_cpu(lep->address)));
Christoph Hellwigff9901c2006-06-09 14:48:37 +10002133 ASSERT(inum != be64_to_cpu(dep->inumber));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 /*
2135 * Fill in the new inode number and log the entry.
2136 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +10002137 dep->inumber = cpu_to_be64(inum);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 xfs_dir2_data_log_entry(args->trans, state->extrablk.bp, dep);
2139 rval = 0;
2140 }
2141 /*
2142 * Didn't find it, and we're holding a data block. Drop it.
2143 */
2144 else if (state->extravalid) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002145 xfs_trans_brelse(args->trans, state->extrablk.bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 state->extrablk.bp = NULL;
2147 }
2148 /*
2149 * Release all the buffers in the cursor.
2150 */
2151 for (i = 0; i < state->path.active; i++) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002152 xfs_trans_brelse(args->trans, state->path.blk[i].bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 state->path.blk[i].bp = NULL;
2154 }
2155 xfs_da_state_free(state);
2156 return rval;
2157}
2158
2159/*
2160 * Trim off a trailing empty freespace block.
2161 * Return (in rvalp) 1 if we did it, 0 if not.
2162 */
2163int /* error */
2164xfs_dir2_node_trim_free(
2165 xfs_da_args_t *args, /* operation arguments */
2166 xfs_fileoff_t fo, /* free block number */
2167 int *rvalp) /* out: did something */
2168{
Dave Chinner1d9025e2012-06-22 18:50:14 +10002169 struct xfs_buf *bp; /* freespace buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 xfs_inode_t *dp; /* incore directory inode */
2171 int error; /* error return code */
2172 xfs_dir2_free_t *free; /* freespace structure */
2173 xfs_mount_t *mp; /* filesystem mount point */
2174 xfs_trans_t *tp; /* transaction pointer */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11002175 struct xfs_dir3_icfree_hdr freehdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
2177 dp = args->dp;
2178 mp = dp->i_mount;
2179 tp = args->trans;
2180 /*
2181 * Read the freespace block.
2182 */
Dave Chinner20252072012-11-12 22:54:13 +11002183 error = xfs_dir2_free_try_read(tp, dp, fo, &bp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11002184 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 /*
2187 * There can be holes in freespace. If fo is a hole, there's
2188 * nothing to do.
2189 */
Dave Chinner20252072012-11-12 22:54:13 +11002190 if (!bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 return 0;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002192 free = bp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +11002193 xfs_dir3_free_hdr_from_disk(&freehdr, free);
2194
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 /*
2196 * If there are used entries, there's nothing to do.
2197 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11002198 if (freehdr.nused > 0) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002199 xfs_trans_brelse(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 *rvalp = 0;
2201 return 0;
2202 }
2203 /*
2204 * Blow the block away.
2205 */
2206 if ((error =
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10002207 xfs_dir2_shrink_inode(args, xfs_dir2_da_to_db(mp, (xfs_dablk_t)fo),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 bp))) {
2209 /*
2210 * Can't fail with ENOSPC since that only happens with no
2211 * space reservation, when breaking up an extent into two
2212 * pieces. This is the last block of an extent.
2213 */
2214 ASSERT(error != ENOSPC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002215 xfs_trans_brelse(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 return error;
2217 }
2218 /*
2219 * Return that we succeeded.
2220 */
2221 *rvalp = 1;
2222 return 0;
2223}