blob: d36e97df1187ebc866e9c3885d6f848ca3373c5a [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
Eric Sandeence5028c2014-02-27 15:23:10 +1100182 if (xfs_sb_version_hascrc(&mp->m_sb) &&
183 !xfs_buf_verify_cksum(bp, XFS_DIR3_LEAF_CRC_OFF))
184 xfs_buf_ioerror(bp, EFSBADCRC);
185 else if (!xfs_dir3_leaf_verify(bp, magic))
Dave Chinnere6f76672012-11-12 22:54:15 +1100186 xfs_buf_ioerror(bp, EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100187
188 if (bp->b_error)
189 xfs_verifier_error(bp);
Dave Chinner612cfbf2012-11-14 17:52:32 +1100190}
Dave Chinnere6f76672012-11-12 22:54:15 +1100191
Dave Chinner612cfbf2012-11-14 17:52:32 +1100192static void
Dave Chinner24df33b2013-04-12 07:30:21 +1000193__write_verify(
194 struct xfs_buf *bp,
195 __uint16_t magic)
Dave Chinner612cfbf2012-11-14 17:52:32 +1100196{
Dave Chinner24df33b2013-04-12 07:30:21 +1000197 struct xfs_mount *mp = bp->b_target->bt_mount;
198 struct xfs_buf_log_item *bip = bp->b_fspriv;
199 struct xfs_dir3_leaf_hdr *hdr3 = bp->b_addr;
200
201 if (!xfs_dir3_leaf_verify(bp, magic)) {
Dave Chinner24df33b2013-04-12 07:30:21 +1000202 xfs_buf_ioerror(bp, EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100203 xfs_verifier_error(bp);
Dave Chinner24df33b2013-04-12 07:30:21 +1000204 return;
205 }
206
207 if (!xfs_sb_version_hascrc(&mp->m_sb))
208 return;
209
210 if (bip)
211 hdr3->info.lsn = cpu_to_be64(bip->bli_item.li_lsn);
212
Eric Sandeenf1dbcd72014-02-27 15:18:23 +1100213 xfs_buf_update_cksum(bp, XFS_DIR3_LEAF_CRC_OFF);
Dave Chinner612cfbf2012-11-14 17:52:32 +1100214}
215
216static void
Dave Chinner24df33b2013-04-12 07:30:21 +1000217xfs_dir3_leaf1_read_verify(
Dave Chinner612cfbf2012-11-14 17:52:32 +1100218 struct xfs_buf *bp)
219{
Dave Chinner24df33b2013-04-12 07:30:21 +1000220 __read_verify(bp, XFS_DIR2_LEAF1_MAGIC);
Dave Chinner1813dd62012-11-14 17:54:40 +1100221}
222
Dave Chinner24df33b2013-04-12 07:30:21 +1000223static void
224xfs_dir3_leaf1_write_verify(
Dave Chinner1813dd62012-11-14 17:54:40 +1100225 struct xfs_buf *bp)
226{
Dave Chinner24df33b2013-04-12 07:30:21 +1000227 __write_verify(bp, XFS_DIR2_LEAF1_MAGIC);
Dave Chinnere6f76672012-11-12 22:54:15 +1100228}
229
Dave Chinner24df33b2013-04-12 07:30:21 +1000230static void
231xfs_dir3_leafn_read_verify(
Dave Chinner612cfbf2012-11-14 17:52:32 +1100232 struct xfs_buf *bp)
Dave Chinnere6f76672012-11-12 22:54:15 +1100233{
Dave Chinner24df33b2013-04-12 07:30:21 +1000234 __read_verify(bp, XFS_DIR2_LEAFN_MAGIC);
Dave Chinnere6f76672012-11-12 22:54:15 +1100235}
236
Dave Chinner24df33b2013-04-12 07:30:21 +1000237static void
238xfs_dir3_leafn_write_verify(
239 struct xfs_buf *bp)
240{
241 __write_verify(bp, XFS_DIR2_LEAFN_MAGIC);
242}
243
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100244const struct xfs_buf_ops xfs_dir3_leaf1_buf_ops = {
Dave Chinner24df33b2013-04-12 07:30:21 +1000245 .verify_read = xfs_dir3_leaf1_read_verify,
246 .verify_write = xfs_dir3_leaf1_write_verify,
Dave Chinner1813dd62012-11-14 17:54:40 +1100247};
248
Dave Chinner24df33b2013-04-12 07:30:21 +1000249const struct xfs_buf_ops xfs_dir3_leafn_buf_ops = {
250 .verify_read = xfs_dir3_leafn_read_verify,
251 .verify_write = xfs_dir3_leafn_write_verify,
Dave Chinner1813dd62012-11-14 17:54:40 +1100252};
Dave Chinnere6f76672012-11-12 22:54:15 +1100253
254static int
Dave Chinner24df33b2013-04-12 07:30:21 +1000255xfs_dir3_leaf_read(
Dave Chinnere6f76672012-11-12 22:54:15 +1100256 struct xfs_trans *tp,
257 struct xfs_inode *dp,
258 xfs_dablk_t fbno,
259 xfs_daddr_t mappedbno,
260 struct xfs_buf **bpp)
261{
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100262 int err;
263
264 err = xfs_da_read_buf(tp, dp, fbno, mappedbno, bpp,
Dave Chinner24df33b2013-04-12 07:30:21 +1000265 XFS_DATA_FORK, &xfs_dir3_leaf1_buf_ops);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100266 if (!err && tp)
Dave Chinner61fe1352013-04-03 16:11:30 +1100267 xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_DIR_LEAF1_BUF);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100268 return err;
Dave Chinnere6f76672012-11-12 22:54:15 +1100269}
270
271int
Dave Chinner24df33b2013-04-12 07:30:21 +1000272xfs_dir3_leafn_read(
Dave Chinnere6f76672012-11-12 22:54:15 +1100273 struct xfs_trans *tp,
274 struct xfs_inode *dp,
275 xfs_dablk_t fbno,
276 xfs_daddr_t mappedbno,
277 struct xfs_buf **bpp)
278{
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100279 int err;
280
281 err = xfs_da_read_buf(tp, dp, fbno, mappedbno, bpp,
Dave Chinner24df33b2013-04-12 07:30:21 +1000282 XFS_DATA_FORK, &xfs_dir3_leafn_buf_ops);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100283 if (!err && tp)
Dave Chinner61fe1352013-04-03 16:11:30 +1100284 xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_DIR_LEAFN_BUF);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100285 return err;
Dave Chinner24df33b2013-04-12 07:30:21 +1000286}
287
288/*
289 * Initialize a new leaf block, leaf1 or leafn magic accepted.
290 */
291static void
292xfs_dir3_leaf_init(
293 struct xfs_mount *mp,
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100294 struct xfs_trans *tp,
Dave Chinner24df33b2013-04-12 07:30:21 +1000295 struct xfs_buf *bp,
296 xfs_ino_t owner,
297 __uint16_t type)
298{
299 struct xfs_dir2_leaf *leaf = bp->b_addr;
300
301 ASSERT(type == XFS_DIR2_LEAF1_MAGIC || type == XFS_DIR2_LEAFN_MAGIC);
302
303 if (xfs_sb_version_hascrc(&mp->m_sb)) {
304 struct xfs_dir3_leaf_hdr *leaf3 = bp->b_addr;
305
306 memset(leaf3, 0, sizeof(*leaf3));
307
308 leaf3->info.hdr.magic = (type == XFS_DIR2_LEAF1_MAGIC)
309 ? cpu_to_be16(XFS_DIR3_LEAF1_MAGIC)
310 : cpu_to_be16(XFS_DIR3_LEAFN_MAGIC);
311 leaf3->info.blkno = cpu_to_be64(bp->b_bn);
312 leaf3->info.owner = cpu_to_be64(owner);
313 uuid_copy(&leaf3->info.uuid, &mp->m_sb.sb_uuid);
314 } else {
315 memset(leaf, 0, sizeof(*leaf));
316 leaf->hdr.info.magic = cpu_to_be16(type);
317 }
318
319 /*
320 * If it's a leaf-format directory initialize the tail.
321 * Caller is responsible for initialising the bests table.
322 */
323 if (type == XFS_DIR2_LEAF1_MAGIC) {
324 struct xfs_dir2_leaf_tail *ltp;
325
326 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
327 ltp->bestcount = 0;
328 bp->b_ops = &xfs_dir3_leaf1_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100329 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_LEAF1_BUF);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100330 } else {
Dave Chinner24df33b2013-04-12 07:30:21 +1000331 bp->b_ops = &xfs_dir3_leafn_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100332 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_LEAFN_BUF);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100333 }
Dave Chinner24df33b2013-04-12 07:30:21 +1000334}
335
336int
337xfs_dir3_leaf_get_buf(
338 xfs_da_args_t *args,
339 xfs_dir2_db_t bno,
340 struct xfs_buf **bpp,
341 __uint16_t magic)
342{
343 struct xfs_inode *dp = args->dp;
344 struct xfs_trans *tp = args->trans;
345 struct xfs_mount *mp = dp->i_mount;
346 struct xfs_buf *bp;
347 int error;
348
349 ASSERT(magic == XFS_DIR2_LEAF1_MAGIC || magic == XFS_DIR2_LEAFN_MAGIC);
350 ASSERT(bno >= XFS_DIR2_LEAF_FIRSTDB(mp) &&
351 bno < XFS_DIR2_FREE_FIRSTDB(mp));
352
353 error = xfs_da_get_buf(tp, dp, xfs_dir2_db_to_da(mp, bno), -1, &bp,
354 XFS_DATA_FORK);
355 if (error)
356 return error;
357
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100358 xfs_dir3_leaf_init(mp, tp, bp, dp->i_ino, magic);
Dave Chinner41419562013-10-29 22:11:50 +1100359 xfs_dir3_leaf_log_header(tp, dp, bp);
Dave Chinner24df33b2013-04-12 07:30:21 +1000360 if (magic == XFS_DIR2_LEAF1_MAGIC)
361 xfs_dir3_leaf_log_tail(tp, bp);
362 *bpp = bp;
363 return 0;
Dave Chinnere6f76672012-11-12 22:54:15 +1100364}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366/*
367 * Convert a block form directory to a leaf form directory.
368 */
369int /* error */
370xfs_dir2_block_to_leaf(
371 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000372 struct xfs_buf *dbp) /* input block's buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
Nathan Scott68b3a102006-03-17 17:27:19 +1100374 __be16 *bestsp; /* leaf's bestsp entries */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 xfs_dablk_t blkno; /* leaf block's bno */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200376 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 xfs_dir2_leaf_entry_t *blp; /* block's leaf entries */
378 xfs_dir2_block_tail_t *btp; /* block's tail */
379 xfs_inode_t *dp; /* incore directory inode */
380 int error; /* error return code */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000381 struct xfs_buf *lbp; /* leaf block's buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 xfs_dir2_db_t ldb; /* leaf block's bno */
383 xfs_dir2_leaf_t *leaf; /* leaf structure */
384 xfs_dir2_leaf_tail_t *ltp; /* leaf's tail */
385 xfs_mount_t *mp; /* filesystem mount point */
386 int needlog; /* need to log block header */
387 int needscan; /* need to rescan bestfree */
388 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner33363fe2013-04-03 16:11:22 +1100389 struct xfs_dir2_data_free *bf;
Dave Chinner24df33b2013-04-12 07:30:21 +1000390 struct xfs_dir2_leaf_entry *ents;
391 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000393 trace_xfs_dir2_block_to_leaf(args);
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 dp = args->dp;
396 mp = dp->i_mount;
397 tp = args->trans;
398 /*
399 * Add the leaf block to the inode.
400 * This interface will only put blocks in the leaf/node range.
401 * Since that's empty now, we'll get the root (block 0 in range).
402 */
403 if ((error = xfs_da_grow_inode(args, &blkno))) {
404 return error;
405 }
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000406 ldb = xfs_dir2_da_to_db(mp, blkno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 ASSERT(ldb == XFS_DIR2_LEAF_FIRSTDB(mp));
408 /*
409 * Initialize the leaf block, get a buffer for it.
410 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000411 error = xfs_dir3_leaf_get_buf(args, ldb, &lbp, XFS_DIR2_LEAF1_MAGIC);
412 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 return error;
Dave Chinner24df33b2013-04-12 07:30:21 +1000414
Dave Chinner1d9025e2012-06-22 18:50:14 +1000415 leaf = lbp->b_addr;
416 hdr = dbp->b_addr;
Dave Chinner33363fe2013-04-03 16:11:22 +1100417 xfs_dir3_data_check(dp, dbp);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200418 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000419 blp = xfs_dir2_block_leaf_p(btp);
Dave Chinner2ca98772013-10-29 22:11:49 +1100420 bf = dp->d_ops->data_bestfree_p(hdr);
Dave Chinner41419562013-10-29 22:11:50 +1100421 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000422
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 /*
424 * Set the counts in the leaf header.
425 */
Dave Chinner01ba43b2013-10-29 22:11:52 +1100426 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000427 leafhdr.count = be32_to_cpu(btp->count);
428 leafhdr.stale = be32_to_cpu(btp->stale);
Dave Chinner01ba43b2013-10-29 22:11:52 +1100429 dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr);
Dave Chinner41419562013-10-29 22:11:50 +1100430 xfs_dir3_leaf_log_header(tp, dp, lbp);
Dave Chinner24df33b2013-04-12 07:30:21 +1000431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 /*
433 * Could compact these but I think we always do the conversion
434 * after squeezing out stale entries.
435 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000436 memcpy(ents, blp, be32_to_cpu(btp->count) * sizeof(xfs_dir2_leaf_entry_t));
Dave Chinner41419562013-10-29 22:11:50 +1100437 xfs_dir3_leaf_log_ents(tp, dp, lbp, 0, leafhdr.count - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 needscan = 0;
439 needlog = 1;
440 /*
441 * Make the space formerly occupied by the leaf entries and block
442 * tail be free.
443 */
Dave Chinner2ca98772013-10-29 22:11:49 +1100444 xfs_dir2_data_make_free(tp, dp, dbp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200445 (xfs_dir2_data_aoff_t)((char *)blp - (char *)hdr),
446 (xfs_dir2_data_aoff_t)((char *)hdr + mp->m_dirblksize -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 (char *)blp),
448 &needlog, &needscan);
449 /*
450 * Fix up the block header, make it a data block.
451 */
Dave Chinner33363fe2013-04-03 16:11:22 +1100452 dbp->b_ops = &xfs_dir3_data_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100453 xfs_trans_buf_set_type(tp, dbp, XFS_BLFT_DIR_DATA_BUF);
Dave Chinner33363fe2013-04-03 16:11:22 +1100454 if (hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC))
455 hdr->magic = cpu_to_be32(XFS_DIR2_DATA_MAGIC);
456 else
457 hdr->magic = cpu_to_be32(XFS_DIR3_DATA_MAGIC);
458
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +1100460 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 /*
462 * Set up leaf tail and bests table.
463 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000464 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100465 ltp->bestcount = cpu_to_be32(1);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000466 bestsp = xfs_dir2_leaf_bests_p(ltp);
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100467 bestsp[0] = bf[0].length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 /*
469 * Log the data header and leaf bests table.
470 */
471 if (needlog)
Dave Chinner2ca98772013-10-29 22:11:49 +1100472 xfs_dir2_data_log_header(tp, dp, dbp);
Dave Chinner41419562013-10-29 22:11:50 +1100473 xfs_dir3_leaf_check(dp, lbp);
Dave Chinner33363fe2013-04-03 16:11:22 +1100474 xfs_dir3_data_check(dp, dbp);
Dave Chinner24df33b2013-04-12 07:30:21 +1000475 xfs_dir3_leaf_log_bests(tp, lbp, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 return 0;
477}
478
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200479STATIC void
Dave Chinner24df33b2013-04-12 07:30:21 +1000480xfs_dir3_leaf_find_stale(
481 struct xfs_dir3_icleaf_hdr *leafhdr,
482 struct xfs_dir2_leaf_entry *ents,
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200483 int index,
484 int *lowstale,
485 int *highstale)
486{
487 /*
488 * Find the first stale entry before our index, if any.
489 */
490 for (*lowstale = index - 1; *lowstale >= 0; --*lowstale) {
Dave Chinner24df33b2013-04-12 07:30:21 +1000491 if (ents[*lowstale].address ==
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200492 cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
493 break;
494 }
495
496 /*
497 * Find the first stale entry at or after our index, if any.
498 * Stop if the result would require moving more entries than using
499 * lowstale.
500 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000501 for (*highstale = index; *highstale < leafhdr->count; ++*highstale) {
502 if (ents[*highstale].address ==
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200503 cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
504 break;
505 if (*lowstale >= 0 && index - *lowstale <= *highstale - index)
506 break;
507 }
508}
509
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200510struct xfs_dir2_leaf_entry *
Dave Chinner24df33b2013-04-12 07:30:21 +1000511xfs_dir3_leaf_find_entry(
512 struct xfs_dir3_icleaf_hdr *leafhdr,
513 struct xfs_dir2_leaf_entry *ents,
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200514 int index, /* leaf table position */
515 int compact, /* need to compact leaves */
516 int lowstale, /* index of prev stale leaf */
517 int highstale, /* index of next stale leaf */
518 int *lfloglow, /* low leaf logging index */
519 int *lfloghigh) /* high leaf logging index */
520{
Dave Chinner24df33b2013-04-12 07:30:21 +1000521 if (!leafhdr->stale) {
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200522 xfs_dir2_leaf_entry_t *lep; /* leaf entry table pointer */
523
524 /*
525 * Now we need to make room to insert the leaf entry.
526 *
527 * If there are no stale entries, just insert a hole at index.
528 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000529 lep = &ents[index];
530 if (index < leafhdr->count)
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200531 memmove(lep + 1, lep,
Dave Chinner24df33b2013-04-12 07:30:21 +1000532 (leafhdr->count - index) * sizeof(*lep));
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200533
534 /*
535 * Record low and high logging indices for the leaf.
536 */
537 *lfloglow = index;
Dave Chinner24df33b2013-04-12 07:30:21 +1000538 *lfloghigh = leafhdr->count++;
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200539 return lep;
540 }
541
542 /*
543 * There are stale entries.
544 *
545 * We will use one of them for the new entry. It's probably not at
546 * the right location, so we'll have to shift some up or down first.
547 *
548 * If we didn't compact before, we need to find the nearest stale
549 * entries before and after our insertion point.
550 */
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200551 if (compact == 0)
Dave Chinner24df33b2013-04-12 07:30:21 +1000552 xfs_dir3_leaf_find_stale(leafhdr, ents, index,
553 &lowstale, &highstale);
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200554
555 /*
556 * If the low one is better, use it.
557 */
558 if (lowstale >= 0 &&
Dave Chinner24df33b2013-04-12 07:30:21 +1000559 (highstale == leafhdr->count ||
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200560 index - lowstale - 1 < highstale - index)) {
561 ASSERT(index - lowstale - 1 >= 0);
Dave Chinner24df33b2013-04-12 07:30:21 +1000562 ASSERT(ents[lowstale].address ==
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200563 cpu_to_be32(XFS_DIR2_NULL_DATAPTR));
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200564
565 /*
566 * Copy entries up to cover the stale entry and make room
567 * for the new entry.
568 */
569 if (index - lowstale - 1 > 0) {
Dave Chinner24df33b2013-04-12 07:30:21 +1000570 memmove(&ents[lowstale], &ents[lowstale + 1],
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200571 (index - lowstale - 1) *
Dave Chinner24df33b2013-04-12 07:30:21 +1000572 sizeof(xfs_dir2_leaf_entry_t));
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200573 }
574 *lfloglow = MIN(lowstale, *lfloglow);
575 *lfloghigh = MAX(index - 1, *lfloghigh);
Dave Chinner24df33b2013-04-12 07:30:21 +1000576 leafhdr->stale--;
577 return &ents[index - 1];
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200578 }
579
580 /*
581 * The high one is better, so use that one.
582 */
583 ASSERT(highstale - index >= 0);
Dave Chinner24df33b2013-04-12 07:30:21 +1000584 ASSERT(ents[highstale].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR));
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200585
586 /*
587 * Copy entries down to cover the stale entry and make room for the
588 * new entry.
589 */
590 if (highstale - index > 0) {
Dave Chinner24df33b2013-04-12 07:30:21 +1000591 memmove(&ents[index + 1], &ents[index],
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200592 (highstale - index) * sizeof(xfs_dir2_leaf_entry_t));
593 }
594 *lfloglow = MIN(index, *lfloglow);
595 *lfloghigh = MAX(highstale, *lfloghigh);
Dave Chinner24df33b2013-04-12 07:30:21 +1000596 leafhdr->stale--;
597 return &ents[index];
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200598}
599
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600/*
601 * Add an entry to a leaf form directory.
602 */
603int /* error */
604xfs_dir2_leaf_addname(
605 xfs_da_args_t *args) /* operation arguments */
606{
Nathan Scott68b3a102006-03-17 17:27:19 +1100607 __be16 *bestsp; /* freespace table in leaf */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 int compact; /* need to compact leaves */
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200609 xfs_dir2_data_hdr_t *hdr; /* data block header */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000610 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 xfs_dir2_data_entry_t *dep; /* data block entry */
612 xfs_inode_t *dp; /* incore directory inode */
613 xfs_dir2_data_unused_t *dup; /* data unused entry */
614 int error; /* error return value */
615 int grown; /* allocated new data block */
616 int highstale; /* index of next stale leaf */
617 int i; /* temporary, index */
618 int index; /* leaf table position */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000619 struct xfs_buf *lbp; /* leaf's buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 xfs_dir2_leaf_t *leaf; /* leaf structure */
621 int length; /* length of new entry */
622 xfs_dir2_leaf_entry_t *lep; /* leaf entry table pointer */
623 int lfloglow; /* low leaf logging index */
624 int lfloghigh; /* high leaf logging index */
625 int lowstale; /* index of prev stale leaf */
626 xfs_dir2_leaf_tail_t *ltp; /* leaf tail pointer */
627 xfs_mount_t *mp; /* filesystem mount point */
628 int needbytes; /* leaf block bytes needed */
629 int needlog; /* need to log data header */
630 int needscan; /* need to rescan data free */
Nathan Scott3d693c62006-03-17 17:28:27 +1100631 __be16 *tagp; /* end of data entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 xfs_trans_t *tp; /* transaction pointer */
633 xfs_dir2_db_t use_block; /* data block number */
Dave Chinner33363fe2013-04-03 16:11:22 +1100634 struct xfs_dir2_data_free *bf; /* bestfree table */
Dave Chinner24df33b2013-04-12 07:30:21 +1000635 struct xfs_dir2_leaf_entry *ents;
636 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000638 trace_xfs_dir2_leaf_addname(args);
639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 dp = args->dp;
641 tp = args->trans;
642 mp = dp->i_mount;
Dave Chinnere6f76672012-11-12 22:54:15 +1100643
Dave Chinner24df33b2013-04-12 07:30:21 +1000644 error = xfs_dir3_leaf_read(tp, dp, mp->m_dirleafblk, -1, &lbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +1100645 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 return error;
Dave Chinnere6f76672012-11-12 22:54:15 +1100647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 /*
649 * Look up the entry by hash value and name.
650 * We know it's not there, our caller has already done a lookup.
651 * So the index is of the entry to insert in front of.
652 * But if there are dup hash values the index is of the first of those.
653 */
654 index = xfs_dir2_leaf_search_hash(args, lbp);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000655 leaf = lbp->b_addr;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000656 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
Dave Chinner41419562013-10-29 22:11:50 +1100657 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner01ba43b2013-10-29 22:11:52 +1100658 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000659 bestsp = xfs_dir2_leaf_bests_p(ltp);
Dave Chinner9d23fc82013-10-29 22:11:48 +1100660 length = dp->d_ops->data_entsize(args->namelen);
Dave Chinner24df33b2013-04-12 07:30:21 +1000661
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 /*
663 * See if there are any entries with the same hash value
664 * and space in their block for the new entry.
665 * This is good because it puts multiple same-hash value entries
666 * in a data block, improving the lookup of those entries.
667 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000668 for (use_block = -1, lep = &ents[index];
669 index < leafhdr.count && be32_to_cpu(lep->hashval) == args->hashval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 index++, lep++) {
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100671 if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 continue;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000673 i = xfs_dir2_dataptr_to_db(mp, be32_to_cpu(lep->address));
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100674 ASSERT(i < be32_to_cpu(ltp->bestcount));
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200675 ASSERT(bestsp[i] != cpu_to_be16(NULLDATAOFF));
Nathan Scott68b3a102006-03-17 17:27:19 +1100676 if (be16_to_cpu(bestsp[i]) >= length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 use_block = i;
678 break;
679 }
680 }
681 /*
682 * Didn't find a block yet, linear search all the data blocks.
683 */
684 if (use_block == -1) {
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100685 for (i = 0; i < be32_to_cpu(ltp->bestcount); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 /*
687 * Remember a block we see that's missing.
688 */
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200689 if (bestsp[i] == cpu_to_be16(NULLDATAOFF) &&
690 use_block == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 use_block = i;
Nathan Scott68b3a102006-03-17 17:27:19 +1100692 else if (be16_to_cpu(bestsp[i]) >= length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 use_block = i;
694 break;
695 }
696 }
697 }
698 /*
699 * How many bytes do we need in the leaf block?
700 */
Christoph Hellwig22823962011-07-08 14:35:53 +0200701 needbytes = 0;
Dave Chinner24df33b2013-04-12 07:30:21 +1000702 if (!leafhdr.stale)
Christoph Hellwig22823962011-07-08 14:35:53 +0200703 needbytes += sizeof(xfs_dir2_leaf_entry_t);
704 if (use_block == -1)
705 needbytes += sizeof(xfs_dir2_data_off_t);
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 /*
708 * Now kill use_block if it refers to a missing block, so we
709 * can use it as an indication of allocation needed.
710 */
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200711 if (use_block != -1 && bestsp[use_block] == cpu_to_be16(NULLDATAOFF))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 use_block = -1;
713 /*
714 * If we don't have enough free bytes but we can make enough
715 * by compacting out stale entries, we'll do that.
716 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000717 if ((char *)bestsp - (char *)&ents[leafhdr.count] < needbytes &&
718 leafhdr.stale > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 compact = 1;
Dave Chinner24df33b2013-04-12 07:30:21 +1000720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 /*
722 * Otherwise if we don't have enough free bytes we need to
723 * convert to node form.
724 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000725 else if ((char *)bestsp - (char *)&ents[leafhdr.count] < needbytes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 /*
727 * Just checking or no space reservation, give up.
728 */
Barry Naujok6a178102008-05-21 16:42:05 +1000729 if ((args->op_flags & XFS_DA_OP_JUSTCHECK) ||
730 args->total == 0) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000731 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 return XFS_ERROR(ENOSPC);
733 }
734 /*
735 * Convert to node form.
736 */
737 error = xfs_dir2_leaf_to_node(args, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 if (error)
739 return error;
740 /*
741 * Then add the new entry.
742 */
743 return xfs_dir2_node_addname(args);
744 }
745 /*
746 * Otherwise it will fit without compaction.
747 */
748 else
749 compact = 0;
750 /*
751 * If just checking, then it will fit unless we needed to allocate
752 * a new data block.
753 */
Barry Naujok6a178102008-05-21 16:42:05 +1000754 if (args->op_flags & XFS_DA_OP_JUSTCHECK) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000755 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 return use_block == -1 ? XFS_ERROR(ENOSPC) : 0;
757 }
758 /*
759 * If no allocations are allowed, return now before we've
760 * changed anything.
761 */
762 if (args->total == 0 && use_block == -1) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000763 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 return XFS_ERROR(ENOSPC);
765 }
766 /*
767 * Need to compact the leaf entries, removing stale ones.
768 * Leave one stale entry behind - the one closest to our
769 * insertion index - and we'll shift that one to our insertion
770 * point later.
771 */
772 if (compact) {
Dave Chinner24df33b2013-04-12 07:30:21 +1000773 xfs_dir3_leaf_compact_x1(&leafhdr, ents, &index, &lowstale,
774 &highstale, &lfloglow, &lfloghigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 }
776 /*
777 * There are stale entries, so we'll need log-low and log-high
778 * impossibly bad values later.
779 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000780 else if (leafhdr.stale) {
781 lfloglow = leafhdr.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 lfloghigh = -1;
783 }
784 /*
785 * If there was no data block space found, we need to allocate
786 * a new one.
787 */
788 if (use_block == -1) {
789 /*
790 * Add the new data block.
791 */
792 if ((error = xfs_dir2_grow_inode(args, XFS_DIR2_DATA_SPACE,
793 &use_block))) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000794 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 return error;
796 }
797 /*
798 * Initialize the block.
799 */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100800 if ((error = xfs_dir3_data_init(args, use_block, &dbp))) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000801 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 return error;
803 }
804 /*
805 * If we're adding a new data block on the end we need to
806 * extend the bests table. Copy it up one entry.
807 */
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100808 if (use_block >= be32_to_cpu(ltp->bestcount)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 bestsp--;
810 memmove(&bestsp[0], &bestsp[1],
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100811 be32_to_cpu(ltp->bestcount) * sizeof(bestsp[0]));
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800812 be32_add_cpu(&ltp->bestcount, 1);
Dave Chinner24df33b2013-04-12 07:30:21 +1000813 xfs_dir3_leaf_log_tail(tp, lbp);
814 xfs_dir3_leaf_log_bests(tp, lbp, 0, be32_to_cpu(ltp->bestcount) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 }
816 /*
817 * If we're filling in a previously empty block just log it.
818 */
819 else
Dave Chinner24df33b2013-04-12 07:30:21 +1000820 xfs_dir3_leaf_log_bests(tp, lbp, use_block, use_block);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000821 hdr = dbp->b_addr;
Dave Chinner2ca98772013-10-29 22:11:49 +1100822 bf = dp->d_ops->data_bestfree_p(hdr);
Dave Chinner33363fe2013-04-03 16:11:22 +1100823 bestsp[use_block] = bf[0].length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 grown = 1;
Dave Chinnere4813572012-11-12 22:54:14 +1100825 } else {
826 /*
827 * Already had space in some data block.
828 * Just read that one in.
829 */
Dave Chinner33363fe2013-04-03 16:11:22 +1100830 error = xfs_dir3_data_read(tp, dp,
Dave Chinnere4813572012-11-12 22:54:14 +1100831 xfs_dir2_db_to_da(mp, use_block),
832 -1, &dbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +1100833 if (error) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000834 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 return error;
836 }
Dave Chinner1d9025e2012-06-22 18:50:14 +1000837 hdr = dbp->b_addr;
Dave Chinner2ca98772013-10-29 22:11:49 +1100838 bf = dp->d_ops->data_bestfree_p(hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 grown = 0;
840 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 /*
842 * Point to the biggest freespace in our data block.
843 */
844 dup = (xfs_dir2_data_unused_t *)
Dave Chinner33363fe2013-04-03 16:11:22 +1100845 ((char *)hdr + be16_to_cpu(bf[0].offset));
Nathan Scottad354eb2006-03-17 17:27:37 +1100846 ASSERT(be16_to_cpu(dup->length) >= length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 needscan = needlog = 0;
848 /*
849 * Mark the initial part of our freespace in use for the new entry.
850 */
Dave Chinner2ca98772013-10-29 22:11:49 +1100851 xfs_dir2_data_use_free(tp, dp, dbp, dup,
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200852 (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr), length,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 &needlog, &needscan);
854 /*
855 * Initialize our new entry (at last).
856 */
857 dep = (xfs_dir2_data_entry_t *)dup;
Christoph Hellwigff9901c2006-06-09 14:48:37 +1000858 dep->inumber = cpu_to_be64(args->inumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 dep->namelen = args->namelen;
860 memcpy(dep->name, args->name, dep->namelen);
Dave Chinner9d23fc82013-10-29 22:11:48 +1100861 dp->d_ops->data_put_ftype(dep, args->filetype);
862 tagp = dp->d_ops->data_entry_tag_p(dep);
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200863 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 /*
865 * Need to scan fix up the bestfree table.
866 */
867 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +1100868 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 /*
870 * Need to log the data block's header.
871 */
872 if (needlog)
Dave Chinner2ca98772013-10-29 22:11:49 +1100873 xfs_dir2_data_log_header(tp, dp, dbp);
Dave Chinner9d23fc82013-10-29 22:11:48 +1100874 xfs_dir2_data_log_entry(tp, dp, dbp, dep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 /*
876 * If the bests table needs to be changed, do it.
877 * Log the change unless we've already done that.
878 */
Dave Chinner33363fe2013-04-03 16:11:22 +1100879 if (be16_to_cpu(bestsp[use_block]) != be16_to_cpu(bf[0].length)) {
880 bestsp[use_block] = bf[0].length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 if (!grown)
Dave Chinner24df33b2013-04-12 07:30:21 +1000882 xfs_dir3_leaf_log_bests(tp, lbp, use_block, use_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 }
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200884
Dave Chinner24df33b2013-04-12 07:30:21 +1000885 lep = xfs_dir3_leaf_find_entry(&leafhdr, ents, index, compact, lowstale,
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200886 highstale, &lfloglow, &lfloghigh);
887
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 /*
889 * Fill in the new leaf entry.
890 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100891 lep->hashval = cpu_to_be32(args->hashval);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000892 lep->address = cpu_to_be32(xfs_dir2_db_off_to_dataptr(mp, use_block,
Nathan Scott3d693c62006-03-17 17:28:27 +1100893 be16_to_cpu(*tagp)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 /*
895 * Log the leaf fields and give up the buffers.
896 */
Dave Chinner01ba43b2013-10-29 22:11:52 +1100897 dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr);
Dave Chinner41419562013-10-29 22:11:50 +1100898 xfs_dir3_leaf_log_header(tp, dp, lbp);
899 xfs_dir3_leaf_log_ents(tp, dp, lbp, lfloglow, lfloghigh);
900 xfs_dir3_leaf_check(dp, lbp);
Dave Chinner33363fe2013-04-03 16:11:22 +1100901 xfs_dir3_data_check(dp, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 return 0;
903}
904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905/*
906 * Compact out any stale entries in the leaf.
907 * Log the header and changed leaf entries, if any.
908 */
909void
Dave Chinner24df33b2013-04-12 07:30:21 +1000910xfs_dir3_leaf_compact(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 xfs_da_args_t *args, /* operation arguments */
Dave Chinner24df33b2013-04-12 07:30:21 +1000912 struct xfs_dir3_icleaf_hdr *leafhdr,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000913 struct xfs_buf *bp) /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914{
915 int from; /* source leaf index */
916 xfs_dir2_leaf_t *leaf; /* leaf structure */
917 int loglow; /* first leaf entry to log */
918 int to; /* target leaf index */
Dave Chinner24df33b2013-04-12 07:30:21 +1000919 struct xfs_dir2_leaf_entry *ents;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100920 struct xfs_inode *dp = args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
Dave Chinner1d9025e2012-06-22 18:50:14 +1000922 leaf = bp->b_addr;
Dave Chinner24df33b2013-04-12 07:30:21 +1000923 if (!leafhdr->stale)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 return;
Dave Chinner24df33b2013-04-12 07:30:21 +1000925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 /*
927 * Compress out the stale entries in place.
928 */
Dave Chinner01ba43b2013-10-29 22:11:52 +1100929 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000930 for (from = to = 0, loglow = -1; from < leafhdr->count; from++) {
931 if (ents[from].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 continue;
933 /*
934 * Only actually copy the entries that are different.
935 */
936 if (from > to) {
937 if (loglow == -1)
938 loglow = to;
Dave Chinner24df33b2013-04-12 07:30:21 +1000939 ents[to] = ents[from];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 }
941 to++;
942 }
943 /*
944 * Update and log the header, log the leaf entries.
945 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000946 ASSERT(leafhdr->stale == from - to);
947 leafhdr->count -= leafhdr->stale;
948 leafhdr->stale = 0;
949
Dave Chinner01ba43b2013-10-29 22:11:52 +1100950 dp->d_ops->leaf_hdr_to_disk(leaf, leafhdr);
951 xfs_dir3_leaf_log_header(args->trans, dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 if (loglow != -1)
Dave Chinner01ba43b2013-10-29 22:11:52 +1100953 xfs_dir3_leaf_log_ents(args->trans, dp, bp, loglow, to - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954}
955
956/*
957 * Compact the leaf entries, removing stale ones.
958 * Leave one stale entry behind - the one closest to our
959 * insertion index - and the caller will shift that one to our insertion
960 * point later.
961 * Return new insertion index, where the remaining stale entry is,
962 * and leaf logging indices.
963 */
964void
Dave Chinner24df33b2013-04-12 07:30:21 +1000965xfs_dir3_leaf_compact_x1(
966 struct xfs_dir3_icleaf_hdr *leafhdr,
967 struct xfs_dir2_leaf_entry *ents,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 int *indexp, /* insertion index */
969 int *lowstalep, /* out: stale entry before us */
970 int *highstalep, /* out: stale entry after us */
971 int *lowlogp, /* out: low log index */
972 int *highlogp) /* out: high log index */
973{
974 int from; /* source copy index */
975 int highstale; /* stale entry at/after index */
976 int index; /* insertion index */
977 int keepstale; /* source index of kept stale */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 int lowstale; /* stale entry before index */
979 int newindex=0; /* new insertion index */
980 int to; /* destination copy index */
981
Dave Chinner24df33b2013-04-12 07:30:21 +1000982 ASSERT(leafhdr->stale > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 index = *indexp;
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200984
Dave Chinner24df33b2013-04-12 07:30:21 +1000985 xfs_dir3_leaf_find_stale(leafhdr, ents, index, &lowstale, &highstale);
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 /*
988 * Pick the better of lowstale and highstale.
989 */
990 if (lowstale >= 0 &&
Dave Chinner24df33b2013-04-12 07:30:21 +1000991 (highstale == leafhdr->count ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 index - lowstale <= highstale - index))
993 keepstale = lowstale;
994 else
995 keepstale = highstale;
996 /*
997 * Copy the entries in place, removing all the stale entries
998 * except keepstale.
999 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001000 for (from = to = 0; from < leafhdr->count; from++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 /*
1002 * Notice the new value of index.
1003 */
1004 if (index == from)
1005 newindex = to;
1006 if (from != keepstale &&
Dave Chinner24df33b2013-04-12 07:30:21 +10001007 ents[from].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 if (from == to)
1009 *lowlogp = to;
1010 continue;
1011 }
1012 /*
1013 * Record the new keepstale value for the insertion.
1014 */
1015 if (from == keepstale)
1016 lowstale = highstale = to;
1017 /*
1018 * Copy only the entries that have moved.
1019 */
1020 if (from > to)
Dave Chinner24df33b2013-04-12 07:30:21 +10001021 ents[to] = ents[from];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 to++;
1023 }
1024 ASSERT(from > to);
1025 /*
1026 * If the insertion point was past the last entry,
1027 * set the new insertion point accordingly.
1028 */
1029 if (index == from)
1030 newindex = to;
1031 *indexp = newindex;
1032 /*
1033 * Adjust the leaf header values.
1034 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001035 leafhdr->count -= from - to;
1036 leafhdr->stale = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 /*
1038 * Remember the low/high stale value only in the "right"
1039 * direction.
1040 */
1041 if (lowstale >= newindex)
1042 lowstale = -1;
1043 else
Dave Chinner24df33b2013-04-12 07:30:21 +10001044 highstale = leafhdr->count;
1045 *highlogp = leafhdr->count - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 *lowstalep = lowstale;
1047 *highstalep = highstale;
1048}
1049
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050/*
1051 * Log the bests entries indicated from a leaf1 block.
1052 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001053static void
Dave Chinner24df33b2013-04-12 07:30:21 +10001054xfs_dir3_leaf_log_bests(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 xfs_trans_t *tp, /* transaction pointer */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001056 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 int first, /* first entry to log */
1058 int last) /* last entry to log */
1059{
Nathan Scott68b3a102006-03-17 17:27:19 +11001060 __be16 *firstb; /* pointer to first entry */
1061 __be16 *lastb; /* pointer to last entry */
Dave Chinner24df33b2013-04-12 07:30:21 +10001062 struct xfs_dir2_leaf *leaf = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
1064
Dave Chinner24df33b2013-04-12 07:30:21 +10001065 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC) ||
1066 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAF1_MAGIC));
1067
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001068 ltp = xfs_dir2_leaf_tail_p(tp->t_mountp, leaf);
1069 firstb = xfs_dir2_leaf_bests_p(ltp) + first;
1070 lastb = xfs_dir2_leaf_bests_p(ltp) + last;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001071 xfs_trans_log_buf(tp, bp, (uint)((char *)firstb - (char *)leaf),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 (uint)((char *)lastb - (char *)leaf + sizeof(*lastb) - 1));
1073}
1074
1075/*
1076 * Log the leaf entries indicated from a leaf1 or leafn block.
1077 */
1078void
Dave Chinner24df33b2013-04-12 07:30:21 +10001079xfs_dir3_leaf_log_ents(
Dave Chinner41419562013-10-29 22:11:50 +11001080 struct xfs_trans *tp,
1081 struct xfs_inode *dp,
1082 struct xfs_buf *bp,
1083 int first,
1084 int last)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085{
1086 xfs_dir2_leaf_entry_t *firstlep; /* pointer to first entry */
1087 xfs_dir2_leaf_entry_t *lastlep; /* pointer to last entry */
Dave Chinner24df33b2013-04-12 07:30:21 +10001088 struct xfs_dir2_leaf *leaf = bp->b_addr;
1089 struct xfs_dir2_leaf_entry *ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001091 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC) ||
Dave Chinner24df33b2013-04-12 07:30:21 +10001092 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAF1_MAGIC) ||
1093 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
1094 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC));
1095
Dave Chinner41419562013-10-29 22:11:50 +11001096 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001097 firstlep = &ents[first];
1098 lastlep = &ents[last];
Dave Chinner1d9025e2012-06-22 18:50:14 +10001099 xfs_trans_log_buf(tp, bp, (uint)((char *)firstlep - (char *)leaf),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 (uint)((char *)lastlep - (char *)leaf + sizeof(*lastlep) - 1));
1101}
1102
1103/*
1104 * Log the header of the leaf1 or leafn block.
1105 */
1106void
Dave Chinner24df33b2013-04-12 07:30:21 +10001107xfs_dir3_leaf_log_header(
Dave Chinner1d9025e2012-06-22 18:50:14 +10001108 struct xfs_trans *tp,
Dave Chinner41419562013-10-29 22:11:50 +11001109 struct xfs_inode *dp,
Dave Chinner1d9025e2012-06-22 18:50:14 +10001110 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111{
Dave Chinner24df33b2013-04-12 07:30:21 +10001112 struct xfs_dir2_leaf *leaf = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001114 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC) ||
Dave Chinner24df33b2013-04-12 07:30:21 +10001115 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAF1_MAGIC) ||
1116 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
1117 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC));
1118
Dave Chinner1d9025e2012-06-22 18:50:14 +10001119 xfs_trans_log_buf(tp, bp, (uint)((char *)&leaf->hdr - (char *)leaf),
Dave Chinner1c9a5b22013-10-30 09:15:02 +11001120 dp->d_ops->leaf_hdr_size - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121}
1122
1123/*
1124 * Log the tail of the leaf1 block.
1125 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001126STATIC void
Dave Chinner24df33b2013-04-12 07:30:21 +10001127xfs_dir3_leaf_log_tail(
Dave Chinner1d9025e2012-06-22 18:50:14 +10001128 struct xfs_trans *tp,
1129 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130{
Dave Chinner24df33b2013-04-12 07:30:21 +10001131 struct xfs_dir2_leaf *leaf = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
Dave Chinner24df33b2013-04-12 07:30:21 +10001133 struct xfs_mount *mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Dave Chinner24df33b2013-04-12 07:30:21 +10001135 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC) ||
1136 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAF1_MAGIC) ||
1137 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
1138 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC));
1139
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001140 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001141 xfs_trans_log_buf(tp, bp, (uint)((char *)ltp - (char *)leaf),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 (uint)(mp->m_dirblksize - 1));
1143}
1144
1145/*
1146 * Look up the entry referred to by args in the leaf format directory.
1147 * Most of the work is done by the xfs_dir2_leaf_lookup_int routine which
1148 * is also used by the node-format code.
1149 */
1150int
1151xfs_dir2_leaf_lookup(
1152 xfs_da_args_t *args) /* operation arguments */
1153{
Dave Chinner1d9025e2012-06-22 18:50:14 +10001154 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 xfs_dir2_data_entry_t *dep; /* data block entry */
1156 xfs_inode_t *dp; /* incore directory inode */
1157 int error; /* error return code */
1158 int index; /* found entry index */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001159 struct xfs_buf *lbp; /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 xfs_dir2_leaf_t *leaf; /* leaf structure */
1161 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1162 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner24df33b2013-04-12 07:30:21 +10001163 struct xfs_dir2_leaf_entry *ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001165 trace_xfs_dir2_leaf_lookup(args);
1166
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 /*
1168 * Look up name in the leaf block, returning both buffers and index.
1169 */
1170 if ((error = xfs_dir2_leaf_lookup_int(args, &lbp, &index, &dbp))) {
1171 return error;
1172 }
1173 tp = args->trans;
1174 dp = args->dp;
Dave Chinner41419562013-10-29 22:11:50 +11001175 xfs_dir3_leaf_check(dp, lbp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001176 leaf = lbp->b_addr;
Dave Chinner41419562013-10-29 22:11:50 +11001177 ents = dp->d_ops->leaf_ents_p(leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 /*
1179 * Get to the leaf entry and contained data entry address.
1180 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001181 lep = &ents[index];
1182
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 /*
1184 * Point to the data entry.
1185 */
1186 dep = (xfs_dir2_data_entry_t *)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001187 ((char *)dbp->b_addr +
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001188 xfs_dir2_dataptr_to_off(dp->i_mount, be32_to_cpu(lep->address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 /*
Barry Naujok384f3ce2008-05-21 16:58:22 +10001190 * Return the found inode number & CI name if appropriate
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +10001192 args->inumber = be64_to_cpu(dep->inumber);
Dave Chinner9d23fc82013-10-29 22:11:48 +11001193 args->filetype = dp->d_ops->data_get_ftype(dep);
Barry Naujok384f3ce2008-05-21 16:58:22 +10001194 error = xfs_dir_cilookup_result(args, dep->name, dep->namelen);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001195 xfs_trans_brelse(tp, dbp);
1196 xfs_trans_brelse(tp, lbp);
Barry Naujok384f3ce2008-05-21 16:58:22 +10001197 return XFS_ERROR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198}
1199
1200/*
1201 * Look up name/hash in the leaf block.
1202 * Fill in indexp with the found index, and dbpp with the data buffer.
1203 * If not found dbpp will be NULL, and ENOENT comes back.
1204 * lbpp will always be filled in with the leaf buffer unless there's an error.
1205 */
1206static int /* error */
1207xfs_dir2_leaf_lookup_int(
1208 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001209 struct xfs_buf **lbpp, /* out: leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 int *indexp, /* out: index in leaf block */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001211 struct xfs_buf **dbpp) /* out: data buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212{
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001213 xfs_dir2_db_t curdb = -1; /* current data block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001214 struct xfs_buf *dbp = NULL; /* data buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 xfs_dir2_data_entry_t *dep; /* data entry */
1216 xfs_inode_t *dp; /* incore directory inode */
1217 int error; /* error return code */
1218 int index; /* index in leaf block */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001219 struct xfs_buf *lbp; /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1221 xfs_dir2_leaf_t *leaf; /* leaf structure */
1222 xfs_mount_t *mp; /* filesystem mount point */
1223 xfs_dir2_db_t newdb; /* new data block number */
1224 xfs_trans_t *tp; /* transaction pointer */
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001225 xfs_dir2_db_t cidb = -1; /* case match data block no. */
Barry Naujok5163f952008-05-21 16:41:01 +10001226 enum xfs_dacmp cmp; /* name compare result */
Dave Chinner24df33b2013-04-12 07:30:21 +10001227 struct xfs_dir2_leaf_entry *ents;
1228 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
1230 dp = args->dp;
1231 tp = args->trans;
1232 mp = dp->i_mount;
Dave Chinnere6f76672012-11-12 22:54:15 +11001233
Dave Chinner24df33b2013-04-12 07:30:21 +10001234 error = xfs_dir3_leaf_read(tp, dp, mp->m_dirleafblk, -1, &lbp);
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001235 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 return error;
Dave Chinnere6f76672012-11-12 22:54:15 +11001237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 *lbpp = lbp;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001239 leaf = lbp->b_addr;
Dave Chinner41419562013-10-29 22:11:50 +11001240 xfs_dir3_leaf_check(dp, lbp);
1241 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner01ba43b2013-10-29 22:11:52 +11001242 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001243
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 /*
1245 * Look for the first leaf entry with our hash value.
1246 */
1247 index = xfs_dir2_leaf_search_hash(args, lbp);
1248 /*
1249 * Loop over all the entries with the right hash value
1250 * looking to match the name.
1251 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001252 for (lep = &ents[index];
1253 index < leafhdr.count && be32_to_cpu(lep->hashval) == args->hashval;
1254 lep++, index++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 /*
1256 * Skip over stale leaf entries.
1257 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001258 if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 continue;
1260 /*
1261 * Get the new data block number.
1262 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001263 newdb = xfs_dir2_dataptr_to_db(mp, be32_to_cpu(lep->address));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 /*
1265 * If it's not the same as the old data block number,
1266 * need to pitch the old one and read the new one.
1267 */
1268 if (newdb != curdb) {
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001269 if (dbp)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001270 xfs_trans_brelse(tp, dbp);
Dave Chinner33363fe2013-04-03 16:11:22 +11001271 error = xfs_dir3_data_read(tp, dp,
Dave Chinnere4813572012-11-12 22:54:14 +11001272 xfs_dir2_db_to_da(mp, newdb),
1273 -1, &dbp);
Barry Naujok5163f952008-05-21 16:41:01 +10001274 if (error) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001275 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 return error;
1277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 curdb = newdb;
1279 }
1280 /*
1281 * Point to the data entry.
1282 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001283 dep = (xfs_dir2_data_entry_t *)((char *)dbp->b_addr +
Barry Naujok5163f952008-05-21 16:41:01 +10001284 xfs_dir2_dataptr_to_off(mp, be32_to_cpu(lep->address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 /*
Barry Naujok5163f952008-05-21 16:41:01 +10001286 * Compare name and if it's an exact match, return the index
1287 * and buffer. If it's the first case-insensitive match, store
1288 * the index and buffer and continue looking for an exact match.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 */
Barry Naujok5163f952008-05-21 16:41:01 +10001290 cmp = mp->m_dirnameops->compname(args, dep->name, dep->namelen);
1291 if (cmp != XFS_CMP_DIFFERENT && cmp != args->cmpresult) {
1292 args->cmpresult = cmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 *indexp = index;
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001294 /* case exact match: return the current buffer. */
Barry Naujok5163f952008-05-21 16:41:01 +10001295 if (cmp == XFS_CMP_EXACT) {
Barry Naujok5163f952008-05-21 16:41:01 +10001296 *dbpp = dbp;
1297 return 0;
1298 }
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001299 cidb = curdb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 }
1301 }
Barry Naujok6a178102008-05-21 16:42:05 +10001302 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
Barry Naujok5163f952008-05-21 16:41:01 +10001303 /*
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001304 * Here, we can only be doing a lookup (not a rename or remove).
1305 * If a case-insensitive match was found earlier, re-read the
1306 * appropriate data block if required and return it.
Barry Naujok5163f952008-05-21 16:41:01 +10001307 */
1308 if (args->cmpresult == XFS_CMP_CASE) {
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001309 ASSERT(cidb != -1);
1310 if (cidb != curdb) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001311 xfs_trans_brelse(tp, dbp);
Dave Chinner33363fe2013-04-03 16:11:22 +11001312 error = xfs_dir3_data_read(tp, dp,
Dave Chinnere4813572012-11-12 22:54:14 +11001313 xfs_dir2_db_to_da(mp, cidb),
1314 -1, &dbp);
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001315 if (error) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001316 xfs_trans_brelse(tp, lbp);
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001317 return error;
1318 }
1319 }
1320 *dbpp = dbp;
Barry Naujok5163f952008-05-21 16:41:01 +10001321 return 0;
1322 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 /*
1324 * No match found, return ENOENT.
1325 */
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001326 ASSERT(cidb == -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 if (dbp)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001328 xfs_trans_brelse(tp, dbp);
1329 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 return XFS_ERROR(ENOENT);
1331}
1332
1333/*
1334 * Remove an entry from a leaf format directory.
1335 */
1336int /* error */
1337xfs_dir2_leaf_removename(
1338 xfs_da_args_t *args) /* operation arguments */
1339{
Nathan Scott68b3a102006-03-17 17:27:19 +11001340 __be16 *bestsp; /* leaf block best freespace */
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001341 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 xfs_dir2_db_t db; /* data block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001343 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 xfs_dir2_data_entry_t *dep; /* data entry structure */
1345 xfs_inode_t *dp; /* incore directory inode */
1346 int error; /* error return code */
1347 xfs_dir2_db_t i; /* temporary data block # */
1348 int index; /* index into leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001349 struct xfs_buf *lbp; /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 xfs_dir2_leaf_t *leaf; /* leaf structure */
1351 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1352 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
1353 xfs_mount_t *mp; /* filesystem mount point */
1354 int needlog; /* need to log data header */
1355 int needscan; /* need to rescan data frees */
1356 xfs_dir2_data_off_t oldbest; /* old value of best free */
1357 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner33363fe2013-04-03 16:11:22 +11001358 struct xfs_dir2_data_free *bf; /* bestfree table */
Dave Chinner24df33b2013-04-12 07:30:21 +10001359 struct xfs_dir2_leaf_entry *ents;
1360 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001362 trace_xfs_dir2_leaf_removename(args);
1363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 /*
1365 * Lookup the leaf entry, get the leaf and data blocks read in.
1366 */
1367 if ((error = xfs_dir2_leaf_lookup_int(args, &lbp, &index, &dbp))) {
1368 return error;
1369 }
1370 dp = args->dp;
1371 tp = args->trans;
1372 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001373 leaf = lbp->b_addr;
1374 hdr = dbp->b_addr;
Dave Chinner33363fe2013-04-03 16:11:22 +11001375 xfs_dir3_data_check(dp, dbp);
Dave Chinner2ca98772013-10-29 22:11:49 +11001376 bf = dp->d_ops->data_bestfree_p(hdr);
Dave Chinner01ba43b2013-10-29 22:11:52 +11001377 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +11001378 ents = dp->d_ops->leaf_ents_p(leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 /*
1380 * Point to the leaf entry, use that to point to the data entry.
1381 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001382 lep = &ents[index];
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001383 db = xfs_dir2_dataptr_to_db(mp, be32_to_cpu(lep->address));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 dep = (xfs_dir2_data_entry_t *)
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001385 ((char *)hdr + xfs_dir2_dataptr_to_off(mp, be32_to_cpu(lep->address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 needscan = needlog = 0;
Dave Chinner33363fe2013-04-03 16:11:22 +11001387 oldbest = be16_to_cpu(bf[0].length);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001388 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
1389 bestsp = xfs_dir2_leaf_bests_p(ltp);
Nathan Scott68b3a102006-03-17 17:27:19 +11001390 ASSERT(be16_to_cpu(bestsp[db]) == oldbest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 /*
1392 * Mark the former data entry unused.
1393 */
Dave Chinner2ca98772013-10-29 22:11:49 +11001394 xfs_dir2_data_make_free(tp, dp, dbp,
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001395 (xfs_dir2_data_aoff_t)((char *)dep - (char *)hdr),
Dave Chinner9d23fc82013-10-29 22:11:48 +11001396 dp->d_ops->data_entsize(dep->namelen), &needlog, &needscan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 /*
1398 * We just mark the leaf entry stale by putting a null in it.
1399 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001400 leafhdr.stale++;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001401 dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr);
Dave Chinner41419562013-10-29 22:11:50 +11001402 xfs_dir3_leaf_log_header(tp, dp, lbp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001403
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001404 lep->address = cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
Dave Chinner41419562013-10-29 22:11:50 +11001405 xfs_dir3_leaf_log_ents(tp, dp, lbp, index, index);
Dave Chinner24df33b2013-04-12 07:30:21 +10001406
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 /*
1408 * Scan the freespace in the data block again if necessary,
1409 * log the data block header if necessary.
1410 */
1411 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +11001412 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 if (needlog)
Dave Chinner2ca98772013-10-29 22:11:49 +11001414 xfs_dir2_data_log_header(tp, dp, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 /*
1416 * If the longest freespace in the data block has changed,
1417 * put the new value in the bests table and log that.
1418 */
Dave Chinner33363fe2013-04-03 16:11:22 +11001419 if (be16_to_cpu(bf[0].length) != oldbest) {
1420 bestsp[db] = bf[0].length;
Dave Chinner24df33b2013-04-12 07:30:21 +10001421 xfs_dir3_leaf_log_bests(tp, lbp, db, db);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 }
Dave Chinner33363fe2013-04-03 16:11:22 +11001423 xfs_dir3_data_check(dp, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 /*
1425 * If the data block is now empty then get rid of the data block.
1426 */
Dave Chinner33363fe2013-04-03 16:11:22 +11001427 if (be16_to_cpu(bf[0].length) ==
Dave Chinner1c9a5b22013-10-30 09:15:02 +11001428 mp->m_dirblksize - dp->d_ops->data_entry_offset) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 ASSERT(db != mp->m_dirdatablk);
1430 if ((error = xfs_dir2_shrink_inode(args, db, dbp))) {
1431 /*
1432 * Nope, can't get rid of it because it caused
1433 * allocation of a bmap btree block to do so.
1434 * Just go on, returning success, leaving the
1435 * empty block in place.
1436 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001437 if (error == ENOSPC && args->total == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 error = 0;
Dave Chinner41419562013-10-29 22:11:50 +11001439 xfs_dir3_leaf_check(dp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 return error;
1441 }
1442 dbp = NULL;
1443 /*
1444 * If this is the last data block then compact the
1445 * bests table by getting rid of entries.
1446 */
Nathan Scottafbcb3f2006-03-17 17:27:28 +11001447 if (db == be32_to_cpu(ltp->bestcount) - 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 /*
1449 * Look for the last active entry (i).
1450 */
1451 for (i = db - 1; i > 0; i--) {
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001452 if (bestsp[i] != cpu_to_be16(NULLDATAOFF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 break;
1454 }
1455 /*
1456 * Copy the table down so inactive entries at the
1457 * end are removed.
1458 */
1459 memmove(&bestsp[db - i], bestsp,
Nathan Scottafbcb3f2006-03-17 17:27:28 +11001460 (be32_to_cpu(ltp->bestcount) - (db - i)) * sizeof(*bestsp));
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001461 be32_add_cpu(&ltp->bestcount, -(db - i));
Dave Chinner24df33b2013-04-12 07:30:21 +10001462 xfs_dir3_leaf_log_tail(tp, lbp);
1463 xfs_dir3_leaf_log_bests(tp, lbp, 0, be32_to_cpu(ltp->bestcount) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 } else
Nathan Scott68b3a102006-03-17 17:27:19 +11001465 bestsp[db] = cpu_to_be16(NULLDATAOFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 }
1467 /*
1468 * If the data block was not the first one, drop it.
1469 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001470 else if (db != mp->m_dirdatablk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 dbp = NULL;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001472
Dave Chinner41419562013-10-29 22:11:50 +11001473 xfs_dir3_leaf_check(dp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 /*
1475 * See if we can convert to block form.
1476 */
1477 return xfs_dir2_leaf_to_block(args, lbp, dbp);
1478}
1479
1480/*
1481 * Replace the inode number in a leaf format directory entry.
1482 */
1483int /* error */
1484xfs_dir2_leaf_replace(
1485 xfs_da_args_t *args) /* operation arguments */
1486{
Dave Chinner1d9025e2012-06-22 18:50:14 +10001487 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 xfs_dir2_data_entry_t *dep; /* data block entry */
1489 xfs_inode_t *dp; /* incore directory inode */
1490 int error; /* error return code */
1491 int index; /* index of leaf entry */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001492 struct xfs_buf *lbp; /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 xfs_dir2_leaf_t *leaf; /* leaf structure */
1494 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1495 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner24df33b2013-04-12 07:30:21 +10001496 struct xfs_dir2_leaf_entry *ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001498 trace_xfs_dir2_leaf_replace(args);
1499
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 /*
1501 * Look up the entry.
1502 */
1503 if ((error = xfs_dir2_leaf_lookup_int(args, &lbp, &index, &dbp))) {
1504 return error;
1505 }
1506 dp = args->dp;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001507 leaf = lbp->b_addr;
Dave Chinner41419562013-10-29 22:11:50 +11001508 ents = dp->d_ops->leaf_ents_p(leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 /*
1510 * Point to the leaf entry, get data address from it.
1511 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001512 lep = &ents[index];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 /*
1514 * Point to the data entry.
1515 */
1516 dep = (xfs_dir2_data_entry_t *)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001517 ((char *)dbp->b_addr +
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001518 xfs_dir2_dataptr_to_off(dp->i_mount, be32_to_cpu(lep->address)));
Christoph Hellwigff9901c2006-06-09 14:48:37 +10001519 ASSERT(args->inumber != be64_to_cpu(dep->inumber));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 /*
1521 * Put the new inode number in, log it.
1522 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +10001523 dep->inumber = cpu_to_be64(args->inumber);
Dave Chinner9d23fc82013-10-29 22:11:48 +11001524 dp->d_ops->data_put_ftype(dep, args->filetype);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 tp = args->trans;
Dave Chinner9d23fc82013-10-29 22:11:48 +11001526 xfs_dir2_data_log_entry(tp, dp, dbp, dep);
Dave Chinner41419562013-10-29 22:11:50 +11001527 xfs_dir3_leaf_check(dp, lbp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001528 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 return 0;
1530}
1531
1532/*
1533 * Return index in the leaf block (lbp) which is either the first
1534 * one with this hash value, or if there are none, the insert point
1535 * for that hash value.
1536 */
1537int /* index value */
1538xfs_dir2_leaf_search_hash(
1539 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001540 struct xfs_buf *lbp) /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541{
1542 xfs_dahash_t hash=0; /* hash from this entry */
1543 xfs_dahash_t hashwant; /* hash value looking for */
1544 int high; /* high leaf index */
1545 int low; /* low leaf index */
1546 xfs_dir2_leaf_t *leaf; /* leaf structure */
1547 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1548 int mid=0; /* current leaf index */
Dave Chinner24df33b2013-04-12 07:30:21 +10001549 struct xfs_dir2_leaf_entry *ents;
1550 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
Dave Chinner1d9025e2012-06-22 18:50:14 +10001552 leaf = lbp->b_addr;
Dave Chinner41419562013-10-29 22:11:50 +11001553 ents = args->dp->d_ops->leaf_ents_p(leaf);
Dave Chinner01ba43b2013-10-29 22:11:52 +11001554 args->dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001555
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 /*
1557 * Note, the table cannot be empty, so we have to go through the loop.
1558 * Binary search the leaf entries looking for our hash value.
1559 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001560 for (lep = ents, low = 0, high = leafhdr.count - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 hashwant = args->hashval;
1562 low <= high; ) {
1563 mid = (low + high) >> 1;
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001564 if ((hash = be32_to_cpu(lep[mid].hashval)) == hashwant)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 break;
1566 if (hash < hashwant)
1567 low = mid + 1;
1568 else
1569 high = mid - 1;
1570 }
1571 /*
1572 * Found one, back up through all the equal hash values.
1573 */
1574 if (hash == hashwant) {
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001575 while (mid > 0 && be32_to_cpu(lep[mid - 1].hashval) == hashwant) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 mid--;
1577 }
1578 }
1579 /*
1580 * Need to point to an entry higher than ours.
1581 */
1582 else if (hash < hashwant)
1583 mid++;
1584 return mid;
1585}
1586
1587/*
1588 * Trim off a trailing data block. We know it's empty since the leaf
1589 * freespace table says so.
1590 */
1591int /* error */
1592xfs_dir2_leaf_trim_data(
1593 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001594 struct xfs_buf *lbp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 xfs_dir2_db_t db) /* data block number */
1596{
Nathan Scott68b3a102006-03-17 17:27:19 +11001597 __be16 *bestsp; /* leaf bests table */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001598 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 xfs_inode_t *dp; /* incore directory inode */
1600 int error; /* error return value */
1601 xfs_dir2_leaf_t *leaf; /* leaf structure */
1602 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
1603 xfs_mount_t *mp; /* filesystem mount point */
1604 xfs_trans_t *tp; /* transaction pointer */
1605
1606 dp = args->dp;
1607 mp = dp->i_mount;
1608 tp = args->trans;
1609 /*
1610 * Read the offending data block. We need its buffer.
1611 */
Dave Chinner33363fe2013-04-03 16:11:22 +11001612 error = xfs_dir3_data_read(tp, dp, xfs_dir2_db_to_da(mp, db), -1, &dbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001613 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615
Dave Chinner1d9025e2012-06-22 18:50:14 +10001616 leaf = lbp->b_addr;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001617 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001618
1619#ifdef DEBUG
1620{
Dave Chinner1d9025e2012-06-22 18:50:14 +10001621 struct xfs_dir2_data_hdr *hdr = dbp->b_addr;
Dave Chinner2ca98772013-10-29 22:11:49 +11001622 struct xfs_dir2_data_free *bf = dp->d_ops->data_bestfree_p(hdr);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001623
Dave Chinner33363fe2013-04-03 16:11:22 +11001624 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
1625 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC));
1626 ASSERT(be16_to_cpu(bf[0].length) ==
Dave Chinner1c9a5b22013-10-30 09:15:02 +11001627 mp->m_dirblksize - dp->d_ops->data_entry_offset);
Nathan Scottafbcb3f2006-03-17 17:27:28 +11001628 ASSERT(db == be32_to_cpu(ltp->bestcount) - 1);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001629}
1630#endif
1631
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 /*
1633 * Get rid of the data block.
1634 */
1635 if ((error = xfs_dir2_shrink_inode(args, db, dbp))) {
1636 ASSERT(error != ENOSPC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001637 xfs_trans_brelse(tp, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 return error;
1639 }
1640 /*
1641 * Eliminate the last bests entry from the table.
1642 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001643 bestsp = xfs_dir2_leaf_bests_p(ltp);
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001644 be32_add_cpu(&ltp->bestcount, -1);
Nathan Scottafbcb3f2006-03-17 17:27:28 +11001645 memmove(&bestsp[1], &bestsp[0], be32_to_cpu(ltp->bestcount) * sizeof(*bestsp));
Dave Chinner24df33b2013-04-12 07:30:21 +10001646 xfs_dir3_leaf_log_tail(tp, lbp);
1647 xfs_dir3_leaf_log_bests(tp, lbp, 0, be32_to_cpu(ltp->bestcount) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 return 0;
1649}
1650
Christoph Hellwig22823962011-07-08 14:35:53 +02001651static inline size_t
Dave Chinner24df33b2013-04-12 07:30:21 +10001652xfs_dir3_leaf_size(
1653 struct xfs_dir3_icleaf_hdr *hdr,
Christoph Hellwig22823962011-07-08 14:35:53 +02001654 int counts)
1655{
Dave Chinner24df33b2013-04-12 07:30:21 +10001656 int entries;
1657 int hdrsize;
Christoph Hellwig22823962011-07-08 14:35:53 +02001658
Dave Chinner24df33b2013-04-12 07:30:21 +10001659 entries = hdr->count - hdr->stale;
1660 if (hdr->magic == XFS_DIR2_LEAF1_MAGIC ||
1661 hdr->magic == XFS_DIR2_LEAFN_MAGIC)
1662 hdrsize = sizeof(struct xfs_dir2_leaf_hdr);
1663 else
1664 hdrsize = sizeof(struct xfs_dir3_leaf_hdr);
1665
1666 return hdrsize + entries * sizeof(xfs_dir2_leaf_entry_t)
1667 + counts * sizeof(xfs_dir2_data_off_t)
1668 + sizeof(xfs_dir2_leaf_tail_t);
Christoph Hellwig22823962011-07-08 14:35:53 +02001669}
1670
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671/*
1672 * Convert node form directory to leaf form directory.
1673 * The root of the node form dir needs to already be a LEAFN block.
1674 * Just return if we can't do anything.
1675 */
1676int /* error */
1677xfs_dir2_node_to_leaf(
1678 xfs_da_state_t *state) /* directory operation state */
1679{
1680 xfs_da_args_t *args; /* operation arguments */
1681 xfs_inode_t *dp; /* incore directory inode */
1682 int error; /* error return code */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001683 struct xfs_buf *fbp; /* buffer for freespace block */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 xfs_fileoff_t fo; /* freespace file offset */
1685 xfs_dir2_free_t *free; /* freespace structure */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001686 struct xfs_buf *lbp; /* buffer for leaf block */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 xfs_dir2_leaf_tail_t *ltp; /* tail of leaf structure */
1688 xfs_dir2_leaf_t *leaf; /* leaf structure */
1689 xfs_mount_t *mp; /* filesystem mount point */
1690 int rval; /* successful free trim? */
1691 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner24df33b2013-04-12 07:30:21 +10001692 struct xfs_dir3_icleaf_hdr leafhdr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001693 struct xfs_dir3_icfree_hdr freehdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
1695 /*
1696 * There's more than a leaf level in the btree, so there must
1697 * be multiple leafn blocks. Give up.
1698 */
1699 if (state->path.active > 1)
1700 return 0;
1701 args = state->args;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001702
1703 trace_xfs_dir2_node_to_leaf(args);
1704
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 mp = state->mp;
1706 dp = args->dp;
1707 tp = args->trans;
1708 /*
1709 * Get the last offset in the file.
1710 */
1711 if ((error = xfs_bmap_last_offset(tp, dp, &fo, XFS_DATA_FORK))) {
1712 return error;
1713 }
1714 fo -= mp->m_dirblkfsbs;
1715 /*
1716 * If there are freespace blocks other than the first one,
1717 * take this opportunity to remove trailing empty freespace blocks
1718 * that may have been left behind during no-space-reservation
1719 * operations.
1720 */
1721 while (fo > mp->m_dirfreeblk) {
1722 if ((error = xfs_dir2_node_trim_free(args, fo, &rval))) {
1723 return error;
1724 }
1725 if (rval)
1726 fo -= mp->m_dirblkfsbs;
1727 else
1728 return 0;
1729 }
1730 /*
1731 * Now find the block just before the freespace block.
1732 */
1733 if ((error = xfs_bmap_last_before(tp, dp, &fo, XFS_DATA_FORK))) {
1734 return error;
1735 }
1736 /*
1737 * If it's not the single leaf block, give up.
1738 */
1739 if (XFS_FSB_TO_B(mp, fo) > XFS_DIR2_LEAF_OFFSET + mp->m_dirblksize)
1740 return 0;
1741 lbp = state->path.blk[0].bp;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001742 leaf = lbp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001743 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001744
1745 ASSERT(leafhdr.magic == XFS_DIR2_LEAFN_MAGIC ||
1746 leafhdr.magic == XFS_DIR3_LEAFN_MAGIC);
1747
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 /*
1749 * Read the freespace block.
1750 */
Dave Chinner20252072012-11-12 22:54:13 +11001751 error = xfs_dir2_free_read(tp, dp, mp->m_dirfreeblk, &fbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001752 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001754 free = fbp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001755 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001756
1757 ASSERT(!freehdr.firstdb);
Christoph Hellwig22823962011-07-08 14:35:53 +02001758
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 /*
1760 * Now see if the leafn and free data will fit in a leaf1.
1761 * If not, release the buffer and give up.
1762 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001763 if (xfs_dir3_leaf_size(&leafhdr, freehdr.nvalid) > mp->m_dirblksize) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001764 xfs_trans_brelse(tp, fbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 return 0;
1766 }
Christoph Hellwig22823962011-07-08 14:35:53 +02001767
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 /*
1769 * If the leaf has any stale entries in it, compress them out.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001771 if (leafhdr.stale)
1772 xfs_dir3_leaf_compact(args, &leafhdr, lbp);
Dave Chinnerb0f539d2012-11-14 17:53:49 +11001773
Dave Chinner24df33b2013-04-12 07:30:21 +10001774 lbp->b_ops = &xfs_dir3_leaf1_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +11001775 xfs_trans_buf_set_type(tp, lbp, XFS_BLFT_DIR_LEAF1_BUF);
Dave Chinner24df33b2013-04-12 07:30:21 +10001776 leafhdr.magic = (leafhdr.magic == XFS_DIR2_LEAFN_MAGIC)
1777 ? XFS_DIR2_LEAF1_MAGIC
1778 : XFS_DIR3_LEAF1_MAGIC;
Dave Chinnerb0f539d2012-11-14 17:53:49 +11001779
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 /*
1781 * Set up the leaf tail from the freespace block.
1782 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001783 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001784 ltp->bestcount = cpu_to_be32(freehdr.nvalid);
Dave Chinner24df33b2013-04-12 07:30:21 +10001785
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 /*
1787 * Set up the leaf bests table.
1788 */
Dave Chinner24dd0f52013-10-30 13:48:41 -05001789 memcpy(xfs_dir2_leaf_bests_p(ltp), dp->d_ops->free_bests_p(free),
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001790 freehdr.nvalid * sizeof(xfs_dir2_data_off_t));
Dave Chinner24df33b2013-04-12 07:30:21 +10001791
Dave Chinner01ba43b2013-10-29 22:11:52 +11001792 dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr);
Dave Chinner41419562013-10-29 22:11:50 +11001793 xfs_dir3_leaf_log_header(tp, dp, lbp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001794 xfs_dir3_leaf_log_bests(tp, lbp, 0, be32_to_cpu(ltp->bestcount) - 1);
1795 xfs_dir3_leaf_log_tail(tp, lbp);
Dave Chinner41419562013-10-29 22:11:50 +11001796 xfs_dir3_leaf_check(dp, lbp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001797
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 /*
1799 * Get rid of the freespace block.
1800 */
1801 error = xfs_dir2_shrink_inode(args, XFS_DIR2_FREE_FIRSTDB(mp), fbp);
1802 if (error) {
1803 /*
1804 * This can't fail here because it can only happen when
1805 * punching out the middle of an extent, and this is an
1806 * isolated block.
1807 */
1808 ASSERT(error != ENOSPC);
1809 return error;
1810 }
1811 fbp = NULL;
1812 /*
1813 * Now see if we can convert the single-leaf directory
1814 * down to a block form directory.
1815 * This routine always kills the dabuf for the leaf, so
1816 * eliminate it from the path.
1817 */
1818 error = xfs_dir2_leaf_to_block(args, lbp, NULL);
1819 state->path.blk[0].bp = NULL;
1820 return error;
1821}