blob: dffb61bd0bc553d5c1fbcb848edad774d018c828 [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) &&
Eric Sandeen51582172014-02-27 15:17:27 +1100183 !xfs_buf_verify_cksum(bp, XFS_DIR3_LEAF_CRC_OFF)) ||
Dave Chinner24df33b2013-04-12 07:30:21 +1000184 !xfs_dir3_leaf_verify(bp, magic)) {
185 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
Dave Chinnere6f76672012-11-12 22:54:15 +1100186 xfs_buf_ioerror(bp, EFSCORRUPTED);
187 }
Dave Chinner612cfbf2012-11-14 17:52:32 +1100188}
Dave Chinnere6f76672012-11-12 22:54:15 +1100189
Dave Chinner612cfbf2012-11-14 17:52:32 +1100190static void
Dave Chinner24df33b2013-04-12 07:30:21 +1000191__write_verify(
192 struct xfs_buf *bp,
193 __uint16_t magic)
Dave Chinner612cfbf2012-11-14 17:52:32 +1100194{
Dave Chinner24df33b2013-04-12 07:30:21 +1000195 struct xfs_mount *mp = bp->b_target->bt_mount;
196 struct xfs_buf_log_item *bip = bp->b_fspriv;
197 struct xfs_dir3_leaf_hdr *hdr3 = bp->b_addr;
198
199 if (!xfs_dir3_leaf_verify(bp, magic)) {
200 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
201 xfs_buf_ioerror(bp, EFSCORRUPTED);
202 return;
203 }
204
205 if (!xfs_sb_version_hascrc(&mp->m_sb))
206 return;
207
208 if (bip)
209 hdr3->info.lsn = cpu_to_be64(bip->bli_item.li_lsn);
210
Eric Sandeenf1dbcd72014-02-27 15:18:23 +1100211 xfs_buf_update_cksum(bp, XFS_DIR3_LEAF_CRC_OFF);
Dave Chinner612cfbf2012-11-14 17:52:32 +1100212}
213
214static void
Dave Chinner24df33b2013-04-12 07:30:21 +1000215xfs_dir3_leaf1_read_verify(
Dave Chinner612cfbf2012-11-14 17:52:32 +1100216 struct xfs_buf *bp)
217{
Dave Chinner24df33b2013-04-12 07:30:21 +1000218 __read_verify(bp, XFS_DIR2_LEAF1_MAGIC);
Dave Chinner1813dd62012-11-14 17:54:40 +1100219}
220
Dave Chinner24df33b2013-04-12 07:30:21 +1000221static void
222xfs_dir3_leaf1_write_verify(
Dave Chinner1813dd62012-11-14 17:54:40 +1100223 struct xfs_buf *bp)
224{
Dave Chinner24df33b2013-04-12 07:30:21 +1000225 __write_verify(bp, XFS_DIR2_LEAF1_MAGIC);
Dave Chinnere6f76672012-11-12 22:54:15 +1100226}
227
Dave Chinner24df33b2013-04-12 07:30:21 +1000228static void
229xfs_dir3_leafn_read_verify(
Dave Chinner612cfbf2012-11-14 17:52:32 +1100230 struct xfs_buf *bp)
Dave Chinnere6f76672012-11-12 22:54:15 +1100231{
Dave Chinner24df33b2013-04-12 07:30:21 +1000232 __read_verify(bp, XFS_DIR2_LEAFN_MAGIC);
Dave Chinnere6f76672012-11-12 22:54:15 +1100233}
234
Dave Chinner24df33b2013-04-12 07:30:21 +1000235static void
236xfs_dir3_leafn_write_verify(
237 struct xfs_buf *bp)
238{
239 __write_verify(bp, XFS_DIR2_LEAFN_MAGIC);
240}
241
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100242const struct xfs_buf_ops xfs_dir3_leaf1_buf_ops = {
Dave Chinner24df33b2013-04-12 07:30:21 +1000243 .verify_read = xfs_dir3_leaf1_read_verify,
244 .verify_write = xfs_dir3_leaf1_write_verify,
Dave Chinner1813dd62012-11-14 17:54:40 +1100245};
246
Dave Chinner24df33b2013-04-12 07:30:21 +1000247const struct xfs_buf_ops xfs_dir3_leafn_buf_ops = {
248 .verify_read = xfs_dir3_leafn_read_verify,
249 .verify_write = xfs_dir3_leafn_write_verify,
Dave Chinner1813dd62012-11-14 17:54:40 +1100250};
Dave Chinnere6f76672012-11-12 22:54:15 +1100251
252static int
Dave Chinner24df33b2013-04-12 07:30:21 +1000253xfs_dir3_leaf_read(
Dave Chinnere6f76672012-11-12 22:54:15 +1100254 struct xfs_trans *tp,
255 struct xfs_inode *dp,
256 xfs_dablk_t fbno,
257 xfs_daddr_t mappedbno,
258 struct xfs_buf **bpp)
259{
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100260 int err;
261
262 err = xfs_da_read_buf(tp, dp, fbno, mappedbno, bpp,
Dave Chinner24df33b2013-04-12 07:30:21 +1000263 XFS_DATA_FORK, &xfs_dir3_leaf1_buf_ops);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100264 if (!err && tp)
Dave Chinner61fe1352013-04-03 16:11:30 +1100265 xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_DIR_LEAF1_BUF);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100266 return err;
Dave Chinnere6f76672012-11-12 22:54:15 +1100267}
268
269int
Dave Chinner24df33b2013-04-12 07:30:21 +1000270xfs_dir3_leafn_read(
Dave Chinnere6f76672012-11-12 22:54:15 +1100271 struct xfs_trans *tp,
272 struct xfs_inode *dp,
273 xfs_dablk_t fbno,
274 xfs_daddr_t mappedbno,
275 struct xfs_buf **bpp)
276{
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100277 int err;
278
279 err = xfs_da_read_buf(tp, dp, fbno, mappedbno, bpp,
Dave Chinner24df33b2013-04-12 07:30:21 +1000280 XFS_DATA_FORK, &xfs_dir3_leafn_buf_ops);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100281 if (!err && tp)
Dave Chinner61fe1352013-04-03 16:11:30 +1100282 xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_DIR_LEAFN_BUF);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100283 return err;
Dave Chinner24df33b2013-04-12 07:30:21 +1000284}
285
286/*
287 * Initialize a new leaf block, leaf1 or leafn magic accepted.
288 */
289static void
290xfs_dir3_leaf_init(
291 struct xfs_mount *mp,
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100292 struct xfs_trans *tp,
Dave Chinner24df33b2013-04-12 07:30:21 +1000293 struct xfs_buf *bp,
294 xfs_ino_t owner,
295 __uint16_t type)
296{
297 struct xfs_dir2_leaf *leaf = bp->b_addr;
298
299 ASSERT(type == XFS_DIR2_LEAF1_MAGIC || type == XFS_DIR2_LEAFN_MAGIC);
300
301 if (xfs_sb_version_hascrc(&mp->m_sb)) {
302 struct xfs_dir3_leaf_hdr *leaf3 = bp->b_addr;
303
304 memset(leaf3, 0, sizeof(*leaf3));
305
306 leaf3->info.hdr.magic = (type == XFS_DIR2_LEAF1_MAGIC)
307 ? cpu_to_be16(XFS_DIR3_LEAF1_MAGIC)
308 : cpu_to_be16(XFS_DIR3_LEAFN_MAGIC);
309 leaf3->info.blkno = cpu_to_be64(bp->b_bn);
310 leaf3->info.owner = cpu_to_be64(owner);
311 uuid_copy(&leaf3->info.uuid, &mp->m_sb.sb_uuid);
312 } else {
313 memset(leaf, 0, sizeof(*leaf));
314 leaf->hdr.info.magic = cpu_to_be16(type);
315 }
316
317 /*
318 * If it's a leaf-format directory initialize the tail.
319 * Caller is responsible for initialising the bests table.
320 */
321 if (type == XFS_DIR2_LEAF1_MAGIC) {
322 struct xfs_dir2_leaf_tail *ltp;
323
324 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
325 ltp->bestcount = 0;
326 bp->b_ops = &xfs_dir3_leaf1_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100327 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_LEAF1_BUF);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100328 } else {
Dave Chinner24df33b2013-04-12 07:30:21 +1000329 bp->b_ops = &xfs_dir3_leafn_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100330 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_LEAFN_BUF);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100331 }
Dave Chinner24df33b2013-04-12 07:30:21 +1000332}
333
334int
335xfs_dir3_leaf_get_buf(
336 xfs_da_args_t *args,
337 xfs_dir2_db_t bno,
338 struct xfs_buf **bpp,
339 __uint16_t magic)
340{
341 struct xfs_inode *dp = args->dp;
342 struct xfs_trans *tp = args->trans;
343 struct xfs_mount *mp = dp->i_mount;
344 struct xfs_buf *bp;
345 int error;
346
347 ASSERT(magic == XFS_DIR2_LEAF1_MAGIC || magic == XFS_DIR2_LEAFN_MAGIC);
348 ASSERT(bno >= XFS_DIR2_LEAF_FIRSTDB(mp) &&
349 bno < XFS_DIR2_FREE_FIRSTDB(mp));
350
351 error = xfs_da_get_buf(tp, dp, xfs_dir2_db_to_da(mp, bno), -1, &bp,
352 XFS_DATA_FORK);
353 if (error)
354 return error;
355
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100356 xfs_dir3_leaf_init(mp, tp, bp, dp->i_ino, magic);
Dave Chinner41419562013-10-29 22:11:50 +1100357 xfs_dir3_leaf_log_header(tp, dp, bp);
Dave Chinner24df33b2013-04-12 07:30:21 +1000358 if (magic == XFS_DIR2_LEAF1_MAGIC)
359 xfs_dir3_leaf_log_tail(tp, bp);
360 *bpp = bp;
361 return 0;
Dave Chinnere6f76672012-11-12 22:54:15 +1100362}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364/*
365 * Convert a block form directory to a leaf form directory.
366 */
367int /* error */
368xfs_dir2_block_to_leaf(
369 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000370 struct xfs_buf *dbp) /* input block's buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
Nathan Scott68b3a102006-03-17 17:27:19 +1100372 __be16 *bestsp; /* leaf's bestsp entries */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 xfs_dablk_t blkno; /* leaf block's bno */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200374 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 xfs_dir2_leaf_entry_t *blp; /* block's leaf entries */
376 xfs_dir2_block_tail_t *btp; /* block's tail */
377 xfs_inode_t *dp; /* incore directory inode */
378 int error; /* error return code */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000379 struct xfs_buf *lbp; /* leaf block's buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 xfs_dir2_db_t ldb; /* leaf block's bno */
381 xfs_dir2_leaf_t *leaf; /* leaf structure */
382 xfs_dir2_leaf_tail_t *ltp; /* leaf's tail */
383 xfs_mount_t *mp; /* filesystem mount point */
384 int needlog; /* need to log block header */
385 int needscan; /* need to rescan bestfree */
386 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner33363fe2013-04-03 16:11:22 +1100387 struct xfs_dir2_data_free *bf;
Dave Chinner24df33b2013-04-12 07:30:21 +1000388 struct xfs_dir2_leaf_entry *ents;
389 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000391 trace_xfs_dir2_block_to_leaf(args);
392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 dp = args->dp;
394 mp = dp->i_mount;
395 tp = args->trans;
396 /*
397 * Add the leaf block to the inode.
398 * This interface will only put blocks in the leaf/node range.
399 * Since that's empty now, we'll get the root (block 0 in range).
400 */
401 if ((error = xfs_da_grow_inode(args, &blkno))) {
402 return error;
403 }
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000404 ldb = xfs_dir2_da_to_db(mp, blkno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 ASSERT(ldb == XFS_DIR2_LEAF_FIRSTDB(mp));
406 /*
407 * Initialize the leaf block, get a buffer for it.
408 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000409 error = xfs_dir3_leaf_get_buf(args, ldb, &lbp, XFS_DIR2_LEAF1_MAGIC);
410 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 return error;
Dave Chinner24df33b2013-04-12 07:30:21 +1000412
Dave Chinner1d9025e2012-06-22 18:50:14 +1000413 leaf = lbp->b_addr;
414 hdr = dbp->b_addr;
Dave Chinner33363fe2013-04-03 16:11:22 +1100415 xfs_dir3_data_check(dp, dbp);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200416 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000417 blp = xfs_dir2_block_leaf_p(btp);
Dave Chinner2ca98772013-10-29 22:11:49 +1100418 bf = dp->d_ops->data_bestfree_p(hdr);
Dave Chinner41419562013-10-29 22:11:50 +1100419 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000420
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 /*
422 * Set the counts in the leaf header.
423 */
Dave Chinner01ba43b2013-10-29 22:11:52 +1100424 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000425 leafhdr.count = be32_to_cpu(btp->count);
426 leafhdr.stale = be32_to_cpu(btp->stale);
Dave Chinner01ba43b2013-10-29 22:11:52 +1100427 dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr);
Dave Chinner41419562013-10-29 22:11:50 +1100428 xfs_dir3_leaf_log_header(tp, dp, lbp);
Dave Chinner24df33b2013-04-12 07:30:21 +1000429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 /*
431 * Could compact these but I think we always do the conversion
432 * after squeezing out stale entries.
433 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000434 memcpy(ents, blp, be32_to_cpu(btp->count) * sizeof(xfs_dir2_leaf_entry_t));
Dave Chinner41419562013-10-29 22:11:50 +1100435 xfs_dir3_leaf_log_ents(tp, dp, lbp, 0, leafhdr.count - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 needscan = 0;
437 needlog = 1;
438 /*
439 * Make the space formerly occupied by the leaf entries and block
440 * tail be free.
441 */
Dave Chinner2ca98772013-10-29 22:11:49 +1100442 xfs_dir2_data_make_free(tp, dp, dbp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200443 (xfs_dir2_data_aoff_t)((char *)blp - (char *)hdr),
444 (xfs_dir2_data_aoff_t)((char *)hdr + mp->m_dirblksize -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 (char *)blp),
446 &needlog, &needscan);
447 /*
448 * Fix up the block header, make it a data block.
449 */
Dave Chinner33363fe2013-04-03 16:11:22 +1100450 dbp->b_ops = &xfs_dir3_data_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100451 xfs_trans_buf_set_type(tp, dbp, XFS_BLFT_DIR_DATA_BUF);
Dave Chinner33363fe2013-04-03 16:11:22 +1100452 if (hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC))
453 hdr->magic = cpu_to_be32(XFS_DIR2_DATA_MAGIC);
454 else
455 hdr->magic = cpu_to_be32(XFS_DIR3_DATA_MAGIC);
456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +1100458 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 /*
460 * Set up leaf tail and bests table.
461 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000462 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100463 ltp->bestcount = cpu_to_be32(1);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000464 bestsp = xfs_dir2_leaf_bests_p(ltp);
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100465 bestsp[0] = bf[0].length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 /*
467 * Log the data header and leaf bests table.
468 */
469 if (needlog)
Dave Chinner2ca98772013-10-29 22:11:49 +1100470 xfs_dir2_data_log_header(tp, dp, dbp);
Dave Chinner41419562013-10-29 22:11:50 +1100471 xfs_dir3_leaf_check(dp, lbp);
Dave Chinner33363fe2013-04-03 16:11:22 +1100472 xfs_dir3_data_check(dp, dbp);
Dave Chinner24df33b2013-04-12 07:30:21 +1000473 xfs_dir3_leaf_log_bests(tp, lbp, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 return 0;
475}
476
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200477STATIC void
Dave Chinner24df33b2013-04-12 07:30:21 +1000478xfs_dir3_leaf_find_stale(
479 struct xfs_dir3_icleaf_hdr *leafhdr,
480 struct xfs_dir2_leaf_entry *ents,
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200481 int index,
482 int *lowstale,
483 int *highstale)
484{
485 /*
486 * Find the first stale entry before our index, if any.
487 */
488 for (*lowstale = index - 1; *lowstale >= 0; --*lowstale) {
Dave Chinner24df33b2013-04-12 07:30:21 +1000489 if (ents[*lowstale].address ==
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200490 cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
491 break;
492 }
493
494 /*
495 * Find the first stale entry at or after our index, if any.
496 * Stop if the result would require moving more entries than using
497 * lowstale.
498 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000499 for (*highstale = index; *highstale < leafhdr->count; ++*highstale) {
500 if (ents[*highstale].address ==
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200501 cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
502 break;
503 if (*lowstale >= 0 && index - *lowstale <= *highstale - index)
504 break;
505 }
506}
507
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200508struct xfs_dir2_leaf_entry *
Dave Chinner24df33b2013-04-12 07:30:21 +1000509xfs_dir3_leaf_find_entry(
510 struct xfs_dir3_icleaf_hdr *leafhdr,
511 struct xfs_dir2_leaf_entry *ents,
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200512 int index, /* leaf table position */
513 int compact, /* need to compact leaves */
514 int lowstale, /* index of prev stale leaf */
515 int highstale, /* index of next stale leaf */
516 int *lfloglow, /* low leaf logging index */
517 int *lfloghigh) /* high leaf logging index */
518{
Dave Chinner24df33b2013-04-12 07:30:21 +1000519 if (!leafhdr->stale) {
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200520 xfs_dir2_leaf_entry_t *lep; /* leaf entry table pointer */
521
522 /*
523 * Now we need to make room to insert the leaf entry.
524 *
525 * If there are no stale entries, just insert a hole at index.
526 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000527 lep = &ents[index];
528 if (index < leafhdr->count)
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200529 memmove(lep + 1, lep,
Dave Chinner24df33b2013-04-12 07:30:21 +1000530 (leafhdr->count - index) * sizeof(*lep));
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200531
532 /*
533 * Record low and high logging indices for the leaf.
534 */
535 *lfloglow = index;
Dave Chinner24df33b2013-04-12 07:30:21 +1000536 *lfloghigh = leafhdr->count++;
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200537 return lep;
538 }
539
540 /*
541 * There are stale entries.
542 *
543 * We will use one of them for the new entry. It's probably not at
544 * the right location, so we'll have to shift some up or down first.
545 *
546 * If we didn't compact before, we need to find the nearest stale
547 * entries before and after our insertion point.
548 */
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200549 if (compact == 0)
Dave Chinner24df33b2013-04-12 07:30:21 +1000550 xfs_dir3_leaf_find_stale(leafhdr, ents, index,
551 &lowstale, &highstale);
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200552
553 /*
554 * If the low one is better, use it.
555 */
556 if (lowstale >= 0 &&
Dave Chinner24df33b2013-04-12 07:30:21 +1000557 (highstale == leafhdr->count ||
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200558 index - lowstale - 1 < highstale - index)) {
559 ASSERT(index - lowstale - 1 >= 0);
Dave Chinner24df33b2013-04-12 07:30:21 +1000560 ASSERT(ents[lowstale].address ==
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200561 cpu_to_be32(XFS_DIR2_NULL_DATAPTR));
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200562
563 /*
564 * Copy entries up to cover the stale entry and make room
565 * for the new entry.
566 */
567 if (index - lowstale - 1 > 0) {
Dave Chinner24df33b2013-04-12 07:30:21 +1000568 memmove(&ents[lowstale], &ents[lowstale + 1],
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200569 (index - lowstale - 1) *
Dave Chinner24df33b2013-04-12 07:30:21 +1000570 sizeof(xfs_dir2_leaf_entry_t));
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200571 }
572 *lfloglow = MIN(lowstale, *lfloglow);
573 *lfloghigh = MAX(index - 1, *lfloghigh);
Dave Chinner24df33b2013-04-12 07:30:21 +1000574 leafhdr->stale--;
575 return &ents[index - 1];
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200576 }
577
578 /*
579 * The high one is better, so use that one.
580 */
581 ASSERT(highstale - index >= 0);
Dave Chinner24df33b2013-04-12 07:30:21 +1000582 ASSERT(ents[highstale].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR));
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200583
584 /*
585 * Copy entries down to cover the stale entry and make room for the
586 * new entry.
587 */
588 if (highstale - index > 0) {
Dave Chinner24df33b2013-04-12 07:30:21 +1000589 memmove(&ents[index + 1], &ents[index],
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200590 (highstale - index) * sizeof(xfs_dir2_leaf_entry_t));
591 }
592 *lfloglow = MIN(index, *lfloglow);
593 *lfloghigh = MAX(highstale, *lfloghigh);
Dave Chinner24df33b2013-04-12 07:30:21 +1000594 leafhdr->stale--;
595 return &ents[index];
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200596}
597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598/*
599 * Add an entry to a leaf form directory.
600 */
601int /* error */
602xfs_dir2_leaf_addname(
603 xfs_da_args_t *args) /* operation arguments */
604{
Nathan Scott68b3a102006-03-17 17:27:19 +1100605 __be16 *bestsp; /* freespace table in leaf */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 int compact; /* need to compact leaves */
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200607 xfs_dir2_data_hdr_t *hdr; /* data block header */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000608 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 xfs_dir2_data_entry_t *dep; /* data block entry */
610 xfs_inode_t *dp; /* incore directory inode */
611 xfs_dir2_data_unused_t *dup; /* data unused entry */
612 int error; /* error return value */
613 int grown; /* allocated new data block */
614 int highstale; /* index of next stale leaf */
615 int i; /* temporary, index */
616 int index; /* leaf table position */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000617 struct xfs_buf *lbp; /* leaf's buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 xfs_dir2_leaf_t *leaf; /* leaf structure */
619 int length; /* length of new entry */
620 xfs_dir2_leaf_entry_t *lep; /* leaf entry table pointer */
621 int lfloglow; /* low leaf logging index */
622 int lfloghigh; /* high leaf logging index */
623 int lowstale; /* index of prev stale leaf */
624 xfs_dir2_leaf_tail_t *ltp; /* leaf tail pointer */
625 xfs_mount_t *mp; /* filesystem mount point */
626 int needbytes; /* leaf block bytes needed */
627 int needlog; /* need to log data header */
628 int needscan; /* need to rescan data free */
Nathan Scott3d693c62006-03-17 17:28:27 +1100629 __be16 *tagp; /* end of data entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 xfs_trans_t *tp; /* transaction pointer */
631 xfs_dir2_db_t use_block; /* data block number */
Dave Chinner33363fe2013-04-03 16:11:22 +1100632 struct xfs_dir2_data_free *bf; /* bestfree table */
Dave Chinner24df33b2013-04-12 07:30:21 +1000633 struct xfs_dir2_leaf_entry *ents;
634 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000636 trace_xfs_dir2_leaf_addname(args);
637
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 dp = args->dp;
639 tp = args->trans;
640 mp = dp->i_mount;
Dave Chinnere6f76672012-11-12 22:54:15 +1100641
Dave Chinner24df33b2013-04-12 07:30:21 +1000642 error = xfs_dir3_leaf_read(tp, dp, mp->m_dirleafblk, -1, &lbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +1100643 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 return error;
Dave Chinnere6f76672012-11-12 22:54:15 +1100645
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 /*
647 * Look up the entry by hash value and name.
648 * We know it's not there, our caller has already done a lookup.
649 * So the index is of the entry to insert in front of.
650 * But if there are dup hash values the index is of the first of those.
651 */
652 index = xfs_dir2_leaf_search_hash(args, lbp);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000653 leaf = lbp->b_addr;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000654 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
Dave Chinner41419562013-10-29 22:11:50 +1100655 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner01ba43b2013-10-29 22:11:52 +1100656 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000657 bestsp = xfs_dir2_leaf_bests_p(ltp);
Dave Chinner9d23fc82013-10-29 22:11:48 +1100658 length = dp->d_ops->data_entsize(args->namelen);
Dave Chinner24df33b2013-04-12 07:30:21 +1000659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 /*
661 * See if there are any entries with the same hash value
662 * and space in their block for the new entry.
663 * This is good because it puts multiple same-hash value entries
664 * in a data block, improving the lookup of those entries.
665 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000666 for (use_block = -1, lep = &ents[index];
667 index < leafhdr.count && be32_to_cpu(lep->hashval) == args->hashval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 index++, lep++) {
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100669 if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 continue;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000671 i = xfs_dir2_dataptr_to_db(mp, be32_to_cpu(lep->address));
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100672 ASSERT(i < be32_to_cpu(ltp->bestcount));
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200673 ASSERT(bestsp[i] != cpu_to_be16(NULLDATAOFF));
Nathan Scott68b3a102006-03-17 17:27:19 +1100674 if (be16_to_cpu(bestsp[i]) >= length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 use_block = i;
676 break;
677 }
678 }
679 /*
680 * Didn't find a block yet, linear search all the data blocks.
681 */
682 if (use_block == -1) {
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100683 for (i = 0; i < be32_to_cpu(ltp->bestcount); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 /*
685 * Remember a block we see that's missing.
686 */
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200687 if (bestsp[i] == cpu_to_be16(NULLDATAOFF) &&
688 use_block == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 use_block = i;
Nathan Scott68b3a102006-03-17 17:27:19 +1100690 else if (be16_to_cpu(bestsp[i]) >= length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 use_block = i;
692 break;
693 }
694 }
695 }
696 /*
697 * How many bytes do we need in the leaf block?
698 */
Christoph Hellwig22823962011-07-08 14:35:53 +0200699 needbytes = 0;
Dave Chinner24df33b2013-04-12 07:30:21 +1000700 if (!leafhdr.stale)
Christoph Hellwig22823962011-07-08 14:35:53 +0200701 needbytes += sizeof(xfs_dir2_leaf_entry_t);
702 if (use_block == -1)
703 needbytes += sizeof(xfs_dir2_data_off_t);
704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 /*
706 * Now kill use_block if it refers to a missing block, so we
707 * can use it as an indication of allocation needed.
708 */
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200709 if (use_block != -1 && bestsp[use_block] == cpu_to_be16(NULLDATAOFF))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 use_block = -1;
711 /*
712 * If we don't have enough free bytes but we can make enough
713 * by compacting out stale entries, we'll do that.
714 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000715 if ((char *)bestsp - (char *)&ents[leafhdr.count] < needbytes &&
716 leafhdr.stale > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 compact = 1;
Dave Chinner24df33b2013-04-12 07:30:21 +1000718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 /*
720 * Otherwise if we don't have enough free bytes we need to
721 * convert to node form.
722 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000723 else if ((char *)bestsp - (char *)&ents[leafhdr.count] < needbytes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 /*
725 * Just checking or no space reservation, give up.
726 */
Barry Naujok6a178102008-05-21 16:42:05 +1000727 if ((args->op_flags & XFS_DA_OP_JUSTCHECK) ||
728 args->total == 0) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000729 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 return XFS_ERROR(ENOSPC);
731 }
732 /*
733 * Convert to node form.
734 */
735 error = xfs_dir2_leaf_to_node(args, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 if (error)
737 return error;
738 /*
739 * Then add the new entry.
740 */
741 return xfs_dir2_node_addname(args);
742 }
743 /*
744 * Otherwise it will fit without compaction.
745 */
746 else
747 compact = 0;
748 /*
749 * If just checking, then it will fit unless we needed to allocate
750 * a new data block.
751 */
Barry Naujok6a178102008-05-21 16:42:05 +1000752 if (args->op_flags & XFS_DA_OP_JUSTCHECK) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000753 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 return use_block == -1 ? XFS_ERROR(ENOSPC) : 0;
755 }
756 /*
757 * If no allocations are allowed, return now before we've
758 * changed anything.
759 */
760 if (args->total == 0 && use_block == -1) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000761 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 return XFS_ERROR(ENOSPC);
763 }
764 /*
765 * Need to compact the leaf entries, removing stale ones.
766 * Leave one stale entry behind - the one closest to our
767 * insertion index - and we'll shift that one to our insertion
768 * point later.
769 */
770 if (compact) {
Dave Chinner24df33b2013-04-12 07:30:21 +1000771 xfs_dir3_leaf_compact_x1(&leafhdr, ents, &index, &lowstale,
772 &highstale, &lfloglow, &lfloghigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 }
774 /*
775 * There are stale entries, so we'll need log-low and log-high
776 * impossibly bad values later.
777 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000778 else if (leafhdr.stale) {
779 lfloglow = leafhdr.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 lfloghigh = -1;
781 }
782 /*
783 * If there was no data block space found, we need to allocate
784 * a new one.
785 */
786 if (use_block == -1) {
787 /*
788 * Add the new data block.
789 */
790 if ((error = xfs_dir2_grow_inode(args, XFS_DIR2_DATA_SPACE,
791 &use_block))) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000792 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 return error;
794 }
795 /*
796 * Initialize the block.
797 */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100798 if ((error = xfs_dir3_data_init(args, use_block, &dbp))) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000799 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 return error;
801 }
802 /*
803 * If we're adding a new data block on the end we need to
804 * extend the bests table. Copy it up one entry.
805 */
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100806 if (use_block >= be32_to_cpu(ltp->bestcount)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 bestsp--;
808 memmove(&bestsp[0], &bestsp[1],
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100809 be32_to_cpu(ltp->bestcount) * sizeof(bestsp[0]));
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800810 be32_add_cpu(&ltp->bestcount, 1);
Dave Chinner24df33b2013-04-12 07:30:21 +1000811 xfs_dir3_leaf_log_tail(tp, lbp);
812 xfs_dir3_leaf_log_bests(tp, lbp, 0, be32_to_cpu(ltp->bestcount) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 }
814 /*
815 * If we're filling in a previously empty block just log it.
816 */
817 else
Dave Chinner24df33b2013-04-12 07:30:21 +1000818 xfs_dir3_leaf_log_bests(tp, lbp, use_block, use_block);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000819 hdr = dbp->b_addr;
Dave Chinner2ca98772013-10-29 22:11:49 +1100820 bf = dp->d_ops->data_bestfree_p(hdr);
Dave Chinner33363fe2013-04-03 16:11:22 +1100821 bestsp[use_block] = bf[0].length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 grown = 1;
Dave Chinnere4813572012-11-12 22:54:14 +1100823 } else {
824 /*
825 * Already had space in some data block.
826 * Just read that one in.
827 */
Dave Chinner33363fe2013-04-03 16:11:22 +1100828 error = xfs_dir3_data_read(tp, dp,
Dave Chinnere4813572012-11-12 22:54:14 +1100829 xfs_dir2_db_to_da(mp, use_block),
830 -1, &dbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +1100831 if (error) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000832 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 return error;
834 }
Dave Chinner1d9025e2012-06-22 18:50:14 +1000835 hdr = dbp->b_addr;
Dave Chinner2ca98772013-10-29 22:11:49 +1100836 bf = dp->d_ops->data_bestfree_p(hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 grown = 0;
838 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 /*
840 * Point to the biggest freespace in our data block.
841 */
842 dup = (xfs_dir2_data_unused_t *)
Dave Chinner33363fe2013-04-03 16:11:22 +1100843 ((char *)hdr + be16_to_cpu(bf[0].offset));
Nathan Scottad354eb2006-03-17 17:27:37 +1100844 ASSERT(be16_to_cpu(dup->length) >= length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 needscan = needlog = 0;
846 /*
847 * Mark the initial part of our freespace in use for the new entry.
848 */
Dave Chinner2ca98772013-10-29 22:11:49 +1100849 xfs_dir2_data_use_free(tp, dp, dbp, dup,
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200850 (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr), length,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 &needlog, &needscan);
852 /*
853 * Initialize our new entry (at last).
854 */
855 dep = (xfs_dir2_data_entry_t *)dup;
Christoph Hellwigff9901c2006-06-09 14:48:37 +1000856 dep->inumber = cpu_to_be64(args->inumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 dep->namelen = args->namelen;
858 memcpy(dep->name, args->name, dep->namelen);
Dave Chinner9d23fc82013-10-29 22:11:48 +1100859 dp->d_ops->data_put_ftype(dep, args->filetype);
860 tagp = dp->d_ops->data_entry_tag_p(dep);
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200861 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 /*
863 * Need to scan fix up the bestfree table.
864 */
865 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +1100866 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 /*
868 * Need to log the data block's header.
869 */
870 if (needlog)
Dave Chinner2ca98772013-10-29 22:11:49 +1100871 xfs_dir2_data_log_header(tp, dp, dbp);
Dave Chinner9d23fc82013-10-29 22:11:48 +1100872 xfs_dir2_data_log_entry(tp, dp, dbp, dep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 /*
874 * If the bests table needs to be changed, do it.
875 * Log the change unless we've already done that.
876 */
Dave Chinner33363fe2013-04-03 16:11:22 +1100877 if (be16_to_cpu(bestsp[use_block]) != be16_to_cpu(bf[0].length)) {
878 bestsp[use_block] = bf[0].length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 if (!grown)
Dave Chinner24df33b2013-04-12 07:30:21 +1000880 xfs_dir3_leaf_log_bests(tp, lbp, use_block, use_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 }
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200882
Dave Chinner24df33b2013-04-12 07:30:21 +1000883 lep = xfs_dir3_leaf_find_entry(&leafhdr, ents, index, compact, lowstale,
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200884 highstale, &lfloglow, &lfloghigh);
885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 /*
887 * Fill in the new leaf entry.
888 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100889 lep->hashval = cpu_to_be32(args->hashval);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000890 lep->address = cpu_to_be32(xfs_dir2_db_off_to_dataptr(mp, use_block,
Nathan Scott3d693c62006-03-17 17:28:27 +1100891 be16_to_cpu(*tagp)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 /*
893 * Log the leaf fields and give up the buffers.
894 */
Dave Chinner01ba43b2013-10-29 22:11:52 +1100895 dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr);
Dave Chinner41419562013-10-29 22:11:50 +1100896 xfs_dir3_leaf_log_header(tp, dp, lbp);
897 xfs_dir3_leaf_log_ents(tp, dp, lbp, lfloglow, lfloghigh);
898 xfs_dir3_leaf_check(dp, lbp);
Dave Chinner33363fe2013-04-03 16:11:22 +1100899 xfs_dir3_data_check(dp, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 return 0;
901}
902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903/*
904 * Compact out any stale entries in the leaf.
905 * Log the header and changed leaf entries, if any.
906 */
907void
Dave Chinner24df33b2013-04-12 07:30:21 +1000908xfs_dir3_leaf_compact(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 xfs_da_args_t *args, /* operation arguments */
Dave Chinner24df33b2013-04-12 07:30:21 +1000910 struct xfs_dir3_icleaf_hdr *leafhdr,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000911 struct xfs_buf *bp) /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912{
913 int from; /* source leaf index */
914 xfs_dir2_leaf_t *leaf; /* leaf structure */
915 int loglow; /* first leaf entry to log */
916 int to; /* target leaf index */
Dave Chinner24df33b2013-04-12 07:30:21 +1000917 struct xfs_dir2_leaf_entry *ents;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100918 struct xfs_inode *dp = args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
Dave Chinner1d9025e2012-06-22 18:50:14 +1000920 leaf = bp->b_addr;
Dave Chinner24df33b2013-04-12 07:30:21 +1000921 if (!leafhdr->stale)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 return;
Dave Chinner24df33b2013-04-12 07:30:21 +1000923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 /*
925 * Compress out the stale entries in place.
926 */
Dave Chinner01ba43b2013-10-29 22:11:52 +1100927 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000928 for (from = to = 0, loglow = -1; from < leafhdr->count; from++) {
929 if (ents[from].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 continue;
931 /*
932 * Only actually copy the entries that are different.
933 */
934 if (from > to) {
935 if (loglow == -1)
936 loglow = to;
Dave Chinner24df33b2013-04-12 07:30:21 +1000937 ents[to] = ents[from];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 }
939 to++;
940 }
941 /*
942 * Update and log the header, log the leaf entries.
943 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000944 ASSERT(leafhdr->stale == from - to);
945 leafhdr->count -= leafhdr->stale;
946 leafhdr->stale = 0;
947
Dave Chinner01ba43b2013-10-29 22:11:52 +1100948 dp->d_ops->leaf_hdr_to_disk(leaf, leafhdr);
949 xfs_dir3_leaf_log_header(args->trans, dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 if (loglow != -1)
Dave Chinner01ba43b2013-10-29 22:11:52 +1100951 xfs_dir3_leaf_log_ents(args->trans, dp, bp, loglow, to - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952}
953
954/*
955 * Compact the leaf entries, removing stale ones.
956 * Leave one stale entry behind - the one closest to our
957 * insertion index - and the caller will shift that one to our insertion
958 * point later.
959 * Return new insertion index, where the remaining stale entry is,
960 * and leaf logging indices.
961 */
962void
Dave Chinner24df33b2013-04-12 07:30:21 +1000963xfs_dir3_leaf_compact_x1(
964 struct xfs_dir3_icleaf_hdr *leafhdr,
965 struct xfs_dir2_leaf_entry *ents,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 int *indexp, /* insertion index */
967 int *lowstalep, /* out: stale entry before us */
968 int *highstalep, /* out: stale entry after us */
969 int *lowlogp, /* out: low log index */
970 int *highlogp) /* out: high log index */
971{
972 int from; /* source copy index */
973 int highstale; /* stale entry at/after index */
974 int index; /* insertion index */
975 int keepstale; /* source index of kept stale */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 int lowstale; /* stale entry before index */
977 int newindex=0; /* new insertion index */
978 int to; /* destination copy index */
979
Dave Chinner24df33b2013-04-12 07:30:21 +1000980 ASSERT(leafhdr->stale > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 index = *indexp;
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200982
Dave Chinner24df33b2013-04-12 07:30:21 +1000983 xfs_dir3_leaf_find_stale(leafhdr, ents, index, &lowstale, &highstale);
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200984
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 /*
986 * Pick the better of lowstale and highstale.
987 */
988 if (lowstale >= 0 &&
Dave Chinner24df33b2013-04-12 07:30:21 +1000989 (highstale == leafhdr->count ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 index - lowstale <= highstale - index))
991 keepstale = lowstale;
992 else
993 keepstale = highstale;
994 /*
995 * Copy the entries in place, removing all the stale entries
996 * except keepstale.
997 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000998 for (from = to = 0; from < leafhdr->count; from++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 /*
1000 * Notice the new value of index.
1001 */
1002 if (index == from)
1003 newindex = to;
1004 if (from != keepstale &&
Dave Chinner24df33b2013-04-12 07:30:21 +10001005 ents[from].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 if (from == to)
1007 *lowlogp = to;
1008 continue;
1009 }
1010 /*
1011 * Record the new keepstale value for the insertion.
1012 */
1013 if (from == keepstale)
1014 lowstale = highstale = to;
1015 /*
1016 * Copy only the entries that have moved.
1017 */
1018 if (from > to)
Dave Chinner24df33b2013-04-12 07:30:21 +10001019 ents[to] = ents[from];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 to++;
1021 }
1022 ASSERT(from > to);
1023 /*
1024 * If the insertion point was past the last entry,
1025 * set the new insertion point accordingly.
1026 */
1027 if (index == from)
1028 newindex = to;
1029 *indexp = newindex;
1030 /*
1031 * Adjust the leaf header values.
1032 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001033 leafhdr->count -= from - to;
1034 leafhdr->stale = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 /*
1036 * Remember the low/high stale value only in the "right"
1037 * direction.
1038 */
1039 if (lowstale >= newindex)
1040 lowstale = -1;
1041 else
Dave Chinner24df33b2013-04-12 07:30:21 +10001042 highstale = leafhdr->count;
1043 *highlogp = leafhdr->count - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 *lowstalep = lowstale;
1045 *highstalep = highstale;
1046}
1047
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048/*
1049 * Log the bests entries indicated from a leaf1 block.
1050 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001051static void
Dave Chinner24df33b2013-04-12 07:30:21 +10001052xfs_dir3_leaf_log_bests(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 xfs_trans_t *tp, /* transaction pointer */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001054 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 int first, /* first entry to log */
1056 int last) /* last entry to log */
1057{
Nathan Scott68b3a102006-03-17 17:27:19 +11001058 __be16 *firstb; /* pointer to first entry */
1059 __be16 *lastb; /* pointer to last entry */
Dave Chinner24df33b2013-04-12 07:30:21 +10001060 struct xfs_dir2_leaf *leaf = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
1062
Dave Chinner24df33b2013-04-12 07:30:21 +10001063 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC) ||
1064 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAF1_MAGIC));
1065
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001066 ltp = xfs_dir2_leaf_tail_p(tp->t_mountp, leaf);
1067 firstb = xfs_dir2_leaf_bests_p(ltp) + first;
1068 lastb = xfs_dir2_leaf_bests_p(ltp) + last;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001069 xfs_trans_log_buf(tp, bp, (uint)((char *)firstb - (char *)leaf),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 (uint)((char *)lastb - (char *)leaf + sizeof(*lastb) - 1));
1071}
1072
1073/*
1074 * Log the leaf entries indicated from a leaf1 or leafn block.
1075 */
1076void
Dave Chinner24df33b2013-04-12 07:30:21 +10001077xfs_dir3_leaf_log_ents(
Dave Chinner41419562013-10-29 22:11:50 +11001078 struct xfs_trans *tp,
1079 struct xfs_inode *dp,
1080 struct xfs_buf *bp,
1081 int first,
1082 int last)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083{
1084 xfs_dir2_leaf_entry_t *firstlep; /* pointer to first entry */
1085 xfs_dir2_leaf_entry_t *lastlep; /* pointer to last entry */
Dave Chinner24df33b2013-04-12 07:30:21 +10001086 struct xfs_dir2_leaf *leaf = bp->b_addr;
1087 struct xfs_dir2_leaf_entry *ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001089 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC) ||
Dave Chinner24df33b2013-04-12 07:30:21 +10001090 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAF1_MAGIC) ||
1091 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
1092 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC));
1093
Dave Chinner41419562013-10-29 22:11:50 +11001094 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001095 firstlep = &ents[first];
1096 lastlep = &ents[last];
Dave Chinner1d9025e2012-06-22 18:50:14 +10001097 xfs_trans_log_buf(tp, bp, (uint)((char *)firstlep - (char *)leaf),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 (uint)((char *)lastlep - (char *)leaf + sizeof(*lastlep) - 1));
1099}
1100
1101/*
1102 * Log the header of the leaf1 or leafn block.
1103 */
1104void
Dave Chinner24df33b2013-04-12 07:30:21 +10001105xfs_dir3_leaf_log_header(
Dave Chinner1d9025e2012-06-22 18:50:14 +10001106 struct xfs_trans *tp,
Dave Chinner41419562013-10-29 22:11:50 +11001107 struct xfs_inode *dp,
Dave Chinner1d9025e2012-06-22 18:50:14 +10001108 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109{
Dave Chinner24df33b2013-04-12 07:30:21 +10001110 struct xfs_dir2_leaf *leaf = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001112 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC) ||
Dave Chinner24df33b2013-04-12 07:30:21 +10001113 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAF1_MAGIC) ||
1114 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
1115 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC));
1116
Dave Chinner1d9025e2012-06-22 18:50:14 +10001117 xfs_trans_log_buf(tp, bp, (uint)((char *)&leaf->hdr - (char *)leaf),
Dave Chinner1c9a5b22013-10-30 09:15:02 +11001118 dp->d_ops->leaf_hdr_size - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119}
1120
1121/*
1122 * Log the tail of the leaf1 block.
1123 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001124STATIC void
Dave Chinner24df33b2013-04-12 07:30:21 +10001125xfs_dir3_leaf_log_tail(
Dave Chinner1d9025e2012-06-22 18:50:14 +10001126 struct xfs_trans *tp,
1127 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128{
Dave Chinner24df33b2013-04-12 07:30:21 +10001129 struct xfs_dir2_leaf *leaf = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
Dave Chinner24df33b2013-04-12 07:30:21 +10001131 struct xfs_mount *mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132
Dave Chinner24df33b2013-04-12 07:30:21 +10001133 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC) ||
1134 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAF1_MAGIC) ||
1135 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
1136 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC));
1137
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001138 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001139 xfs_trans_log_buf(tp, bp, (uint)((char *)ltp - (char *)leaf),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 (uint)(mp->m_dirblksize - 1));
1141}
1142
1143/*
1144 * Look up the entry referred to by args in the leaf format directory.
1145 * Most of the work is done by the xfs_dir2_leaf_lookup_int routine which
1146 * is also used by the node-format code.
1147 */
1148int
1149xfs_dir2_leaf_lookup(
1150 xfs_da_args_t *args) /* operation arguments */
1151{
Dave Chinner1d9025e2012-06-22 18:50:14 +10001152 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 xfs_dir2_data_entry_t *dep; /* data block entry */
1154 xfs_inode_t *dp; /* incore directory inode */
1155 int error; /* error return code */
1156 int index; /* found entry index */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001157 struct xfs_buf *lbp; /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 xfs_dir2_leaf_t *leaf; /* leaf structure */
1159 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1160 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner24df33b2013-04-12 07:30:21 +10001161 struct xfs_dir2_leaf_entry *ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001163 trace_xfs_dir2_leaf_lookup(args);
1164
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 /*
1166 * Look up name in the leaf block, returning both buffers and index.
1167 */
1168 if ((error = xfs_dir2_leaf_lookup_int(args, &lbp, &index, &dbp))) {
1169 return error;
1170 }
1171 tp = args->trans;
1172 dp = args->dp;
Dave Chinner41419562013-10-29 22:11:50 +11001173 xfs_dir3_leaf_check(dp, lbp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001174 leaf = lbp->b_addr;
Dave Chinner41419562013-10-29 22:11:50 +11001175 ents = dp->d_ops->leaf_ents_p(leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 /*
1177 * Get to the leaf entry and contained data entry address.
1178 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001179 lep = &ents[index];
1180
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 /*
1182 * Point to the data entry.
1183 */
1184 dep = (xfs_dir2_data_entry_t *)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001185 ((char *)dbp->b_addr +
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001186 xfs_dir2_dataptr_to_off(dp->i_mount, be32_to_cpu(lep->address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 /*
Barry Naujok384f3ce2008-05-21 16:58:22 +10001188 * Return the found inode number & CI name if appropriate
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +10001190 args->inumber = be64_to_cpu(dep->inumber);
Dave Chinner9d23fc82013-10-29 22:11:48 +11001191 args->filetype = dp->d_ops->data_get_ftype(dep);
Barry Naujok384f3ce2008-05-21 16:58:22 +10001192 error = xfs_dir_cilookup_result(args, dep->name, dep->namelen);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001193 xfs_trans_brelse(tp, dbp);
1194 xfs_trans_brelse(tp, lbp);
Barry Naujok384f3ce2008-05-21 16:58:22 +10001195 return XFS_ERROR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196}
1197
1198/*
1199 * Look up name/hash in the leaf block.
1200 * Fill in indexp with the found index, and dbpp with the data buffer.
1201 * If not found dbpp will be NULL, and ENOENT comes back.
1202 * lbpp will always be filled in with the leaf buffer unless there's an error.
1203 */
1204static int /* error */
1205xfs_dir2_leaf_lookup_int(
1206 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001207 struct xfs_buf **lbpp, /* out: leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 int *indexp, /* out: index in leaf block */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001209 struct xfs_buf **dbpp) /* out: data buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210{
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001211 xfs_dir2_db_t curdb = -1; /* current data block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001212 struct xfs_buf *dbp = NULL; /* data buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 xfs_dir2_data_entry_t *dep; /* data entry */
1214 xfs_inode_t *dp; /* incore directory inode */
1215 int error; /* error return code */
1216 int index; /* index in leaf block */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001217 struct xfs_buf *lbp; /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1219 xfs_dir2_leaf_t *leaf; /* leaf structure */
1220 xfs_mount_t *mp; /* filesystem mount point */
1221 xfs_dir2_db_t newdb; /* new data block number */
1222 xfs_trans_t *tp; /* transaction pointer */
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001223 xfs_dir2_db_t cidb = -1; /* case match data block no. */
Barry Naujok5163f952008-05-21 16:41:01 +10001224 enum xfs_dacmp cmp; /* name compare result */
Dave Chinner24df33b2013-04-12 07:30:21 +10001225 struct xfs_dir2_leaf_entry *ents;
1226 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
1228 dp = args->dp;
1229 tp = args->trans;
1230 mp = dp->i_mount;
Dave Chinnere6f76672012-11-12 22:54:15 +11001231
Dave Chinner24df33b2013-04-12 07:30:21 +10001232 error = xfs_dir3_leaf_read(tp, dp, mp->m_dirleafblk, -1, &lbp);
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001233 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 return error;
Dave Chinnere6f76672012-11-12 22:54:15 +11001235
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 *lbpp = lbp;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001237 leaf = lbp->b_addr;
Dave Chinner41419562013-10-29 22:11:50 +11001238 xfs_dir3_leaf_check(dp, lbp);
1239 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner01ba43b2013-10-29 22:11:52 +11001240 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001241
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 /*
1243 * Look for the first leaf entry with our hash value.
1244 */
1245 index = xfs_dir2_leaf_search_hash(args, lbp);
1246 /*
1247 * Loop over all the entries with the right hash value
1248 * looking to match the name.
1249 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001250 for (lep = &ents[index];
1251 index < leafhdr.count && be32_to_cpu(lep->hashval) == args->hashval;
1252 lep++, index++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 /*
1254 * Skip over stale leaf entries.
1255 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001256 if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 continue;
1258 /*
1259 * Get the new data block number.
1260 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001261 newdb = xfs_dir2_dataptr_to_db(mp, be32_to_cpu(lep->address));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 /*
1263 * If it's not the same as the old data block number,
1264 * need to pitch the old one and read the new one.
1265 */
1266 if (newdb != curdb) {
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001267 if (dbp)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001268 xfs_trans_brelse(tp, dbp);
Dave Chinner33363fe2013-04-03 16:11:22 +11001269 error = xfs_dir3_data_read(tp, dp,
Dave Chinnere4813572012-11-12 22:54:14 +11001270 xfs_dir2_db_to_da(mp, newdb),
1271 -1, &dbp);
Barry Naujok5163f952008-05-21 16:41:01 +10001272 if (error) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001273 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 return error;
1275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 curdb = newdb;
1277 }
1278 /*
1279 * Point to the data entry.
1280 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001281 dep = (xfs_dir2_data_entry_t *)((char *)dbp->b_addr +
Barry Naujok5163f952008-05-21 16:41:01 +10001282 xfs_dir2_dataptr_to_off(mp, be32_to_cpu(lep->address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 /*
Barry Naujok5163f952008-05-21 16:41:01 +10001284 * Compare name and if it's an exact match, return the index
1285 * and buffer. If it's the first case-insensitive match, store
1286 * the index and buffer and continue looking for an exact match.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 */
Barry Naujok5163f952008-05-21 16:41:01 +10001288 cmp = mp->m_dirnameops->compname(args, dep->name, dep->namelen);
1289 if (cmp != XFS_CMP_DIFFERENT && cmp != args->cmpresult) {
1290 args->cmpresult = cmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 *indexp = index;
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001292 /* case exact match: return the current buffer. */
Barry Naujok5163f952008-05-21 16:41:01 +10001293 if (cmp == XFS_CMP_EXACT) {
Barry Naujok5163f952008-05-21 16:41:01 +10001294 *dbpp = dbp;
1295 return 0;
1296 }
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001297 cidb = curdb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 }
1299 }
Barry Naujok6a178102008-05-21 16:42:05 +10001300 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
Barry Naujok5163f952008-05-21 16:41:01 +10001301 /*
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001302 * Here, we can only be doing a lookup (not a rename or remove).
1303 * If a case-insensitive match was found earlier, re-read the
1304 * appropriate data block if required and return it.
Barry Naujok5163f952008-05-21 16:41:01 +10001305 */
1306 if (args->cmpresult == XFS_CMP_CASE) {
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001307 ASSERT(cidb != -1);
1308 if (cidb != curdb) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001309 xfs_trans_brelse(tp, dbp);
Dave Chinner33363fe2013-04-03 16:11:22 +11001310 error = xfs_dir3_data_read(tp, dp,
Dave Chinnere4813572012-11-12 22:54:14 +11001311 xfs_dir2_db_to_da(mp, cidb),
1312 -1, &dbp);
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001313 if (error) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001314 xfs_trans_brelse(tp, lbp);
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001315 return error;
1316 }
1317 }
1318 *dbpp = dbp;
Barry Naujok5163f952008-05-21 16:41:01 +10001319 return 0;
1320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 /*
1322 * No match found, return ENOENT.
1323 */
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001324 ASSERT(cidb == -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 if (dbp)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001326 xfs_trans_brelse(tp, dbp);
1327 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 return XFS_ERROR(ENOENT);
1329}
1330
1331/*
1332 * Remove an entry from a leaf format directory.
1333 */
1334int /* error */
1335xfs_dir2_leaf_removename(
1336 xfs_da_args_t *args) /* operation arguments */
1337{
Nathan Scott68b3a102006-03-17 17:27:19 +11001338 __be16 *bestsp; /* leaf block best freespace */
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001339 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 xfs_dir2_db_t db; /* data block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001341 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 xfs_dir2_data_entry_t *dep; /* data entry structure */
1343 xfs_inode_t *dp; /* incore directory inode */
1344 int error; /* error return code */
1345 xfs_dir2_db_t i; /* temporary data block # */
1346 int index; /* index into leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001347 struct xfs_buf *lbp; /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 xfs_dir2_leaf_t *leaf; /* leaf structure */
1349 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1350 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
1351 xfs_mount_t *mp; /* filesystem mount point */
1352 int needlog; /* need to log data header */
1353 int needscan; /* need to rescan data frees */
1354 xfs_dir2_data_off_t oldbest; /* old value of best free */
1355 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner33363fe2013-04-03 16:11:22 +11001356 struct xfs_dir2_data_free *bf; /* bestfree table */
Dave Chinner24df33b2013-04-12 07:30:21 +10001357 struct xfs_dir2_leaf_entry *ents;
1358 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001360 trace_xfs_dir2_leaf_removename(args);
1361
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 /*
1363 * Lookup the leaf entry, get the leaf and data blocks read in.
1364 */
1365 if ((error = xfs_dir2_leaf_lookup_int(args, &lbp, &index, &dbp))) {
1366 return error;
1367 }
1368 dp = args->dp;
1369 tp = args->trans;
1370 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001371 leaf = lbp->b_addr;
1372 hdr = dbp->b_addr;
Dave Chinner33363fe2013-04-03 16:11:22 +11001373 xfs_dir3_data_check(dp, dbp);
Dave Chinner2ca98772013-10-29 22:11:49 +11001374 bf = dp->d_ops->data_bestfree_p(hdr);
Dave Chinner01ba43b2013-10-29 22:11:52 +11001375 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +11001376 ents = dp->d_ops->leaf_ents_p(leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 /*
1378 * Point to the leaf entry, use that to point to the data entry.
1379 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001380 lep = &ents[index];
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001381 db = xfs_dir2_dataptr_to_db(mp, be32_to_cpu(lep->address));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 dep = (xfs_dir2_data_entry_t *)
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001383 ((char *)hdr + xfs_dir2_dataptr_to_off(mp, be32_to_cpu(lep->address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 needscan = needlog = 0;
Dave Chinner33363fe2013-04-03 16:11:22 +11001385 oldbest = be16_to_cpu(bf[0].length);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001386 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
1387 bestsp = xfs_dir2_leaf_bests_p(ltp);
Nathan Scott68b3a102006-03-17 17:27:19 +11001388 ASSERT(be16_to_cpu(bestsp[db]) == oldbest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 /*
1390 * Mark the former data entry unused.
1391 */
Dave Chinner2ca98772013-10-29 22:11:49 +11001392 xfs_dir2_data_make_free(tp, dp, dbp,
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001393 (xfs_dir2_data_aoff_t)((char *)dep - (char *)hdr),
Dave Chinner9d23fc82013-10-29 22:11:48 +11001394 dp->d_ops->data_entsize(dep->namelen), &needlog, &needscan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 /*
1396 * We just mark the leaf entry stale by putting a null in it.
1397 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001398 leafhdr.stale++;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001399 dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr);
Dave Chinner41419562013-10-29 22:11:50 +11001400 xfs_dir3_leaf_log_header(tp, dp, lbp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001401
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001402 lep->address = cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
Dave Chinner41419562013-10-29 22:11:50 +11001403 xfs_dir3_leaf_log_ents(tp, dp, lbp, index, index);
Dave Chinner24df33b2013-04-12 07:30:21 +10001404
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 /*
1406 * Scan the freespace in the data block again if necessary,
1407 * log the data block header if necessary.
1408 */
1409 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +11001410 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 if (needlog)
Dave Chinner2ca98772013-10-29 22:11:49 +11001412 xfs_dir2_data_log_header(tp, dp, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 /*
1414 * If the longest freespace in the data block has changed,
1415 * put the new value in the bests table and log that.
1416 */
Dave Chinner33363fe2013-04-03 16:11:22 +11001417 if (be16_to_cpu(bf[0].length) != oldbest) {
1418 bestsp[db] = bf[0].length;
Dave Chinner24df33b2013-04-12 07:30:21 +10001419 xfs_dir3_leaf_log_bests(tp, lbp, db, db);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 }
Dave Chinner33363fe2013-04-03 16:11:22 +11001421 xfs_dir3_data_check(dp, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 /*
1423 * If the data block is now empty then get rid of the data block.
1424 */
Dave Chinner33363fe2013-04-03 16:11:22 +11001425 if (be16_to_cpu(bf[0].length) ==
Dave Chinner1c9a5b22013-10-30 09:15:02 +11001426 mp->m_dirblksize - dp->d_ops->data_entry_offset) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 ASSERT(db != mp->m_dirdatablk);
1428 if ((error = xfs_dir2_shrink_inode(args, db, dbp))) {
1429 /*
1430 * Nope, can't get rid of it because it caused
1431 * allocation of a bmap btree block to do so.
1432 * Just go on, returning success, leaving the
1433 * empty block in place.
1434 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001435 if (error == ENOSPC && args->total == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 error = 0;
Dave Chinner41419562013-10-29 22:11:50 +11001437 xfs_dir3_leaf_check(dp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 return error;
1439 }
1440 dbp = NULL;
1441 /*
1442 * If this is the last data block then compact the
1443 * bests table by getting rid of entries.
1444 */
Nathan Scottafbcb3f2006-03-17 17:27:28 +11001445 if (db == be32_to_cpu(ltp->bestcount) - 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 /*
1447 * Look for the last active entry (i).
1448 */
1449 for (i = db - 1; i > 0; i--) {
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001450 if (bestsp[i] != cpu_to_be16(NULLDATAOFF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 break;
1452 }
1453 /*
1454 * Copy the table down so inactive entries at the
1455 * end are removed.
1456 */
1457 memmove(&bestsp[db - i], bestsp,
Nathan Scottafbcb3f2006-03-17 17:27:28 +11001458 (be32_to_cpu(ltp->bestcount) - (db - i)) * sizeof(*bestsp));
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001459 be32_add_cpu(&ltp->bestcount, -(db - i));
Dave Chinner24df33b2013-04-12 07:30:21 +10001460 xfs_dir3_leaf_log_tail(tp, lbp);
1461 xfs_dir3_leaf_log_bests(tp, lbp, 0, be32_to_cpu(ltp->bestcount) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 } else
Nathan Scott68b3a102006-03-17 17:27:19 +11001463 bestsp[db] = cpu_to_be16(NULLDATAOFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 }
1465 /*
1466 * If the data block was not the first one, drop it.
1467 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001468 else if (db != mp->m_dirdatablk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 dbp = NULL;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001470
Dave Chinner41419562013-10-29 22:11:50 +11001471 xfs_dir3_leaf_check(dp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 /*
1473 * See if we can convert to block form.
1474 */
1475 return xfs_dir2_leaf_to_block(args, lbp, dbp);
1476}
1477
1478/*
1479 * Replace the inode number in a leaf format directory entry.
1480 */
1481int /* error */
1482xfs_dir2_leaf_replace(
1483 xfs_da_args_t *args) /* operation arguments */
1484{
Dave Chinner1d9025e2012-06-22 18:50:14 +10001485 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 xfs_dir2_data_entry_t *dep; /* data block entry */
1487 xfs_inode_t *dp; /* incore directory inode */
1488 int error; /* error return code */
1489 int index; /* index of leaf entry */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001490 struct xfs_buf *lbp; /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 xfs_dir2_leaf_t *leaf; /* leaf structure */
1492 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1493 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner24df33b2013-04-12 07:30:21 +10001494 struct xfs_dir2_leaf_entry *ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001496 trace_xfs_dir2_leaf_replace(args);
1497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 /*
1499 * Look up the entry.
1500 */
1501 if ((error = xfs_dir2_leaf_lookup_int(args, &lbp, &index, &dbp))) {
1502 return error;
1503 }
1504 dp = args->dp;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001505 leaf = lbp->b_addr;
Dave Chinner41419562013-10-29 22:11:50 +11001506 ents = dp->d_ops->leaf_ents_p(leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 /*
1508 * Point to the leaf entry, get data address from it.
1509 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001510 lep = &ents[index];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 /*
1512 * Point to the data entry.
1513 */
1514 dep = (xfs_dir2_data_entry_t *)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001515 ((char *)dbp->b_addr +
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001516 xfs_dir2_dataptr_to_off(dp->i_mount, be32_to_cpu(lep->address)));
Christoph Hellwigff9901c2006-06-09 14:48:37 +10001517 ASSERT(args->inumber != be64_to_cpu(dep->inumber));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 /*
1519 * Put the new inode number in, log it.
1520 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +10001521 dep->inumber = cpu_to_be64(args->inumber);
Dave Chinner9d23fc82013-10-29 22:11:48 +11001522 dp->d_ops->data_put_ftype(dep, args->filetype);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 tp = args->trans;
Dave Chinner9d23fc82013-10-29 22:11:48 +11001524 xfs_dir2_data_log_entry(tp, dp, dbp, dep);
Dave Chinner41419562013-10-29 22:11:50 +11001525 xfs_dir3_leaf_check(dp, lbp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001526 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 return 0;
1528}
1529
1530/*
1531 * Return index in the leaf block (lbp) which is either the first
1532 * one with this hash value, or if there are none, the insert point
1533 * for that hash value.
1534 */
1535int /* index value */
1536xfs_dir2_leaf_search_hash(
1537 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001538 struct xfs_buf *lbp) /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539{
1540 xfs_dahash_t hash=0; /* hash from this entry */
1541 xfs_dahash_t hashwant; /* hash value looking for */
1542 int high; /* high leaf index */
1543 int low; /* low leaf index */
1544 xfs_dir2_leaf_t *leaf; /* leaf structure */
1545 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1546 int mid=0; /* current leaf index */
Dave Chinner24df33b2013-04-12 07:30:21 +10001547 struct xfs_dir2_leaf_entry *ents;
1548 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Dave Chinner1d9025e2012-06-22 18:50:14 +10001550 leaf = lbp->b_addr;
Dave Chinner41419562013-10-29 22:11:50 +11001551 ents = args->dp->d_ops->leaf_ents_p(leaf);
Dave Chinner01ba43b2013-10-29 22:11:52 +11001552 args->dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001553
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 /*
1555 * Note, the table cannot be empty, so we have to go through the loop.
1556 * Binary search the leaf entries looking for our hash value.
1557 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001558 for (lep = ents, low = 0, high = leafhdr.count - 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 hashwant = args->hashval;
1560 low <= high; ) {
1561 mid = (low + high) >> 1;
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001562 if ((hash = be32_to_cpu(lep[mid].hashval)) == hashwant)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 break;
1564 if (hash < hashwant)
1565 low = mid + 1;
1566 else
1567 high = mid - 1;
1568 }
1569 /*
1570 * Found one, back up through all the equal hash values.
1571 */
1572 if (hash == hashwant) {
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001573 while (mid > 0 && be32_to_cpu(lep[mid - 1].hashval) == hashwant) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 mid--;
1575 }
1576 }
1577 /*
1578 * Need to point to an entry higher than ours.
1579 */
1580 else if (hash < hashwant)
1581 mid++;
1582 return mid;
1583}
1584
1585/*
1586 * Trim off a trailing data block. We know it's empty since the leaf
1587 * freespace table says so.
1588 */
1589int /* error */
1590xfs_dir2_leaf_trim_data(
1591 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001592 struct xfs_buf *lbp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 xfs_dir2_db_t db) /* data block number */
1594{
Nathan Scott68b3a102006-03-17 17:27:19 +11001595 __be16 *bestsp; /* leaf bests table */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001596 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 xfs_inode_t *dp; /* incore directory inode */
1598 int error; /* error return value */
1599 xfs_dir2_leaf_t *leaf; /* leaf structure */
1600 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
1601 xfs_mount_t *mp; /* filesystem mount point */
1602 xfs_trans_t *tp; /* transaction pointer */
1603
1604 dp = args->dp;
1605 mp = dp->i_mount;
1606 tp = args->trans;
1607 /*
1608 * Read the offending data block. We need its buffer.
1609 */
Dave Chinner33363fe2013-04-03 16:11:22 +11001610 error = xfs_dir3_data_read(tp, dp, xfs_dir2_db_to_da(mp, db), -1, &dbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001611 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
Dave Chinner1d9025e2012-06-22 18:50:14 +10001614 leaf = lbp->b_addr;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001615 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001616
1617#ifdef DEBUG
1618{
Dave Chinner1d9025e2012-06-22 18:50:14 +10001619 struct xfs_dir2_data_hdr *hdr = dbp->b_addr;
Dave Chinner2ca98772013-10-29 22:11:49 +11001620 struct xfs_dir2_data_free *bf = dp->d_ops->data_bestfree_p(hdr);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001621
Dave Chinner33363fe2013-04-03 16:11:22 +11001622 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
1623 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC));
1624 ASSERT(be16_to_cpu(bf[0].length) ==
Dave Chinner1c9a5b22013-10-30 09:15:02 +11001625 mp->m_dirblksize - dp->d_ops->data_entry_offset);
Nathan Scottafbcb3f2006-03-17 17:27:28 +11001626 ASSERT(db == be32_to_cpu(ltp->bestcount) - 1);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001627}
1628#endif
1629
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 /*
1631 * Get rid of the data block.
1632 */
1633 if ((error = xfs_dir2_shrink_inode(args, db, dbp))) {
1634 ASSERT(error != ENOSPC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001635 xfs_trans_brelse(tp, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 return error;
1637 }
1638 /*
1639 * Eliminate the last bests entry from the table.
1640 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001641 bestsp = xfs_dir2_leaf_bests_p(ltp);
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001642 be32_add_cpu(&ltp->bestcount, -1);
Nathan Scottafbcb3f2006-03-17 17:27:28 +11001643 memmove(&bestsp[1], &bestsp[0], be32_to_cpu(ltp->bestcount) * sizeof(*bestsp));
Dave Chinner24df33b2013-04-12 07:30:21 +10001644 xfs_dir3_leaf_log_tail(tp, lbp);
1645 xfs_dir3_leaf_log_bests(tp, lbp, 0, be32_to_cpu(ltp->bestcount) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 return 0;
1647}
1648
Christoph Hellwig22823962011-07-08 14:35:53 +02001649static inline size_t
Dave Chinner24df33b2013-04-12 07:30:21 +10001650xfs_dir3_leaf_size(
1651 struct xfs_dir3_icleaf_hdr *hdr,
Christoph Hellwig22823962011-07-08 14:35:53 +02001652 int counts)
1653{
Dave Chinner24df33b2013-04-12 07:30:21 +10001654 int entries;
1655 int hdrsize;
Christoph Hellwig22823962011-07-08 14:35:53 +02001656
Dave Chinner24df33b2013-04-12 07:30:21 +10001657 entries = hdr->count - hdr->stale;
1658 if (hdr->magic == XFS_DIR2_LEAF1_MAGIC ||
1659 hdr->magic == XFS_DIR2_LEAFN_MAGIC)
1660 hdrsize = sizeof(struct xfs_dir2_leaf_hdr);
1661 else
1662 hdrsize = sizeof(struct xfs_dir3_leaf_hdr);
1663
1664 return hdrsize + entries * sizeof(xfs_dir2_leaf_entry_t)
1665 + counts * sizeof(xfs_dir2_data_off_t)
1666 + sizeof(xfs_dir2_leaf_tail_t);
Christoph Hellwig22823962011-07-08 14:35:53 +02001667}
1668
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669/*
1670 * Convert node form directory to leaf form directory.
1671 * The root of the node form dir needs to already be a LEAFN block.
1672 * Just return if we can't do anything.
1673 */
1674int /* error */
1675xfs_dir2_node_to_leaf(
1676 xfs_da_state_t *state) /* directory operation state */
1677{
1678 xfs_da_args_t *args; /* operation arguments */
1679 xfs_inode_t *dp; /* incore directory inode */
1680 int error; /* error return code */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001681 struct xfs_buf *fbp; /* buffer for freespace block */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 xfs_fileoff_t fo; /* freespace file offset */
1683 xfs_dir2_free_t *free; /* freespace structure */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001684 struct xfs_buf *lbp; /* buffer for leaf block */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 xfs_dir2_leaf_tail_t *ltp; /* tail of leaf structure */
1686 xfs_dir2_leaf_t *leaf; /* leaf structure */
1687 xfs_mount_t *mp; /* filesystem mount point */
1688 int rval; /* successful free trim? */
1689 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner24df33b2013-04-12 07:30:21 +10001690 struct xfs_dir3_icleaf_hdr leafhdr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001691 struct xfs_dir3_icfree_hdr freehdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
1693 /*
1694 * There's more than a leaf level in the btree, so there must
1695 * be multiple leafn blocks. Give up.
1696 */
1697 if (state->path.active > 1)
1698 return 0;
1699 args = state->args;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001700
1701 trace_xfs_dir2_node_to_leaf(args);
1702
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 mp = state->mp;
1704 dp = args->dp;
1705 tp = args->trans;
1706 /*
1707 * Get the last offset in the file.
1708 */
1709 if ((error = xfs_bmap_last_offset(tp, dp, &fo, XFS_DATA_FORK))) {
1710 return error;
1711 }
1712 fo -= mp->m_dirblkfsbs;
1713 /*
1714 * If there are freespace blocks other than the first one,
1715 * take this opportunity to remove trailing empty freespace blocks
1716 * that may have been left behind during no-space-reservation
1717 * operations.
1718 */
1719 while (fo > mp->m_dirfreeblk) {
1720 if ((error = xfs_dir2_node_trim_free(args, fo, &rval))) {
1721 return error;
1722 }
1723 if (rval)
1724 fo -= mp->m_dirblkfsbs;
1725 else
1726 return 0;
1727 }
1728 /*
1729 * Now find the block just before the freespace block.
1730 */
1731 if ((error = xfs_bmap_last_before(tp, dp, &fo, XFS_DATA_FORK))) {
1732 return error;
1733 }
1734 /*
1735 * If it's not the single leaf block, give up.
1736 */
1737 if (XFS_FSB_TO_B(mp, fo) > XFS_DIR2_LEAF_OFFSET + mp->m_dirblksize)
1738 return 0;
1739 lbp = state->path.blk[0].bp;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001740 leaf = lbp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001741 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001742
1743 ASSERT(leafhdr.magic == XFS_DIR2_LEAFN_MAGIC ||
1744 leafhdr.magic == XFS_DIR3_LEAFN_MAGIC);
1745
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 /*
1747 * Read the freespace block.
1748 */
Dave Chinner20252072012-11-12 22:54:13 +11001749 error = xfs_dir2_free_read(tp, dp, mp->m_dirfreeblk, &fbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001750 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001752 free = fbp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001753 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001754
1755 ASSERT(!freehdr.firstdb);
Christoph Hellwig22823962011-07-08 14:35:53 +02001756
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 /*
1758 * Now see if the leafn and free data will fit in a leaf1.
1759 * If not, release the buffer and give up.
1760 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001761 if (xfs_dir3_leaf_size(&leafhdr, freehdr.nvalid) > mp->m_dirblksize) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001762 xfs_trans_brelse(tp, fbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 return 0;
1764 }
Christoph Hellwig22823962011-07-08 14:35:53 +02001765
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 /*
1767 * If the leaf has any stale entries in it, compress them out.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001769 if (leafhdr.stale)
1770 xfs_dir3_leaf_compact(args, &leafhdr, lbp);
Dave Chinnerb0f539d2012-11-14 17:53:49 +11001771
Dave Chinner24df33b2013-04-12 07:30:21 +10001772 lbp->b_ops = &xfs_dir3_leaf1_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +11001773 xfs_trans_buf_set_type(tp, lbp, XFS_BLFT_DIR_LEAF1_BUF);
Dave Chinner24df33b2013-04-12 07:30:21 +10001774 leafhdr.magic = (leafhdr.magic == XFS_DIR2_LEAFN_MAGIC)
1775 ? XFS_DIR2_LEAF1_MAGIC
1776 : XFS_DIR3_LEAF1_MAGIC;
Dave Chinnerb0f539d2012-11-14 17:53:49 +11001777
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 /*
1779 * Set up the leaf tail from the freespace block.
1780 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001781 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001782 ltp->bestcount = cpu_to_be32(freehdr.nvalid);
Dave Chinner24df33b2013-04-12 07:30:21 +10001783
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 /*
1785 * Set up the leaf bests table.
1786 */
Dave Chinner24dd0f52013-10-30 13:48:41 -05001787 memcpy(xfs_dir2_leaf_bests_p(ltp), dp->d_ops->free_bests_p(free),
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001788 freehdr.nvalid * sizeof(xfs_dir2_data_off_t));
Dave Chinner24df33b2013-04-12 07:30:21 +10001789
Dave Chinner01ba43b2013-10-29 22:11:52 +11001790 dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr);
Dave Chinner41419562013-10-29 22:11:50 +11001791 xfs_dir3_leaf_log_header(tp, dp, lbp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001792 xfs_dir3_leaf_log_bests(tp, lbp, 0, be32_to_cpu(ltp->bestcount) - 1);
1793 xfs_dir3_leaf_log_tail(tp, lbp);
Dave Chinner41419562013-10-29 22:11:50 +11001794 xfs_dir3_leaf_check(dp, lbp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001795
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 /*
1797 * Get rid of the freespace block.
1798 */
1799 error = xfs_dir2_shrink_inode(args, XFS_DIR2_FREE_FIRSTDB(mp), fbp);
1800 if (error) {
1801 /*
1802 * This can't fail here because it can only happen when
1803 * punching out the middle of an extent, and this is an
1804 * isolated block.
1805 */
1806 ASSERT(error != ENOSPC);
1807 return error;
1808 }
1809 fbp = NULL;
1810 /*
1811 * Now see if we can convert the single-leaf directory
1812 * down to a block form directory.
1813 * This routine always kills the dabuf for the leaf, so
1814 * eliminate it from the path.
1815 */
1816 error = xfs_dir2_leaf_to_block(args, lbp, NULL);
1817 state->path.blk[0].bp = NULL;
1818 return error;
1819}