blob: ae47ec6e16c4031e50ba9ef63884ce216757d41e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
Dave Chinner24df33b2013-04-12 07:30:21 +10003 * 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"
25#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 Chinner24df33b2013-04-12 07:30:21 +100036#include "xfs_buf_item.h"
37#include "xfs_cksum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39/*
40 * Local function declarations.
41 */
Dave Chinner1d9025e2012-06-22 18:50:14 +100042static int xfs_dir2_leaf_lookup_int(xfs_da_args_t *args, struct xfs_buf **lbpp,
43 int *indexp, struct xfs_buf **dbpp);
Dave Chinner24df33b2013-04-12 07:30:21 +100044static void xfs_dir3_leaf_log_bests(struct xfs_trans *tp, struct xfs_buf *bp,
Christoph Hellwigba0f32d2005-06-21 15:36:52 +100045 int first, int last);
Dave Chinner24df33b2013-04-12 07:30:21 +100046static void xfs_dir3_leaf_log_tail(struct xfs_trans *tp, struct xfs_buf *bp);
Christoph Hellwigba0f32d2005-06-21 15:36:52 +100047
Dave Chinner24df33b2013-04-12 07:30:21 +100048/*
49 * Check the internal consistency of a leaf1 block.
50 * Pop an assert if something is wrong.
51 */
52#ifdef DEBUG
Dave Chinner41419562013-10-29 22:11:50 +110053#define xfs_dir3_leaf_check(dp, bp) \
Dave Chinner24df33b2013-04-12 07:30:21 +100054do { \
Dave Chinner41419562013-10-29 22:11:50 +110055 if (!xfs_dir3_leaf1_check((dp), (bp))) \
Dave Chinner24df33b2013-04-12 07:30:21 +100056 ASSERT(0); \
57} while (0);
58
59STATIC bool
60xfs_dir3_leaf1_check(
Dave Chinner41419562013-10-29 22:11:50 +110061 struct xfs_inode *dp,
Dave Chinner24df33b2013-04-12 07:30:21 +100062 struct xfs_buf *bp)
63{
64 struct xfs_dir2_leaf *leaf = bp->b_addr;
65 struct xfs_dir3_icleaf_hdr leafhdr;
66
Dave Chinner01ba43b2013-10-29 22:11:52 +110067 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +100068
69 if (leafhdr.magic == XFS_DIR3_LEAF1_MAGIC) {
70 struct xfs_dir3_leaf_hdr *leaf3 = bp->b_addr;
71 if (be64_to_cpu(leaf3->info.blkno) != bp->b_bn)
72 return false;
73 } else if (leafhdr.magic != XFS_DIR2_LEAF1_MAGIC)
74 return false;
75
Dave Chinner41419562013-10-29 22:11:50 +110076 return xfs_dir3_leaf_check_int(dp->i_mount, dp, &leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +100077}
78#else
Dave Chinner41419562013-10-29 22:11:50 +110079#define xfs_dir3_leaf_check(dp, bp)
Dave Chinner24df33b2013-04-12 07:30:21 +100080#endif
81
Dave Chinner24df33b2013-04-12 07:30:21 +100082bool
83xfs_dir3_leaf_check_int(
84 struct xfs_mount *mp,
Dave Chinner41419562013-10-29 22:11:50 +110085 struct xfs_inode *dp,
Dave Chinner24df33b2013-04-12 07:30:21 +100086 struct xfs_dir3_icleaf_hdr *hdr,
87 struct xfs_dir2_leaf *leaf)
88{
89 struct xfs_dir2_leaf_entry *ents;
90 xfs_dir2_leaf_tail_t *ltp;
91 int stale;
92 int i;
Dave Chinner41419562013-10-29 22:11:50 +110093 const struct xfs_dir_ops *ops;
Dave Chinner01ba43b2013-10-29 22:11:52 +110094 struct xfs_dir3_icleaf_hdr leafhdr;
Dave Chinner24df33b2013-04-12 07:30:21 +100095
Dave Chinner41419562013-10-29 22:11:50 +110096 /*
97 * we can be passed a null dp here from a verifier, so we need to go the
98 * hard way to get them.
99 */
100 ops = xfs_dir_get_ops(mp, dp);
101
Dave Chinner01ba43b2013-10-29 22:11:52 +1100102 if (!hdr) {
103 ops->leaf_hdr_from_disk(&leafhdr, leaf);
104 hdr = &leafhdr;
105 }
106
Dave Chinner41419562013-10-29 22:11:50 +1100107 ents = ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000108 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
109
110 /*
111 * XXX (dgc): This value is not restrictive enough.
112 * Should factor in the size of the bests table as well.
113 * We can deduce a value for that from di_size.
114 */
Dave Chinner41419562013-10-29 22:11:50 +1100115 if (hdr->count > ops->leaf_max_ents(mp))
Dave Chinner24df33b2013-04-12 07:30:21 +1000116 return false;
117
118 /* Leaves and bests don't overlap in leaf format. */
119 if ((hdr->magic == XFS_DIR2_LEAF1_MAGIC ||
120 hdr->magic == XFS_DIR3_LEAF1_MAGIC) &&
121 (char *)&ents[hdr->count] > (char *)xfs_dir2_leaf_bests_p(ltp))
122 return false;
123
124 /* Check hash value order, count stale entries. */
125 for (i = stale = 0; i < hdr->count; i++) {
126 if (i + 1 < hdr->count) {
127 if (be32_to_cpu(ents[i].hashval) >
128 be32_to_cpu(ents[i + 1].hashval))
129 return false;
130 }
131 if (ents[i].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
132 stale++;
133 }
134 if (hdr->stale != stale)
135 return false;
136 return true;
137}
138
Dave Chinner0f295a22013-09-03 10:06:58 +1000139/*
140 * We verify the magic numbers before decoding the leaf header so that on debug
141 * kernels we don't get assertion failures in xfs_dir3_leaf_hdr_from_disk() due
142 * to incorrect magic numbers.
143 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000144static bool
145xfs_dir3_leaf_verify(
Dave Chinnere6f76672012-11-12 22:54:15 +1100146 struct xfs_buf *bp,
Dave Chinner24df33b2013-04-12 07:30:21 +1000147 __uint16_t magic)
Dave Chinnere6f76672012-11-12 22:54:15 +1100148{
149 struct xfs_mount *mp = bp->b_target->bt_mount;
Dave Chinner24df33b2013-04-12 07:30:21 +1000150 struct xfs_dir2_leaf *leaf = bp->b_addr;
Dave Chinnere6f76672012-11-12 22:54:15 +1100151
Dave Chinner24df33b2013-04-12 07:30:21 +1000152 ASSERT(magic == XFS_DIR2_LEAF1_MAGIC || magic == XFS_DIR2_LEAFN_MAGIC);
153
Dave Chinner24df33b2013-04-12 07:30:21 +1000154 if (xfs_sb_version_hascrc(&mp->m_sb)) {
155 struct xfs_dir3_leaf_hdr *leaf3 = bp->b_addr;
Dave Chinner0f295a22013-09-03 10:06:58 +1000156 __uint16_t magic3;
Dave Chinner24df33b2013-04-12 07:30:21 +1000157
Dave Chinner0f295a22013-09-03 10:06:58 +1000158 magic3 = (magic == XFS_DIR2_LEAF1_MAGIC) ? XFS_DIR3_LEAF1_MAGIC
159 : XFS_DIR3_LEAFN_MAGIC;
160
161 if (leaf3->info.hdr.magic != cpu_to_be16(magic3))
Dave Chinner24df33b2013-04-12 07:30:21 +1000162 return false;
Dave Chinner24df33b2013-04-12 07:30:21 +1000163 if (!uuid_equal(&leaf3->info.uuid, &mp->m_sb.sb_uuid))
164 return false;
165 if (be64_to_cpu(leaf3->info.blkno) != bp->b_bn)
166 return false;
167 } else {
Dave Chinner0f295a22013-09-03 10:06:58 +1000168 if (leaf->hdr.info.magic != cpu_to_be16(magic))
Dave Chinner24df33b2013-04-12 07:30:21 +1000169 return false;
170 }
Dave Chinner0f295a22013-09-03 10:06:58 +1000171
Dave Chinner01ba43b2013-10-29 22:11:52 +1100172 return xfs_dir3_leaf_check_int(mp, NULL, NULL, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000173}
174
175static void
176__read_verify(
177 struct xfs_buf *bp,
178 __uint16_t magic)
179{
180 struct xfs_mount *mp = bp->b_target->bt_mount;
181
182 if ((xfs_sb_version_hascrc(&mp->m_sb) &&
183 !xfs_verify_cksum(bp->b_addr, BBTOB(bp->b_length),
184 XFS_DIR3_LEAF_CRC_OFF)) ||
185 !xfs_dir3_leaf_verify(bp, magic)) {
186 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
Dave Chinnere6f76672012-11-12 22:54:15 +1100187 xfs_buf_ioerror(bp, EFSCORRUPTED);
188 }
Dave Chinner612cfbf2012-11-14 17:52:32 +1100189}
Dave Chinnere6f76672012-11-12 22:54:15 +1100190
Dave Chinner612cfbf2012-11-14 17:52:32 +1100191static void
Dave Chinner24df33b2013-04-12 07:30:21 +1000192__write_verify(
193 struct xfs_buf *bp,
194 __uint16_t magic)
Dave Chinner612cfbf2012-11-14 17:52:32 +1100195{
Dave Chinner24df33b2013-04-12 07:30:21 +1000196 struct xfs_mount *mp = bp->b_target->bt_mount;
197 struct xfs_buf_log_item *bip = bp->b_fspriv;
198 struct xfs_dir3_leaf_hdr *hdr3 = bp->b_addr;
199
200 if (!xfs_dir3_leaf_verify(bp, magic)) {
201 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
202 xfs_buf_ioerror(bp, EFSCORRUPTED);
203 return;
204 }
205
206 if (!xfs_sb_version_hascrc(&mp->m_sb))
207 return;
208
209 if (bip)
210 hdr3->info.lsn = cpu_to_be64(bip->bli_item.li_lsn);
211
212 xfs_update_cksum(bp->b_addr, BBTOB(bp->b_length), XFS_DIR3_LEAF_CRC_OFF);
Dave Chinner612cfbf2012-11-14 17:52:32 +1100213}
214
215static void
Dave Chinner24df33b2013-04-12 07:30:21 +1000216xfs_dir3_leaf1_read_verify(
Dave Chinner612cfbf2012-11-14 17:52:32 +1100217 struct xfs_buf *bp)
218{
Dave Chinner24df33b2013-04-12 07:30:21 +1000219 __read_verify(bp, XFS_DIR2_LEAF1_MAGIC);
Dave Chinner1813dd62012-11-14 17:54:40 +1100220}
221
Dave Chinner24df33b2013-04-12 07:30:21 +1000222static void
223xfs_dir3_leaf1_write_verify(
Dave Chinner1813dd62012-11-14 17:54:40 +1100224 struct xfs_buf *bp)
225{
Dave Chinner24df33b2013-04-12 07:30:21 +1000226 __write_verify(bp, XFS_DIR2_LEAF1_MAGIC);
Dave Chinnere6f76672012-11-12 22:54:15 +1100227}
228
Dave Chinner24df33b2013-04-12 07:30:21 +1000229static void
230xfs_dir3_leafn_read_verify(
Dave Chinner612cfbf2012-11-14 17:52:32 +1100231 struct xfs_buf *bp)
Dave Chinnere6f76672012-11-12 22:54:15 +1100232{
Dave Chinner24df33b2013-04-12 07:30:21 +1000233 __read_verify(bp, XFS_DIR2_LEAFN_MAGIC);
Dave Chinnere6f76672012-11-12 22:54:15 +1100234}
235
Dave Chinner24df33b2013-04-12 07:30:21 +1000236static void
237xfs_dir3_leafn_write_verify(
238 struct xfs_buf *bp)
239{
240 __write_verify(bp, XFS_DIR2_LEAFN_MAGIC);
241}
242
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100243const struct xfs_buf_ops xfs_dir3_leaf1_buf_ops = {
Dave Chinner24df33b2013-04-12 07:30:21 +1000244 .verify_read = xfs_dir3_leaf1_read_verify,
245 .verify_write = xfs_dir3_leaf1_write_verify,
Dave Chinner1813dd62012-11-14 17:54:40 +1100246};
247
Dave Chinner24df33b2013-04-12 07:30:21 +1000248const struct xfs_buf_ops xfs_dir3_leafn_buf_ops = {
249 .verify_read = xfs_dir3_leafn_read_verify,
250 .verify_write = xfs_dir3_leafn_write_verify,
Dave Chinner1813dd62012-11-14 17:54:40 +1100251};
Dave Chinnere6f76672012-11-12 22:54:15 +1100252
253static int
Dave Chinner24df33b2013-04-12 07:30:21 +1000254xfs_dir3_leaf_read(
Dave Chinnere6f76672012-11-12 22:54:15 +1100255 struct xfs_trans *tp,
256 struct xfs_inode *dp,
257 xfs_dablk_t fbno,
258 xfs_daddr_t mappedbno,
259 struct xfs_buf **bpp)
260{
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100261 int err;
262
263 err = xfs_da_read_buf(tp, dp, fbno, mappedbno, bpp,
Dave Chinner24df33b2013-04-12 07:30:21 +1000264 XFS_DATA_FORK, &xfs_dir3_leaf1_buf_ops);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100265 if (!err && tp)
Dave Chinner61fe1352013-04-03 16:11:30 +1100266 xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_DIR_LEAF1_BUF);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100267 return err;
Dave Chinnere6f76672012-11-12 22:54:15 +1100268}
269
270int
Dave Chinner24df33b2013-04-12 07:30:21 +1000271xfs_dir3_leafn_read(
Dave Chinnere6f76672012-11-12 22:54:15 +1100272 struct xfs_trans *tp,
273 struct xfs_inode *dp,
274 xfs_dablk_t fbno,
275 xfs_daddr_t mappedbno,
276 struct xfs_buf **bpp)
277{
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100278 int err;
279
280 err = xfs_da_read_buf(tp, dp, fbno, mappedbno, bpp,
Dave Chinner24df33b2013-04-12 07:30:21 +1000281 XFS_DATA_FORK, &xfs_dir3_leafn_buf_ops);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100282 if (!err && tp)
Dave Chinner61fe1352013-04-03 16:11:30 +1100283 xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_DIR_LEAFN_BUF);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100284 return err;
Dave Chinner24df33b2013-04-12 07:30:21 +1000285}
286
287/*
288 * Initialize a new leaf block, leaf1 or leafn magic accepted.
289 */
290static void
291xfs_dir3_leaf_init(
292 struct xfs_mount *mp,
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100293 struct xfs_trans *tp,
Dave Chinner24df33b2013-04-12 07:30:21 +1000294 struct xfs_buf *bp,
295 xfs_ino_t owner,
296 __uint16_t type)
297{
298 struct xfs_dir2_leaf *leaf = bp->b_addr;
299
300 ASSERT(type == XFS_DIR2_LEAF1_MAGIC || type == XFS_DIR2_LEAFN_MAGIC);
301
302 if (xfs_sb_version_hascrc(&mp->m_sb)) {
303 struct xfs_dir3_leaf_hdr *leaf3 = bp->b_addr;
304
305 memset(leaf3, 0, sizeof(*leaf3));
306
307 leaf3->info.hdr.magic = (type == XFS_DIR2_LEAF1_MAGIC)
308 ? cpu_to_be16(XFS_DIR3_LEAF1_MAGIC)
309 : cpu_to_be16(XFS_DIR3_LEAFN_MAGIC);
310 leaf3->info.blkno = cpu_to_be64(bp->b_bn);
311 leaf3->info.owner = cpu_to_be64(owner);
312 uuid_copy(&leaf3->info.uuid, &mp->m_sb.sb_uuid);
313 } else {
314 memset(leaf, 0, sizeof(*leaf));
315 leaf->hdr.info.magic = cpu_to_be16(type);
316 }
317
318 /*
319 * If it's a leaf-format directory initialize the tail.
320 * Caller is responsible for initialising the bests table.
321 */
322 if (type == XFS_DIR2_LEAF1_MAGIC) {
323 struct xfs_dir2_leaf_tail *ltp;
324
325 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
326 ltp->bestcount = 0;
327 bp->b_ops = &xfs_dir3_leaf1_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100328 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_LEAF1_BUF);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100329 } else {
Dave Chinner24df33b2013-04-12 07:30:21 +1000330 bp->b_ops = &xfs_dir3_leafn_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100331 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_LEAFN_BUF);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100332 }
Dave Chinner24df33b2013-04-12 07:30:21 +1000333}
334
335int
336xfs_dir3_leaf_get_buf(
337 xfs_da_args_t *args,
338 xfs_dir2_db_t bno,
339 struct xfs_buf **bpp,
340 __uint16_t magic)
341{
342 struct xfs_inode *dp = args->dp;
343 struct xfs_trans *tp = args->trans;
344 struct xfs_mount *mp = dp->i_mount;
345 struct xfs_buf *bp;
346 int error;
347
348 ASSERT(magic == XFS_DIR2_LEAF1_MAGIC || magic == XFS_DIR2_LEAFN_MAGIC);
349 ASSERT(bno >= XFS_DIR2_LEAF_FIRSTDB(mp) &&
350 bno < XFS_DIR2_FREE_FIRSTDB(mp));
351
352 error = xfs_da_get_buf(tp, dp, xfs_dir2_db_to_da(mp, bno), -1, &bp,
353 XFS_DATA_FORK);
354 if (error)
355 return error;
356
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100357 xfs_dir3_leaf_init(mp, tp, bp, dp->i_ino, magic);
Dave Chinner41419562013-10-29 22:11:50 +1100358 xfs_dir3_leaf_log_header(tp, dp, bp);
Dave Chinner24df33b2013-04-12 07:30:21 +1000359 if (magic == XFS_DIR2_LEAF1_MAGIC)
360 xfs_dir3_leaf_log_tail(tp, bp);
361 *bpp = bp;
362 return 0;
Dave Chinnere6f76672012-11-12 22:54:15 +1100363}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365/*
366 * Convert a block form directory to a leaf form directory.
367 */
368int /* error */
369xfs_dir2_block_to_leaf(
370 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000371 struct xfs_buf *dbp) /* input block's buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
Nathan Scott68b3a102006-03-17 17:27:19 +1100373 __be16 *bestsp; /* leaf's bestsp entries */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 xfs_dablk_t blkno; /* leaf block's bno */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200375 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 xfs_dir2_leaf_entry_t *blp; /* block's leaf entries */
377 xfs_dir2_block_tail_t *btp; /* block's tail */
378 xfs_inode_t *dp; /* incore directory inode */
379 int error; /* error return code */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000380 struct xfs_buf *lbp; /* leaf block's buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 xfs_dir2_db_t ldb; /* leaf block's bno */
382 xfs_dir2_leaf_t *leaf; /* leaf structure */
383 xfs_dir2_leaf_tail_t *ltp; /* leaf's tail */
384 xfs_mount_t *mp; /* filesystem mount point */
385 int needlog; /* need to log block header */
386 int needscan; /* need to rescan bestfree */
387 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner33363fe2013-04-03 16:11:22 +1100388 struct xfs_dir2_data_free *bf;
Dave Chinner24df33b2013-04-12 07:30:21 +1000389 struct xfs_dir2_leaf_entry *ents;
390 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000392 trace_xfs_dir2_block_to_leaf(args);
393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 dp = args->dp;
395 mp = dp->i_mount;
396 tp = args->trans;
397 /*
398 * Add the leaf block to the inode.
399 * This interface will only put blocks in the leaf/node range.
400 * Since that's empty now, we'll get the root (block 0 in range).
401 */
402 if ((error = xfs_da_grow_inode(args, &blkno))) {
403 return error;
404 }
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000405 ldb = xfs_dir2_da_to_db(mp, blkno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 ASSERT(ldb == XFS_DIR2_LEAF_FIRSTDB(mp));
407 /*
408 * Initialize the leaf block, get a buffer for it.
409 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000410 error = xfs_dir3_leaf_get_buf(args, ldb, &lbp, XFS_DIR2_LEAF1_MAGIC);
411 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 return error;
Dave Chinner24df33b2013-04-12 07:30:21 +1000413
Dave Chinner1d9025e2012-06-22 18:50:14 +1000414 leaf = lbp->b_addr;
415 hdr = dbp->b_addr;
Dave Chinner33363fe2013-04-03 16:11:22 +1100416 xfs_dir3_data_check(dp, dbp);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200417 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000418 blp = xfs_dir2_block_leaf_p(btp);
Dave Chinner2ca98772013-10-29 22:11:49 +1100419 bf = dp->d_ops->data_bestfree_p(hdr);
Dave Chinner41419562013-10-29 22:11:50 +1100420 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 /*
423 * Set the counts in the leaf header.
424 */
Dave Chinner01ba43b2013-10-29 22:11:52 +1100425 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000426 leafhdr.count = be32_to_cpu(btp->count);
427 leafhdr.stale = be32_to_cpu(btp->stale);
Dave Chinner01ba43b2013-10-29 22:11:52 +1100428 dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr);
Dave Chinner41419562013-10-29 22:11:50 +1100429 xfs_dir3_leaf_log_header(tp, dp, lbp);
Dave Chinner24df33b2013-04-12 07:30:21 +1000430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 /*
432 * Could compact these but I think we always do the conversion
433 * after squeezing out stale entries.
434 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000435 memcpy(ents, blp, be32_to_cpu(btp->count) * sizeof(xfs_dir2_leaf_entry_t));
Dave Chinner41419562013-10-29 22:11:50 +1100436 xfs_dir3_leaf_log_ents(tp, dp, lbp, 0, leafhdr.count - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 needscan = 0;
438 needlog = 1;
439 /*
440 * Make the space formerly occupied by the leaf entries and block
441 * tail be free.
442 */
Dave Chinner2ca98772013-10-29 22:11:49 +1100443 xfs_dir2_data_make_free(tp, dp, dbp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200444 (xfs_dir2_data_aoff_t)((char *)blp - (char *)hdr),
445 (xfs_dir2_data_aoff_t)((char *)hdr + mp->m_dirblksize -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 (char *)blp),
447 &needlog, &needscan);
448 /*
449 * Fix up the block header, make it a data block.
450 */
Dave Chinner33363fe2013-04-03 16:11:22 +1100451 dbp->b_ops = &xfs_dir3_data_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100452 xfs_trans_buf_set_type(tp, dbp, XFS_BLFT_DIR_DATA_BUF);
Dave Chinner33363fe2013-04-03 16:11:22 +1100453 if (hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC))
454 hdr->magic = cpu_to_be32(XFS_DIR2_DATA_MAGIC);
455 else
456 hdr->magic = cpu_to_be32(XFS_DIR3_DATA_MAGIC);
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +1100459 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 /*
461 * Set up leaf tail and bests table.
462 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000463 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100464 ltp->bestcount = cpu_to_be32(1);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000465 bestsp = xfs_dir2_leaf_bests_p(ltp);
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100466 bestsp[0] = bf[0].length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 /*
468 * Log the data header and leaf bests table.
469 */
470 if (needlog)
Dave Chinner2ca98772013-10-29 22:11:49 +1100471 xfs_dir2_data_log_header(tp, dp, dbp);
Dave Chinner41419562013-10-29 22:11:50 +1100472 xfs_dir3_leaf_check(dp, lbp);
Dave Chinner33363fe2013-04-03 16:11:22 +1100473 xfs_dir3_data_check(dp, dbp);
Dave Chinner24df33b2013-04-12 07:30:21 +1000474 xfs_dir3_leaf_log_bests(tp, lbp, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 return 0;
476}
477
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200478STATIC void
Dave Chinner24df33b2013-04-12 07:30:21 +1000479xfs_dir3_leaf_find_stale(
480 struct xfs_dir3_icleaf_hdr *leafhdr,
481 struct xfs_dir2_leaf_entry *ents,
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200482 int index,
483 int *lowstale,
484 int *highstale)
485{
486 /*
487 * Find the first stale entry before our index, if any.
488 */
489 for (*lowstale = index - 1; *lowstale >= 0; --*lowstale) {
Dave Chinner24df33b2013-04-12 07:30:21 +1000490 if (ents[*lowstale].address ==
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200491 cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
492 break;
493 }
494
495 /*
496 * Find the first stale entry at or after our index, if any.
497 * Stop if the result would require moving more entries than using
498 * lowstale.
499 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000500 for (*highstale = index; *highstale < leafhdr->count; ++*highstale) {
501 if (ents[*highstale].address ==
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200502 cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
503 break;
504 if (*lowstale >= 0 && index - *lowstale <= *highstale - index)
505 break;
506 }
507}
508
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200509struct xfs_dir2_leaf_entry *
Dave Chinner24df33b2013-04-12 07:30:21 +1000510xfs_dir3_leaf_find_entry(
511 struct xfs_dir3_icleaf_hdr *leafhdr,
512 struct xfs_dir2_leaf_entry *ents,
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200513 int index, /* leaf table position */
514 int compact, /* need to compact leaves */
515 int lowstale, /* index of prev stale leaf */
516 int highstale, /* index of next stale leaf */
517 int *lfloglow, /* low leaf logging index */
518 int *lfloghigh) /* high leaf logging index */
519{
Dave Chinner24df33b2013-04-12 07:30:21 +1000520 if (!leafhdr->stale) {
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200521 xfs_dir2_leaf_entry_t *lep; /* leaf entry table pointer */
522
523 /*
524 * Now we need to make room to insert the leaf entry.
525 *
526 * If there are no stale entries, just insert a hole at index.
527 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000528 lep = &ents[index];
529 if (index < leafhdr->count)
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200530 memmove(lep + 1, lep,
Dave Chinner24df33b2013-04-12 07:30:21 +1000531 (leafhdr->count - index) * sizeof(*lep));
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200532
533 /*
534 * Record low and high logging indices for the leaf.
535 */
536 *lfloglow = index;
Dave Chinner24df33b2013-04-12 07:30:21 +1000537 *lfloghigh = leafhdr->count++;
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200538 return lep;
539 }
540
541 /*
542 * There are stale entries.
543 *
544 * We will use one of them for the new entry. It's probably not at
545 * the right location, so we'll have to shift some up or down first.
546 *
547 * If we didn't compact before, we need to find the nearest stale
548 * entries before and after our insertion point.
549 */
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200550 if (compact == 0)
Dave Chinner24df33b2013-04-12 07:30:21 +1000551 xfs_dir3_leaf_find_stale(leafhdr, ents, index,
552 &lowstale, &highstale);
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200553
554 /*
555 * If the low one is better, use it.
556 */
557 if (lowstale >= 0 &&
Dave Chinner24df33b2013-04-12 07:30:21 +1000558 (highstale == leafhdr->count ||
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200559 index - lowstale - 1 < highstale - index)) {
560 ASSERT(index - lowstale - 1 >= 0);
Dave Chinner24df33b2013-04-12 07:30:21 +1000561 ASSERT(ents[lowstale].address ==
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200562 cpu_to_be32(XFS_DIR2_NULL_DATAPTR));
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200563
564 /*
565 * Copy entries up to cover the stale entry and make room
566 * for the new entry.
567 */
568 if (index - lowstale - 1 > 0) {
Dave Chinner24df33b2013-04-12 07:30:21 +1000569 memmove(&ents[lowstale], &ents[lowstale + 1],
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200570 (index - lowstale - 1) *
Dave Chinner24df33b2013-04-12 07:30:21 +1000571 sizeof(xfs_dir2_leaf_entry_t));
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200572 }
573 *lfloglow = MIN(lowstale, *lfloglow);
574 *lfloghigh = MAX(index - 1, *lfloghigh);
Dave Chinner24df33b2013-04-12 07:30:21 +1000575 leafhdr->stale--;
576 return &ents[index - 1];
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200577 }
578
579 /*
580 * The high one is better, so use that one.
581 */
582 ASSERT(highstale - index >= 0);
Dave Chinner24df33b2013-04-12 07:30:21 +1000583 ASSERT(ents[highstale].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR));
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200584
585 /*
586 * Copy entries down to cover the stale entry and make room for the
587 * new entry.
588 */
589 if (highstale - index > 0) {
Dave Chinner24df33b2013-04-12 07:30:21 +1000590 memmove(&ents[index + 1], &ents[index],
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200591 (highstale - index) * sizeof(xfs_dir2_leaf_entry_t));
592 }
593 *lfloglow = MIN(index, *lfloglow);
594 *lfloghigh = MAX(highstale, *lfloghigh);
Dave Chinner24df33b2013-04-12 07:30:21 +1000595 leafhdr->stale--;
596 return &ents[index];
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200597}
598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599/*
600 * Add an entry to a leaf form directory.
601 */
602int /* error */
603xfs_dir2_leaf_addname(
604 xfs_da_args_t *args) /* operation arguments */
605{
Nathan Scott68b3a102006-03-17 17:27:19 +1100606 __be16 *bestsp; /* freespace table in leaf */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 int compact; /* need to compact leaves */
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200608 xfs_dir2_data_hdr_t *hdr; /* data block header */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000609 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 xfs_dir2_data_entry_t *dep; /* data block entry */
611 xfs_inode_t *dp; /* incore directory inode */
612 xfs_dir2_data_unused_t *dup; /* data unused entry */
613 int error; /* error return value */
614 int grown; /* allocated new data block */
615 int highstale; /* index of next stale leaf */
616 int i; /* temporary, index */
617 int index; /* leaf table position */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000618 struct xfs_buf *lbp; /* leaf's buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 xfs_dir2_leaf_t *leaf; /* leaf structure */
620 int length; /* length of new entry */
621 xfs_dir2_leaf_entry_t *lep; /* leaf entry table pointer */
622 int lfloglow; /* low leaf logging index */
623 int lfloghigh; /* high leaf logging index */
624 int lowstale; /* index of prev stale leaf */
625 xfs_dir2_leaf_tail_t *ltp; /* leaf tail pointer */
626 xfs_mount_t *mp; /* filesystem mount point */
627 int needbytes; /* leaf block bytes needed */
628 int needlog; /* need to log data header */
629 int needscan; /* need to rescan data free */
Nathan Scott3d693c62006-03-17 17:28:27 +1100630 __be16 *tagp; /* end of data entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 xfs_trans_t *tp; /* transaction pointer */
632 xfs_dir2_db_t use_block; /* data block number */
Dave Chinner33363fe2013-04-03 16:11:22 +1100633 struct xfs_dir2_data_free *bf; /* bestfree table */
Dave Chinner24df33b2013-04-12 07:30:21 +1000634 struct xfs_dir2_leaf_entry *ents;
635 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000637 trace_xfs_dir2_leaf_addname(args);
638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 dp = args->dp;
640 tp = args->trans;
641 mp = dp->i_mount;
Dave Chinnere6f76672012-11-12 22:54:15 +1100642
Dave Chinner24df33b2013-04-12 07:30:21 +1000643 error = xfs_dir3_leaf_read(tp, dp, mp->m_dirleafblk, -1, &lbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +1100644 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 return error;
Dave Chinnere6f76672012-11-12 22:54:15 +1100646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 /*
648 * Look up the entry by hash value and name.
649 * We know it's not there, our caller has already done a lookup.
650 * So the index is of the entry to insert in front of.
651 * But if there are dup hash values the index is of the first of those.
652 */
653 index = xfs_dir2_leaf_search_hash(args, lbp);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000654 leaf = lbp->b_addr;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000655 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
Dave Chinner41419562013-10-29 22:11:50 +1100656 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner01ba43b2013-10-29 22:11:52 +1100657 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000658 bestsp = xfs_dir2_leaf_bests_p(ltp);
Dave Chinner9d23fc82013-10-29 22:11:48 +1100659 length = dp->d_ops->data_entsize(args->namelen);
Dave Chinner24df33b2013-04-12 07:30:21 +1000660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 /*
662 * See if there are any entries with the same hash value
663 * and space in their block for the new entry.
664 * This is good because it puts multiple same-hash value entries
665 * in a data block, improving the lookup of those entries.
666 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000667 for (use_block = -1, lep = &ents[index];
668 index < leafhdr.count && be32_to_cpu(lep->hashval) == args->hashval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 index++, lep++) {
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100670 if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 continue;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000672 i = xfs_dir2_dataptr_to_db(mp, be32_to_cpu(lep->address));
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100673 ASSERT(i < be32_to_cpu(ltp->bestcount));
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200674 ASSERT(bestsp[i] != cpu_to_be16(NULLDATAOFF));
Nathan Scott68b3a102006-03-17 17:27:19 +1100675 if (be16_to_cpu(bestsp[i]) >= length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 use_block = i;
677 break;
678 }
679 }
680 /*
681 * Didn't find a block yet, linear search all the data blocks.
682 */
683 if (use_block == -1) {
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100684 for (i = 0; i < be32_to_cpu(ltp->bestcount); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 /*
686 * Remember a block we see that's missing.
687 */
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200688 if (bestsp[i] == cpu_to_be16(NULLDATAOFF) &&
689 use_block == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 use_block = i;
Nathan Scott68b3a102006-03-17 17:27:19 +1100691 else if (be16_to_cpu(bestsp[i]) >= length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 use_block = i;
693 break;
694 }
695 }
696 }
697 /*
698 * How many bytes do we need in the leaf block?
699 */
Christoph Hellwig22823962011-07-08 14:35:53 +0200700 needbytes = 0;
Dave Chinner24df33b2013-04-12 07:30:21 +1000701 if (!leafhdr.stale)
Christoph Hellwig22823962011-07-08 14:35:53 +0200702 needbytes += sizeof(xfs_dir2_leaf_entry_t);
703 if (use_block == -1)
704 needbytes += sizeof(xfs_dir2_data_off_t);
705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 /*
707 * Now kill use_block if it refers to a missing block, so we
708 * can use it as an indication of allocation needed.
709 */
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200710 if (use_block != -1 && bestsp[use_block] == cpu_to_be16(NULLDATAOFF))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 use_block = -1;
712 /*
713 * If we don't have enough free bytes but we can make enough
714 * by compacting out stale entries, we'll do that.
715 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000716 if ((char *)bestsp - (char *)&ents[leafhdr.count] < needbytes &&
717 leafhdr.stale > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 compact = 1;
Dave Chinner24df33b2013-04-12 07:30:21 +1000719
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 /*
721 * Otherwise if we don't have enough free bytes we need to
722 * convert to node form.
723 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000724 else if ((char *)bestsp - (char *)&ents[leafhdr.count] < needbytes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 /*
726 * Just checking or no space reservation, give up.
727 */
Barry Naujok6a178102008-05-21 16:42:05 +1000728 if ((args->op_flags & XFS_DA_OP_JUSTCHECK) ||
729 args->total == 0) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000730 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 return XFS_ERROR(ENOSPC);
732 }
733 /*
734 * Convert to node form.
735 */
736 error = xfs_dir2_leaf_to_node(args, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 if (error)
738 return error;
739 /*
740 * Then add the new entry.
741 */
742 return xfs_dir2_node_addname(args);
743 }
744 /*
745 * Otherwise it will fit without compaction.
746 */
747 else
748 compact = 0;
749 /*
750 * If just checking, then it will fit unless we needed to allocate
751 * a new data block.
752 */
Barry Naujok6a178102008-05-21 16:42:05 +1000753 if (args->op_flags & XFS_DA_OP_JUSTCHECK) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000754 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 return use_block == -1 ? XFS_ERROR(ENOSPC) : 0;
756 }
757 /*
758 * If no allocations are allowed, return now before we've
759 * changed anything.
760 */
761 if (args->total == 0 && use_block == -1) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000762 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 return XFS_ERROR(ENOSPC);
764 }
765 /*
766 * Need to compact the leaf entries, removing stale ones.
767 * Leave one stale entry behind - the one closest to our
768 * insertion index - and we'll shift that one to our insertion
769 * point later.
770 */
771 if (compact) {
Dave Chinner24df33b2013-04-12 07:30:21 +1000772 xfs_dir3_leaf_compact_x1(&leafhdr, ents, &index, &lowstale,
773 &highstale, &lfloglow, &lfloghigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 }
775 /*
776 * There are stale entries, so we'll need log-low and log-high
777 * impossibly bad values later.
778 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000779 else if (leafhdr.stale) {
780 lfloglow = leafhdr.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 lfloghigh = -1;
782 }
783 /*
784 * If there was no data block space found, we need to allocate
785 * a new one.
786 */
787 if (use_block == -1) {
788 /*
789 * Add the new data block.
790 */
791 if ((error = xfs_dir2_grow_inode(args, XFS_DIR2_DATA_SPACE,
792 &use_block))) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000793 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 return error;
795 }
796 /*
797 * Initialize the block.
798 */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100799 if ((error = xfs_dir3_data_init(args, use_block, &dbp))) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000800 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 return error;
802 }
803 /*
804 * If we're adding a new data block on the end we need to
805 * extend the bests table. Copy it up one entry.
806 */
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100807 if (use_block >= be32_to_cpu(ltp->bestcount)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 bestsp--;
809 memmove(&bestsp[0], &bestsp[1],
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100810 be32_to_cpu(ltp->bestcount) * sizeof(bestsp[0]));
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800811 be32_add_cpu(&ltp->bestcount, 1);
Dave Chinner24df33b2013-04-12 07:30:21 +1000812 xfs_dir3_leaf_log_tail(tp, lbp);
813 xfs_dir3_leaf_log_bests(tp, lbp, 0, be32_to_cpu(ltp->bestcount) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 }
815 /*
816 * If we're filling in a previously empty block just log it.
817 */
818 else
Dave Chinner24df33b2013-04-12 07:30:21 +1000819 xfs_dir3_leaf_log_bests(tp, lbp, use_block, use_block);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000820 hdr = dbp->b_addr;
Dave Chinner2ca98772013-10-29 22:11:49 +1100821 bf = dp->d_ops->data_bestfree_p(hdr);
Dave Chinner33363fe2013-04-03 16:11:22 +1100822 bestsp[use_block] = bf[0].length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 grown = 1;
Dave Chinnere4813572012-11-12 22:54:14 +1100824 } else {
825 /*
826 * Already had space in some data block.
827 * Just read that one in.
828 */
Dave Chinner33363fe2013-04-03 16:11:22 +1100829 error = xfs_dir3_data_read(tp, dp,
Dave Chinnere4813572012-11-12 22:54:14 +1100830 xfs_dir2_db_to_da(mp, use_block),
831 -1, &dbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +1100832 if (error) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000833 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 return error;
835 }
Dave Chinner1d9025e2012-06-22 18:50:14 +1000836 hdr = dbp->b_addr;
Dave Chinner2ca98772013-10-29 22:11:49 +1100837 bf = dp->d_ops->data_bestfree_p(hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 grown = 0;
839 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 /*
841 * Point to the biggest freespace in our data block.
842 */
843 dup = (xfs_dir2_data_unused_t *)
Dave Chinner33363fe2013-04-03 16:11:22 +1100844 ((char *)hdr + be16_to_cpu(bf[0].offset));
Nathan Scottad354eb2006-03-17 17:27:37 +1100845 ASSERT(be16_to_cpu(dup->length) >= length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 needscan = needlog = 0;
847 /*
848 * Mark the initial part of our freespace in use for the new entry.
849 */
Dave Chinner2ca98772013-10-29 22:11:49 +1100850 xfs_dir2_data_use_free(tp, dp, dbp, dup,
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200851 (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr), length,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 &needlog, &needscan);
853 /*
854 * Initialize our new entry (at last).
855 */
856 dep = (xfs_dir2_data_entry_t *)dup;
Christoph Hellwigff9901c2006-06-09 14:48:37 +1000857 dep->inumber = cpu_to_be64(args->inumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 dep->namelen = args->namelen;
859 memcpy(dep->name, args->name, dep->namelen);
Dave Chinner9d23fc82013-10-29 22:11:48 +1100860 dp->d_ops->data_put_ftype(dep, args->filetype);
861 tagp = dp->d_ops->data_entry_tag_p(dep);
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200862 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 /*
864 * Need to scan fix up the bestfree table.
865 */
866 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +1100867 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 /*
869 * Need to log the data block's header.
870 */
871 if (needlog)
Dave Chinner2ca98772013-10-29 22:11:49 +1100872 xfs_dir2_data_log_header(tp, dp, dbp);
Dave Chinner9d23fc82013-10-29 22:11:48 +1100873 xfs_dir2_data_log_entry(tp, dp, dbp, dep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 /*
875 * If the bests table needs to be changed, do it.
876 * Log the change unless we've already done that.
877 */
Dave Chinner33363fe2013-04-03 16:11:22 +1100878 if (be16_to_cpu(bestsp[use_block]) != be16_to_cpu(bf[0].length)) {
879 bestsp[use_block] = bf[0].length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 if (!grown)
Dave Chinner24df33b2013-04-12 07:30:21 +1000881 xfs_dir3_leaf_log_bests(tp, lbp, use_block, use_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 }
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200883
Dave Chinner24df33b2013-04-12 07:30:21 +1000884 lep = xfs_dir3_leaf_find_entry(&leafhdr, ents, index, compact, lowstale,
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200885 highstale, &lfloglow, &lfloghigh);
886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 /*
888 * Fill in the new leaf entry.
889 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100890 lep->hashval = cpu_to_be32(args->hashval);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000891 lep->address = cpu_to_be32(xfs_dir2_db_off_to_dataptr(mp, use_block,
Nathan Scott3d693c62006-03-17 17:28:27 +1100892 be16_to_cpu(*tagp)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 /*
894 * Log the leaf fields and give up the buffers.
895 */
Dave Chinner01ba43b2013-10-29 22:11:52 +1100896 dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr);
Dave Chinner41419562013-10-29 22:11:50 +1100897 xfs_dir3_leaf_log_header(tp, dp, lbp);
898 xfs_dir3_leaf_log_ents(tp, dp, lbp, lfloglow, lfloghigh);
899 xfs_dir3_leaf_check(dp, lbp);
Dave Chinner33363fe2013-04-03 16:11:22 +1100900 xfs_dir3_data_check(dp, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 return 0;
902}
903
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904/*
905 * Compact out any stale entries in the leaf.
906 * Log the header and changed leaf entries, if any.
907 */
908void
Dave Chinner24df33b2013-04-12 07:30:21 +1000909xfs_dir3_leaf_compact(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 xfs_da_args_t *args, /* operation arguments */
Dave Chinner24df33b2013-04-12 07:30:21 +1000911 struct xfs_dir3_icleaf_hdr *leafhdr,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000912 struct xfs_buf *bp) /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913{
914 int from; /* source leaf index */
915 xfs_dir2_leaf_t *leaf; /* leaf structure */
916 int loglow; /* first leaf entry to log */
917 int to; /* target leaf index */
Dave Chinner24df33b2013-04-12 07:30:21 +1000918 struct xfs_dir2_leaf_entry *ents;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100919 struct xfs_inode *dp = args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
Dave Chinner1d9025e2012-06-22 18:50:14 +1000921 leaf = bp->b_addr;
Dave Chinner24df33b2013-04-12 07:30:21 +1000922 if (!leafhdr->stale)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 return;
Dave Chinner24df33b2013-04-12 07:30:21 +1000924
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 /*
926 * Compress out the stale entries in place.
927 */
Dave Chinner01ba43b2013-10-29 22:11:52 +1100928 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000929 for (from = to = 0, loglow = -1; from < leafhdr->count; from++) {
930 if (ents[from].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 continue;
932 /*
933 * Only actually copy the entries that are different.
934 */
935 if (from > to) {
936 if (loglow == -1)
937 loglow = to;
Dave Chinner24df33b2013-04-12 07:30:21 +1000938 ents[to] = ents[from];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 }
940 to++;
941 }
942 /*
943 * Update and log the header, log the leaf entries.
944 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000945 ASSERT(leafhdr->stale == from - to);
946 leafhdr->count -= leafhdr->stale;
947 leafhdr->stale = 0;
948
Dave Chinner01ba43b2013-10-29 22:11:52 +1100949 dp->d_ops->leaf_hdr_to_disk(leaf, leafhdr);
950 xfs_dir3_leaf_log_header(args->trans, dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 if (loglow != -1)
Dave Chinner01ba43b2013-10-29 22:11:52 +1100952 xfs_dir3_leaf_log_ents(args->trans, dp, bp, loglow, to - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953}
954
955/*
956 * Compact the leaf entries, removing stale ones.
957 * Leave one stale entry behind - the one closest to our
958 * insertion index - and the caller will shift that one to our insertion
959 * point later.
960 * Return new insertion index, where the remaining stale entry is,
961 * and leaf logging indices.
962 */
963void
Dave Chinner24df33b2013-04-12 07:30:21 +1000964xfs_dir3_leaf_compact_x1(
965 struct xfs_dir3_icleaf_hdr *leafhdr,
966 struct xfs_dir2_leaf_entry *ents,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 int *indexp, /* insertion index */
968 int *lowstalep, /* out: stale entry before us */
969 int *highstalep, /* out: stale entry after us */
970 int *lowlogp, /* out: low log index */
971 int *highlogp) /* out: high log index */
972{
973 int from; /* source copy index */
974 int highstale; /* stale entry at/after index */
975 int index; /* insertion index */
976 int keepstale; /* source index of kept stale */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 int lowstale; /* stale entry before index */
978 int newindex=0; /* new insertion index */
979 int to; /* destination copy index */
980
Dave Chinner24df33b2013-04-12 07:30:21 +1000981 ASSERT(leafhdr->stale > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 index = *indexp;
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200983
Dave Chinner24df33b2013-04-12 07:30:21 +1000984 xfs_dir3_leaf_find_stale(leafhdr, ents, index, &lowstale, &highstale);
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200985
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 /*
987 * Pick the better of lowstale and highstale.
988 */
989 if (lowstale >= 0 &&
Dave Chinner24df33b2013-04-12 07:30:21 +1000990 (highstale == leafhdr->count ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 index - lowstale <= highstale - index))
992 keepstale = lowstale;
993 else
994 keepstale = highstale;
995 /*
996 * Copy the entries in place, removing all the stale entries
997 * except keepstale.
998 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000999 for (from = to = 0; from < leafhdr->count; from++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 /*
1001 * Notice the new value of index.
1002 */
1003 if (index == from)
1004 newindex = to;
1005 if (from != keepstale &&
Dave Chinner24df33b2013-04-12 07:30:21 +10001006 ents[from].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 if (from == to)
1008 *lowlogp = to;
1009 continue;
1010 }
1011 /*
1012 * Record the new keepstale value for the insertion.
1013 */
1014 if (from == keepstale)
1015 lowstale = highstale = to;
1016 /*
1017 * Copy only the entries that have moved.
1018 */
1019 if (from > to)
Dave Chinner24df33b2013-04-12 07:30:21 +10001020 ents[to] = ents[from];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 to++;
1022 }
1023 ASSERT(from > to);
1024 /*
1025 * If the insertion point was past the last entry,
1026 * set the new insertion point accordingly.
1027 */
1028 if (index == from)
1029 newindex = to;
1030 *indexp = newindex;
1031 /*
1032 * Adjust the leaf header values.
1033 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001034 leafhdr->count -= from - to;
1035 leafhdr->stale = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 /*
1037 * Remember the low/high stale value only in the "right"
1038 * direction.
1039 */
1040 if (lowstale >= newindex)
1041 lowstale = -1;
1042 else
Dave Chinner24df33b2013-04-12 07:30:21 +10001043 highstale = leafhdr->count;
1044 *highlogp = leafhdr->count - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 *lowstalep = lowstale;
1046 *highstalep = highstale;
1047}
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049/*
1050 * Log the bests entries indicated from a leaf1 block.
1051 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001052static void
Dave Chinner24df33b2013-04-12 07:30:21 +10001053xfs_dir3_leaf_log_bests(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 xfs_trans_t *tp, /* transaction pointer */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001055 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 int first, /* first entry to log */
1057 int last) /* last entry to log */
1058{
Nathan Scott68b3a102006-03-17 17:27:19 +11001059 __be16 *firstb; /* pointer to first entry */
1060 __be16 *lastb; /* pointer to last entry */
Dave Chinner24df33b2013-04-12 07:30:21 +10001061 struct xfs_dir2_leaf *leaf = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
1063
Dave Chinner24df33b2013-04-12 07:30:21 +10001064 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC) ||
1065 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAF1_MAGIC));
1066
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001067 ltp = xfs_dir2_leaf_tail_p(tp->t_mountp, leaf);
1068 firstb = xfs_dir2_leaf_bests_p(ltp) + first;
1069 lastb = xfs_dir2_leaf_bests_p(ltp) + last;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001070 xfs_trans_log_buf(tp, bp, (uint)((char *)firstb - (char *)leaf),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 (uint)((char *)lastb - (char *)leaf + sizeof(*lastb) - 1));
1072}
1073
1074/*
1075 * Log the leaf entries indicated from a leaf1 or leafn block.
1076 */
1077void
Dave Chinner24df33b2013-04-12 07:30:21 +10001078xfs_dir3_leaf_log_ents(
Dave Chinner41419562013-10-29 22:11:50 +11001079 struct xfs_trans *tp,
1080 struct xfs_inode *dp,
1081 struct xfs_buf *bp,
1082 int first,
1083 int last)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084{
1085 xfs_dir2_leaf_entry_t *firstlep; /* pointer to first entry */
1086 xfs_dir2_leaf_entry_t *lastlep; /* pointer to last entry */
Dave Chinner24df33b2013-04-12 07:30:21 +10001087 struct xfs_dir2_leaf *leaf = bp->b_addr;
1088 struct xfs_dir2_leaf_entry *ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001090 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC) ||
Dave Chinner24df33b2013-04-12 07:30:21 +10001091 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAF1_MAGIC) ||
1092 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
1093 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC));
1094
Dave Chinner41419562013-10-29 22:11:50 +11001095 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001096 firstlep = &ents[first];
1097 lastlep = &ents[last];
Dave Chinner1d9025e2012-06-22 18:50:14 +10001098 xfs_trans_log_buf(tp, bp, (uint)((char *)firstlep - (char *)leaf),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 (uint)((char *)lastlep - (char *)leaf + sizeof(*lastlep) - 1));
1100}
1101
1102/*
1103 * Log the header of the leaf1 or leafn block.
1104 */
1105void
Dave Chinner24df33b2013-04-12 07:30:21 +10001106xfs_dir3_leaf_log_header(
Dave Chinner1d9025e2012-06-22 18:50:14 +10001107 struct xfs_trans *tp,
Dave Chinner41419562013-10-29 22:11:50 +11001108 struct xfs_inode *dp,
Dave Chinner1d9025e2012-06-22 18:50:14 +10001109 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110{
Dave Chinner24df33b2013-04-12 07:30:21 +10001111 struct xfs_dir2_leaf *leaf = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001113 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC) ||
Dave Chinner24df33b2013-04-12 07:30:21 +10001114 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAF1_MAGIC) ||
1115 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
1116 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC));
1117
Dave Chinner1d9025e2012-06-22 18:50:14 +10001118 xfs_trans_log_buf(tp, bp, (uint)((char *)&leaf->hdr - (char *)leaf),
Dave Chinner1c9a5b22013-10-30 09:15:02 +11001119 dp->d_ops->leaf_hdr_size - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120}
1121
1122/*
1123 * Log the tail of the leaf1 block.
1124 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001125STATIC void
Dave Chinner24df33b2013-04-12 07:30:21 +10001126xfs_dir3_leaf_log_tail(
Dave Chinner1d9025e2012-06-22 18:50:14 +10001127 struct xfs_trans *tp,
1128 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129{
Dave Chinner24df33b2013-04-12 07:30:21 +10001130 struct xfs_dir2_leaf *leaf = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
Dave Chinner24df33b2013-04-12 07:30:21 +10001132 struct xfs_mount *mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
Dave Chinner24df33b2013-04-12 07:30:21 +10001134 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC) ||
1135 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAF1_MAGIC) ||
1136 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
1137 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC));
1138
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001139 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001140 xfs_trans_log_buf(tp, bp, (uint)((char *)ltp - (char *)leaf),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 (uint)(mp->m_dirblksize - 1));
1142}
1143
1144/*
1145 * Look up the entry referred to by args in the leaf format directory.
1146 * Most of the work is done by the xfs_dir2_leaf_lookup_int routine which
1147 * is also used by the node-format code.
1148 */
1149int
1150xfs_dir2_leaf_lookup(
1151 xfs_da_args_t *args) /* operation arguments */
1152{
Dave Chinner1d9025e2012-06-22 18:50:14 +10001153 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 xfs_dir2_data_entry_t *dep; /* data block entry */
1155 xfs_inode_t *dp; /* incore directory inode */
1156 int error; /* error return code */
1157 int index; /* found entry index */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001158 struct xfs_buf *lbp; /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 xfs_dir2_leaf_t *leaf; /* leaf structure */
1160 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1161 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner24df33b2013-04-12 07:30:21 +10001162 struct xfs_dir2_leaf_entry *ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001164 trace_xfs_dir2_leaf_lookup(args);
1165
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 /*
1167 * Look up name in the leaf block, returning both buffers and index.
1168 */
1169 if ((error = xfs_dir2_leaf_lookup_int(args, &lbp, &index, &dbp))) {
1170 return error;
1171 }
1172 tp = args->trans;
1173 dp = args->dp;
Dave Chinner41419562013-10-29 22:11:50 +11001174 xfs_dir3_leaf_check(dp, lbp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001175 leaf = lbp->b_addr;
Dave Chinner41419562013-10-29 22:11:50 +11001176 ents = dp->d_ops->leaf_ents_p(leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 /*
1178 * Get to the leaf entry and contained data entry address.
1179 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001180 lep = &ents[index];
1181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 /*
1183 * Point to the data entry.
1184 */
1185 dep = (xfs_dir2_data_entry_t *)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001186 ((char *)dbp->b_addr +
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001187 xfs_dir2_dataptr_to_off(dp->i_mount, be32_to_cpu(lep->address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 /*
Barry Naujok384f3ce2008-05-21 16:58:22 +10001189 * Return the found inode number & CI name if appropriate
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +10001191 args->inumber = be64_to_cpu(dep->inumber);
Dave Chinner9d23fc82013-10-29 22:11:48 +11001192 args->filetype = dp->d_ops->data_get_ftype(dep);
Barry Naujok384f3ce2008-05-21 16:58:22 +10001193 error = xfs_dir_cilookup_result(args, dep->name, dep->namelen);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001194 xfs_trans_brelse(tp, dbp);
1195 xfs_trans_brelse(tp, lbp);
Barry Naujok384f3ce2008-05-21 16:58:22 +10001196 return XFS_ERROR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197}
1198
1199/*
1200 * Look up name/hash in the leaf block.
1201 * Fill in indexp with the found index, and dbpp with the data buffer.
1202 * If not found dbpp will be NULL, and ENOENT comes back.
1203 * lbpp will always be filled in with the leaf buffer unless there's an error.
1204 */
1205static int /* error */
1206xfs_dir2_leaf_lookup_int(
1207 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001208 struct xfs_buf **lbpp, /* out: leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 int *indexp, /* out: index in leaf block */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001210 struct xfs_buf **dbpp) /* out: data buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211{
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001212 xfs_dir2_db_t curdb = -1; /* current data block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001213 struct xfs_buf *dbp = NULL; /* data buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 xfs_dir2_data_entry_t *dep; /* data entry */
1215 xfs_inode_t *dp; /* incore directory inode */
1216 int error; /* error return code */
1217 int index; /* index in leaf block */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001218 struct xfs_buf *lbp; /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1220 xfs_dir2_leaf_t *leaf; /* leaf structure */
1221 xfs_mount_t *mp; /* filesystem mount point */
1222 xfs_dir2_db_t newdb; /* new data block number */
1223 xfs_trans_t *tp; /* transaction pointer */
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001224 xfs_dir2_db_t cidb = -1; /* case match data block no. */
Barry Naujok5163f952008-05-21 16:41:01 +10001225 enum xfs_dacmp cmp; /* name compare result */
Dave Chinner24df33b2013-04-12 07:30:21 +10001226 struct xfs_dir2_leaf_entry *ents;
1227 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 dp = args->dp;
1230 tp = args->trans;
1231 mp = dp->i_mount;
Dave Chinnere6f76672012-11-12 22:54:15 +11001232
Dave Chinner24df33b2013-04-12 07:30:21 +10001233 error = xfs_dir3_leaf_read(tp, dp, mp->m_dirleafblk, -1, &lbp);
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001234 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 return error;
Dave Chinnere6f76672012-11-12 22:54:15 +11001236
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 *lbpp = lbp;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001238 leaf = lbp->b_addr;
Dave Chinner41419562013-10-29 22:11:50 +11001239 xfs_dir3_leaf_check(dp, lbp);
1240 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner01ba43b2013-10-29 22:11:52 +11001241 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001242
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 /*
1244 * Look for the first leaf entry with our hash value.
1245 */
1246 index = xfs_dir2_leaf_search_hash(args, lbp);
1247 /*
1248 * Loop over all the entries with the right hash value
1249 * looking to match the name.
1250 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001251 for (lep = &ents[index];
1252 index < leafhdr.count && be32_to_cpu(lep->hashval) == args->hashval;
1253 lep++, index++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 /*
1255 * Skip over stale leaf entries.
1256 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001257 if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 continue;
1259 /*
1260 * Get the new data block number.
1261 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001262 newdb = xfs_dir2_dataptr_to_db(mp, be32_to_cpu(lep->address));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 /*
1264 * If it's not the same as the old data block number,
1265 * need to pitch the old one and read the new one.
1266 */
1267 if (newdb != curdb) {
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001268 if (dbp)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001269 xfs_trans_brelse(tp, dbp);
Dave Chinner33363fe2013-04-03 16:11:22 +11001270 error = xfs_dir3_data_read(tp, dp,
Dave Chinnere4813572012-11-12 22:54:14 +11001271 xfs_dir2_db_to_da(mp, newdb),
1272 -1, &dbp);
Barry Naujok5163f952008-05-21 16:41:01 +10001273 if (error) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001274 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 return error;
1276 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 curdb = newdb;
1278 }
1279 /*
1280 * Point to the data entry.
1281 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001282 dep = (xfs_dir2_data_entry_t *)((char *)dbp->b_addr +
Barry Naujok5163f952008-05-21 16:41:01 +10001283 xfs_dir2_dataptr_to_off(mp, be32_to_cpu(lep->address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 /*
Barry Naujok5163f952008-05-21 16:41:01 +10001285 * Compare name and if it's an exact match, return the index
1286 * and buffer. If it's the first case-insensitive match, store
1287 * the index and buffer and continue looking for an exact match.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 */
Barry Naujok5163f952008-05-21 16:41:01 +10001289 cmp = mp->m_dirnameops->compname(args, dep->name, dep->namelen);
1290 if (cmp != XFS_CMP_DIFFERENT && cmp != args->cmpresult) {
1291 args->cmpresult = cmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 *indexp = index;
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001293 /* case exact match: return the current buffer. */
Barry Naujok5163f952008-05-21 16:41:01 +10001294 if (cmp == XFS_CMP_EXACT) {
Barry Naujok5163f952008-05-21 16:41:01 +10001295 *dbpp = dbp;
1296 return 0;
1297 }
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001298 cidb = curdb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 }
1300 }
Barry Naujok6a178102008-05-21 16:42:05 +10001301 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
Barry Naujok5163f952008-05-21 16:41:01 +10001302 /*
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001303 * Here, we can only be doing a lookup (not a rename or remove).
1304 * If a case-insensitive match was found earlier, re-read the
1305 * appropriate data block if required and return it.
Barry Naujok5163f952008-05-21 16:41:01 +10001306 */
1307 if (args->cmpresult == XFS_CMP_CASE) {
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001308 ASSERT(cidb != -1);
1309 if (cidb != curdb) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001310 xfs_trans_brelse(tp, dbp);
Dave Chinner33363fe2013-04-03 16:11:22 +11001311 error = xfs_dir3_data_read(tp, dp,
Dave Chinnere4813572012-11-12 22:54:14 +11001312 xfs_dir2_db_to_da(mp, cidb),
1313 -1, &dbp);
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001314 if (error) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001315 xfs_trans_brelse(tp, lbp);
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001316 return error;
1317 }
1318 }
1319 *dbpp = dbp;
Barry Naujok5163f952008-05-21 16:41:01 +10001320 return 0;
1321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 /*
1323 * No match found, return ENOENT.
1324 */
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001325 ASSERT(cidb == -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 if (dbp)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001327 xfs_trans_brelse(tp, dbp);
1328 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 return XFS_ERROR(ENOENT);
1330}
1331
1332/*
1333 * Remove an entry from a leaf format directory.
1334 */
1335int /* error */
1336xfs_dir2_leaf_removename(
1337 xfs_da_args_t *args) /* operation arguments */
1338{
Nathan Scott68b3a102006-03-17 17:27:19 +11001339 __be16 *bestsp; /* leaf block best freespace */
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001340 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 xfs_dir2_db_t db; /* data block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001342 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 xfs_dir2_data_entry_t *dep; /* data entry structure */
1344 xfs_inode_t *dp; /* incore directory inode */
1345 int error; /* error return code */
1346 xfs_dir2_db_t i; /* temporary data block # */
1347 int index; /* index into leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001348 struct xfs_buf *lbp; /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 xfs_dir2_leaf_t *leaf; /* leaf structure */
1350 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1351 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
1352 xfs_mount_t *mp; /* filesystem mount point */
1353 int needlog; /* need to log data header */
1354 int needscan; /* need to rescan data frees */
1355 xfs_dir2_data_off_t oldbest; /* old value of best free */
1356 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner33363fe2013-04-03 16:11:22 +11001357 struct xfs_dir2_data_free *bf; /* bestfree table */
Dave Chinner24df33b2013-04-12 07:30:21 +10001358 struct xfs_dir2_leaf_entry *ents;
1359 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001361 trace_xfs_dir2_leaf_removename(args);
1362
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 /*
1364 * Lookup the leaf entry, get the leaf and data blocks read in.
1365 */
1366 if ((error = xfs_dir2_leaf_lookup_int(args, &lbp, &index, &dbp))) {
1367 return error;
1368 }
1369 dp = args->dp;
1370 tp = args->trans;
1371 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001372 leaf = lbp->b_addr;
1373 hdr = dbp->b_addr;
Dave Chinner33363fe2013-04-03 16:11:22 +11001374 xfs_dir3_data_check(dp, dbp);
Dave Chinner2ca98772013-10-29 22:11:49 +11001375 bf = dp->d_ops->data_bestfree_p(hdr);
Dave Chinner01ba43b2013-10-29 22:11:52 +11001376 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +11001377 ents = dp->d_ops->leaf_ents_p(leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 /*
1379 * Point to the leaf entry, use that to point to the data entry.
1380 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001381 lep = &ents[index];
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001382 db = xfs_dir2_dataptr_to_db(mp, be32_to_cpu(lep->address));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 dep = (xfs_dir2_data_entry_t *)
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001384 ((char *)hdr + xfs_dir2_dataptr_to_off(mp, be32_to_cpu(lep->address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 needscan = needlog = 0;
Dave Chinner33363fe2013-04-03 16:11:22 +11001386 oldbest = be16_to_cpu(bf[0].length);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001387 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
1388 bestsp = xfs_dir2_leaf_bests_p(ltp);
Nathan Scott68b3a102006-03-17 17:27:19 +11001389 ASSERT(be16_to_cpu(bestsp[db]) == oldbest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 /*
1391 * Mark the former data entry unused.
1392 */
Dave Chinner2ca98772013-10-29 22:11:49 +11001393 xfs_dir2_data_make_free(tp, dp, dbp,
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001394 (xfs_dir2_data_aoff_t)((char *)dep - (char *)hdr),
Dave Chinner9d23fc82013-10-29 22:11:48 +11001395 dp->d_ops->data_entsize(dep->namelen), &needlog, &needscan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 /*
1397 * We just mark the leaf entry stale by putting a null in it.
1398 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001399 leafhdr.stale++;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001400 dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr);
Dave Chinner41419562013-10-29 22:11:50 +11001401 xfs_dir3_leaf_log_header(tp, dp, lbp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001402
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001403 lep->address = cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
Dave Chinner41419562013-10-29 22:11:50 +11001404 xfs_dir3_leaf_log_ents(tp, dp, lbp, index, index);
Dave Chinner24df33b2013-04-12 07:30:21 +10001405
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 /*
1407 * Scan the freespace in the data block again if necessary,
1408 * log the data block header if necessary.
1409 */
1410 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +11001411 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 if (needlog)
Dave Chinner2ca98772013-10-29 22:11:49 +11001413 xfs_dir2_data_log_header(tp, dp, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 /*
1415 * If the longest freespace in the data block has changed,
1416 * put the new value in the bests table and log that.
1417 */
Dave Chinner33363fe2013-04-03 16:11:22 +11001418 if (be16_to_cpu(bf[0].length) != oldbest) {
1419 bestsp[db] = bf[0].length;
Dave Chinner24df33b2013-04-12 07:30:21 +10001420 xfs_dir3_leaf_log_bests(tp, lbp, db, db);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 }
Dave Chinner33363fe2013-04-03 16:11:22 +11001422 xfs_dir3_data_check(dp, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 /*
1424 * If the data block is now empty then get rid of the data block.
1425 */
Dave Chinner33363fe2013-04-03 16:11:22 +11001426 if (be16_to_cpu(bf[0].length) ==
Dave Chinner1c9a5b22013-10-30 09:15:02 +11001427 mp->m_dirblksize - dp->d_ops->data_entry_offset) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 ASSERT(db != mp->m_dirdatablk);
1429 if ((error = xfs_dir2_shrink_inode(args, db, dbp))) {
1430 /*
1431 * Nope, can't get rid of it because it caused
1432 * allocation of a bmap btree block to do so.
1433 * Just go on, returning success, leaving the
1434 * empty block in place.
1435 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001436 if (error == ENOSPC && args->total == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 error = 0;
Dave Chinner41419562013-10-29 22:11:50 +11001438 xfs_dir3_leaf_check(dp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 return error;
1440 }
1441 dbp = NULL;
1442 /*
1443 * If this is the last data block then compact the
1444 * bests table by getting rid of entries.
1445 */
Nathan Scottafbcb3f2006-03-17 17:27:28 +11001446 if (db == be32_to_cpu(ltp->bestcount) - 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 /*
1448 * Look for the last active entry (i).
1449 */
1450 for (i = db - 1; i > 0; i--) {
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001451 if (bestsp[i] != cpu_to_be16(NULLDATAOFF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 break;
1453 }
1454 /*
1455 * Copy the table down so inactive entries at the
1456 * end are removed.
1457 */
1458 memmove(&bestsp[db - i], bestsp,
Nathan Scottafbcb3f2006-03-17 17:27:28 +11001459 (be32_to_cpu(ltp->bestcount) - (db - i)) * sizeof(*bestsp));
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001460 be32_add_cpu(&ltp->bestcount, -(db - i));
Dave Chinner24df33b2013-04-12 07:30:21 +10001461 xfs_dir3_leaf_log_tail(tp, lbp);
1462 xfs_dir3_leaf_log_bests(tp, lbp, 0, be32_to_cpu(ltp->bestcount) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 } else
Nathan Scott68b3a102006-03-17 17:27:19 +11001464 bestsp[db] = cpu_to_be16(NULLDATAOFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 }
1466 /*
1467 * If the data block was not the first one, drop it.
1468 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001469 else if (db != mp->m_dirdatablk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 dbp = NULL;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001471
Dave Chinner41419562013-10-29 22:11:50 +11001472 xfs_dir3_leaf_check(dp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 /*
1474 * See if we can convert to block form.
1475 */
1476 return xfs_dir2_leaf_to_block(args, lbp, dbp);
1477}
1478
1479/*
1480 * Replace the inode number in a leaf format directory entry.
1481 */
1482int /* error */
1483xfs_dir2_leaf_replace(
1484 xfs_da_args_t *args) /* operation arguments */
1485{
Dave Chinner1d9025e2012-06-22 18:50:14 +10001486 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 xfs_dir2_data_entry_t *dep; /* data block entry */
1488 xfs_inode_t *dp; /* incore directory inode */
1489 int error; /* error return code */
1490 int index; /* index of leaf entry */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001491 struct xfs_buf *lbp; /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 xfs_dir2_leaf_t *leaf; /* leaf structure */
1493 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1494 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner24df33b2013-04-12 07:30:21 +10001495 struct xfs_dir2_leaf_entry *ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001497 trace_xfs_dir2_leaf_replace(args);
1498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 /*
1500 * Look up the entry.
1501 */
1502 if ((error = xfs_dir2_leaf_lookup_int(args, &lbp, &index, &dbp))) {
1503 return error;
1504 }
1505 dp = args->dp;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001506 leaf = lbp->b_addr;
Dave Chinner41419562013-10-29 22:11:50 +11001507 ents = dp->d_ops->leaf_ents_p(leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 /*
1509 * Point to the leaf entry, get data address from it.
1510 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001511 lep = &ents[index];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 /*
1513 * Point to the data entry.
1514 */
1515 dep = (xfs_dir2_data_entry_t *)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001516 ((char *)dbp->b_addr +
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001517 xfs_dir2_dataptr_to_off(dp->i_mount, be32_to_cpu(lep->address)));
Christoph Hellwigff9901c2006-06-09 14:48:37 +10001518 ASSERT(args->inumber != be64_to_cpu(dep->inumber));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 /*
1520 * Put the new inode number in, log it.
1521 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +10001522 dep->inumber = cpu_to_be64(args->inumber);
Dave Chinner9d23fc82013-10-29 22:11:48 +11001523 dp->d_ops->data_put_ftype(dep, args->filetype);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 tp = args->trans;
Dave Chinner9d23fc82013-10-29 22:11:48 +11001525 xfs_dir2_data_log_entry(tp, dp, dbp, dep);
Dave Chinner41419562013-10-29 22:11:50 +11001526 xfs_dir3_leaf_check(dp, lbp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001527 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 return 0;
1529}
1530
1531/*
1532 * Return index in the leaf block (lbp) which is either the first
1533 * one with this hash value, or if there are none, the insert point
1534 * for that hash value.
1535 */
1536int /* index value */
1537xfs_dir2_leaf_search_hash(
1538 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001539 struct xfs_buf *lbp) /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540{
1541 xfs_dahash_t hash=0; /* hash from this entry */
1542 xfs_dahash_t hashwant; /* hash value looking for */
1543 int high; /* high leaf index */
1544 int low; /* low leaf index */
1545 xfs_dir2_leaf_t *leaf; /* leaf structure */
1546 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1547 int mid=0; /* current leaf index */
Dave Chinner24df33b2013-04-12 07:30:21 +10001548 struct xfs_dir2_leaf_entry *ents;
1549 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
Dave Chinner1d9025e2012-06-22 18:50:14 +10001551 leaf = lbp->b_addr;
Dave Chinner41419562013-10-29 22:11:50 +11001552 ents = args->dp->d_ops->leaf_ents_p(leaf);
Dave Chinner01ba43b2013-10-29 22:11:52 +11001553 args->dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001554
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 /*
1556 * Note, the table cannot be empty, so we have to go through the loop.
1557 * Binary search the leaf entries looking for our hash value.
1558 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001559 for (lep = ents, low = 0, high = leafhdr.count - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 hashwant = args->hashval;
1561 low <= high; ) {
1562 mid = (low + high) >> 1;
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001563 if ((hash = be32_to_cpu(lep[mid].hashval)) == hashwant)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 break;
1565 if (hash < hashwant)
1566 low = mid + 1;
1567 else
1568 high = mid - 1;
1569 }
1570 /*
1571 * Found one, back up through all the equal hash values.
1572 */
1573 if (hash == hashwant) {
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001574 while (mid > 0 && be32_to_cpu(lep[mid - 1].hashval) == hashwant) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 mid--;
1576 }
1577 }
1578 /*
1579 * Need to point to an entry higher than ours.
1580 */
1581 else if (hash < hashwant)
1582 mid++;
1583 return mid;
1584}
1585
1586/*
1587 * Trim off a trailing data block. We know it's empty since the leaf
1588 * freespace table says so.
1589 */
1590int /* error */
1591xfs_dir2_leaf_trim_data(
1592 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001593 struct xfs_buf *lbp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 xfs_dir2_db_t db) /* data block number */
1595{
Nathan Scott68b3a102006-03-17 17:27:19 +11001596 __be16 *bestsp; /* leaf bests table */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001597 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 xfs_inode_t *dp; /* incore directory inode */
1599 int error; /* error return value */
1600 xfs_dir2_leaf_t *leaf; /* leaf structure */
1601 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
1602 xfs_mount_t *mp; /* filesystem mount point */
1603 xfs_trans_t *tp; /* transaction pointer */
1604
1605 dp = args->dp;
1606 mp = dp->i_mount;
1607 tp = args->trans;
1608 /*
1609 * Read the offending data block. We need its buffer.
1610 */
Dave Chinner33363fe2013-04-03 16:11:22 +11001611 error = xfs_dir3_data_read(tp, dp, xfs_dir2_db_to_da(mp, db), -1, &dbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001612 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
Dave Chinner1d9025e2012-06-22 18:50:14 +10001615 leaf = lbp->b_addr;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001616 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001617
1618#ifdef DEBUG
1619{
Dave Chinner1d9025e2012-06-22 18:50:14 +10001620 struct xfs_dir2_data_hdr *hdr = dbp->b_addr;
Dave Chinner2ca98772013-10-29 22:11:49 +11001621 struct xfs_dir2_data_free *bf = dp->d_ops->data_bestfree_p(hdr);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001622
Dave Chinner33363fe2013-04-03 16:11:22 +11001623 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
1624 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC));
1625 ASSERT(be16_to_cpu(bf[0].length) ==
Dave Chinner1c9a5b22013-10-30 09:15:02 +11001626 mp->m_dirblksize - dp->d_ops->data_entry_offset);
Nathan Scottafbcb3f2006-03-17 17:27:28 +11001627 ASSERT(db == be32_to_cpu(ltp->bestcount) - 1);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001628}
1629#endif
1630
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 /*
1632 * Get rid of the data block.
1633 */
1634 if ((error = xfs_dir2_shrink_inode(args, db, dbp))) {
1635 ASSERT(error != ENOSPC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001636 xfs_trans_brelse(tp, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 return error;
1638 }
1639 /*
1640 * Eliminate the last bests entry from the table.
1641 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001642 bestsp = xfs_dir2_leaf_bests_p(ltp);
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001643 be32_add_cpu(&ltp->bestcount, -1);
Nathan Scottafbcb3f2006-03-17 17:27:28 +11001644 memmove(&bestsp[1], &bestsp[0], be32_to_cpu(ltp->bestcount) * sizeof(*bestsp));
Dave Chinner24df33b2013-04-12 07:30:21 +10001645 xfs_dir3_leaf_log_tail(tp, lbp);
1646 xfs_dir3_leaf_log_bests(tp, lbp, 0, be32_to_cpu(ltp->bestcount) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 return 0;
1648}
1649
Christoph Hellwig22823962011-07-08 14:35:53 +02001650static inline size_t
Dave Chinner24df33b2013-04-12 07:30:21 +10001651xfs_dir3_leaf_size(
1652 struct xfs_dir3_icleaf_hdr *hdr,
Christoph Hellwig22823962011-07-08 14:35:53 +02001653 int counts)
1654{
Dave Chinner24df33b2013-04-12 07:30:21 +10001655 int entries;
1656 int hdrsize;
Christoph Hellwig22823962011-07-08 14:35:53 +02001657
Dave Chinner24df33b2013-04-12 07:30:21 +10001658 entries = hdr->count - hdr->stale;
1659 if (hdr->magic == XFS_DIR2_LEAF1_MAGIC ||
1660 hdr->magic == XFS_DIR2_LEAFN_MAGIC)
1661 hdrsize = sizeof(struct xfs_dir2_leaf_hdr);
1662 else
1663 hdrsize = sizeof(struct xfs_dir3_leaf_hdr);
1664
1665 return hdrsize + entries * sizeof(xfs_dir2_leaf_entry_t)
1666 + counts * sizeof(xfs_dir2_data_off_t)
1667 + sizeof(xfs_dir2_leaf_tail_t);
Christoph Hellwig22823962011-07-08 14:35:53 +02001668}
1669
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670/*
1671 * Convert node form directory to leaf form directory.
1672 * The root of the node form dir needs to already be a LEAFN block.
1673 * Just return if we can't do anything.
1674 */
1675int /* error */
1676xfs_dir2_node_to_leaf(
1677 xfs_da_state_t *state) /* directory operation state */
1678{
1679 xfs_da_args_t *args; /* operation arguments */
1680 xfs_inode_t *dp; /* incore directory inode */
1681 int error; /* error return code */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001682 struct xfs_buf *fbp; /* buffer for freespace block */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 xfs_fileoff_t fo; /* freespace file offset */
1684 xfs_dir2_free_t *free; /* freespace structure */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001685 struct xfs_buf *lbp; /* buffer for leaf block */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 xfs_dir2_leaf_tail_t *ltp; /* tail of leaf structure */
1687 xfs_dir2_leaf_t *leaf; /* leaf structure */
1688 xfs_mount_t *mp; /* filesystem mount point */
1689 int rval; /* successful free trim? */
1690 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner24df33b2013-04-12 07:30:21 +10001691 struct xfs_dir3_icleaf_hdr leafhdr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001692 struct xfs_dir3_icfree_hdr freehdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
1694 /*
1695 * There's more than a leaf level in the btree, so there must
1696 * be multiple leafn blocks. Give up.
1697 */
1698 if (state->path.active > 1)
1699 return 0;
1700 args = state->args;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001701
1702 trace_xfs_dir2_node_to_leaf(args);
1703
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 mp = state->mp;
1705 dp = args->dp;
1706 tp = args->trans;
1707 /*
1708 * Get the last offset in the file.
1709 */
1710 if ((error = xfs_bmap_last_offset(tp, dp, &fo, XFS_DATA_FORK))) {
1711 return error;
1712 }
1713 fo -= mp->m_dirblkfsbs;
1714 /*
1715 * If there are freespace blocks other than the first one,
1716 * take this opportunity to remove trailing empty freespace blocks
1717 * that may have been left behind during no-space-reservation
1718 * operations.
1719 */
1720 while (fo > mp->m_dirfreeblk) {
1721 if ((error = xfs_dir2_node_trim_free(args, fo, &rval))) {
1722 return error;
1723 }
1724 if (rval)
1725 fo -= mp->m_dirblkfsbs;
1726 else
1727 return 0;
1728 }
1729 /*
1730 * Now find the block just before the freespace block.
1731 */
1732 if ((error = xfs_bmap_last_before(tp, dp, &fo, XFS_DATA_FORK))) {
1733 return error;
1734 }
1735 /*
1736 * If it's not the single leaf block, give up.
1737 */
1738 if (XFS_FSB_TO_B(mp, fo) > XFS_DIR2_LEAF_OFFSET + mp->m_dirblksize)
1739 return 0;
1740 lbp = state->path.blk[0].bp;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001741 leaf = lbp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001742 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001743
1744 ASSERT(leafhdr.magic == XFS_DIR2_LEAFN_MAGIC ||
1745 leafhdr.magic == XFS_DIR3_LEAFN_MAGIC);
1746
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 /*
1748 * Read the freespace block.
1749 */
Dave Chinner20252072012-11-12 22:54:13 +11001750 error = xfs_dir2_free_read(tp, dp, mp->m_dirfreeblk, &fbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001751 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001753 free = fbp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001754 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001755
1756 ASSERT(!freehdr.firstdb);
Christoph Hellwig22823962011-07-08 14:35:53 +02001757
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 /*
1759 * Now see if the leafn and free data will fit in a leaf1.
1760 * If not, release the buffer and give up.
1761 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001762 if (xfs_dir3_leaf_size(&leafhdr, freehdr.nvalid) > mp->m_dirblksize) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001763 xfs_trans_brelse(tp, fbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 return 0;
1765 }
Christoph Hellwig22823962011-07-08 14:35:53 +02001766
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 /*
1768 * If the leaf has any stale entries in it, compress them out.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001770 if (leafhdr.stale)
1771 xfs_dir3_leaf_compact(args, &leafhdr, lbp);
Dave Chinnerb0f539d2012-11-14 17:53:49 +11001772
Dave Chinner24df33b2013-04-12 07:30:21 +10001773 lbp->b_ops = &xfs_dir3_leaf1_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +11001774 xfs_trans_buf_set_type(tp, lbp, XFS_BLFT_DIR_LEAF1_BUF);
Dave Chinner24df33b2013-04-12 07:30:21 +10001775 leafhdr.magic = (leafhdr.magic == XFS_DIR2_LEAFN_MAGIC)
1776 ? XFS_DIR2_LEAF1_MAGIC
1777 : XFS_DIR3_LEAF1_MAGIC;
Dave Chinnerb0f539d2012-11-14 17:53:49 +11001778
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 /*
1780 * Set up the leaf tail from the freespace block.
1781 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001782 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001783 ltp->bestcount = cpu_to_be32(freehdr.nvalid);
Dave Chinner24df33b2013-04-12 07:30:21 +10001784
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 /*
1786 * Set up the leaf bests table.
1787 */
Dave Chinner24dd0f52013-10-30 13:48:41 -05001788 memcpy(xfs_dir2_leaf_bests_p(ltp), dp->d_ops->free_bests_p(free),
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001789 freehdr.nvalid * sizeof(xfs_dir2_data_off_t));
Dave Chinner24df33b2013-04-12 07:30:21 +10001790
Dave Chinner01ba43b2013-10-29 22:11:52 +11001791 dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr);
Dave Chinner41419562013-10-29 22:11:50 +11001792 xfs_dir3_leaf_log_header(tp, dp, lbp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001793 xfs_dir3_leaf_log_bests(tp, lbp, 0, be32_to_cpu(ltp->bestcount) - 1);
1794 xfs_dir3_leaf_log_tail(tp, lbp);
Dave Chinner41419562013-10-29 22:11:50 +11001795 xfs_dir3_leaf_check(dp, lbp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001796
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 /*
1798 * Get rid of the freespace block.
1799 */
1800 error = xfs_dir2_shrink_inode(args, XFS_DIR2_FREE_FIRSTDB(mp), fbp);
1801 if (error) {
1802 /*
1803 * This can't fail here because it can only happen when
1804 * punching out the middle of an extent, and this is an
1805 * isolated block.
1806 */
1807 ASSERT(error != ENOSPC);
1808 return error;
1809 }
1810 fbp = NULL;
1811 /*
1812 * Now see if we can convert the single-leaf directory
1813 * down to a block form directory.
1814 * This routine always kills the dabuf for the leaf, so
1815 * eliminate it from the path.
1816 */
1817 error = xfs_dir2_leaf_to_block(args, lbp, NULL);
1818 state->path.blk[0].bp = NULL;
1819 return error;
1820}