blob: 3a426ed9b16e9b3025fef065e24155e31e985042 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
Dave Chinnercbc8adf2013-04-03 16:11:21 +11003 * Copyright (c) 2013 Red Hat, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11004 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Nathan Scott7b718762005-11-02 14:58:39 +11006 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * published by the Free Software Foundation.
9 *
Nathan Scott7b718762005-11-02 14:58:39 +110010 * This program is distributed in the hope that it would be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 *
Nathan Scott7b718762005-11-02 14:58:39 +110015 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110020#include "xfs_fs.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110021#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110022#include "xfs_log_format.h"
23#include "xfs_trans_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_sb.h"
David Chinnerda353b02007-08-28 14:00:13 +100025#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_mount.h"
Dave Chinner57062782013-10-15 09:17:51 +110027#include "xfs_da_format.h"
Nathan Scotta844f452005-11-02 14:38:42 +110028#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_inode.h"
30#include "xfs_bmap.h"
Dave Chinner2b9ab5a2013-08-12 20:49:37 +100031#include "xfs_dir2.h"
Christoph Hellwig57926642011-07-13 13:43:48 +020032#include "xfs_dir2_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_error.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000034#include "xfs_trace.h"
Dave Chinner239880e2013-10-23 10:50:10 +110035#include "xfs_trans.h"
Dave Chinnercbc8adf2013-04-03 16:11:21 +110036#include "xfs_buf_item.h"
37#include "xfs_cksum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39/*
40 * Function declarations.
41 */
Dave Chinner1d9025e2012-06-22 18:50:14 +100042static int xfs_dir2_leafn_add(struct xfs_buf *bp, xfs_da_args_t *args,
43 int index);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044static void xfs_dir2_leafn_rebalance(xfs_da_state_t *state,
45 xfs_da_state_blk_t *blk1,
46 xfs_da_state_blk_t *blk2);
Dave Chinner1d9025e2012-06-22 18:50:14 +100047static int xfs_dir2_leafn_remove(xfs_da_args_t *args, struct xfs_buf *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 int index, xfs_da_state_blk_t *dblk,
49 int *rval);
50static int xfs_dir2_node_addname_int(xfs_da_args_t *args,
51 xfs_da_state_blk_t *fblk);
52
Dave Chinner24df33b2013-04-12 07:30:21 +100053/*
54 * Check internal consistency of a leafn block.
55 */
56#ifdef DEBUG
Dave Chinner41419562013-10-29 22:11:50 +110057#define xfs_dir3_leaf_check(dp, bp) \
Dave Chinner24df33b2013-04-12 07:30:21 +100058do { \
Dave Chinner41419562013-10-29 22:11:50 +110059 if (!xfs_dir3_leafn_check((dp), (bp))) \
Dave Chinner24df33b2013-04-12 07:30:21 +100060 ASSERT(0); \
61} while (0);
62
63static bool
64xfs_dir3_leafn_check(
Dave Chinner41419562013-10-29 22:11:50 +110065 struct xfs_inode *dp,
Dave Chinner24df33b2013-04-12 07:30:21 +100066 struct xfs_buf *bp)
67{
68 struct xfs_dir2_leaf *leaf = bp->b_addr;
69 struct xfs_dir3_icleaf_hdr leafhdr;
70
71 xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);
72
73 if (leafhdr.magic == XFS_DIR3_LEAFN_MAGIC) {
74 struct xfs_dir3_leaf_hdr *leaf3 = bp->b_addr;
75 if (be64_to_cpu(leaf3->info.blkno) != bp->b_bn)
76 return false;
77 } else if (leafhdr.magic != XFS_DIR2_LEAFN_MAGIC)
78 return false;
79
Dave Chinner41419562013-10-29 22:11:50 +110080 return xfs_dir3_leaf_check_int(dp->i_mount, dp, &leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +100081}
82#else
Dave Chinner41419562013-10-29 22:11:50 +110083#define xfs_dir3_leaf_check(dp, bp)
Dave Chinner24df33b2013-04-12 07:30:21 +100084#endif
85
Dave Chinnercbc8adf2013-04-03 16:11:21 +110086static bool
87xfs_dir3_free_verify(
Dave Chinner20252072012-11-12 22:54:13 +110088 struct xfs_buf *bp)
89{
90 struct xfs_mount *mp = bp->b_target->bt_mount;
91 struct xfs_dir2_free_hdr *hdr = bp->b_addr;
Dave Chinner20252072012-11-12 22:54:13 +110092
Dave Chinnercbc8adf2013-04-03 16:11:21 +110093 if (xfs_sb_version_hascrc(&mp->m_sb)) {
94 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
95
96 if (hdr3->magic != cpu_to_be32(XFS_DIR3_FREE_MAGIC))
97 return false;
98 if (!uuid_equal(&hdr3->uuid, &mp->m_sb.sb_uuid))
99 return false;
100 if (be64_to_cpu(hdr3->blkno) != bp->b_bn)
101 return false;
102 } else {
103 if (hdr->magic != cpu_to_be32(XFS_DIR2_FREE_MAGIC))
104 return false;
105 }
106
107 /* XXX: should bounds check the xfs_dir3_icfree_hdr here */
108
109 return true;
110}
111
112static void
113xfs_dir3_free_read_verify(
114 struct xfs_buf *bp)
115{
116 struct xfs_mount *mp = bp->b_target->bt_mount;
117
118 if ((xfs_sb_version_hascrc(&mp->m_sb) &&
119 !xfs_verify_cksum(bp->b_addr, BBTOB(bp->b_length),
120 XFS_DIR3_FREE_CRC_OFF)) ||
121 !xfs_dir3_free_verify(bp)) {
122 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
Dave Chinner20252072012-11-12 22:54:13 +1100123 xfs_buf_ioerror(bp, EFSCORRUPTED);
124 }
Dave Chinner612cfbf2012-11-14 17:52:32 +1100125}
Dave Chinner20252072012-11-12 22:54:13 +1100126
Dave Chinner612cfbf2012-11-14 17:52:32 +1100127static void
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100128xfs_dir3_free_write_verify(
Dave Chinner1813dd62012-11-14 17:54:40 +1100129 struct xfs_buf *bp)
130{
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100131 struct xfs_mount *mp = bp->b_target->bt_mount;
132 struct xfs_buf_log_item *bip = bp->b_fspriv;
133 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
134
135 if (!xfs_dir3_free_verify(bp)) {
136 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
137 xfs_buf_ioerror(bp, EFSCORRUPTED);
138 return;
139 }
140
141 if (!xfs_sb_version_hascrc(&mp->m_sb))
142 return;
143
144 if (bip)
145 hdr3->lsn = cpu_to_be64(bip->bli_item.li_lsn);
146
147 xfs_update_cksum(bp->b_addr, BBTOB(bp->b_length), XFS_DIR3_FREE_CRC_OFF);
Dave Chinner1813dd62012-11-14 17:54:40 +1100148}
149
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100150const struct xfs_buf_ops xfs_dir3_free_buf_ops = {
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100151 .verify_read = xfs_dir3_free_read_verify,
152 .verify_write = xfs_dir3_free_write_verify,
Dave Chinner1813dd62012-11-14 17:54:40 +1100153};
Dave Chinner20252072012-11-12 22:54:13 +1100154
Dave Chinner612cfbf2012-11-14 17:52:32 +1100155
Dave Chinner20252072012-11-12 22:54:13 +1100156static int
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100157__xfs_dir3_free_read(
Dave Chinner20252072012-11-12 22:54:13 +1100158 struct xfs_trans *tp,
159 struct xfs_inode *dp,
160 xfs_dablk_t fbno,
161 xfs_daddr_t mappedbno,
162 struct xfs_buf **bpp)
163{
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100164 int err;
165
166 err = xfs_da_read_buf(tp, dp, fbno, mappedbno, bpp,
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100167 XFS_DATA_FORK, &xfs_dir3_free_buf_ops);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100168
169 /* try read returns without an error or *bpp if it lands in a hole */
170 if (!err && tp && *bpp)
Dave Chinner61fe1352013-04-03 16:11:30 +1100171 xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_DIR_FREE_BUF);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100172 return err;
Dave Chinner20252072012-11-12 22:54:13 +1100173}
174
175int
176xfs_dir2_free_read(
177 struct xfs_trans *tp,
178 struct xfs_inode *dp,
179 xfs_dablk_t fbno,
180 struct xfs_buf **bpp)
181{
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100182 return __xfs_dir3_free_read(tp, dp, fbno, -1, bpp);
Dave Chinner20252072012-11-12 22:54:13 +1100183}
184
185static int
186xfs_dir2_free_try_read(
187 struct xfs_trans *tp,
188 struct xfs_inode *dp,
189 xfs_dablk_t fbno,
190 struct xfs_buf **bpp)
191{
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100192 return __xfs_dir3_free_read(tp, dp, fbno, -2, bpp);
193}
194
195
196void
197xfs_dir3_free_hdr_from_disk(
198 struct xfs_dir3_icfree_hdr *to,
199 struct xfs_dir2_free *from)
200{
201 if (from->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC)) {
202 to->magic = be32_to_cpu(from->hdr.magic);
203 to->firstdb = be32_to_cpu(from->hdr.firstdb);
204 to->nvalid = be32_to_cpu(from->hdr.nvalid);
205 to->nused = be32_to_cpu(from->hdr.nused);
206 } else {
207 struct xfs_dir3_free_hdr *hdr3 = (struct xfs_dir3_free_hdr *)from;
208
209 to->magic = be32_to_cpu(hdr3->hdr.magic);
210 to->firstdb = be32_to_cpu(hdr3->firstdb);
211 to->nvalid = be32_to_cpu(hdr3->nvalid);
212 to->nused = be32_to_cpu(hdr3->nused);
213 }
214
215 ASSERT(to->magic == XFS_DIR2_FREE_MAGIC ||
216 to->magic == XFS_DIR3_FREE_MAGIC);
217}
218
219static void
220xfs_dir3_free_hdr_to_disk(
221 struct xfs_dir2_free *to,
222 struct xfs_dir3_icfree_hdr *from)
223{
224 ASSERT(from->magic == XFS_DIR2_FREE_MAGIC ||
225 from->magic == XFS_DIR3_FREE_MAGIC);
226
227 if (from->magic == XFS_DIR2_FREE_MAGIC) {
228 to->hdr.magic = cpu_to_be32(from->magic);
229 to->hdr.firstdb = cpu_to_be32(from->firstdb);
230 to->hdr.nvalid = cpu_to_be32(from->nvalid);
231 to->hdr.nused = cpu_to_be32(from->nused);
232 } else {
233 struct xfs_dir3_free_hdr *hdr3 = (struct xfs_dir3_free_hdr *)to;
234
235 hdr3->hdr.magic = cpu_to_be32(from->magic);
236 hdr3->firstdb = cpu_to_be32(from->firstdb);
237 hdr3->nvalid = cpu_to_be32(from->nvalid);
238 hdr3->nused = cpu_to_be32(from->nused);
239 }
240}
241
242static int
243xfs_dir3_free_get_buf(
244 struct xfs_trans *tp,
245 struct xfs_inode *dp,
246 xfs_dir2_db_t fbno,
247 struct xfs_buf **bpp)
248{
249 struct xfs_mount *mp = dp->i_mount;
250 struct xfs_buf *bp;
251 int error;
252 struct xfs_dir3_icfree_hdr hdr;
253
254 error = xfs_da_get_buf(tp, dp, xfs_dir2_db_to_da(mp, fbno),
255 -1, &bp, XFS_DATA_FORK);
256 if (error)
257 return error;
258
Dave Chinner61fe1352013-04-03 16:11:30 +1100259 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_FREE_BUF);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100260 bp->b_ops = &xfs_dir3_free_buf_ops;
261
262 /*
263 * Initialize the new block to be empty, and remember
264 * its first slot as our empty slot.
265 */
Dave Chinnere400d272013-05-28 18:37:17 +1000266 memset(bp->b_addr, 0, sizeof(struct xfs_dir3_free_hdr));
267 memset(&hdr, 0, sizeof(hdr));
268
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100269 if (xfs_sb_version_hascrc(&mp->m_sb)) {
270 struct xfs_dir3_free_hdr *hdr3 = bp->b_addr;
271
272 hdr.magic = XFS_DIR3_FREE_MAGIC;
Dave Chinnere400d272013-05-28 18:37:17 +1000273
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100274 hdr3->hdr.blkno = cpu_to_be64(bp->b_bn);
275 hdr3->hdr.owner = cpu_to_be64(dp->i_ino);
276 uuid_copy(&hdr3->hdr.uuid, &mp->m_sb.sb_uuid);
Dave Chinnere400d272013-05-28 18:37:17 +1000277 } else
278 hdr.magic = XFS_DIR2_FREE_MAGIC;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100279 xfs_dir3_free_hdr_to_disk(bp->b_addr, &hdr);
280 *bpp = bp;
281 return 0;
Dave Chinner20252072012-11-12 22:54:13 +1100282}
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284/*
285 * Log entries from a freespace block.
286 */
Eric Sandeen5d77c0d2009-11-19 15:52:00 +0000287STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288xfs_dir2_free_log_bests(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000289 struct xfs_trans *tp,
290 struct xfs_buf *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 int first, /* first entry to log */
292 int last) /* last entry to log */
293{
294 xfs_dir2_free_t *free; /* freespace structure */
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100295 __be16 *bests;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
Dave Chinner1d9025e2012-06-22 18:50:14 +1000297 free = bp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100298 bests = xfs_dir3_free_bests_p(tp->t_mountp, free);
299 ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC) ||
300 free->hdr.magic == cpu_to_be32(XFS_DIR3_FREE_MAGIC));
Dave Chinner1d9025e2012-06-22 18:50:14 +1000301 xfs_trans_log_buf(tp, bp,
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100302 (uint)((char *)&bests[first] - (char *)free),
303 (uint)((char *)&bests[last] - (char *)free +
304 sizeof(bests[0]) - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
307/*
308 * Log header from a freespace block.
309 */
310static void
311xfs_dir2_free_log_header(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000312 struct xfs_trans *tp,
313 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Dave Chinner836a94a2013-08-12 20:49:44 +1000315#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 xfs_dir2_free_t *free; /* freespace structure */
317
Dave Chinner1d9025e2012-06-22 18:50:14 +1000318 free = bp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100319 ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC) ||
320 free->hdr.magic == cpu_to_be32(XFS_DIR3_FREE_MAGIC));
Dave Chinner836a94a2013-08-12 20:49:44 +1000321#endif
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100322 xfs_trans_log_buf(tp, bp, 0, xfs_dir3_free_hdr_size(tp->t_mountp) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}
324
325/*
326 * Convert a leaf-format directory to a node-format directory.
327 * We need to change the magic number of the leaf block, and copy
328 * the freespace table out of the leaf block into its own block.
329 */
330int /* error */
331xfs_dir2_leaf_to_node(
332 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000333 struct xfs_buf *lbp) /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
335 xfs_inode_t *dp; /* incore directory inode */
336 int error; /* error return value */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000337 struct xfs_buf *fbp; /* freespace buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 xfs_dir2_db_t fdb; /* freespace block number */
339 xfs_dir2_free_t *free; /* freespace structure */
Nathan Scott68b3a102006-03-17 17:27:19 +1100340 __be16 *from; /* pointer to freespace entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 int i; /* leaf freespace index */
342 xfs_dir2_leaf_t *leaf; /* leaf structure */
343 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
344 xfs_mount_t *mp; /* filesystem mount point */
345 int n; /* count of live freespc ents */
346 xfs_dir2_data_off_t off; /* freespace entry value */
Nathan Scott0ba962e2006-03-17 17:27:07 +1100347 __be16 *to; /* pointer to freespace entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 xfs_trans_t *tp; /* transaction pointer */
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100349 struct xfs_dir3_icfree_hdr freehdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000351 trace_xfs_dir2_leaf_to_node(args);
352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 dp = args->dp;
354 mp = dp->i_mount;
355 tp = args->trans;
356 /*
357 * Add a freespace block to the directory.
358 */
359 if ((error = xfs_dir2_grow_inode(args, XFS_DIR2_FREE_SPACE, &fdb))) {
360 return error;
361 }
362 ASSERT(fdb == XFS_DIR2_FREE_FIRSTDB(mp));
363 /*
364 * Get the buffer for the new freespace block.
365 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100366 error = xfs_dir3_free_get_buf(tp, dp, fdb, &fbp);
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100367 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 return error;
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100369
Dave Chinner1d9025e2012-06-22 18:50:14 +1000370 free = fbp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100371 xfs_dir3_free_hdr_from_disk(&freehdr, free);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000372 leaf = lbp->b_addr;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000373 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100374 ASSERT(be32_to_cpu(ltp->bestcount) <=
375 (uint)dp->i_d.di_size / mp->m_dirblksize);
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 /*
378 * Copy freespace entries from the leaf block to the new block.
379 * Count active entries.
380 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100381 from = xfs_dir2_leaf_bests_p(ltp);
382 to = xfs_dir3_free_bests_p(mp, free);
383 for (i = n = 0; i < be32_to_cpu(ltp->bestcount); i++, from++, to++) {
Nathan Scott68b3a102006-03-17 17:27:19 +1100384 if ((off = be16_to_cpu(*from)) != NULLDATAOFF)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 n++;
Nathan Scott0ba962e2006-03-17 17:27:07 +1100386 *to = cpu_to_be16(off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100388
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 /*
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100390 * Now initialize the freespace block header.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100392 freehdr.nused = n;
393 freehdr.nvalid = be32_to_cpu(ltp->bestcount);
394
395 xfs_dir3_free_hdr_to_disk(fbp->b_addr, &freehdr);
396 xfs_dir2_free_log_bests(tp, fbp, 0, freehdr.nvalid - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 xfs_dir2_free_log_header(tp, fbp);
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100398
Dave Chinner24df33b2013-04-12 07:30:21 +1000399 /*
400 * Converting the leaf to a leafnode is just a matter of changing the
401 * magic number and the ops. Do the change directly to the buffer as
402 * it's less work (and less code) than decoding the header to host
403 * format and back again.
404 */
405 if (leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC))
406 leaf->hdr.info.magic = cpu_to_be16(XFS_DIR2_LEAFN_MAGIC);
407 else
408 leaf->hdr.info.magic = cpu_to_be16(XFS_DIR3_LEAFN_MAGIC);
409 lbp->b_ops = &xfs_dir3_leafn_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100410 xfs_trans_buf_set_type(tp, lbp, XFS_BLFT_DIR_LEAFN_BUF);
Dave Chinner41419562013-10-29 22:11:50 +1100411 xfs_dir3_leaf_log_header(tp, dp, lbp);
412 xfs_dir3_leaf_check(dp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 return 0;
414}
415
416/*
417 * Add a leaf entry to a leaf block in a node-form directory.
418 * The other work necessary is done from the caller.
419 */
420static int /* error */
421xfs_dir2_leafn_add(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000422 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 xfs_da_args_t *args, /* operation arguments */
424 int index) /* insertion pt for new entry */
425{
426 int compact; /* compacting stale leaves */
427 xfs_inode_t *dp; /* incore directory inode */
428 int highstale; /* next stale entry */
429 xfs_dir2_leaf_t *leaf; /* leaf structure */
430 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
431 int lfloghigh; /* high leaf entry logging */
432 int lfloglow; /* low leaf entry logging */
433 int lowstale; /* previous stale entry */
434 xfs_mount_t *mp; /* filesystem mount point */
435 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner24df33b2013-04-12 07:30:21 +1000436 struct xfs_dir3_icleaf_hdr leafhdr;
437 struct xfs_dir2_leaf_entry *ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000439 trace_xfs_dir2_leafn_add(args, index);
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 dp = args->dp;
442 mp = dp->i_mount;
443 tp = args->trans;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000444 leaf = bp->b_addr;
Dave Chinner24df33b2013-04-12 07:30:21 +1000445 xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +1100446 ents = dp->d_ops->leaf_ents_p(leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 /*
449 * Quick check just to make sure we are not going to index
450 * into other peoples memory
451 */
452 if (index < 0)
453 return XFS_ERROR(EFSCORRUPTED);
454
455 /*
456 * If there are already the maximum number of leaf entries in
457 * the block, if there are no stale entries it won't fit.
458 * Caller will do a split. If there are stale entries we'll do
459 * a compact.
460 */
461
Dave Chinner41419562013-10-29 22:11:50 +1100462 if (leafhdr.count == dp->d_ops->leaf_max_ents(mp)) {
Dave Chinner24df33b2013-04-12 07:30:21 +1000463 if (!leafhdr.stale)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 return XFS_ERROR(ENOSPC);
Dave Chinner24df33b2013-04-12 07:30:21 +1000465 compact = leafhdr.stale > 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 } else
467 compact = 0;
Dave Chinner24df33b2013-04-12 07:30:21 +1000468 ASSERT(index == 0 || be32_to_cpu(ents[index - 1].hashval) <= args->hashval);
469 ASSERT(index == leafhdr.count ||
470 be32_to_cpu(ents[index].hashval) >= args->hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Barry Naujok6a178102008-05-21 16:42:05 +1000472 if (args->op_flags & XFS_DA_OP_JUSTCHECK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 return 0;
474
475 /*
476 * Compact out all but one stale leaf entry. Leaves behind
477 * the entry closest to index.
478 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000479 if (compact)
480 xfs_dir3_leaf_compact_x1(&leafhdr, ents, &index, &lowstale,
481 &highstale, &lfloglow, &lfloghigh);
482 else if (leafhdr.stale) {
483 /*
484 * Set impossible logging indices for this case.
485 */
486 lfloglow = leafhdr.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 lfloghigh = -1;
488 }
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 /*
491 * Insert the new entry, log everything.
492 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000493 lep = xfs_dir3_leaf_find_entry(&leafhdr, ents, index, compact, lowstale,
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200494 highstale, &lfloglow, &lfloghigh);
495
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100496 lep->hashval = cpu_to_be32(args->hashval);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000497 lep->address = cpu_to_be32(xfs_dir2_db_off_to_dataptr(mp,
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100498 args->blkno, args->index));
Dave Chinner24df33b2013-04-12 07:30:21 +1000499
500 xfs_dir3_leaf_hdr_to_disk(leaf, &leafhdr);
Dave Chinner41419562013-10-29 22:11:50 +1100501 xfs_dir3_leaf_log_header(tp, dp, bp);
502 xfs_dir3_leaf_log_ents(tp, dp, bp, lfloglow, lfloghigh);
503 xfs_dir3_leaf_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 return 0;
505}
506
507#ifdef DEBUG
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100508static void
509xfs_dir2_free_hdr_check(
510 struct xfs_mount *mp,
511 struct xfs_buf *bp,
512 xfs_dir2_db_t db)
513{
514 struct xfs_dir3_icfree_hdr hdr;
515
516 xfs_dir3_free_hdr_from_disk(&hdr, bp->b_addr);
517
518 ASSERT((hdr.firstdb % xfs_dir3_free_max_bests(mp)) == 0);
519 ASSERT(hdr.firstdb <= db);
520 ASSERT(db < hdr.firstdb + hdr.nvalid);
521}
522#else
523#define xfs_dir2_free_hdr_check(mp, dp, db)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524#endif /* DEBUG */
525
526/*
527 * Return the last hash value in the leaf.
528 * Stale entries are ok.
529 */
530xfs_dahash_t /* hash value */
531xfs_dir2_leafn_lasthash(
Dave Chinner41419562013-10-29 22:11:50 +1100532 struct xfs_inode *dp,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000533 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 int *count) /* count of entries in leaf */
535{
Dave Chinner24df33b2013-04-12 07:30:21 +1000536 struct xfs_dir2_leaf *leaf = bp->b_addr;
537 struct xfs_dir2_leaf_entry *ents;
538 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Dave Chinner24df33b2013-04-12 07:30:21 +1000540 xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);
541
542 ASSERT(leafhdr.magic == XFS_DIR2_LEAFN_MAGIC ||
543 leafhdr.magic == XFS_DIR3_LEAFN_MAGIC);
544
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 if (count)
Dave Chinner24df33b2013-04-12 07:30:21 +1000546 *count = leafhdr.count;
547 if (!leafhdr.count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 return 0;
Dave Chinner24df33b2013-04-12 07:30:21 +1000549
Dave Chinner41419562013-10-29 22:11:50 +1100550 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000551 return be32_to_cpu(ents[leafhdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552}
553
554/*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000555 * Look up a leaf entry for space to add a name in a node-format leaf block.
556 * The extrablk in state is a freespace block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000558STATIC int
559xfs_dir2_leafn_lookup_for_addname(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000560 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 xfs_da_args_t *args, /* operation arguments */
562 int *indexp, /* out: leaf entry index */
563 xfs_da_state_t *state) /* state to fill in */
564{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000565 struct xfs_buf *curbp = NULL; /* current data/free buffer */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000566 xfs_dir2_db_t curdb = -1; /* current data block number */
567 xfs_dir2_db_t curfdb = -1; /* current free block number */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 xfs_inode_t *dp; /* incore directory inode */
569 int error; /* error return value */
570 int fi; /* free entry index */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000571 xfs_dir2_free_t *free = NULL; /* free block structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 int index; /* leaf entry index */
573 xfs_dir2_leaf_t *leaf; /* leaf structure */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000574 int length; /* length of new data entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
576 xfs_mount_t *mp; /* filesystem mount point */
577 xfs_dir2_db_t newdb; /* new data block number */
578 xfs_dir2_db_t newfdb; /* new free block number */
579 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner24df33b2013-04-12 07:30:21 +1000580 struct xfs_dir2_leaf_entry *ents;
581 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583 dp = args->dp;
584 tp = args->trans;
585 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000586 leaf = bp->b_addr;
Dave Chinner24df33b2013-04-12 07:30:21 +1000587 xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +1100588 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000589
Dave Chinner41419562013-10-29 22:11:50 +1100590 xfs_dir3_leaf_check(dp, bp);
Dave Chinner24df33b2013-04-12 07:30:21 +1000591 ASSERT(leafhdr.count > 0);
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 /*
594 * Look up the hash value in the leaf entries.
595 */
596 index = xfs_dir2_leaf_search_hash(args, bp);
597 /*
598 * Do we have a buffer coming in?
599 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000600 if (state->extravalid) {
601 /* If so, it's a free block buffer, get the block number. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 curbp = state->extrablk.bp;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000603 curfdb = state->extrablk.blkno;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000604 free = curbp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100605 ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC) ||
606 free->hdr.magic == cpu_to_be32(XFS_DIR3_FREE_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 }
Dave Chinner9d23fc82013-10-29 22:11:48 +1100608 length = dp->d_ops->data_entsize(args->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 /*
610 * Loop over leaf entries with the right hash value.
611 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000612 for (lep = &ents[index];
613 index < leafhdr.count && be32_to_cpu(lep->hashval) == args->hashval;
614 lep++, index++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 /*
616 * Skip stale leaf entries.
617 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100618 if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 continue;
620 /*
621 * Pull the data block number from the entry.
622 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000623 newdb = xfs_dir2_dataptr_to_db(mp, be32_to_cpu(lep->address));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 /*
625 * For addname, we're looking for a place to put the new entry.
626 * We want to use a data block with an entry of equal
627 * hash value to ours if there is one with room.
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000628 *
629 * If this block isn't the data block we already have
630 * in hand, take a look at it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000632 if (newdb != curdb) {
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100633 __be16 *bests;
634
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000635 curdb = newdb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000637 * Convert the data block to the free block
638 * holding its freespace information.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000640 newfdb = xfs_dir2_db_to_fdb(mp, newdb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000642 * If it's not the one we have in hand, read it in.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000644 if (newfdb != curfdb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000646 * If we had one before, drop it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 */
648 if (curbp)
Dave Chinner1d9025e2012-06-22 18:50:14 +1000649 xfs_trans_brelse(tp, curbp);
Dave Chinner20252072012-11-12 22:54:13 +1100650
651 error = xfs_dir2_free_read(tp, dp,
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000652 xfs_dir2_db_to_da(mp, newfdb),
Dave Chinner20252072012-11-12 22:54:13 +1100653 &curbp);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000654 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000656 free = curbp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100657
658 xfs_dir2_free_hdr_check(mp, curbp, curdb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 }
660 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000661 * Get the index for our entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000663 fi = xfs_dir2_db_to_fdindex(mp, curdb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000665 * If it has room, return it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100667 bests = xfs_dir3_free_bests_p(mp, free);
668 if (unlikely(bests[fi] == cpu_to_be16(NULLDATAOFF))) {
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000669 XFS_ERROR_REPORT("xfs_dir2_leafn_lookup_int",
670 XFS_ERRLEVEL_LOW, mp);
671 if (curfdb != newfdb)
Dave Chinner1d9025e2012-06-22 18:50:14 +1000672 xfs_trans_brelse(tp, curbp);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000673 return XFS_ERROR(EFSCORRUPTED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 }
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000675 curfdb = newfdb;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100676 if (be16_to_cpu(bests[fi]) >= length)
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000677 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 }
679 }
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000680 /* Didn't find any space */
681 fi = -1;
682out:
Barry Naujok6a178102008-05-21 16:42:05 +1000683 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000684 if (curbp) {
685 /* Giving back a free block. */
686 state->extravalid = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 state->extrablk.bp = curbp;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000688 state->extrablk.index = fi;
689 state->extrablk.blkno = curfdb;
Dave Chinnercbc8adf2013-04-03 16:11:21 +1100690
691 /*
692 * Important: this magic number is not in the buffer - it's for
693 * buffer type information and therefore only the free/data type
694 * matters here, not whether CRCs are enabled or not.
695 */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000696 state->extrablk.magic = XFS_DIR2_FREE_MAGIC;
697 } else {
698 state->extravalid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 }
700 /*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000701 * Return the index, that will be the insertion point.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 */
703 *indexp = index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 return XFS_ERROR(ENOENT);
705}
706
707/*
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000708 * Look up a leaf entry in a node-format leaf block.
709 * The extrablk in state a data block.
710 */
711STATIC int
712xfs_dir2_leafn_lookup_for_entry(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000713 struct xfs_buf *bp, /* leaf buffer */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000714 xfs_da_args_t *args, /* operation arguments */
715 int *indexp, /* out: leaf entry index */
716 xfs_da_state_t *state) /* state to fill in */
717{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000718 struct xfs_buf *curbp = NULL; /* current data/free buffer */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000719 xfs_dir2_db_t curdb = -1; /* current data block number */
720 xfs_dir2_data_entry_t *dep; /* data block entry */
721 xfs_inode_t *dp; /* incore directory inode */
722 int error; /* error return value */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000723 int index; /* leaf entry index */
724 xfs_dir2_leaf_t *leaf; /* leaf structure */
725 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
726 xfs_mount_t *mp; /* filesystem mount point */
727 xfs_dir2_db_t newdb; /* new data block number */
728 xfs_trans_t *tp; /* transaction pointer */
Barry Naujok5163f952008-05-21 16:41:01 +1000729 enum xfs_dacmp cmp; /* comparison result */
Dave Chinner24df33b2013-04-12 07:30:21 +1000730 struct xfs_dir2_leaf_entry *ents;
731 struct xfs_dir3_icleaf_hdr leafhdr;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000732
733 dp = args->dp;
734 tp = args->trans;
735 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000736 leaf = bp->b_addr;
Dave Chinner24df33b2013-04-12 07:30:21 +1000737 xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +1100738 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000739
Dave Chinner41419562013-10-29 22:11:50 +1100740 xfs_dir3_leaf_check(dp, bp);
Dave Chinner24df33b2013-04-12 07:30:21 +1000741 ASSERT(leafhdr.count > 0);
742
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000743 /*
744 * Look up the hash value in the leaf entries.
745 */
746 index = xfs_dir2_leaf_search_hash(args, bp);
747 /*
748 * Do we have a buffer coming in?
749 */
750 if (state->extravalid) {
751 curbp = state->extrablk.bp;
752 curdb = state->extrablk.blkno;
753 }
754 /*
755 * Loop over leaf entries with the right hash value.
756 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000757 for (lep = &ents[index];
758 index < leafhdr.count && be32_to_cpu(lep->hashval) == args->hashval;
759 lep++, index++) {
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000760 /*
761 * Skip stale leaf entries.
762 */
763 if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
764 continue;
765 /*
766 * Pull the data block number from the entry.
767 */
768 newdb = xfs_dir2_dataptr_to_db(mp, be32_to_cpu(lep->address));
769 /*
770 * Not adding a new entry, so we really want to find
771 * the name given to us.
772 *
773 * If it's a different data block, go get it.
774 */
775 if (newdb != curdb) {
776 /*
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000777 * If we had a block before that we aren't saving
778 * for a CI name, drop it
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000779 */
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000780 if (curbp && (args->cmpresult == XFS_CMP_DIFFERENT ||
781 curdb != state->extrablk.blkno))
Dave Chinner1d9025e2012-06-22 18:50:14 +1000782 xfs_trans_brelse(tp, curbp);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000783 /*
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000784 * If needing the block that is saved with a CI match,
785 * use it otherwise read in the new data block.
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000786 */
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000787 if (args->cmpresult != XFS_CMP_DIFFERENT &&
788 newdb == state->extrablk.blkno) {
789 ASSERT(state->extravalid);
790 curbp = state->extrablk.bp;
791 } else {
Dave Chinner33363fe2013-04-03 16:11:22 +1100792 error = xfs_dir3_data_read(tp, dp,
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000793 xfs_dir2_db_to_da(mp, newdb),
Dave Chinnere4813572012-11-12 22:54:14 +1100794 -1, &curbp);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000795 if (error)
796 return error;
797 }
Dave Chinner33363fe2013-04-03 16:11:22 +1100798 xfs_dir3_data_check(dp, curbp);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000799 curdb = newdb;
800 }
801 /*
802 * Point to the data entry.
803 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000804 dep = (xfs_dir2_data_entry_t *)((char *)curbp->b_addr +
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000805 xfs_dir2_dataptr_to_off(mp, be32_to_cpu(lep->address)));
806 /*
Barry Naujok5163f952008-05-21 16:41:01 +1000807 * Compare the entry and if it's an exact match, return
808 * EEXIST immediately. If it's the first case-insensitive
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000809 * match, store the block & inode number and continue looking.
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000810 */
Barry Naujok5163f952008-05-21 16:41:01 +1000811 cmp = mp->m_dirnameops->compname(args, dep->name, dep->namelen);
812 if (cmp != XFS_CMP_DIFFERENT && cmp != args->cmpresult) {
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000813 /* If there is a CI match block, drop it */
814 if (args->cmpresult != XFS_CMP_DIFFERENT &&
815 curdb != state->extrablk.blkno)
Dave Chinner1d9025e2012-06-22 18:50:14 +1000816 xfs_trans_brelse(tp, state->extrablk.bp);
Barry Naujok5163f952008-05-21 16:41:01 +1000817 args->cmpresult = cmp;
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000818 args->inumber = be64_to_cpu(dep->inumber);
Dave Chinner9d23fc82013-10-29 22:11:48 +1100819 args->filetype = dp->d_ops->data_get_ftype(dep);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000820 *indexp = index;
821 state->extravalid = 1;
822 state->extrablk.bp = curbp;
823 state->extrablk.blkno = curdb;
824 state->extrablk.index = (int)((char *)dep -
Dave Chinner1d9025e2012-06-22 18:50:14 +1000825 (char *)curbp->b_addr);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000826 state->extrablk.magic = XFS_DIR2_DATA_MAGIC;
Dave Chinner33363fe2013-04-03 16:11:22 +1100827 curbp->b_ops = &xfs_dir3_data_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100828 xfs_trans_buf_set_type(tp, curbp, XFS_BLFT_DIR_DATA_BUF);
Barry Naujok5163f952008-05-21 16:41:01 +1000829 if (cmp == XFS_CMP_EXACT)
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000830 return XFS_ERROR(EEXIST);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000831 }
832 }
Dave Chinner24df33b2013-04-12 07:30:21 +1000833 ASSERT(index == leafhdr.count || (args->op_flags & XFS_DA_OP_OKNOENT));
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000834 if (curbp) {
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000835 if (args->cmpresult == XFS_CMP_DIFFERENT) {
836 /* Giving back last used data block. */
837 state->extravalid = 1;
838 state->extrablk.bp = curbp;
839 state->extrablk.index = -1;
840 state->extrablk.blkno = curdb;
841 state->extrablk.magic = XFS_DIR2_DATA_MAGIC;
Dave Chinner33363fe2013-04-03 16:11:22 +1100842 curbp->b_ops = &xfs_dir3_data_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100843 xfs_trans_buf_set_type(tp, curbp, XFS_BLFT_DIR_DATA_BUF);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000844 } else {
845 /* If the curbp is not the CI match block, drop it */
846 if (state->extrablk.bp != curbp)
Dave Chinner1d9025e2012-06-22 18:50:14 +1000847 xfs_trans_brelse(tp, curbp);
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000848 }
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000849 } else {
850 state->extravalid = 0;
851 }
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000852 *indexp = index;
Barry Naujok90bb7ab2008-06-23 13:25:38 +1000853 return XFS_ERROR(ENOENT);
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000854}
855
856/*
857 * Look up a leaf entry in a node-format leaf block.
858 * If this is an addname then the extrablk in state is a freespace block,
859 * otherwise it's a data block.
860 */
861int
862xfs_dir2_leafn_lookup_int(
Dave Chinner1d9025e2012-06-22 18:50:14 +1000863 struct xfs_buf *bp, /* leaf buffer */
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000864 xfs_da_args_t *args, /* operation arguments */
865 int *indexp, /* out: leaf entry index */
866 xfs_da_state_t *state) /* state to fill in */
867{
Barry Naujok6a178102008-05-21 16:42:05 +1000868 if (args->op_flags & XFS_DA_OP_ADDNAME)
Barry Naujokf9f6dce2008-04-17 16:49:43 +1000869 return xfs_dir2_leafn_lookup_for_addname(bp, args, indexp,
870 state);
871 return xfs_dir2_leafn_lookup_for_entry(bp, args, indexp, state);
872}
873
874/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 * Move count leaf entries from source to destination leaf.
876 * Log entries and headers. Stale entries are preserved.
877 */
878static void
Dave Chinner24df33b2013-04-12 07:30:21 +1000879xfs_dir3_leafn_moveents(
880 xfs_da_args_t *args, /* operation arguments */
881 struct xfs_buf *bp_s, /* source */
882 struct xfs_dir3_icleaf_hdr *shdr,
883 struct xfs_dir2_leaf_entry *sents,
884 int start_s,/* source leaf index */
885 struct xfs_buf *bp_d, /* destination */
886 struct xfs_dir3_icleaf_hdr *dhdr,
887 struct xfs_dir2_leaf_entry *dents,
888 int start_d,/* destination leaf index */
889 int count) /* count of leaves to copy */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890{
Dave Chinner24df33b2013-04-12 07:30:21 +1000891 struct xfs_trans *tp = args->trans;
892 int stale; /* count stale leaves copied */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000894 trace_xfs_dir2_leafn_moveents(args, start_s, start_d, count);
895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 /*
897 * Silently return if nothing to do.
898 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000899 if (count == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 return;
Dave Chinner24df33b2013-04-12 07:30:21 +1000901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 /*
903 * If the destination index is not the end of the current
904 * destination leaf entries, open up a hole in the destination
905 * to hold the new entries.
906 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000907 if (start_d < dhdr->count) {
908 memmove(&dents[start_d + count], &dents[start_d],
909 (dhdr->count - start_d) * sizeof(xfs_dir2_leaf_entry_t));
Dave Chinner41419562013-10-29 22:11:50 +1100910 xfs_dir3_leaf_log_ents(tp, args->dp, bp_d, start_d + count,
Dave Chinner24df33b2013-04-12 07:30:21 +1000911 count + dhdr->count - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 }
913 /*
914 * If the source has stale leaves, count the ones in the copy range
915 * so we can update the header correctly.
916 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000917 if (shdr->stale) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 int i; /* temp leaf index */
919
920 for (i = start_s, stale = 0; i < start_s + count; i++) {
Dave Chinner24df33b2013-04-12 07:30:21 +1000921 if (sents[i].address ==
922 cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 stale++;
924 }
925 } else
926 stale = 0;
927 /*
928 * Copy the leaf entries from source to destination.
929 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000930 memcpy(&dents[start_d], &sents[start_s],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 count * sizeof(xfs_dir2_leaf_entry_t));
Dave Chinner41419562013-10-29 22:11:50 +1100932 xfs_dir3_leaf_log_ents(tp, args->dp, bp_d,
933 start_d, start_d + count - 1);
Dave Chinner24df33b2013-04-12 07:30:21 +1000934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 /*
936 * If there are source entries after the ones we copied,
937 * delete the ones we copied by sliding the next ones down.
938 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000939 if (start_s + count < shdr->count) {
940 memmove(&sents[start_s], &sents[start_s + count],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 count * sizeof(xfs_dir2_leaf_entry_t));
Dave Chinner41419562013-10-29 22:11:50 +1100942 xfs_dir3_leaf_log_ents(tp, args->dp, bp_s,
943 start_s, start_s + count - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 }
Dave Chinner24df33b2013-04-12 07:30:21 +1000945
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 /*
947 * Update the headers and log them.
948 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000949 shdr->count -= count;
950 shdr->stale -= stale;
951 dhdr->count += count;
952 dhdr->stale += stale;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953}
954
955/*
956 * Determine the sort order of two leaf blocks.
957 * Returns 1 if both are valid and leaf2 should be before leaf1, else 0.
958 */
959int /* sort order */
960xfs_dir2_leafn_order(
Dave Chinner41419562013-10-29 22:11:50 +1100961 struct xfs_inode *dp,
Dave Chinner24df33b2013-04-12 07:30:21 +1000962 struct xfs_buf *leaf1_bp, /* leaf1 buffer */
963 struct xfs_buf *leaf2_bp) /* leaf2 buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964{
Dave Chinner24df33b2013-04-12 07:30:21 +1000965 struct xfs_dir2_leaf *leaf1 = leaf1_bp->b_addr;
966 struct xfs_dir2_leaf *leaf2 = leaf2_bp->b_addr;
967 struct xfs_dir2_leaf_entry *ents1;
968 struct xfs_dir2_leaf_entry *ents2;
969 struct xfs_dir3_icleaf_hdr hdr1;
970 struct xfs_dir3_icleaf_hdr hdr2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971
Dave Chinner24df33b2013-04-12 07:30:21 +1000972 xfs_dir3_leaf_hdr_from_disk(&hdr1, leaf1);
973 xfs_dir3_leaf_hdr_from_disk(&hdr2, leaf2);
Dave Chinner41419562013-10-29 22:11:50 +1100974 ents1 = dp->d_ops->leaf_ents_p(leaf1);
975 ents2 = dp->d_ops->leaf_ents_p(leaf2);
Dave Chinner24df33b2013-04-12 07:30:21 +1000976
977 if (hdr1.count > 0 && hdr2.count > 0 &&
978 (be32_to_cpu(ents2[0].hashval) < be32_to_cpu(ents1[0].hashval) ||
979 be32_to_cpu(ents2[hdr2.count - 1].hashval) <
980 be32_to_cpu(ents1[hdr1.count - 1].hashval)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 return 1;
982 return 0;
983}
984
985/*
986 * Rebalance leaf entries between two leaf blocks.
987 * This is actually only called when the second block is new,
988 * though the code deals with the general case.
989 * A new entry will be inserted in one of the blocks, and that
990 * entry is taken into account when balancing.
991 */
992static void
993xfs_dir2_leafn_rebalance(
994 xfs_da_state_t *state, /* btree cursor */
995 xfs_da_state_blk_t *blk1, /* first btree block */
996 xfs_da_state_blk_t *blk2) /* second btree block */
997{
998 xfs_da_args_t *args; /* operation arguments */
999 int count; /* count (& direction) leaves */
1000 int isleft; /* new goes in left leaf */
1001 xfs_dir2_leaf_t *leaf1; /* first leaf structure */
1002 xfs_dir2_leaf_t *leaf2; /* second leaf structure */
1003 int mid; /* midpoint leaf index */
Dave Chinner742ae1e2013-04-30 21:39:34 +10001004#if defined(DEBUG) || defined(XFS_WARN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 int oldstale; /* old count of stale leaves */
1006#endif
1007 int oldsum; /* old total leaf count */
1008 int swap; /* swapped leaf blocks */
Dave Chinner24df33b2013-04-12 07:30:21 +10001009 struct xfs_dir2_leaf_entry *ents1;
1010 struct xfs_dir2_leaf_entry *ents2;
1011 struct xfs_dir3_icleaf_hdr hdr1;
1012 struct xfs_dir3_icleaf_hdr hdr2;
Dave Chinner41419562013-10-29 22:11:50 +11001013 struct xfs_inode *dp = state->args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
1015 args = state->args;
1016 /*
1017 * If the block order is wrong, swap the arguments.
1018 */
Dave Chinner41419562013-10-29 22:11:50 +11001019 if ((swap = xfs_dir2_leafn_order(dp, blk1->bp, blk2->bp))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 xfs_da_state_blk_t *tmp; /* temp for block swap */
1021
1022 tmp = blk1;
1023 blk1 = blk2;
1024 blk2 = tmp;
1025 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10001026 leaf1 = blk1->bp->b_addr;
1027 leaf2 = blk2->bp->b_addr;
Dave Chinner24df33b2013-04-12 07:30:21 +10001028 xfs_dir3_leaf_hdr_from_disk(&hdr1, leaf1);
1029 xfs_dir3_leaf_hdr_from_disk(&hdr2, leaf2);
Dave Chinner41419562013-10-29 22:11:50 +11001030 ents1 = dp->d_ops->leaf_ents_p(leaf1);
1031 ents2 = dp->d_ops->leaf_ents_p(leaf2);
Dave Chinner24df33b2013-04-12 07:30:21 +10001032
1033 oldsum = hdr1.count + hdr2.count;
Dave Chinner742ae1e2013-04-30 21:39:34 +10001034#if defined(DEBUG) || defined(XFS_WARN)
Dave Chinner24df33b2013-04-12 07:30:21 +10001035 oldstale = hdr1.stale + hdr2.stale;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036#endif
1037 mid = oldsum >> 1;
Dave Chinner24df33b2013-04-12 07:30:21 +10001038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 /*
1040 * If the old leaf count was odd then the new one will be even,
1041 * so we need to divide the new count evenly.
1042 */
1043 if (oldsum & 1) {
1044 xfs_dahash_t midhash; /* middle entry hash value */
1045
Dave Chinner24df33b2013-04-12 07:30:21 +10001046 if (mid >= hdr1.count)
1047 midhash = be32_to_cpu(ents2[mid - hdr1.count].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 else
Dave Chinner24df33b2013-04-12 07:30:21 +10001049 midhash = be32_to_cpu(ents1[mid].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 isleft = args->hashval <= midhash;
1051 }
1052 /*
1053 * If the old count is even then the new count is odd, so there's
1054 * no preferred side for the new entry.
1055 * Pick the left one.
1056 */
1057 else
1058 isleft = 1;
1059 /*
1060 * Calculate moved entry count. Positive means left-to-right,
1061 * negative means right-to-left. Then move the entries.
1062 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001063 count = hdr1.count - mid + (isleft == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 if (count > 0)
Dave Chinner24df33b2013-04-12 07:30:21 +10001065 xfs_dir3_leafn_moveents(args, blk1->bp, &hdr1, ents1,
1066 hdr1.count - count, blk2->bp,
1067 &hdr2, ents2, 0, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 else if (count < 0)
Dave Chinner24df33b2013-04-12 07:30:21 +10001069 xfs_dir3_leafn_moveents(args, blk2->bp, &hdr2, ents2, 0,
1070 blk1->bp, &hdr1, ents1,
1071 hdr1.count, count);
1072
1073 ASSERT(hdr1.count + hdr2.count == oldsum);
1074 ASSERT(hdr1.stale + hdr2.stale == oldstale);
1075
1076 /* log the changes made when moving the entries */
1077 xfs_dir3_leaf_hdr_to_disk(leaf1, &hdr1);
1078 xfs_dir3_leaf_hdr_to_disk(leaf2, &hdr2);
Dave Chinner41419562013-10-29 22:11:50 +11001079 xfs_dir3_leaf_log_header(args->trans, dp, blk1->bp);
1080 xfs_dir3_leaf_log_header(args->trans, dp, blk2->bp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001081
Dave Chinner41419562013-10-29 22:11:50 +11001082 xfs_dir3_leaf_check(dp, blk1->bp);
1083 xfs_dir3_leaf_check(dp, blk2->bp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 /*
1086 * Mark whether we're inserting into the old or new leaf.
1087 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001088 if (hdr1.count < hdr2.count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 state->inleaf = swap;
Dave Chinner24df33b2013-04-12 07:30:21 +10001090 else if (hdr1.count > hdr2.count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 state->inleaf = !swap;
1092 else
Dave Chinner24df33b2013-04-12 07:30:21 +10001093 state->inleaf = swap ^ (blk1->index <= hdr1.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 /*
1095 * Adjust the expected index for insertion.
1096 */
1097 if (!state->inleaf)
Dave Chinner24df33b2013-04-12 07:30:21 +10001098 blk2->index = blk1->index - hdr1.count;
Barry Naujokf9f6dce2008-04-17 16:49:43 +10001099
1100 /*
1101 * Finally sanity check just to make sure we are not returning a
1102 * negative index
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 */
Dave Chinner41419562013-10-29 22:11:50 +11001104 if (blk2->index < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 state->inleaf = 1;
1106 blk2->index = 0;
Dave Chinner41419562013-10-29 22:11:50 +11001107 xfs_alert(dp->i_mount,
Eric Sandeen08e96e12013-10-11 20:59:05 -05001108 "%s: picked the wrong leaf? reverting original leaf: blk1->index %d",
Dave Chinner0b932cc2011-03-07 10:08:35 +11001109 __func__, blk1->index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 }
1111}
1112
Dave Chinner20252072012-11-12 22:54:13 +11001113static int
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001114xfs_dir3_data_block_free(
Dave Chinner20252072012-11-12 22:54:13 +11001115 xfs_da_args_t *args,
1116 struct xfs_dir2_data_hdr *hdr,
1117 struct xfs_dir2_free *free,
1118 xfs_dir2_db_t fdb,
1119 int findex,
1120 struct xfs_buf *fbp,
1121 int longest)
1122{
1123 struct xfs_trans *tp = args->trans;
1124 int logfree = 0;
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001125 __be16 *bests;
1126 struct xfs_dir3_icfree_hdr freehdr;
Dave Chinner20252072012-11-12 22:54:13 +11001127
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001128 xfs_dir3_free_hdr_from_disk(&freehdr, free);
Dave Chinner20252072012-11-12 22:54:13 +11001129
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001130 bests = xfs_dir3_free_bests_p(tp->t_mountp, free);
1131 if (hdr) {
Dave Chinner20252072012-11-12 22:54:13 +11001132 /*
1133 * Data block is not empty, just set the free entry to the new
1134 * value.
1135 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001136 bests[findex] = cpu_to_be16(longest);
1137 xfs_dir2_free_log_bests(tp, fbp, findex, findex);
1138 return 0;
1139 }
1140
1141 /* One less used entry in the free table. */
1142 freehdr.nused--;
1143
1144 /*
1145 * If this was the last entry in the table, we can trim the table size
1146 * back. There might be other entries at the end referring to
1147 * non-existent data blocks, get those too.
1148 */
1149 if (findex == freehdr.nvalid - 1) {
1150 int i; /* free entry index */
1151
1152 for (i = findex - 1; i >= 0; i--) {
1153 if (bests[i] != cpu_to_be16(NULLDATAOFF))
1154 break;
1155 }
1156 freehdr.nvalid = i + 1;
1157 logfree = 0;
1158 } else {
1159 /* Not the last entry, just punch it out. */
1160 bests[findex] = cpu_to_be16(NULLDATAOFF);
Dave Chinner20252072012-11-12 22:54:13 +11001161 logfree = 1;
1162 }
1163
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001164 xfs_dir3_free_hdr_to_disk(free, &freehdr);
1165 xfs_dir2_free_log_header(tp, fbp);
1166
1167 /*
1168 * If there are no useful entries left in the block, get rid of the
1169 * block if we can.
1170 */
1171 if (!freehdr.nused) {
1172 int error;
1173
1174 error = xfs_dir2_shrink_inode(args, fdb, fbp);
1175 if (error == 0) {
1176 fbp = NULL;
1177 logfree = 0;
1178 } else if (error != ENOSPC || args->total != 0)
1179 return error;
1180 /*
1181 * It's possible to get ENOSPC if there is no
1182 * space reservation. In this case some one
1183 * else will eventually get rid of this block.
1184 */
1185 }
1186
Dave Chinner20252072012-11-12 22:54:13 +11001187 /* Log the free entry that changed, unless we got rid of it. */
1188 if (logfree)
1189 xfs_dir2_free_log_bests(tp, fbp, findex, findex);
1190 return 0;
1191}
1192
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193/*
1194 * Remove an entry from a node directory.
1195 * This removes the leaf entry and the data entry,
1196 * and updates the free block if necessary.
1197 */
1198static int /* error */
1199xfs_dir2_leafn_remove(
1200 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001201 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 int index, /* leaf entry index */
1203 xfs_da_state_blk_t *dblk, /* data block */
1204 int *rval) /* resulting block needs join */
1205{
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001206 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 xfs_dir2_db_t db; /* data block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001208 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 xfs_dir2_data_entry_t *dep; /* data block entry */
1210 xfs_inode_t *dp; /* incore directory inode */
1211 xfs_dir2_leaf_t *leaf; /* leaf structure */
1212 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1213 int longest; /* longest data free entry */
1214 int off; /* data block entry offset */
1215 xfs_mount_t *mp; /* filesystem mount point */
1216 int needlog; /* need to log data header */
1217 int needscan; /* need to rescan data frees */
1218 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner33363fe2013-04-03 16:11:22 +11001219 struct xfs_dir2_data_free *bf; /* bestfree table */
Dave Chinner24df33b2013-04-12 07:30:21 +10001220 struct xfs_dir3_icleaf_hdr leafhdr;
1221 struct xfs_dir2_leaf_entry *ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001223 trace_xfs_dir2_leafn_remove(args, index);
1224
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 dp = args->dp;
1226 tp = args->trans;
1227 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001228 leaf = bp->b_addr;
Dave Chinner24df33b2013-04-12 07:30:21 +10001229 xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +11001230 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001231
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 /*
1233 * Point to the entry we're removing.
1234 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001235 lep = &ents[index];
1236
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 /*
1238 * Extract the data block and offset from the entry.
1239 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001240 db = xfs_dir2_dataptr_to_db(mp, be32_to_cpu(lep->address));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 ASSERT(dblk->blkno == db);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001242 off = xfs_dir2_dataptr_to_off(mp, be32_to_cpu(lep->address));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 ASSERT(dblk->index == off);
Dave Chinner24df33b2013-04-12 07:30:21 +10001244
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 /*
1246 * Kill the leaf entry by marking it stale.
1247 * Log the leaf block changes.
1248 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001249 leafhdr.stale++;
1250 xfs_dir3_leaf_hdr_to_disk(leaf, &leafhdr);
Dave Chinner41419562013-10-29 22:11:50 +11001251 xfs_dir3_leaf_log_header(tp, dp, bp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001252
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001253 lep->address = cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
Dave Chinner41419562013-10-29 22:11:50 +11001254 xfs_dir3_leaf_log_ents(tp, dp, bp, index, index);
Dave Chinner24df33b2013-04-12 07:30:21 +10001255
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 /*
1257 * Make the data entry free. Keep track of the longest freespace
1258 * in the data block in case it changes.
1259 */
1260 dbp = dblk->bp;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001261 hdr = dbp->b_addr;
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001262 dep = (xfs_dir2_data_entry_t *)((char *)hdr + off);
Dave Chinner2ca98772013-10-29 22:11:49 +11001263 bf = dp->d_ops->data_bestfree_p(hdr);
Dave Chinner33363fe2013-04-03 16:11:22 +11001264 longest = be16_to_cpu(bf[0].length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 needlog = needscan = 0;
Dave Chinner2ca98772013-10-29 22:11:49 +11001266 xfs_dir2_data_make_free(tp, dp, dbp, off,
Dave Chinner9d23fc82013-10-29 22:11:48 +11001267 dp->d_ops->data_entsize(dep->namelen), &needlog, &needscan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 /*
1269 * Rescan the data block freespaces for bestfree.
1270 * Log the data block header if needed.
1271 */
1272 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +11001273 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 if (needlog)
Dave Chinner2ca98772013-10-29 22:11:49 +11001275 xfs_dir2_data_log_header(tp, dp, dbp);
Dave Chinner33363fe2013-04-03 16:11:22 +11001276 xfs_dir3_data_check(dp, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 /*
1278 * If the longest data block freespace changes, need to update
1279 * the corresponding freeblock entry.
1280 */
Dave Chinner33363fe2013-04-03 16:11:22 +11001281 if (longest < be16_to_cpu(bf[0].length)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 int error; /* error return value */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001283 struct xfs_buf *fbp; /* freeblock buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 xfs_dir2_db_t fdb; /* freeblock block number */
1285 int findex; /* index in freeblock entries */
1286 xfs_dir2_free_t *free; /* freeblock structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
1288 /*
1289 * Convert the data block number to a free block,
1290 * read in the free block.
1291 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001292 fdb = xfs_dir2_db_to_fdb(mp, db);
Dave Chinner20252072012-11-12 22:54:13 +11001293 error = xfs_dir2_free_read(tp, dp, xfs_dir2_db_to_da(mp, fdb),
1294 &fbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001295 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001297 free = fbp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001298#ifdef DEBUG
1299 {
1300 struct xfs_dir3_icfree_hdr freehdr;
1301 xfs_dir3_free_hdr_from_disk(&freehdr, free);
1302 ASSERT(freehdr.firstdb == xfs_dir3_free_max_bests(mp) *
1303 (fdb - XFS_DIR2_FREE_FIRSTDB(mp)));
1304 }
1305#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 /*
1307 * Calculate which entry we need to fix.
1308 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001309 findex = xfs_dir2_db_to_fdindex(mp, db);
Dave Chinner33363fe2013-04-03 16:11:22 +11001310 longest = be16_to_cpu(bf[0].length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 /*
1312 * If the data block is now empty we can get rid of it
1313 * (usually).
1314 */
Dave Chinner33363fe2013-04-03 16:11:22 +11001315 if (longest == mp->m_dirblksize -
Dave Chinner2ca98772013-10-29 22:11:49 +11001316 dp->d_ops->data_entry_offset()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 /*
1318 * Try to punch out the data block.
1319 */
1320 error = xfs_dir2_shrink_inode(args, db, dbp);
1321 if (error == 0) {
1322 dblk->bp = NULL;
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001323 hdr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 }
1325 /*
1326 * We can get ENOSPC if there's no space reservation.
1327 * In this case just drop the buffer and some one else
1328 * will eventually get rid of the empty block.
1329 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001330 else if (!(error == ENOSPC && args->total == 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 return error;
1332 }
1333 /*
1334 * If we got rid of the data block, we can eliminate that entry
1335 * in the free block.
1336 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001337 error = xfs_dir3_data_block_free(args, hdr, free,
Dave Chinner20252072012-11-12 22:54:13 +11001338 fdb, findex, fbp, longest);
1339 if (error)
1340 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 }
Dave Chinner20252072012-11-12 22:54:13 +11001342
Dave Chinner41419562013-10-29 22:11:50 +11001343 xfs_dir3_leaf_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 /*
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001345 * Return indication of whether this leaf block is empty enough
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 * to justify trying to join it with a neighbor.
1347 */
Dave Chinner41419562013-10-29 22:11:50 +11001348 *rval = (dp->d_ops->leaf_hdr_size() +
Dave Chinner24df33b2013-04-12 07:30:21 +10001349 (uint)sizeof(ents[0]) * (leafhdr.count - leafhdr.stale)) <
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 mp->m_dir_magicpct;
1351 return 0;
1352}
1353
1354/*
1355 * Split the leaf entries in the old block into old and new blocks.
1356 */
1357int /* error */
1358xfs_dir2_leafn_split(
1359 xfs_da_state_t *state, /* btree cursor */
1360 xfs_da_state_blk_t *oldblk, /* original block */
1361 xfs_da_state_blk_t *newblk) /* newly created block */
1362{
1363 xfs_da_args_t *args; /* operation arguments */
1364 xfs_dablk_t blkno; /* new leaf block number */
1365 int error; /* error return value */
1366 xfs_mount_t *mp; /* filesystem mount point */
Dave Chinner41419562013-10-29 22:11:50 +11001367 struct xfs_inode *dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
1369 /*
1370 * Allocate space for a new leaf node.
1371 */
1372 args = state->args;
Dave Chinner41419562013-10-29 22:11:50 +11001373 dp = args->dp;
1374 mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 ASSERT(args != NULL);
1376 ASSERT(oldblk->magic == XFS_DIR2_LEAFN_MAGIC);
1377 error = xfs_da_grow_inode(args, &blkno);
1378 if (error) {
1379 return error;
1380 }
1381 /*
1382 * Initialize the new leaf block.
1383 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001384 error = xfs_dir3_leaf_get_buf(args, xfs_dir2_da_to_db(mp, blkno),
1385 &newblk->bp, XFS_DIR2_LEAFN_MAGIC);
1386 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 return error;
Dave Chinner24df33b2013-04-12 07:30:21 +10001388
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 newblk->blkno = blkno;
1390 newblk->magic = XFS_DIR2_LEAFN_MAGIC;
1391 /*
1392 * Rebalance the entries across the two leaves, link the new
1393 * block into the leaves.
1394 */
1395 xfs_dir2_leafn_rebalance(state, oldblk, newblk);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001396 error = xfs_da3_blk_link(state, oldblk, newblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 if (error) {
1398 return error;
1399 }
1400 /*
1401 * Insert the new entry in the correct block.
1402 */
1403 if (state->inleaf)
1404 error = xfs_dir2_leafn_add(oldblk->bp, args, oldblk->index);
1405 else
1406 error = xfs_dir2_leafn_add(newblk->bp, args, newblk->index);
1407 /*
1408 * Update last hashval in each block since we added the name.
1409 */
Dave Chinner41419562013-10-29 22:11:50 +11001410 oldblk->hashval = xfs_dir2_leafn_lasthash(dp, oldblk->bp, NULL);
1411 newblk->hashval = xfs_dir2_leafn_lasthash(dp, newblk->bp, NULL);
1412 xfs_dir3_leaf_check(dp, oldblk->bp);
1413 xfs_dir3_leaf_check(dp, newblk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 return error;
1415}
1416
1417/*
1418 * Check a leaf block and its neighbors to see if the block should be
1419 * collapsed into one or the other neighbor. Always keep the block
1420 * with the smaller block number.
1421 * If the current block is over 50% full, don't try to join it, return 0.
1422 * If the block is empty, fill in the state structure and return 2.
1423 * If it can be collapsed, fill in the state structure and return 1.
1424 * If nothing can be done, return 0.
1425 */
1426int /* error */
1427xfs_dir2_leafn_toosmall(
1428 xfs_da_state_t *state, /* btree cursor */
1429 int *action) /* resulting action to take */
1430{
1431 xfs_da_state_blk_t *blk; /* leaf block */
1432 xfs_dablk_t blkno; /* leaf block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001433 struct xfs_buf *bp; /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 int bytes; /* bytes in use */
1435 int count; /* leaf live entry count */
1436 int error; /* error return value */
1437 int forward; /* sibling block direction */
1438 int i; /* sibling counter */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 xfs_dir2_leaf_t *leaf; /* leaf structure */
1440 int rval; /* result from path_shift */
Dave Chinner24df33b2013-04-12 07:30:21 +10001441 struct xfs_dir3_icleaf_hdr leafhdr;
1442 struct xfs_dir2_leaf_entry *ents;
Dave Chinner41419562013-10-29 22:11:50 +11001443 struct xfs_inode *dp = state->args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
1445 /*
1446 * Check for the degenerate case of the block being over 50% full.
1447 * If so, it's not worth even looking to see if we might be able
1448 * to coalesce with a sibling.
1449 */
1450 blk = &state->path.blk[state->path.active - 1];
Dave Chinner24df33b2013-04-12 07:30:21 +10001451 leaf = blk->bp->b_addr;
1452 xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +11001453 ents = dp->d_ops->leaf_ents_p(leaf);
1454 xfs_dir3_leaf_check(dp, blk->bp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001455
1456 count = leafhdr.count - leafhdr.stale;
Dave Chinner41419562013-10-29 22:11:50 +11001457 bytes = dp->d_ops->leaf_hdr_size() + count * sizeof(ents[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 if (bytes > (state->blocksize >> 1)) {
1459 /*
1460 * Blk over 50%, don't try to join.
1461 */
1462 *action = 0;
1463 return 0;
1464 }
1465 /*
1466 * Check for the degenerate case of the block being empty.
1467 * If the block is empty, we'll simply delete it, no need to
1468 * coalesce it with a sibling block. We choose (arbitrarily)
1469 * to merge with the forward block unless it is NULL.
1470 */
1471 if (count == 0) {
1472 /*
1473 * Make altpath point to the block we want to keep and
1474 * path point to the block we want to drop (this one).
1475 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001476 forward = (leafhdr.forw != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 memcpy(&state->altpath, &state->path, sizeof(state->path));
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001478 error = xfs_da3_path_shift(state, &state->altpath, forward, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 &rval);
1480 if (error)
1481 return error;
1482 *action = rval ? 2 : 0;
1483 return 0;
1484 }
1485 /*
1486 * Examine each sibling block to see if we can coalesce with
1487 * at least 25% free space to spare. We need to figure out
1488 * whether to merge with the forward or the backward block.
1489 * We prefer coalescing with the lower numbered sibling so as
1490 * to shrink a directory over time.
1491 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001492 forward = leafhdr.forw < leafhdr.back;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 for (i = 0, bp = NULL; i < 2; forward = !forward, i++) {
Dave Chinner24df33b2013-04-12 07:30:21 +10001494 struct xfs_dir3_icleaf_hdr hdr2;
1495
1496 blkno = forward ? leafhdr.forw : leafhdr.back;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 if (blkno == 0)
1498 continue;
1499 /*
1500 * Read the sibling leaf block.
1501 */
Dave Chinner41419562013-10-29 22:11:50 +11001502 error = xfs_dir3_leafn_read(state->args->trans, dp,
Dave Chinnere6f76672012-11-12 22:54:15 +11001503 blkno, -1, &bp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001504 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 return error;
Dave Chinnere6f76672012-11-12 22:54:15 +11001506
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 /*
1508 * Count bytes in the two blocks combined.
1509 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001510 count = leafhdr.count - leafhdr.stale;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 bytes = state->blocksize - (state->blocksize >> 2);
Dave Chinner24df33b2013-04-12 07:30:21 +10001512
Dave Chinner1d9025e2012-06-22 18:50:14 +10001513 leaf = bp->b_addr;
Dave Chinner24df33b2013-04-12 07:30:21 +10001514 xfs_dir3_leaf_hdr_from_disk(&hdr2, leaf);
Dave Chinner41419562013-10-29 22:11:50 +11001515 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001516 count += hdr2.count - hdr2.stale;
1517 bytes -= count * sizeof(ents[0]);
1518
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 /*
1520 * Fits with at least 25% to spare.
1521 */
1522 if (bytes >= 0)
1523 break;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001524 xfs_trans_brelse(state->args->trans, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 }
1526 /*
1527 * Didn't like either block, give up.
1528 */
1529 if (i >= 2) {
1530 *action = 0;
1531 return 0;
1532 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10001533
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 /*
1535 * Make altpath point to the block we want to keep (the lower
1536 * numbered block) and path point to the block we want to drop.
1537 */
1538 memcpy(&state->altpath, &state->path, sizeof(state->path));
1539 if (blkno < blk->blkno)
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001540 error = xfs_da3_path_shift(state, &state->altpath, forward, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 &rval);
1542 else
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001543 error = xfs_da3_path_shift(state, &state->path, forward, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 &rval);
1545 if (error) {
1546 return error;
1547 }
1548 *action = rval ? 0 : 1;
1549 return 0;
1550}
1551
1552/*
1553 * Move all the leaf entries from drop_blk to save_blk.
1554 * This is done as part of a join operation.
1555 */
1556void
1557xfs_dir2_leafn_unbalance(
1558 xfs_da_state_t *state, /* cursor */
1559 xfs_da_state_blk_t *drop_blk, /* dead block */
1560 xfs_da_state_blk_t *save_blk) /* surviving block */
1561{
1562 xfs_da_args_t *args; /* operation arguments */
1563 xfs_dir2_leaf_t *drop_leaf; /* dead leaf structure */
1564 xfs_dir2_leaf_t *save_leaf; /* surviving leaf structure */
Dave Chinner24df33b2013-04-12 07:30:21 +10001565 struct xfs_dir3_icleaf_hdr savehdr;
1566 struct xfs_dir3_icleaf_hdr drophdr;
1567 struct xfs_dir2_leaf_entry *sents;
1568 struct xfs_dir2_leaf_entry *dents;
Dave Chinner41419562013-10-29 22:11:50 +11001569 struct xfs_inode *dp = state->args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
1571 args = state->args;
1572 ASSERT(drop_blk->magic == XFS_DIR2_LEAFN_MAGIC);
1573 ASSERT(save_blk->magic == XFS_DIR2_LEAFN_MAGIC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001574 drop_leaf = drop_blk->bp->b_addr;
1575 save_leaf = save_blk->bp->b_addr;
Dave Chinner24df33b2013-04-12 07:30:21 +10001576
1577 xfs_dir3_leaf_hdr_from_disk(&savehdr, save_leaf);
1578 xfs_dir3_leaf_hdr_from_disk(&drophdr, drop_leaf);
Dave Chinner41419562013-10-29 22:11:50 +11001579 sents = args->dp->d_ops->leaf_ents_p(save_leaf);
1580 dents = args->dp->d_ops->leaf_ents_p(drop_leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001581
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 /*
1583 * If there are any stale leaf entries, take this opportunity
1584 * to purge them.
1585 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001586 if (drophdr.stale)
1587 xfs_dir3_leaf_compact(args, &drophdr, drop_blk->bp);
1588 if (savehdr.stale)
1589 xfs_dir3_leaf_compact(args, &savehdr, save_blk->bp);
1590
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 /*
1592 * Move the entries from drop to the appropriate end of save.
1593 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001594 drop_blk->hashval = be32_to_cpu(dents[drophdr.count - 1].hashval);
Dave Chinner41419562013-10-29 22:11:50 +11001595 if (xfs_dir2_leafn_order(dp, save_blk->bp, drop_blk->bp))
Dave Chinner24df33b2013-04-12 07:30:21 +10001596 xfs_dir3_leafn_moveents(args, drop_blk->bp, &drophdr, dents, 0,
1597 save_blk->bp, &savehdr, sents, 0,
1598 drophdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 else
Dave Chinner24df33b2013-04-12 07:30:21 +10001600 xfs_dir3_leafn_moveents(args, drop_blk->bp, &drophdr, dents, 0,
1601 save_blk->bp, &savehdr, sents,
1602 savehdr.count, drophdr.count);
1603 save_blk->hashval = be32_to_cpu(sents[savehdr.count - 1].hashval);
1604
1605 /* log the changes made when moving the entries */
1606 xfs_dir3_leaf_hdr_to_disk(save_leaf, &savehdr);
1607 xfs_dir3_leaf_hdr_to_disk(drop_leaf, &drophdr);
Dave Chinner41419562013-10-29 22:11:50 +11001608 xfs_dir3_leaf_log_header(args->trans, dp, save_blk->bp);
1609 xfs_dir3_leaf_log_header(args->trans, dp, drop_blk->bp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001610
Dave Chinner41419562013-10-29 22:11:50 +11001611 xfs_dir3_leaf_check(dp, save_blk->bp);
1612 xfs_dir3_leaf_check(dp, drop_blk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613}
1614
1615/*
1616 * Top-level node form directory addname routine.
1617 */
1618int /* error */
1619xfs_dir2_node_addname(
1620 xfs_da_args_t *args) /* operation arguments */
1621{
1622 xfs_da_state_blk_t *blk; /* leaf block for insert */
1623 int error; /* error return value */
1624 int rval; /* sub-return value */
1625 xfs_da_state_t *state; /* btree cursor */
1626
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001627 trace_xfs_dir2_node_addname(args);
1628
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 /*
1630 * Allocate and initialize the state (btree cursor).
1631 */
1632 state = xfs_da_state_alloc();
1633 state->args = args;
1634 state->mp = args->dp->i_mount;
1635 state->blocksize = state->mp->m_dirblksize;
1636 state->node_ents = state->mp->m_dir_node_ents;
1637 /*
1638 * Look up the name. We're not supposed to find it, but
1639 * this gives us the insertion point.
1640 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001641 error = xfs_da3_node_lookup_int(state, &rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 if (error)
1643 rval = error;
1644 if (rval != ENOENT) {
1645 goto done;
1646 }
1647 /*
1648 * Add the data entry to a data block.
1649 * Extravalid is set to a freeblock found by lookup.
1650 */
1651 rval = xfs_dir2_node_addname_int(args,
1652 state->extravalid ? &state->extrablk : NULL);
1653 if (rval) {
1654 goto done;
1655 }
1656 blk = &state->path.blk[state->path.active - 1];
1657 ASSERT(blk->magic == XFS_DIR2_LEAFN_MAGIC);
1658 /*
1659 * Add the new leaf entry.
1660 */
1661 rval = xfs_dir2_leafn_add(blk->bp, args, blk->index);
1662 if (rval == 0) {
1663 /*
1664 * It worked, fix the hash values up the btree.
1665 */
Barry Naujok6a178102008-05-21 16:42:05 +10001666 if (!(args->op_flags & XFS_DA_OP_JUSTCHECK))
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001667 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 } else {
1669 /*
1670 * It didn't work, we need to split the leaf block.
1671 */
1672 if (args->total == 0) {
1673 ASSERT(rval == ENOSPC);
1674 goto done;
1675 }
1676 /*
1677 * Split the leaf block and insert the new entry.
1678 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001679 rval = xfs_da3_split(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 }
1681done:
1682 xfs_da_state_free(state);
1683 return rval;
1684}
1685
1686/*
1687 * Add the data entry for a node-format directory name addition.
1688 * The leaf entry is added in xfs_dir2_leafn_add.
1689 * We may enter with a freespace block that the lookup found.
1690 */
1691static int /* error */
1692xfs_dir2_node_addname_int(
1693 xfs_da_args_t *args, /* operation arguments */
1694 xfs_da_state_blk_t *fblk) /* optional freespace block */
1695{
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001696 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 xfs_dir2_db_t dbno; /* data block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001698 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 xfs_dir2_data_entry_t *dep; /* data entry pointer */
1700 xfs_inode_t *dp; /* incore directory inode */
1701 xfs_dir2_data_unused_t *dup; /* data unused entry pointer */
1702 int error; /* error return value */
1703 xfs_dir2_db_t fbno; /* freespace block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001704 struct xfs_buf *fbp; /* freespace buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 int findex; /* freespace entry index */
1706 xfs_dir2_free_t *free=NULL; /* freespace block structure */
1707 xfs_dir2_db_t ifbno; /* initial freespace block no */
1708 xfs_dir2_db_t lastfbno=0; /* highest freespace block no */
1709 int length; /* length of the new entry */
1710 int logfree; /* need to log free entry */
1711 xfs_mount_t *mp; /* filesystem mount point */
1712 int needlog; /* need to log data header */
1713 int needscan; /* need to rescan data frees */
Nathan Scott3d693c62006-03-17 17:28:27 +11001714 __be16 *tagp; /* data entry tag pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 xfs_trans_t *tp; /* transaction pointer */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001716 __be16 *bests;
1717 struct xfs_dir3_icfree_hdr freehdr;
Dave Chinner33363fe2013-04-03 16:11:22 +11001718 struct xfs_dir2_data_free *bf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
1720 dp = args->dp;
1721 mp = dp->i_mount;
1722 tp = args->trans;
Dave Chinner9d23fc82013-10-29 22:11:48 +11001723 length = dp->d_ops->data_entsize(args->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 /*
1725 * If we came in with a freespace block that means that lookup
1726 * found an entry with our hash value. This is the freespace
1727 * block for that data entry.
1728 */
1729 if (fblk) {
1730 fbp = fblk->bp;
1731 /*
1732 * Remember initial freespace block number.
1733 */
1734 ifbno = fblk->blkno;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001735 free = fbp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 findex = fblk->index;
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001737 bests = xfs_dir3_free_bests_p(mp, free);
1738 xfs_dir3_free_hdr_from_disk(&freehdr, free);
1739
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 /*
1741 * This means the free entry showed that the data block had
1742 * space for our entry, so we remembered it.
1743 * Use that data block.
1744 */
1745 if (findex >= 0) {
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001746 ASSERT(findex < freehdr.nvalid);
1747 ASSERT(be16_to_cpu(bests[findex]) != NULLDATAOFF);
1748 ASSERT(be16_to_cpu(bests[findex]) >= length);
1749 dbno = freehdr.firstdb + findex;
1750 } else {
1751 /*
1752 * The data block looked at didn't have enough room.
1753 * We'll start at the beginning of the freespace entries.
1754 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 dbno = -1;
1756 findex = 0;
1757 }
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001758 } else {
1759 /*
1760 * Didn't come in with a freespace block, so no data block.
1761 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 ifbno = dbno = -1;
1763 fbp = NULL;
1764 findex = 0;
1765 }
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001766
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 /*
1768 * If we don't have a data block yet, we're going to scan the
1769 * freespace blocks looking for one. Figure out what the
1770 * highest freespace block number is.
1771 */
1772 if (dbno == -1) {
1773 xfs_fileoff_t fo; /* freespace block number */
1774
1775 if ((error = xfs_bmap_last_offset(tp, dp, &fo, XFS_DATA_FORK)))
1776 return error;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001777 lastfbno = xfs_dir2_da_to_db(mp, (xfs_dablk_t)fo);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 fbno = ifbno;
1779 }
1780 /*
1781 * While we haven't identified a data block, search the freeblock
1782 * data for a good data block. If we find a null freeblock entry,
1783 * indicating a hole in the data blocks, remember that.
1784 */
1785 while (dbno == -1) {
1786 /*
1787 * If we don't have a freeblock in hand, get the next one.
1788 */
1789 if (fbp == NULL) {
1790 /*
1791 * Happens the first time through unless lookup gave
1792 * us a freespace block to start with.
1793 */
1794 if (++fbno == 0)
1795 fbno = XFS_DIR2_FREE_FIRSTDB(mp);
1796 /*
1797 * If it's ifbno we already looked at it.
1798 */
1799 if (fbno == ifbno)
1800 fbno++;
1801 /*
1802 * If it's off the end we're done.
1803 */
1804 if (fbno >= lastfbno)
1805 break;
1806 /*
1807 * Read the block. There can be holes in the
1808 * freespace blocks, so this might not succeed.
1809 * This should be really rare, so there's no reason
1810 * to avoid it.
1811 */
Dave Chinner20252072012-11-12 22:54:13 +11001812 error = xfs_dir2_free_try_read(tp, dp,
1813 xfs_dir2_db_to_da(mp, fbno),
1814 &fbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001815 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 return error;
Dave Chinner4bb20a82012-11-12 22:54:10 +11001817 if (!fbp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 continue;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001819 free = fbp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 findex = 0;
1821 }
1822 /*
1823 * Look at the current free entry. Is it good enough?
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001824 *
1825 * The bests initialisation should be where the bufer is read in
1826 * the above branch. But gcc is too stupid to realise that bests
1827 * and the freehdr are actually initialised if they are placed
1828 * there, so we have to do it here to avoid warnings. Blech.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001830 bests = xfs_dir3_free_bests_p(mp, free);
1831 xfs_dir3_free_hdr_from_disk(&freehdr, free);
1832 if (be16_to_cpu(bests[findex]) != NULLDATAOFF &&
1833 be16_to_cpu(bests[findex]) >= length)
1834 dbno = freehdr.firstdb + findex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 else {
1836 /*
1837 * Are we done with the freeblock?
1838 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001839 if (++findex == freehdr.nvalid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 /*
1841 * Drop the block.
1842 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001843 xfs_trans_brelse(tp, fbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 fbp = NULL;
1845 if (fblk && fblk->bp)
1846 fblk->bp = NULL;
1847 }
1848 }
1849 }
1850 /*
1851 * If we don't have a data block, we need to allocate one and make
1852 * the freespace entries refer to it.
1853 */
1854 if (unlikely(dbno == -1)) {
1855 /*
1856 * Not allowed to allocate, return failure.
1857 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001858 if ((args->op_flags & XFS_DA_OP_JUSTCHECK) || args->total == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 return XFS_ERROR(ENOSPC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001860
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 /*
1862 * Allocate and initialize the new data block.
1863 */
1864 if (unlikely((error = xfs_dir2_grow_inode(args,
1865 XFS_DIR2_DATA_SPACE,
1866 &dbno)) ||
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11001867 (error = xfs_dir3_data_init(args, dbno, &dbp))))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001869
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 /*
1871 * If (somehow) we have a freespace block, get rid of it.
1872 */
1873 if (fbp)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001874 xfs_trans_brelse(tp, fbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 if (fblk && fblk->bp)
1876 fblk->bp = NULL;
1877
1878 /*
1879 * Get the freespace block corresponding to the data block
1880 * that was just allocated.
1881 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001882 fbno = xfs_dir2_db_to_fdb(mp, dbno);
Dave Chinner20252072012-11-12 22:54:13 +11001883 error = xfs_dir2_free_try_read(tp, dp,
1884 xfs_dir2_db_to_da(mp, fbno),
1885 &fbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001886 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001888
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 /*
1890 * If there wasn't a freespace block, the read will
1891 * return a NULL fbp. Allocate and initialize a new one.
1892 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001893 if (!fbp) {
1894 error = xfs_dir2_grow_inode(args, XFS_DIR2_FREE_SPACE,
1895 &fbno);
1896 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001899 if (unlikely(xfs_dir2_db_to_fdb(mp, dbno) != fbno)) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001900 xfs_alert(mp,
Jean Delvaredf2e3012011-07-16 18:10:35 +02001901 "%s: dir ino %llu needed freesp block %lld for\n"
Dave Chinner0b932cc2011-03-07 10:08:35 +11001902 " data block %lld, got %lld ifbno %llu lastfbno %d",
1903 __func__, (unsigned long long)dp->i_ino,
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001904 (long long)xfs_dir2_db_to_fdb(mp, dbno),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 (long long)dbno, (long long)fbno,
1906 (unsigned long long)ifbno, lastfbno);
1907 if (fblk) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001908 xfs_alert(mp,
1909 " fblk 0x%p blkno %llu index %d magic 0x%x",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 fblk,
1911 (unsigned long long)fblk->blkno,
1912 fblk->index,
1913 fblk->magic);
1914 } else {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001915 xfs_alert(mp, " ... fblk is NULL");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 }
1917 XFS_ERROR_REPORT("xfs_dir2_node_addname_int",
1918 XFS_ERRLEVEL_LOW, mp);
1919 return XFS_ERROR(EFSCORRUPTED);
1920 }
1921
1922 /*
1923 * Get a buffer for the new block.
1924 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001925 error = xfs_dir3_free_get_buf(tp, dp, fbno, &fbp);
Dave Chinnerb0f539d2012-11-14 17:53:49 +11001926 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 return error;
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001928 free = fbp->b_addr;
1929 bests = xfs_dir3_free_bests_p(mp, free);
1930 xfs_dir3_free_hdr_from_disk(&freehdr, free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
1932 /*
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001933 * Remember the first slot as our empty slot.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001935 freehdr.firstdb = (fbno - XFS_DIR2_FREE_FIRSTDB(mp)) *
1936 xfs_dir3_free_max_bests(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 } else {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001938 free = fbp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001939 bests = xfs_dir3_free_bests_p(mp, free);
1940 xfs_dir3_free_hdr_from_disk(&freehdr, free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 }
1942
1943 /*
1944 * Set the freespace block index from the data block number.
1945 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001946 findex = xfs_dir2_db_to_fdindex(mp, dbno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 /*
1948 * If it's after the end of the current entries in the
1949 * freespace block, extend that table.
1950 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001951 if (findex >= freehdr.nvalid) {
1952 ASSERT(findex < xfs_dir3_free_max_bests(mp));
1953 freehdr.nvalid = findex + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 /*
1955 * Tag new entry so nused will go up.
1956 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001957 bests[findex] = cpu_to_be16(NULLDATAOFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 }
1959 /*
1960 * If this entry was for an empty data block
1961 * (this should always be true) then update the header.
1962 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001963 if (bests[findex] == cpu_to_be16(NULLDATAOFF)) {
1964 freehdr.nused++;
1965 xfs_dir3_free_hdr_to_disk(fbp->b_addr, &freehdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 xfs_dir2_free_log_header(tp, fbp);
1967 }
1968 /*
1969 * Update the real value in the table.
1970 * We haven't allocated the data entry yet so this will
1971 * change again.
1972 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001973 hdr = dbp->b_addr;
Dave Chinner2ca98772013-10-29 22:11:49 +11001974 bf = dp->d_ops->data_bestfree_p(hdr);
Dave Chinner33363fe2013-04-03 16:11:22 +11001975 bests[findex] = bf[0].length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 logfree = 1;
1977 }
1978 /*
1979 * We had a data block so we don't have to make a new one.
1980 */
1981 else {
1982 /*
1983 * If just checking, we succeeded.
1984 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001985 if (args->op_flags & XFS_DA_OP_JUSTCHECK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 return 0;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001987
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 /*
1989 * Read the data block in.
1990 */
Dave Chinner33363fe2013-04-03 16:11:22 +11001991 error = xfs_dir3_data_read(tp, dp, xfs_dir2_db_to_da(mp, dbno),
Dave Chinnere4813572012-11-12 22:54:14 +11001992 -1, &dbp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001993 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001995 hdr = dbp->b_addr;
Dave Chinner2ca98772013-10-29 22:11:49 +11001996 bf = dp->d_ops->data_bestfree_p(hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 logfree = 0;
1998 }
Dave Chinner33363fe2013-04-03 16:11:22 +11001999 ASSERT(be16_to_cpu(bf[0].length) >= length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 /*
2001 * Point to the existing unused space.
2002 */
2003 dup = (xfs_dir2_data_unused_t *)
Dave Chinner33363fe2013-04-03 16:11:22 +11002004 ((char *)hdr + be16_to_cpu(bf[0].offset));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 needscan = needlog = 0;
2006 /*
2007 * Mark the first part of the unused space, inuse for us.
2008 */
Dave Chinner2ca98772013-10-29 22:11:49 +11002009 xfs_dir2_data_use_free(tp, dp, dbp, dup,
Christoph Hellwigc2066e22011-07-08 14:35:38 +02002010 (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr), length,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 &needlog, &needscan);
2012 /*
2013 * Fill in the new entry and log it.
2014 */
2015 dep = (xfs_dir2_data_entry_t *)dup;
Christoph Hellwigff9901c2006-06-09 14:48:37 +10002016 dep->inumber = cpu_to_be64(args->inumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 dep->namelen = args->namelen;
2018 memcpy(dep->name, args->name, dep->namelen);
Dave Chinner9d23fc82013-10-29 22:11:48 +11002019 dp->d_ops->data_put_ftype(dep, args->filetype);
2020 tagp = dp->d_ops->data_entry_tag_p(dep);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02002021 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Dave Chinner9d23fc82013-10-29 22:11:48 +11002022 xfs_dir2_data_log_entry(tp, dp, dbp, dep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 /*
2024 * Rescan the block for bestfree if needed.
2025 */
2026 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +11002027 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 /*
2029 * Log the data block header if needed.
2030 */
2031 if (needlog)
Dave Chinner2ca98772013-10-29 22:11:49 +11002032 xfs_dir2_data_log_header(tp, dp, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 /*
2034 * If the freespace entry is now wrong, update it.
2035 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11002036 bests = xfs_dir3_free_bests_p(mp, free); /* gcc is so stupid */
Dave Chinner33363fe2013-04-03 16:11:22 +11002037 if (be16_to_cpu(bests[findex]) != be16_to_cpu(bf[0].length)) {
2038 bests[findex] = bf[0].length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 logfree = 1;
2040 }
2041 /*
2042 * Log the freespace entry if needed.
2043 */
2044 if (logfree)
2045 xfs_dir2_free_log_bests(tp, fbp, findex, findex);
2046 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 * Return the data block and offset in args, then drop the data block.
2048 */
2049 args->blkno = (xfs_dablk_t)dbno;
Nathan Scott3d693c62006-03-17 17:28:27 +11002050 args->index = be16_to_cpu(*tagp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 return 0;
2052}
2053
2054/*
2055 * Lookup an entry in a node-format directory.
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002056 * All the real work happens in xfs_da3_node_lookup_int.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 * The only real output is the inode number of the entry.
2058 */
2059int /* error */
2060xfs_dir2_node_lookup(
2061 xfs_da_args_t *args) /* operation arguments */
2062{
2063 int error; /* error return value */
2064 int i; /* btree level */
2065 int rval; /* operation return value */
2066 xfs_da_state_t *state; /* btree cursor */
2067
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002068 trace_xfs_dir2_node_lookup(args);
2069
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 /*
2071 * Allocate and initialize the btree cursor.
2072 */
2073 state = xfs_da_state_alloc();
2074 state->args = args;
2075 state->mp = args->dp->i_mount;
2076 state->blocksize = state->mp->m_dirblksize;
2077 state->node_ents = state->mp->m_dir_node_ents;
2078 /*
2079 * Fill in the path to the entry in the cursor.
2080 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002081 error = xfs_da3_node_lookup_int(state, &rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 if (error)
2083 rval = error;
Barry Naujok384f3ce2008-05-21 16:58:22 +10002084 else if (rval == ENOENT && args->cmpresult == XFS_CMP_CASE) {
2085 /* If a CI match, dup the actual name and return EEXIST */
2086 xfs_dir2_data_entry_t *dep;
2087
Dave Chinner1d9025e2012-06-22 18:50:14 +10002088 dep = (xfs_dir2_data_entry_t *)
2089 ((char *)state->extrablk.bp->b_addr +
2090 state->extrablk.index);
Barry Naujok384f3ce2008-05-21 16:58:22 +10002091 rval = xfs_dir_cilookup_result(args, dep->name, dep->namelen);
2092 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 /*
2094 * Release the btree blocks and leaf block.
2095 */
2096 for (i = 0; i < state->path.active; i++) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002097 xfs_trans_brelse(args->trans, state->path.blk[i].bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 state->path.blk[i].bp = NULL;
2099 }
2100 /*
2101 * Release the data block if we have it.
2102 */
2103 if (state->extravalid && state->extrablk.bp) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002104 xfs_trans_brelse(args->trans, state->extrablk.bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 state->extrablk.bp = NULL;
2106 }
2107 xfs_da_state_free(state);
2108 return rval;
2109}
2110
2111/*
2112 * Remove an entry from a node-format directory.
2113 */
2114int /* error */
2115xfs_dir2_node_removename(
2116 xfs_da_args_t *args) /* operation arguments */
2117{
2118 xfs_da_state_blk_t *blk; /* leaf block */
2119 int error; /* error return value */
2120 int rval; /* operation return value */
2121 xfs_da_state_t *state; /* btree cursor */
2122
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002123 trace_xfs_dir2_node_removename(args);
2124
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 /*
2126 * Allocate and initialize the btree cursor.
2127 */
2128 state = xfs_da_state_alloc();
2129 state->args = args;
2130 state->mp = args->dp->i_mount;
2131 state->blocksize = state->mp->m_dirblksize;
2132 state->node_ents = state->mp->m_dir_node_ents;
2133 /*
2134 * Look up the entry we're deleting, set up the cursor.
2135 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002136 error = xfs_da3_node_lookup_int(state, &rval);
Barry Naujok5163f952008-05-21 16:41:01 +10002137 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 rval = error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 /*
2140 * Didn't find it, upper layer screwed up.
2141 */
2142 if (rval != EEXIST) {
2143 xfs_da_state_free(state);
2144 return rval;
2145 }
2146 blk = &state->path.blk[state->path.active - 1];
2147 ASSERT(blk->magic == XFS_DIR2_LEAFN_MAGIC);
2148 ASSERT(state->extravalid);
2149 /*
2150 * Remove the leaf and data entries.
2151 * Extrablk refers to the data block.
2152 */
2153 error = xfs_dir2_leafn_remove(args, blk->bp, blk->index,
2154 &state->extrablk, &rval);
Barry Naujok5163f952008-05-21 16:41:01 +10002155 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 /*
2158 * Fix the hash values up the btree.
2159 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002160 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 /*
2162 * If we need to join leaf blocks, do it.
2163 */
2164 if (rval && state->path.active > 1)
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002165 error = xfs_da3_join(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 /*
2167 * If no errors so far, try conversion to leaf format.
2168 */
2169 if (!error)
2170 error = xfs_dir2_node_to_leaf(state);
2171 xfs_da_state_free(state);
2172 return error;
2173}
2174
2175/*
2176 * Replace an entry's inode number in a node-format directory.
2177 */
2178int /* error */
2179xfs_dir2_node_replace(
2180 xfs_da_args_t *args) /* operation arguments */
2181{
2182 xfs_da_state_blk_t *blk; /* leaf block */
Christoph Hellwigc2066e22011-07-08 14:35:38 +02002183 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 xfs_dir2_data_entry_t *dep; /* data entry changed */
2185 int error; /* error return value */
2186 int i; /* btree level */
2187 xfs_ino_t inum; /* new inode number */
2188 xfs_dir2_leaf_t *leaf; /* leaf structure */
2189 xfs_dir2_leaf_entry_t *lep; /* leaf entry being changed */
2190 int rval; /* internal return value */
2191 xfs_da_state_t *state; /* btree cursor */
2192
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002193 trace_xfs_dir2_node_replace(args);
2194
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 /*
2196 * Allocate and initialize the btree cursor.
2197 */
2198 state = xfs_da_state_alloc();
2199 state->args = args;
2200 state->mp = args->dp->i_mount;
2201 state->blocksize = state->mp->m_dirblksize;
2202 state->node_ents = state->mp->m_dir_node_ents;
2203 inum = args->inumber;
2204 /*
2205 * Lookup the entry to change in the btree.
2206 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002207 error = xfs_da3_node_lookup_int(state, &rval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 if (error) {
2209 rval = error;
2210 }
2211 /*
2212 * It should be found, since the vnodeops layer has looked it up
2213 * and locked it. But paranoia is good.
2214 */
2215 if (rval == EEXIST) {
Dave Chinner24df33b2013-04-12 07:30:21 +10002216 struct xfs_dir2_leaf_entry *ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 /*
2218 * Find the leaf entry.
2219 */
2220 blk = &state->path.blk[state->path.active - 1];
2221 ASSERT(blk->magic == XFS_DIR2_LEAFN_MAGIC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002222 leaf = blk->bp->b_addr;
Dave Chinner41419562013-10-29 22:11:50 +11002223 ents = args->dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10002224 lep = &ents[blk->index];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 ASSERT(state->extravalid);
2226 /*
2227 * Point to the data entry.
2228 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10002229 hdr = state->extrablk.bp->b_addr;
Dave Chinner33363fe2013-04-03 16:11:22 +11002230 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
2231 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 dep = (xfs_dir2_data_entry_t *)
Christoph Hellwigc2066e22011-07-08 14:35:38 +02002233 ((char *)hdr +
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10002234 xfs_dir2_dataptr_to_off(state->mp, be32_to_cpu(lep->address)));
Christoph Hellwigff9901c2006-06-09 14:48:37 +10002235 ASSERT(inum != be64_to_cpu(dep->inumber));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 /*
2237 * Fill in the new inode number and log the entry.
2238 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +10002239 dep->inumber = cpu_to_be64(inum);
Dave Chinner9d23fc82013-10-29 22:11:48 +11002240 args->dp->d_ops->data_put_ftype(dep, args->filetype);
2241 xfs_dir2_data_log_entry(args->trans, args->dp,
2242 state->extrablk.bp, dep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 rval = 0;
2244 }
2245 /*
2246 * Didn't find it, and we're holding a data block. Drop it.
2247 */
2248 else if (state->extravalid) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002249 xfs_trans_brelse(args->trans, state->extrablk.bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 state->extrablk.bp = NULL;
2251 }
2252 /*
2253 * Release all the buffers in the cursor.
2254 */
2255 for (i = 0; i < state->path.active; i++) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002256 xfs_trans_brelse(args->trans, state->path.blk[i].bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 state->path.blk[i].bp = NULL;
2258 }
2259 xfs_da_state_free(state);
2260 return rval;
2261}
2262
2263/*
2264 * Trim off a trailing empty freespace block.
2265 * Return (in rvalp) 1 if we did it, 0 if not.
2266 */
2267int /* error */
2268xfs_dir2_node_trim_free(
2269 xfs_da_args_t *args, /* operation arguments */
2270 xfs_fileoff_t fo, /* free block number */
2271 int *rvalp) /* out: did something */
2272{
Dave Chinner1d9025e2012-06-22 18:50:14 +10002273 struct xfs_buf *bp; /* freespace buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 xfs_inode_t *dp; /* incore directory inode */
2275 int error; /* error return code */
2276 xfs_dir2_free_t *free; /* freespace structure */
2277 xfs_mount_t *mp; /* filesystem mount point */
2278 xfs_trans_t *tp; /* transaction pointer */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11002279 struct xfs_dir3_icfree_hdr freehdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280
2281 dp = args->dp;
2282 mp = dp->i_mount;
2283 tp = args->trans;
2284 /*
2285 * Read the freespace block.
2286 */
Dave Chinner20252072012-11-12 22:54:13 +11002287 error = xfs_dir2_free_try_read(tp, dp, fo, &bp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11002288 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 /*
2291 * There can be holes in freespace. If fo is a hole, there's
2292 * nothing to do.
2293 */
Dave Chinner20252072012-11-12 22:54:13 +11002294 if (!bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 return 0;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002296 free = bp->b_addr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +11002297 xfs_dir3_free_hdr_from_disk(&freehdr, free);
2298
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 /*
2300 * If there are used entries, there's nothing to do.
2301 */
Dave Chinnercbc8adf2013-04-03 16:11:21 +11002302 if (freehdr.nused > 0) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002303 xfs_trans_brelse(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 *rvalp = 0;
2305 return 0;
2306 }
2307 /*
2308 * Blow the block away.
2309 */
2310 if ((error =
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10002311 xfs_dir2_shrink_inode(args, xfs_dir2_da_to_db(mp, (xfs_dablk_t)fo),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 bp))) {
2313 /*
2314 * Can't fail with ENOSPC since that only happens with no
2315 * space reservation, when breaking up an extent into two
2316 * pieces. This is the last block of an extent.
2317 */
2318 ASSERT(error != ENOSPC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002319 xfs_trans_brelse(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 return error;
2321 }
2322 /*
2323 * Return that we succeeded.
2324 */
2325 *rvalp = 1;
2326 return 0;
2327}