blob: 3923e1f9469761548b34a6db73076bb8f90d0c66 [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_mount.h"
Dave Chinner57062782013-10-15 09:17:51 +110025#include "xfs_da_format.h"
Nathan Scotta844f452005-11-02 14:38:42 +110026#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_inode.h"
28#include "xfs_bmap.h"
Dave Chinner2b9ab5a2013-08-12 20:49:37 +100029#include "xfs_dir2.h"
Christoph Hellwig57926642011-07-13 13:43:48 +020030#include "xfs_dir2_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_error.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000032#include "xfs_trace.h"
Dave Chinner239880e2013-10-23 10:50:10 +110033#include "xfs_trans.h"
Dave Chinner24df33b2013-04-12 07:30:21 +100034#include "xfs_buf_item.h"
35#include "xfs_cksum.h"
Brian Fostera45086e2015-10-12 15:59:25 +110036#include "xfs_log.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38/*
39 * Local function declarations.
40 */
Dave Chinner1d9025e2012-06-22 18:50:14 +100041static int xfs_dir2_leaf_lookup_int(xfs_da_args_t *args, struct xfs_buf **lbpp,
42 int *indexp, struct xfs_buf **dbpp);
Dave Chinnerbc851782014-06-06 15:20:54 +100043static void xfs_dir3_leaf_log_bests(struct xfs_da_args *args,
44 struct xfs_buf *bp, int first, int last);
45static void xfs_dir3_leaf_log_tail(struct xfs_da_args *args,
46 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 Chinner8f661932014-06-06 15:15:59 +100095 struct xfs_da_geometry *geo = mp->m_dir_geo;
Dave Chinner24df33b2013-04-12 07:30:21 +100096
Dave Chinner41419562013-10-29 22:11:50 +110097 /*
98 * we can be passed a null dp here from a verifier, so we need to go the
99 * hard way to get them.
100 */
101 ops = xfs_dir_get_ops(mp, dp);
102
Dave Chinner01ba43b2013-10-29 22:11:52 +1100103 if (!hdr) {
104 ops->leaf_hdr_from_disk(&leafhdr, leaf);
105 hdr = &leafhdr;
106 }
107
Dave Chinner41419562013-10-29 22:11:50 +1100108 ents = ops->leaf_ents_p(leaf);
Dave Chinner8f661932014-06-06 15:15:59 +1000109 ltp = xfs_dir2_leaf_tail_p(geo, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000110
111 /*
112 * XXX (dgc): This value is not restrictive enough.
113 * Should factor in the size of the bests table as well.
114 * We can deduce a value for that from di_size.
115 */
Dave Chinner8f661932014-06-06 15:15:59 +1000116 if (hdr->count > ops->leaf_max_ents(geo))
Dave Chinner24df33b2013-04-12 07:30:21 +1000117 return false;
118
119 /* Leaves and bests don't overlap in leaf format. */
120 if ((hdr->magic == XFS_DIR2_LEAF1_MAGIC ||
121 hdr->magic == XFS_DIR3_LEAF1_MAGIC) &&
122 (char *)&ents[hdr->count] > (char *)xfs_dir2_leaf_bests_p(ltp))
123 return false;
124
125 /* Check hash value order, count stale entries. */
126 for (i = stale = 0; i < hdr->count; i++) {
127 if (i + 1 < hdr->count) {
128 if (be32_to_cpu(ents[i].hashval) >
129 be32_to_cpu(ents[i + 1].hashval))
130 return false;
131 }
132 if (ents[i].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
133 stale++;
134 }
135 if (hdr->stale != stale)
136 return false;
137 return true;
138}
139
Dave Chinner0f295a22013-09-03 10:06:58 +1000140/*
141 * We verify the magic numbers before decoding the leaf header so that on debug
142 * kernels we don't get assertion failures in xfs_dir3_leaf_hdr_from_disk() due
143 * to incorrect magic numbers.
144 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000145static bool
146xfs_dir3_leaf_verify(
Dave Chinnere6f76672012-11-12 22:54:15 +1100147 struct xfs_buf *bp,
Dave Chinner24df33b2013-04-12 07:30:21 +1000148 __uint16_t magic)
Dave Chinnere6f76672012-11-12 22:54:15 +1100149{
150 struct xfs_mount *mp = bp->b_target->bt_mount;
Dave Chinner24df33b2013-04-12 07:30:21 +1000151 struct xfs_dir2_leaf *leaf = bp->b_addr;
Dave Chinnere6f76672012-11-12 22:54:15 +1100152
Dave Chinner24df33b2013-04-12 07:30:21 +1000153 ASSERT(magic == XFS_DIR2_LEAF1_MAGIC || magic == XFS_DIR2_LEAFN_MAGIC);
154
Dave Chinner24df33b2013-04-12 07:30:21 +1000155 if (xfs_sb_version_hascrc(&mp->m_sb)) {
156 struct xfs_dir3_leaf_hdr *leaf3 = bp->b_addr;
Dave Chinner0f295a22013-09-03 10:06:58 +1000157 __uint16_t magic3;
Dave Chinner24df33b2013-04-12 07:30:21 +1000158
Dave Chinner0f295a22013-09-03 10:06:58 +1000159 magic3 = (magic == XFS_DIR2_LEAF1_MAGIC) ? XFS_DIR3_LEAF1_MAGIC
160 : XFS_DIR3_LEAFN_MAGIC;
161
162 if (leaf3->info.hdr.magic != cpu_to_be16(magic3))
Dave Chinner24df33b2013-04-12 07:30:21 +1000163 return false;
Eric Sandeence748ea2015-07-29 11:53:31 +1000164 if (!uuid_equal(&leaf3->info.uuid, &mp->m_sb.sb_meta_uuid))
Dave Chinner24df33b2013-04-12 07:30:21 +1000165 return false;
166 if (be64_to_cpu(leaf3->info.blkno) != bp->b_bn)
167 return false;
Brian Fostera45086e2015-10-12 15:59:25 +1100168 if (!xfs_log_check_lsn(mp, be64_to_cpu(leaf3->info.lsn)))
169 return false;
Dave Chinner24df33b2013-04-12 07:30:21 +1000170 } else {
Dave Chinner0f295a22013-09-03 10:06:58 +1000171 if (leaf->hdr.info.magic != cpu_to_be16(magic))
Dave Chinner24df33b2013-04-12 07:30:21 +1000172 return false;
173 }
Dave Chinner0f295a22013-09-03 10:06:58 +1000174
Dave Chinner01ba43b2013-10-29 22:11:52 +1100175 return xfs_dir3_leaf_check_int(mp, NULL, NULL, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000176}
177
178static void
179__read_verify(
180 struct xfs_buf *bp,
181 __uint16_t magic)
182{
183 struct xfs_mount *mp = bp->b_target->bt_mount;
184
Eric Sandeence5028c2014-02-27 15:23:10 +1100185 if (xfs_sb_version_hascrc(&mp->m_sb) &&
186 !xfs_buf_verify_cksum(bp, XFS_DIR3_LEAF_CRC_OFF))
Dave Chinner24513372014-06-25 14:58:08 +1000187 xfs_buf_ioerror(bp, -EFSBADCRC);
Eric Sandeence5028c2014-02-27 15:23:10 +1100188 else if (!xfs_dir3_leaf_verify(bp, magic))
Dave Chinner24513372014-06-25 14:58:08 +1000189 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100190
191 if (bp->b_error)
192 xfs_verifier_error(bp);
Dave Chinner612cfbf2012-11-14 17:52:32 +1100193}
Dave Chinnere6f76672012-11-12 22:54:15 +1100194
Dave Chinner612cfbf2012-11-14 17:52:32 +1100195static void
Dave Chinner24df33b2013-04-12 07:30:21 +1000196__write_verify(
197 struct xfs_buf *bp,
198 __uint16_t magic)
Dave Chinner612cfbf2012-11-14 17:52:32 +1100199{
Dave Chinner24df33b2013-04-12 07:30:21 +1000200 struct xfs_mount *mp = bp->b_target->bt_mount;
201 struct xfs_buf_log_item *bip = bp->b_fspriv;
202 struct xfs_dir3_leaf_hdr *hdr3 = bp->b_addr;
203
204 if (!xfs_dir3_leaf_verify(bp, magic)) {
Dave Chinner24513372014-06-25 14:58:08 +1000205 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100206 xfs_verifier_error(bp);
Dave Chinner24df33b2013-04-12 07:30:21 +1000207 return;
208 }
209
210 if (!xfs_sb_version_hascrc(&mp->m_sb))
211 return;
212
213 if (bip)
214 hdr3->info.lsn = cpu_to_be64(bip->bli_item.li_lsn);
215
Eric Sandeenf1dbcd72014-02-27 15:18:23 +1100216 xfs_buf_update_cksum(bp, XFS_DIR3_LEAF_CRC_OFF);
Dave Chinner612cfbf2012-11-14 17:52:32 +1100217}
218
219static void
Dave Chinner24df33b2013-04-12 07:30:21 +1000220xfs_dir3_leaf1_read_verify(
Dave Chinner612cfbf2012-11-14 17:52:32 +1100221 struct xfs_buf *bp)
222{
Dave Chinner24df33b2013-04-12 07:30:21 +1000223 __read_verify(bp, XFS_DIR2_LEAF1_MAGIC);
Dave Chinner1813dd62012-11-14 17:54:40 +1100224}
225
Dave Chinner24df33b2013-04-12 07:30:21 +1000226static void
227xfs_dir3_leaf1_write_verify(
Dave Chinner1813dd62012-11-14 17:54:40 +1100228 struct xfs_buf *bp)
229{
Dave Chinner24df33b2013-04-12 07:30:21 +1000230 __write_verify(bp, XFS_DIR2_LEAF1_MAGIC);
Dave Chinnere6f76672012-11-12 22:54:15 +1100231}
232
Dave Chinner24df33b2013-04-12 07:30:21 +1000233static void
234xfs_dir3_leafn_read_verify(
Dave Chinner612cfbf2012-11-14 17:52:32 +1100235 struct xfs_buf *bp)
Dave Chinnere6f76672012-11-12 22:54:15 +1100236{
Dave Chinner24df33b2013-04-12 07:30:21 +1000237 __read_verify(bp, XFS_DIR2_LEAFN_MAGIC);
Dave Chinnere6f76672012-11-12 22:54:15 +1100238}
239
Dave Chinner24df33b2013-04-12 07:30:21 +1000240static void
241xfs_dir3_leafn_write_verify(
242 struct xfs_buf *bp)
243{
244 __write_verify(bp, XFS_DIR2_LEAFN_MAGIC);
245}
246
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100247const struct xfs_buf_ops xfs_dir3_leaf1_buf_ops = {
Dave Chinner24df33b2013-04-12 07:30:21 +1000248 .verify_read = xfs_dir3_leaf1_read_verify,
249 .verify_write = xfs_dir3_leaf1_write_verify,
Dave Chinner1813dd62012-11-14 17:54:40 +1100250};
251
Dave Chinner24df33b2013-04-12 07:30:21 +1000252const struct xfs_buf_ops xfs_dir3_leafn_buf_ops = {
253 .verify_read = xfs_dir3_leafn_read_verify,
254 .verify_write = xfs_dir3_leafn_write_verify,
Dave Chinner1813dd62012-11-14 17:54:40 +1100255};
Dave Chinnere6f76672012-11-12 22:54:15 +1100256
257static int
Dave Chinner24df33b2013-04-12 07:30:21 +1000258xfs_dir3_leaf_read(
Dave Chinnere6f76672012-11-12 22:54:15 +1100259 struct xfs_trans *tp,
260 struct xfs_inode *dp,
261 xfs_dablk_t fbno,
262 xfs_daddr_t mappedbno,
263 struct xfs_buf **bpp)
264{
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100265 int err;
266
267 err = xfs_da_read_buf(tp, dp, fbno, mappedbno, bpp,
Dave Chinner24df33b2013-04-12 07:30:21 +1000268 XFS_DATA_FORK, &xfs_dir3_leaf1_buf_ops);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100269 if (!err && tp)
Dave Chinner61fe1352013-04-03 16:11:30 +1100270 xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_DIR_LEAF1_BUF);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100271 return err;
Dave Chinnere6f76672012-11-12 22:54:15 +1100272}
273
274int
Dave Chinner24df33b2013-04-12 07:30:21 +1000275xfs_dir3_leafn_read(
Dave Chinnere6f76672012-11-12 22:54:15 +1100276 struct xfs_trans *tp,
277 struct xfs_inode *dp,
278 xfs_dablk_t fbno,
279 xfs_daddr_t mappedbno,
280 struct xfs_buf **bpp)
281{
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100282 int err;
283
284 err = xfs_da_read_buf(tp, dp, fbno, mappedbno, bpp,
Dave Chinner24df33b2013-04-12 07:30:21 +1000285 XFS_DATA_FORK, &xfs_dir3_leafn_buf_ops);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100286 if (!err && tp)
Dave Chinner61fe1352013-04-03 16:11:30 +1100287 xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_DIR_LEAFN_BUF);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100288 return err;
Dave Chinner24df33b2013-04-12 07:30:21 +1000289}
290
291/*
292 * Initialize a new leaf block, leaf1 or leafn magic accepted.
293 */
294static void
295xfs_dir3_leaf_init(
296 struct xfs_mount *mp,
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100297 struct xfs_trans *tp,
Dave Chinner24df33b2013-04-12 07:30:21 +1000298 struct xfs_buf *bp,
299 xfs_ino_t owner,
300 __uint16_t type)
301{
302 struct xfs_dir2_leaf *leaf = bp->b_addr;
303
304 ASSERT(type == XFS_DIR2_LEAF1_MAGIC || type == XFS_DIR2_LEAFN_MAGIC);
305
306 if (xfs_sb_version_hascrc(&mp->m_sb)) {
307 struct xfs_dir3_leaf_hdr *leaf3 = bp->b_addr;
308
309 memset(leaf3, 0, sizeof(*leaf3));
310
311 leaf3->info.hdr.magic = (type == XFS_DIR2_LEAF1_MAGIC)
312 ? cpu_to_be16(XFS_DIR3_LEAF1_MAGIC)
313 : cpu_to_be16(XFS_DIR3_LEAFN_MAGIC);
314 leaf3->info.blkno = cpu_to_be64(bp->b_bn);
315 leaf3->info.owner = cpu_to_be64(owner);
Eric Sandeence748ea2015-07-29 11:53:31 +1000316 uuid_copy(&leaf3->info.uuid, &mp->m_sb.sb_meta_uuid);
Dave Chinner24df33b2013-04-12 07:30:21 +1000317 } else {
318 memset(leaf, 0, sizeof(*leaf));
319 leaf->hdr.info.magic = cpu_to_be16(type);
320 }
321
322 /*
323 * If it's a leaf-format directory initialize the tail.
324 * Caller is responsible for initialising the bests table.
325 */
326 if (type == XFS_DIR2_LEAF1_MAGIC) {
327 struct xfs_dir2_leaf_tail *ltp;
328
Dave Chinner8f661932014-06-06 15:15:59 +1000329 ltp = xfs_dir2_leaf_tail_p(mp->m_dir_geo, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000330 ltp->bestcount = 0;
331 bp->b_ops = &xfs_dir3_leaf1_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100332 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_LEAF1_BUF);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100333 } else {
Dave Chinner24df33b2013-04-12 07:30:21 +1000334 bp->b_ops = &xfs_dir3_leafn_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100335 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_LEAFN_BUF);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100336 }
Dave Chinner24df33b2013-04-12 07:30:21 +1000337}
338
339int
340xfs_dir3_leaf_get_buf(
341 xfs_da_args_t *args,
342 xfs_dir2_db_t bno,
343 struct xfs_buf **bpp,
344 __uint16_t magic)
345{
346 struct xfs_inode *dp = args->dp;
347 struct xfs_trans *tp = args->trans;
348 struct xfs_mount *mp = dp->i_mount;
349 struct xfs_buf *bp;
350 int error;
351
352 ASSERT(magic == XFS_DIR2_LEAF1_MAGIC || magic == XFS_DIR2_LEAFN_MAGIC);
Dave Chinner30028032014-06-06 15:08:18 +1000353 ASSERT(bno >= xfs_dir2_byte_to_db(args->geo, XFS_DIR2_LEAF_OFFSET) &&
354 bno < xfs_dir2_byte_to_db(args->geo, XFS_DIR2_FREE_OFFSET));
Dave Chinner24df33b2013-04-12 07:30:21 +1000355
Dave Chinner2998ab12014-06-06 15:07:53 +1000356 error = xfs_da_get_buf(tp, dp, xfs_dir2_db_to_da(args->geo, bno),
357 -1, &bp, XFS_DATA_FORK);
Dave Chinner24df33b2013-04-12 07:30:21 +1000358 if (error)
359 return error;
360
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100361 xfs_dir3_leaf_init(mp, tp, bp, dp->i_ino, magic);
Dave Chinnerbc851782014-06-06 15:20:54 +1000362 xfs_dir3_leaf_log_header(args, bp);
Dave Chinner24df33b2013-04-12 07:30:21 +1000363 if (magic == XFS_DIR2_LEAF1_MAGIC)
Dave Chinnerbc851782014-06-06 15:20:54 +1000364 xfs_dir3_leaf_log_tail(args, bp);
Dave Chinner24df33b2013-04-12 07:30:21 +1000365 *bpp = bp;
366 return 0;
Dave Chinnere6f76672012-11-12 22:54:15 +1100367}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369/*
370 * Convert a block form directory to a leaf form directory.
371 */
372int /* error */
373xfs_dir2_block_to_leaf(
374 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000375 struct xfs_buf *dbp) /* input block's buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
Nathan Scott68b3a102006-03-17 17:27:19 +1100377 __be16 *bestsp; /* leaf's bestsp entries */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 xfs_dablk_t blkno; /* leaf block's bno */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200379 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 xfs_dir2_leaf_entry_t *blp; /* block's leaf entries */
381 xfs_dir2_block_tail_t *btp; /* block's tail */
382 xfs_inode_t *dp; /* incore directory inode */
383 int error; /* error return code */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000384 struct xfs_buf *lbp; /* leaf block's buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 xfs_dir2_db_t ldb; /* leaf block's bno */
386 xfs_dir2_leaf_t *leaf; /* leaf structure */
387 xfs_dir2_leaf_tail_t *ltp; /* leaf's tail */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 int needlog; /* need to log block header */
389 int needscan; /* need to rescan bestfree */
390 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner33363fe2013-04-03 16:11:22 +1100391 struct xfs_dir2_data_free *bf;
Dave Chinner24df33b2013-04-12 07:30:21 +1000392 struct xfs_dir2_leaf_entry *ents;
393 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000395 trace_xfs_dir2_block_to_leaf(args);
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 dp = args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 tp = args->trans;
399 /*
400 * Add the leaf block to the inode.
401 * This interface will only put blocks in the leaf/node range.
402 * Since that's empty now, we'll get the root (block 0 in range).
403 */
404 if ((error = xfs_da_grow_inode(args, &blkno))) {
405 return error;
406 }
Dave Chinner2998ab12014-06-06 15:07:53 +1000407 ldb = xfs_dir2_da_to_db(args->geo, blkno);
Dave Chinner30028032014-06-06 15:08:18 +1000408 ASSERT(ldb == xfs_dir2_byte_to_db(args->geo, XFS_DIR2_LEAF_OFFSET));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 /*
410 * Initialize the leaf block, get a buffer for it.
411 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000412 error = xfs_dir3_leaf_get_buf(args, ldb, &lbp, XFS_DIR2_LEAF1_MAGIC);
413 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 return error;
Dave Chinner24df33b2013-04-12 07:30:21 +1000415
Dave Chinner1d9025e2012-06-22 18:50:14 +1000416 leaf = lbp->b_addr;
417 hdr = dbp->b_addr;
Dave Chinner33363fe2013-04-03 16:11:22 +1100418 xfs_dir3_data_check(dp, dbp);
Dave Chinner8f661932014-06-06 15:15:59 +1000419 btp = xfs_dir2_block_tail_p(args->geo, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000420 blp = xfs_dir2_block_leaf_p(btp);
Dave Chinner2ca98772013-10-29 22:11:49 +1100421 bf = dp->d_ops->data_bestfree_p(hdr);
Dave Chinner41419562013-10-29 22:11:50 +1100422 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 /*
425 * Set the counts in the leaf header.
426 */
Dave Chinner01ba43b2013-10-29 22:11:52 +1100427 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000428 leafhdr.count = be32_to_cpu(btp->count);
429 leafhdr.stale = be32_to_cpu(btp->stale);
Dave Chinner01ba43b2013-10-29 22:11:52 +1100430 dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr);
Dave Chinnerbc851782014-06-06 15:20:54 +1000431 xfs_dir3_leaf_log_header(args, lbp);
Dave Chinner24df33b2013-04-12 07:30:21 +1000432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 /*
434 * Could compact these but I think we always do the conversion
435 * after squeezing out stale entries.
436 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000437 memcpy(ents, blp, be32_to_cpu(btp->count) * sizeof(xfs_dir2_leaf_entry_t));
Dave Chinnerbc851782014-06-06 15:20:54 +1000438 xfs_dir3_leaf_log_ents(args, lbp, 0, leafhdr.count - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 needscan = 0;
440 needlog = 1;
441 /*
442 * Make the space formerly occupied by the leaf entries and block
443 * tail be free.
444 */
Dave Chinnerbc851782014-06-06 15:20:54 +1000445 xfs_dir2_data_make_free(args, dbp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200446 (xfs_dir2_data_aoff_t)((char *)blp - (char *)hdr),
Dave Chinner8f661932014-06-06 15:15:59 +1000447 (xfs_dir2_data_aoff_t)((char *)hdr + args->geo->blksize -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 (char *)blp),
449 &needlog, &needscan);
450 /*
451 * Fix up the block header, make it a data block.
452 */
Dave Chinner33363fe2013-04-03 16:11:22 +1100453 dbp->b_ops = &xfs_dir3_data_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100454 xfs_trans_buf_set_type(tp, dbp, XFS_BLFT_DIR_DATA_BUF);
Dave Chinner33363fe2013-04-03 16:11:22 +1100455 if (hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC))
456 hdr->magic = cpu_to_be32(XFS_DIR2_DATA_MAGIC);
457 else
458 hdr->magic = cpu_to_be32(XFS_DIR3_DATA_MAGIC);
459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +1100461 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 /*
463 * Set up leaf tail and bests table.
464 */
Dave Chinner8f661932014-06-06 15:15:59 +1000465 ltp = xfs_dir2_leaf_tail_p(args->geo, leaf);
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100466 ltp->bestcount = cpu_to_be32(1);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000467 bestsp = xfs_dir2_leaf_bests_p(ltp);
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100468 bestsp[0] = bf[0].length;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 /*
470 * Log the data header and leaf bests table.
471 */
472 if (needlog)
Dave Chinnerbc851782014-06-06 15:20:54 +1000473 xfs_dir2_data_log_header(args, dbp);
Dave Chinner41419562013-10-29 22:11:50 +1100474 xfs_dir3_leaf_check(dp, lbp);
Dave Chinner33363fe2013-04-03 16:11:22 +1100475 xfs_dir3_data_check(dp, dbp);
Dave Chinnerbc851782014-06-06 15:20:54 +1000476 xfs_dir3_leaf_log_bests(args, lbp, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 return 0;
478}
479
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200480STATIC void
Dave Chinner24df33b2013-04-12 07:30:21 +1000481xfs_dir3_leaf_find_stale(
482 struct xfs_dir3_icleaf_hdr *leafhdr,
483 struct xfs_dir2_leaf_entry *ents,
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200484 int index,
485 int *lowstale,
486 int *highstale)
487{
488 /*
489 * Find the first stale entry before our index, if any.
490 */
491 for (*lowstale = index - 1; *lowstale >= 0; --*lowstale) {
Dave Chinner24df33b2013-04-12 07:30:21 +1000492 if (ents[*lowstale].address ==
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200493 cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
494 break;
495 }
496
497 /*
498 * Find the first stale entry at or after our index, if any.
499 * Stop if the result would require moving more entries than using
500 * lowstale.
501 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000502 for (*highstale = index; *highstale < leafhdr->count; ++*highstale) {
503 if (ents[*highstale].address ==
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200504 cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
505 break;
506 if (*lowstale >= 0 && index - *lowstale <= *highstale - index)
507 break;
508 }
509}
510
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200511struct xfs_dir2_leaf_entry *
Dave Chinner24df33b2013-04-12 07:30:21 +1000512xfs_dir3_leaf_find_entry(
513 struct xfs_dir3_icleaf_hdr *leafhdr,
514 struct xfs_dir2_leaf_entry *ents,
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200515 int index, /* leaf table position */
516 int compact, /* need to compact leaves */
517 int lowstale, /* index of prev stale leaf */
518 int highstale, /* index of next stale leaf */
519 int *lfloglow, /* low leaf logging index */
520 int *lfloghigh) /* high leaf logging index */
521{
Dave Chinner24df33b2013-04-12 07:30:21 +1000522 if (!leafhdr->stale) {
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200523 xfs_dir2_leaf_entry_t *lep; /* leaf entry table pointer */
524
525 /*
526 * Now we need to make room to insert the leaf entry.
527 *
528 * If there are no stale entries, just insert a hole at index.
529 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000530 lep = &ents[index];
531 if (index < leafhdr->count)
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200532 memmove(lep + 1, lep,
Dave Chinner24df33b2013-04-12 07:30:21 +1000533 (leafhdr->count - index) * sizeof(*lep));
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200534
535 /*
536 * Record low and high logging indices for the leaf.
537 */
538 *lfloglow = index;
Dave Chinner24df33b2013-04-12 07:30:21 +1000539 *lfloghigh = leafhdr->count++;
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200540 return lep;
541 }
542
543 /*
544 * There are stale entries.
545 *
546 * We will use one of them for the new entry. It's probably not at
547 * the right location, so we'll have to shift some up or down first.
548 *
549 * If we didn't compact before, we need to find the nearest stale
550 * entries before and after our insertion point.
551 */
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200552 if (compact == 0)
Dave Chinner24df33b2013-04-12 07:30:21 +1000553 xfs_dir3_leaf_find_stale(leafhdr, ents, index,
554 &lowstale, &highstale);
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200555
556 /*
557 * If the low one is better, use it.
558 */
559 if (lowstale >= 0 &&
Dave Chinner24df33b2013-04-12 07:30:21 +1000560 (highstale == leafhdr->count ||
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200561 index - lowstale - 1 < highstale - index)) {
562 ASSERT(index - lowstale - 1 >= 0);
Dave Chinner24df33b2013-04-12 07:30:21 +1000563 ASSERT(ents[lowstale].address ==
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200564 cpu_to_be32(XFS_DIR2_NULL_DATAPTR));
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200565
566 /*
567 * Copy entries up to cover the stale entry and make room
568 * for the new entry.
569 */
570 if (index - lowstale - 1 > 0) {
Dave Chinner24df33b2013-04-12 07:30:21 +1000571 memmove(&ents[lowstale], &ents[lowstale + 1],
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200572 (index - lowstale - 1) *
Dave Chinner24df33b2013-04-12 07:30:21 +1000573 sizeof(xfs_dir2_leaf_entry_t));
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200574 }
575 *lfloglow = MIN(lowstale, *lfloglow);
576 *lfloghigh = MAX(index - 1, *lfloghigh);
Dave Chinner24df33b2013-04-12 07:30:21 +1000577 leafhdr->stale--;
578 return &ents[index - 1];
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200579 }
580
581 /*
582 * The high one is better, so use that one.
583 */
584 ASSERT(highstale - index >= 0);
Dave Chinner24df33b2013-04-12 07:30:21 +1000585 ASSERT(ents[highstale].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR));
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200586
587 /*
588 * Copy entries down to cover the stale entry and make room for the
589 * new entry.
590 */
591 if (highstale - index > 0) {
Dave Chinner24df33b2013-04-12 07:30:21 +1000592 memmove(&ents[index + 1], &ents[index],
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200593 (highstale - index) * sizeof(xfs_dir2_leaf_entry_t));
594 }
595 *lfloglow = MIN(index, *lfloglow);
596 *lfloghigh = MAX(highstale, *lfloghigh);
Dave Chinner24df33b2013-04-12 07:30:21 +1000597 leafhdr->stale--;
598 return &ents[index];
Christoph Hellwig4fb44c82011-07-08 14:34:59 +0200599}
600
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601/*
602 * Add an entry to a leaf form directory.
603 */
604int /* error */
605xfs_dir2_leaf_addname(
606 xfs_da_args_t *args) /* operation arguments */
607{
Nathan Scott68b3a102006-03-17 17:27:19 +1100608 __be16 *bestsp; /* freespace table in leaf */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 int compact; /* need to compact leaves */
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200610 xfs_dir2_data_hdr_t *hdr; /* data block header */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000611 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 xfs_dir2_data_entry_t *dep; /* data block entry */
613 xfs_inode_t *dp; /* incore directory inode */
614 xfs_dir2_data_unused_t *dup; /* data unused entry */
615 int error; /* error return value */
616 int grown; /* allocated new data block */
617 int highstale; /* index of next stale leaf */
618 int i; /* temporary, index */
619 int index; /* leaf table position */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000620 struct xfs_buf *lbp; /* leaf's buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 xfs_dir2_leaf_t *leaf; /* leaf structure */
622 int length; /* length of new entry */
623 xfs_dir2_leaf_entry_t *lep; /* leaf entry table pointer */
624 int lfloglow; /* low leaf logging index */
625 int lfloghigh; /* high leaf logging index */
626 int lowstale; /* index of prev stale leaf */
627 xfs_dir2_leaf_tail_t *ltp; /* leaf tail pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 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;
Dave Chinnere6f76672012-11-12 22:54:15 +1100642
Dave Chinner7dda6e82014-06-06 15:11:18 +1000643 error = xfs_dir3_leaf_read(tp, dp, args->geo->leafblk, -1, &lbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +1100644 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 return error;
Dave Chinnere6f76672012-11-12 22:54:15 +1100646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 /*
648 * Look up the entry by hash value and name.
649 * We know it's not there, our caller has already done a lookup.
650 * So the index is of the entry to insert in front of.
651 * But if there are dup hash values the index is of the first of those.
652 */
653 index = xfs_dir2_leaf_search_hash(args, lbp);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000654 leaf = lbp->b_addr;
Dave Chinner8f661932014-06-06 15:15:59 +1000655 ltp = xfs_dir2_leaf_tail_p(args->geo, leaf);
Dave Chinner41419562013-10-29 22:11:50 +1100656 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner01ba43b2013-10-29 22:11:52 +1100657 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000658 bestsp = xfs_dir2_leaf_bests_p(ltp);
Dave Chinner9d23fc82013-10-29 22:11:48 +1100659 length = dp->d_ops->data_entsize(args->namelen);
Dave Chinner24df33b2013-04-12 07:30:21 +1000660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 /*
662 * See if there are any entries with the same hash value
663 * and space in their block for the new entry.
664 * This is good because it puts multiple same-hash value entries
665 * in a data block, improving the lookup of those entries.
666 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000667 for (use_block = -1, lep = &ents[index];
668 index < leafhdr.count && be32_to_cpu(lep->hashval) == args->hashval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 index++, lep++) {
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100670 if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 continue;
Dave Chinner30028032014-06-06 15:08:18 +1000672 i = xfs_dir2_dataptr_to_db(args->geo, be32_to_cpu(lep->address));
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100673 ASSERT(i < be32_to_cpu(ltp->bestcount));
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200674 ASSERT(bestsp[i] != cpu_to_be16(NULLDATAOFF));
Nathan Scott68b3a102006-03-17 17:27:19 +1100675 if (be16_to_cpu(bestsp[i]) >= length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 use_block = i;
677 break;
678 }
679 }
680 /*
681 * Didn't find a block yet, linear search all the data blocks.
682 */
683 if (use_block == -1) {
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100684 for (i = 0; i < be32_to_cpu(ltp->bestcount); i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 /*
686 * Remember a block we see that's missing.
687 */
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200688 if (bestsp[i] == cpu_to_be16(NULLDATAOFF) &&
689 use_block == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 use_block = i;
Nathan Scott68b3a102006-03-17 17:27:19 +1100691 else if (be16_to_cpu(bestsp[i]) >= length) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 use_block = i;
693 break;
694 }
695 }
696 }
697 /*
698 * How many bytes do we need in the leaf block?
699 */
Christoph Hellwig22823962011-07-08 14:35:53 +0200700 needbytes = 0;
Dave Chinner24df33b2013-04-12 07:30:21 +1000701 if (!leafhdr.stale)
Christoph Hellwig22823962011-07-08 14:35:53 +0200702 needbytes += sizeof(xfs_dir2_leaf_entry_t);
703 if (use_block == -1)
704 needbytes += sizeof(xfs_dir2_data_off_t);
705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 /*
707 * Now kill use_block if it refers to a missing block, so we
708 * can use it as an indication of allocation needed.
709 */
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200710 if (use_block != -1 && bestsp[use_block] == cpu_to_be16(NULLDATAOFF))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 use_block = -1;
712 /*
713 * If we don't have enough free bytes but we can make enough
714 * by compacting out stale entries, we'll do that.
715 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000716 if ((char *)bestsp - (char *)&ents[leafhdr.count] < needbytes &&
717 leafhdr.stale > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 compact = 1;
Dave Chinner24df33b2013-04-12 07:30:21 +1000719
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 /*
721 * Otherwise if we don't have enough free bytes we need to
722 * convert to node form.
723 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000724 else if ((char *)bestsp - (char *)&ents[leafhdr.count] < needbytes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 /*
726 * Just checking or no space reservation, give up.
727 */
Barry Naujok6a178102008-05-21 16:42:05 +1000728 if ((args->op_flags & XFS_DA_OP_JUSTCHECK) ||
729 args->total == 0) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000730 xfs_trans_brelse(tp, lbp);
Dave Chinner24513372014-06-25 14:58:08 +1000731 return -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 }
733 /*
734 * Convert to node form.
735 */
736 error = xfs_dir2_leaf_to_node(args, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 if (error)
738 return error;
739 /*
740 * Then add the new entry.
741 */
742 return xfs_dir2_node_addname(args);
743 }
744 /*
745 * Otherwise it will fit without compaction.
746 */
747 else
748 compact = 0;
749 /*
750 * If just checking, then it will fit unless we needed to allocate
751 * a new data block.
752 */
Barry Naujok6a178102008-05-21 16:42:05 +1000753 if (args->op_flags & XFS_DA_OP_JUSTCHECK) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000754 xfs_trans_brelse(tp, lbp);
Dave Chinner24513372014-06-25 14:58:08 +1000755 return use_block == -1 ? -ENOSPC : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 }
757 /*
758 * If no allocations are allowed, return now before we've
759 * changed anything.
760 */
761 if (args->total == 0 && use_block == -1) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000762 xfs_trans_brelse(tp, lbp);
Dave Chinner24513372014-06-25 14:58:08 +1000763 return -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 }
765 /*
766 * Need to compact the leaf entries, removing stale ones.
767 * Leave one stale entry behind - the one closest to our
768 * insertion index - and we'll shift that one to our insertion
769 * point later.
770 */
771 if (compact) {
Dave Chinner24df33b2013-04-12 07:30:21 +1000772 xfs_dir3_leaf_compact_x1(&leafhdr, ents, &index, &lowstale,
773 &highstale, &lfloglow, &lfloghigh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 }
775 /*
776 * There are stale entries, so we'll need log-low and log-high
777 * impossibly bad values later.
778 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000779 else if (leafhdr.stale) {
780 lfloglow = leafhdr.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 lfloghigh = -1;
782 }
783 /*
784 * If there was no data block space found, we need to allocate
785 * a new one.
786 */
787 if (use_block == -1) {
788 /*
789 * Add the new data block.
790 */
791 if ((error = xfs_dir2_grow_inode(args, XFS_DIR2_DATA_SPACE,
792 &use_block))) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000793 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 return error;
795 }
796 /*
797 * Initialize the block.
798 */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100799 if ((error = xfs_dir3_data_init(args, use_block, &dbp))) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000800 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 return error;
802 }
803 /*
804 * If we're adding a new data block on the end we need to
805 * extend the bests table. Copy it up one entry.
806 */
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100807 if (use_block >= be32_to_cpu(ltp->bestcount)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 bestsp--;
809 memmove(&bestsp[0], &bestsp[1],
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100810 be32_to_cpu(ltp->bestcount) * sizeof(bestsp[0]));
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800811 be32_add_cpu(&ltp->bestcount, 1);
Dave Chinnerbc851782014-06-06 15:20:54 +1000812 xfs_dir3_leaf_log_tail(args, lbp);
813 xfs_dir3_leaf_log_bests(args, lbp, 0,
814 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 Chinnerbc851782014-06-06 15:20:54 +1000820 xfs_dir3_leaf_log_bests(args, 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 Chinner2998ab12014-06-06 15:07:53 +1000831 xfs_dir2_db_to_da(args->geo, 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 Chinnerbc851782014-06-06 15:20:54 +1000851 xfs_dir2_data_use_free(args, 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 Chinnerbc851782014-06-06 15:20:54 +1000873 xfs_dir2_data_log_header(args, dbp);
874 xfs_dir2_data_log_entry(args, 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 Chinnerbc851782014-06-06 15:20:54 +1000882 xfs_dir3_leaf_log_bests(args, 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);
Dave Chinner30028032014-06-06 15:08:18 +1000892 lep->address = cpu_to_be32(
893 xfs_dir2_db_off_to_dataptr(args->geo, use_block,
Nathan Scott3d693c62006-03-17 17:28:27 +1100894 be16_to_cpu(*tagp)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 /*
896 * Log the leaf fields and give up the buffers.
897 */
Dave Chinner01ba43b2013-10-29 22:11:52 +1100898 dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr);
Dave Chinnerbc851782014-06-06 15:20:54 +1000899 xfs_dir3_leaf_log_header(args, lbp);
900 xfs_dir3_leaf_log_ents(args, lbp, lfloglow, lfloghigh);
Dave Chinner41419562013-10-29 22:11:50 +1100901 xfs_dir3_leaf_check(dp, lbp);
Dave Chinner33363fe2013-04-03 16:11:22 +1100902 xfs_dir3_data_check(dp, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 return 0;
904}
905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906/*
907 * Compact out any stale entries in the leaf.
908 * Log the header and changed leaf entries, if any.
909 */
910void
Dave Chinner24df33b2013-04-12 07:30:21 +1000911xfs_dir3_leaf_compact(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 xfs_da_args_t *args, /* operation arguments */
Dave Chinner24df33b2013-04-12 07:30:21 +1000913 struct xfs_dir3_icleaf_hdr *leafhdr,
Dave Chinner1d9025e2012-06-22 18:50:14 +1000914 struct xfs_buf *bp) /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915{
916 int from; /* source leaf index */
917 xfs_dir2_leaf_t *leaf; /* leaf structure */
918 int loglow; /* first leaf entry to log */
919 int to; /* target leaf index */
Dave Chinner24df33b2013-04-12 07:30:21 +1000920 struct xfs_dir2_leaf_entry *ents;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100921 struct xfs_inode *dp = args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Dave Chinner1d9025e2012-06-22 18:50:14 +1000923 leaf = bp->b_addr;
Dave Chinner24df33b2013-04-12 07:30:21 +1000924 if (!leafhdr->stale)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 return;
Dave Chinner24df33b2013-04-12 07:30:21 +1000926
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 /*
928 * Compress out the stale entries in place.
929 */
Dave Chinner01ba43b2013-10-29 22:11:52 +1100930 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000931 for (from = to = 0, loglow = -1; from < leafhdr->count; from++) {
932 if (ents[from].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 continue;
934 /*
935 * Only actually copy the entries that are different.
936 */
937 if (from > to) {
938 if (loglow == -1)
939 loglow = to;
Dave Chinner24df33b2013-04-12 07:30:21 +1000940 ents[to] = ents[from];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 }
942 to++;
943 }
944 /*
945 * Update and log the header, log the leaf entries.
946 */
Dave Chinner24df33b2013-04-12 07:30:21 +1000947 ASSERT(leafhdr->stale == from - to);
948 leafhdr->count -= leafhdr->stale;
949 leafhdr->stale = 0;
950
Dave Chinner01ba43b2013-10-29 22:11:52 +1100951 dp->d_ops->leaf_hdr_to_disk(leaf, leafhdr);
Dave Chinnerbc851782014-06-06 15:20:54 +1000952 xfs_dir3_leaf_log_header(args, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 if (loglow != -1)
Dave Chinnerbc851782014-06-06 15:20:54 +1000954 xfs_dir3_leaf_log_ents(args, bp, loglow, to - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955}
956
957/*
958 * Compact the leaf entries, removing stale ones.
959 * Leave one stale entry behind - the one closest to our
960 * insertion index - and the caller will shift that one to our insertion
961 * point later.
962 * Return new insertion index, where the remaining stale entry is,
963 * and leaf logging indices.
964 */
965void
Dave Chinner24df33b2013-04-12 07:30:21 +1000966xfs_dir3_leaf_compact_x1(
967 struct xfs_dir3_icleaf_hdr *leafhdr,
968 struct xfs_dir2_leaf_entry *ents,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 int *indexp, /* insertion index */
970 int *lowstalep, /* out: stale entry before us */
971 int *highstalep, /* out: stale entry after us */
972 int *lowlogp, /* out: low log index */
973 int *highlogp) /* out: high log index */
974{
975 int from; /* source copy index */
976 int highstale; /* stale entry at/after index */
977 int index; /* insertion index */
978 int keepstale; /* source index of kept stale */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 int lowstale; /* stale entry before index */
980 int newindex=0; /* new insertion index */
981 int to; /* destination copy index */
982
Dave Chinner24df33b2013-04-12 07:30:21 +1000983 ASSERT(leafhdr->stale > 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 index = *indexp;
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200985
Dave Chinner24df33b2013-04-12 07:30:21 +1000986 xfs_dir3_leaf_find_stale(leafhdr, ents, index, &lowstale, &highstale);
Christoph Hellwiga230a1d2011-07-13 13:43:48 +0200987
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 /*
989 * Pick the better of lowstale and highstale.
990 */
991 if (lowstale >= 0 &&
Dave Chinner24df33b2013-04-12 07:30:21 +1000992 (highstale == leafhdr->count ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 index - lowstale <= highstale - index))
994 keepstale = lowstale;
995 else
996 keepstale = highstale;
997 /*
998 * Copy the entries in place, removing all the stale entries
999 * except keepstale.
1000 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001001 for (from = to = 0; from < leafhdr->count; from++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 /*
1003 * Notice the new value of index.
1004 */
1005 if (index == from)
1006 newindex = to;
1007 if (from != keepstale &&
Dave Chinner24df33b2013-04-12 07:30:21 +10001008 ents[from].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 if (from == to)
1010 *lowlogp = to;
1011 continue;
1012 }
1013 /*
1014 * Record the new keepstale value for the insertion.
1015 */
1016 if (from == keepstale)
1017 lowstale = highstale = to;
1018 /*
1019 * Copy only the entries that have moved.
1020 */
1021 if (from > to)
Dave Chinner24df33b2013-04-12 07:30:21 +10001022 ents[to] = ents[from];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 to++;
1024 }
1025 ASSERT(from > to);
1026 /*
1027 * If the insertion point was past the last entry,
1028 * set the new insertion point accordingly.
1029 */
1030 if (index == from)
1031 newindex = to;
1032 *indexp = newindex;
1033 /*
1034 * Adjust the leaf header values.
1035 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001036 leafhdr->count -= from - to;
1037 leafhdr->stale = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 /*
1039 * Remember the low/high stale value only in the "right"
1040 * direction.
1041 */
1042 if (lowstale >= newindex)
1043 lowstale = -1;
1044 else
Dave Chinner24df33b2013-04-12 07:30:21 +10001045 highstale = leafhdr->count;
1046 *highlogp = leafhdr->count - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 *lowstalep = lowstale;
1048 *highstalep = highstale;
1049}
1050
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051/*
1052 * Log the bests entries indicated from a leaf1 block.
1053 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001054static void
Dave Chinner24df33b2013-04-12 07:30:21 +10001055xfs_dir3_leaf_log_bests(
Dave Chinnerbc851782014-06-06 15:20:54 +10001056 struct xfs_da_args *args,
Dave Chinner1d9025e2012-06-22 18:50:14 +10001057 struct xfs_buf *bp, /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 int first, /* first entry to log */
1059 int last) /* last entry to log */
1060{
Nathan Scott68b3a102006-03-17 17:27:19 +11001061 __be16 *firstb; /* pointer to first entry */
1062 __be16 *lastb; /* pointer to last entry */
Dave Chinner24df33b2013-04-12 07:30:21 +10001063 struct xfs_dir2_leaf *leaf = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
1065
Dave Chinner24df33b2013-04-12 07:30:21 +10001066 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC) ||
1067 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAF1_MAGIC));
1068
Dave Chinnerbc851782014-06-06 15:20:54 +10001069 ltp = xfs_dir2_leaf_tail_p(args->geo, leaf);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001070 firstb = xfs_dir2_leaf_bests_p(ltp) + first;
1071 lastb = xfs_dir2_leaf_bests_p(ltp) + last;
Dave Chinnerbc851782014-06-06 15:20:54 +10001072 xfs_trans_log_buf(args->trans, bp,
1073 (uint)((char *)firstb - (char *)leaf),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 (uint)((char *)lastb - (char *)leaf + sizeof(*lastb) - 1));
1075}
1076
1077/*
1078 * Log the leaf entries indicated from a leaf1 or leafn block.
1079 */
1080void
Dave Chinner24df33b2013-04-12 07:30:21 +10001081xfs_dir3_leaf_log_ents(
Dave Chinnerbc851782014-06-06 15:20:54 +10001082 struct xfs_da_args *args,
Dave Chinner41419562013-10-29 22:11:50 +11001083 struct xfs_buf *bp,
1084 int first,
1085 int last)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086{
1087 xfs_dir2_leaf_entry_t *firstlep; /* pointer to first entry */
1088 xfs_dir2_leaf_entry_t *lastlep; /* pointer to last entry */
Dave Chinner24df33b2013-04-12 07:30:21 +10001089 struct xfs_dir2_leaf *leaf = bp->b_addr;
1090 struct xfs_dir2_leaf_entry *ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001092 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC) ||
Dave Chinner24df33b2013-04-12 07:30:21 +10001093 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAF1_MAGIC) ||
1094 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
1095 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC));
1096
Dave Chinnerbc851782014-06-06 15:20:54 +10001097 ents = args->dp->d_ops->leaf_ents_p(leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001098 firstlep = &ents[first];
1099 lastlep = &ents[last];
Dave Chinnerbc851782014-06-06 15:20:54 +10001100 xfs_trans_log_buf(args->trans, bp,
1101 (uint)((char *)firstlep - (char *)leaf),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 (uint)((char *)lastlep - (char *)leaf + sizeof(*lastlep) - 1));
1103}
1104
1105/*
1106 * Log the header of the leaf1 or leafn block.
1107 */
1108void
Dave Chinner24df33b2013-04-12 07:30:21 +10001109xfs_dir3_leaf_log_header(
Dave Chinnerbc851782014-06-06 15:20:54 +10001110 struct xfs_da_args *args,
Dave Chinner1d9025e2012-06-22 18:50:14 +10001111 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112{
Dave Chinner24df33b2013-04-12 07:30:21 +10001113 struct xfs_dir2_leaf *leaf = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001115 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC) ||
Dave Chinner24df33b2013-04-12 07:30:21 +10001116 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAF1_MAGIC) ||
1117 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
1118 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC));
1119
Dave Chinnerbc851782014-06-06 15:20:54 +10001120 xfs_trans_log_buf(args->trans, bp,
1121 (uint)((char *)&leaf->hdr - (char *)leaf),
1122 args->dp->d_ops->leaf_hdr_size - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123}
1124
1125/*
1126 * Log the tail of the leaf1 block.
1127 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001128STATIC void
Dave Chinner24df33b2013-04-12 07:30:21 +10001129xfs_dir3_leaf_log_tail(
Dave Chinnerbc851782014-06-06 15:20:54 +10001130 struct xfs_da_args *args,
Dave Chinner1d9025e2012-06-22 18:50:14 +10001131 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132{
Dave Chinner24df33b2013-04-12 07:30:21 +10001133 struct xfs_dir2_leaf *leaf = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135
Dave Chinner24df33b2013-04-12 07:30:21 +10001136 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC) ||
1137 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAF1_MAGIC) ||
1138 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
1139 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC));
1140
Dave Chinnerbc851782014-06-06 15:20:54 +10001141 ltp = xfs_dir2_leaf_tail_p(args->geo, leaf);
1142 xfs_trans_log_buf(args->trans, bp, (uint)((char *)ltp - (char *)leaf),
1143 (uint)(args->geo->blksize - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144}
1145
1146/*
1147 * Look up the entry referred to by args in the leaf format directory.
1148 * Most of the work is done by the xfs_dir2_leaf_lookup_int routine which
1149 * is also used by the node-format code.
1150 */
1151int
1152xfs_dir2_leaf_lookup(
1153 xfs_da_args_t *args) /* operation arguments */
1154{
Dave Chinner1d9025e2012-06-22 18:50:14 +10001155 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 xfs_dir2_data_entry_t *dep; /* data block entry */
1157 xfs_inode_t *dp; /* incore directory inode */
1158 int error; /* error return code */
1159 int index; /* found entry index */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001160 struct xfs_buf *lbp; /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 xfs_dir2_leaf_t *leaf; /* leaf structure */
1162 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1163 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner24df33b2013-04-12 07:30:21 +10001164 struct xfs_dir2_leaf_entry *ents;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001166 trace_xfs_dir2_leaf_lookup(args);
1167
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 /*
1169 * Look up name in the leaf block, returning both buffers and index.
1170 */
1171 if ((error = xfs_dir2_leaf_lookup_int(args, &lbp, &index, &dbp))) {
1172 return error;
1173 }
1174 tp = args->trans;
1175 dp = args->dp;
Dave Chinner41419562013-10-29 22:11:50 +11001176 xfs_dir3_leaf_check(dp, lbp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001177 leaf = lbp->b_addr;
Dave Chinner41419562013-10-29 22:11:50 +11001178 ents = dp->d_ops->leaf_ents_p(leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 /*
1180 * Get to the leaf entry and contained data entry address.
1181 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001182 lep = &ents[index];
1183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 /*
1185 * Point to the data entry.
1186 */
1187 dep = (xfs_dir2_data_entry_t *)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001188 ((char *)dbp->b_addr +
Dave Chinner30028032014-06-06 15:08:18 +10001189 xfs_dir2_dataptr_to_off(args->geo, be32_to_cpu(lep->address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 /*
Barry Naujok384f3ce2008-05-21 16:58:22 +10001191 * Return the found inode number & CI name if appropriate
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +10001193 args->inumber = be64_to_cpu(dep->inumber);
Dave Chinner9d23fc82013-10-29 22:11:48 +11001194 args->filetype = dp->d_ops->data_get_ftype(dep);
Barry Naujok384f3ce2008-05-21 16:58:22 +10001195 error = xfs_dir_cilookup_result(args, dep->name, dep->namelen);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001196 xfs_trans_brelse(tp, dbp);
1197 xfs_trans_brelse(tp, lbp);
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001198 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199}
1200
1201/*
1202 * Look up name/hash in the leaf block.
1203 * Fill in indexp with the found index, and dbpp with the data buffer.
1204 * If not found dbpp will be NULL, and ENOENT comes back.
1205 * lbpp will always be filled in with the leaf buffer unless there's an error.
1206 */
1207static int /* error */
1208xfs_dir2_leaf_lookup_int(
1209 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001210 struct xfs_buf **lbpp, /* out: leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 int *indexp, /* out: index in leaf block */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001212 struct xfs_buf **dbpp) /* out: data buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213{
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001214 xfs_dir2_db_t curdb = -1; /* current data block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001215 struct xfs_buf *dbp = NULL; /* data buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 xfs_dir2_data_entry_t *dep; /* data entry */
1217 xfs_inode_t *dp; /* incore directory inode */
1218 int error; /* error return code */
1219 int index; /* index in leaf block */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001220 struct xfs_buf *lbp; /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1222 xfs_dir2_leaf_t *leaf; /* leaf structure */
1223 xfs_mount_t *mp; /* filesystem mount point */
1224 xfs_dir2_db_t newdb; /* new data block number */
1225 xfs_trans_t *tp; /* transaction pointer */
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001226 xfs_dir2_db_t cidb = -1; /* case match data block no. */
Barry Naujok5163f952008-05-21 16:41:01 +10001227 enum xfs_dacmp cmp; /* name compare result */
Dave Chinner24df33b2013-04-12 07:30:21 +10001228 struct xfs_dir2_leaf_entry *ents;
1229 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
1231 dp = args->dp;
1232 tp = args->trans;
1233 mp = dp->i_mount;
Dave Chinnere6f76672012-11-12 22:54:15 +11001234
Dave Chinner7dda6e82014-06-06 15:11:18 +10001235 error = xfs_dir3_leaf_read(tp, dp, args->geo->leafblk, -1, &lbp);
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001236 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 return error;
Dave Chinnere6f76672012-11-12 22:54:15 +11001238
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 *lbpp = lbp;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001240 leaf = lbp->b_addr;
Dave Chinner41419562013-10-29 22:11:50 +11001241 xfs_dir3_leaf_check(dp, lbp);
1242 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner01ba43b2013-10-29 22:11:52 +11001243 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001244
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 /*
1246 * Look for the first leaf entry with our hash value.
1247 */
1248 index = xfs_dir2_leaf_search_hash(args, lbp);
1249 /*
1250 * Loop over all the entries with the right hash value
1251 * looking to match the name.
1252 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001253 for (lep = &ents[index];
1254 index < leafhdr.count && be32_to_cpu(lep->hashval) == args->hashval;
1255 lep++, index++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 /*
1257 * Skip over stale leaf entries.
1258 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001259 if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 continue;
1261 /*
1262 * Get the new data block number.
1263 */
Dave Chinner30028032014-06-06 15:08:18 +10001264 newdb = xfs_dir2_dataptr_to_db(args->geo,
1265 be32_to_cpu(lep->address));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 /*
1267 * If it's not the same as the old data block number,
1268 * need to pitch the old one and read the new one.
1269 */
1270 if (newdb != curdb) {
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001271 if (dbp)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001272 xfs_trans_brelse(tp, dbp);
Dave Chinner33363fe2013-04-03 16:11:22 +11001273 error = xfs_dir3_data_read(tp, dp,
Dave Chinner2998ab12014-06-06 15:07:53 +10001274 xfs_dir2_db_to_da(args->geo, newdb),
1275 -1, &dbp);
Barry Naujok5163f952008-05-21 16:41:01 +10001276 if (error) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001277 xfs_trans_brelse(tp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 return error;
1279 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 curdb = newdb;
1281 }
1282 /*
1283 * Point to the data entry.
1284 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001285 dep = (xfs_dir2_data_entry_t *)((char *)dbp->b_addr +
Dave Chinner30028032014-06-06 15:08:18 +10001286 xfs_dir2_dataptr_to_off(args->geo,
1287 be32_to_cpu(lep->address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 /*
Barry Naujok5163f952008-05-21 16:41:01 +10001289 * Compare name and if it's an exact match, return the index
1290 * and buffer. If it's the first case-insensitive match, store
1291 * the index and buffer and continue looking for an exact match.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 */
Barry Naujok5163f952008-05-21 16:41:01 +10001293 cmp = mp->m_dirnameops->compname(args, dep->name, dep->namelen);
1294 if (cmp != XFS_CMP_DIFFERENT && cmp != args->cmpresult) {
1295 args->cmpresult = cmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 *indexp = index;
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001297 /* case exact match: return the current buffer. */
Barry Naujok5163f952008-05-21 16:41:01 +10001298 if (cmp == XFS_CMP_EXACT) {
Barry Naujok5163f952008-05-21 16:41:01 +10001299 *dbpp = dbp;
1300 return 0;
1301 }
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001302 cidb = curdb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 }
1304 }
Barry Naujok6a178102008-05-21 16:42:05 +10001305 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
Barry Naujok5163f952008-05-21 16:41:01 +10001306 /*
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001307 * Here, we can only be doing a lookup (not a rename or remove).
1308 * If a case-insensitive match was found earlier, re-read the
1309 * appropriate data block if required and return it.
Barry Naujok5163f952008-05-21 16:41:01 +10001310 */
1311 if (args->cmpresult == XFS_CMP_CASE) {
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001312 ASSERT(cidb != -1);
1313 if (cidb != curdb) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001314 xfs_trans_brelse(tp, dbp);
Dave Chinner33363fe2013-04-03 16:11:22 +11001315 error = xfs_dir3_data_read(tp, dp,
Dave Chinner2998ab12014-06-06 15:07:53 +10001316 xfs_dir2_db_to_da(args->geo, cidb),
1317 -1, &dbp);
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001318 if (error) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001319 xfs_trans_brelse(tp, lbp);
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001320 return error;
1321 }
1322 }
1323 *dbpp = dbp;
Barry Naujok5163f952008-05-21 16:41:01 +10001324 return 0;
1325 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 /*
Dave Chinner24513372014-06-25 14:58:08 +10001327 * No match found, return -ENOENT.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 */
Barry Naujok07fe4dd2008-06-27 13:32:11 +10001329 ASSERT(cidb == -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 if (dbp)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001331 xfs_trans_brelse(tp, dbp);
1332 xfs_trans_brelse(tp, lbp);
Dave Chinner24513372014-06-25 14:58:08 +10001333 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334}
1335
1336/*
1337 * Remove an entry from a leaf format directory.
1338 */
1339int /* error */
1340xfs_dir2_leaf_removename(
1341 xfs_da_args_t *args) /* operation arguments */
1342{
Nathan Scott68b3a102006-03-17 17:27:19 +11001343 __be16 *bestsp; /* leaf block best freespace */
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001344 xfs_dir2_data_hdr_t *hdr; /* data block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 xfs_dir2_db_t db; /* data block number */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001346 struct xfs_buf *dbp; /* data block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 xfs_dir2_data_entry_t *dep; /* data entry structure */
1348 xfs_inode_t *dp; /* incore directory inode */
1349 int error; /* error return code */
1350 xfs_dir2_db_t i; /* temporary data block # */
1351 int index; /* index into leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001352 struct xfs_buf *lbp; /* leaf buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 xfs_dir2_leaf_t *leaf; /* leaf structure */
1354 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1355 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 int needlog; /* need to log data header */
1357 int needscan; /* need to rescan data frees */
1358 xfs_dir2_data_off_t oldbest; /* old value of best free */
Dave Chinner33363fe2013-04-03 16:11:22 +11001359 struct xfs_dir2_data_free *bf; /* bestfree table */
Dave Chinner24df33b2013-04-12 07:30:21 +10001360 struct xfs_dir2_leaf_entry *ents;
1361 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001363 trace_xfs_dir2_leaf_removename(args);
1364
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 /*
1366 * Lookup the leaf entry, get the leaf and data blocks read in.
1367 */
1368 if ((error = xfs_dir2_leaf_lookup_int(args, &lbp, &index, &dbp))) {
1369 return error;
1370 }
1371 dp = args->dp;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001372 leaf = lbp->b_addr;
1373 hdr = dbp->b_addr;
Dave Chinner33363fe2013-04-03 16:11:22 +11001374 xfs_dir3_data_check(dp, dbp);
Dave Chinner2ca98772013-10-29 22:11:49 +11001375 bf = dp->d_ops->data_bestfree_p(hdr);
Dave Chinner01ba43b2013-10-29 22:11:52 +11001376 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +11001377 ents = dp->d_ops->leaf_ents_p(leaf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 /*
1379 * Point to the leaf entry, use that to point to the data entry.
1380 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001381 lep = &ents[index];
Dave Chinner30028032014-06-06 15:08:18 +10001382 db = xfs_dir2_dataptr_to_db(args->geo, be32_to_cpu(lep->address));
1383 dep = (xfs_dir2_data_entry_t *)((char *)hdr +
1384 xfs_dir2_dataptr_to_off(args->geo, be32_to_cpu(lep->address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 needscan = needlog = 0;
Dave Chinner33363fe2013-04-03 16:11:22 +11001386 oldbest = be16_to_cpu(bf[0].length);
Dave Chinner8f661932014-06-06 15:15:59 +10001387 ltp = xfs_dir2_leaf_tail_p(args->geo, leaf);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001388 bestsp = xfs_dir2_leaf_bests_p(ltp);
Nathan Scott68b3a102006-03-17 17:27:19 +11001389 ASSERT(be16_to_cpu(bestsp[db]) == oldbest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 /*
1391 * Mark the former data entry unused.
1392 */
Dave Chinnerbc851782014-06-06 15:20:54 +10001393 xfs_dir2_data_make_free(args, dbp,
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001394 (xfs_dir2_data_aoff_t)((char *)dep - (char *)hdr),
Dave Chinner9d23fc82013-10-29 22:11:48 +11001395 dp->d_ops->data_entsize(dep->namelen), &needlog, &needscan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 /*
1397 * We just mark the leaf entry stale by putting a null in it.
1398 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001399 leafhdr.stale++;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001400 dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr);
Dave Chinnerbc851782014-06-06 15:20:54 +10001401 xfs_dir3_leaf_log_header(args, lbp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001402
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001403 lep->address = cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
Dave Chinnerbc851782014-06-06 15:20:54 +10001404 xfs_dir3_leaf_log_ents(args, lbp, index, index);
Dave Chinner24df33b2013-04-12 07:30:21 +10001405
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 /*
1407 * Scan the freespace in the data block again if necessary,
1408 * log the data block header if necessary.
1409 */
1410 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +11001411 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 if (needlog)
Dave Chinnerbc851782014-06-06 15:20:54 +10001413 xfs_dir2_data_log_header(args, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 /*
1415 * If the longest freespace in the data block has changed,
1416 * put the new value in the bests table and log that.
1417 */
Dave Chinner33363fe2013-04-03 16:11:22 +11001418 if (be16_to_cpu(bf[0].length) != oldbest) {
1419 bestsp[db] = bf[0].length;
Dave Chinnerbc851782014-06-06 15:20:54 +10001420 xfs_dir3_leaf_log_bests(args, lbp, db, db);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 }
Dave Chinner33363fe2013-04-03 16:11:22 +11001422 xfs_dir3_data_check(dp, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 /*
1424 * If the data block is now empty then get rid of the data block.
1425 */
Dave Chinner33363fe2013-04-03 16:11:22 +11001426 if (be16_to_cpu(bf[0].length) ==
Dave Chinner8f661932014-06-06 15:15:59 +10001427 args->geo->blksize - dp->d_ops->data_entry_offset) {
Dave Chinner7dda6e82014-06-06 15:11:18 +10001428 ASSERT(db != args->geo->datablk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 if ((error = xfs_dir2_shrink_inode(args, db, dbp))) {
1430 /*
1431 * Nope, can't get rid of it because it caused
1432 * allocation of a bmap btree block to do so.
1433 * Just go on, returning success, leaving the
1434 * empty block in place.
1435 */
Dave Chinner24513372014-06-25 14:58:08 +10001436 if (error == -ENOSPC && args->total == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 error = 0;
Dave Chinner41419562013-10-29 22:11:50 +11001438 xfs_dir3_leaf_check(dp, lbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 return error;
1440 }
1441 dbp = NULL;
1442 /*
1443 * If this is the last data block then compact the
1444 * bests table by getting rid of entries.
1445 */
Nathan Scottafbcb3f2006-03-17 17:27:28 +11001446 if (db == be32_to_cpu(ltp->bestcount) - 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 /*
1448 * Look for the last active entry (i).
1449 */
1450 for (i = db - 1; i > 0; i--) {
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001451 if (bestsp[i] != cpu_to_be16(NULLDATAOFF))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 break;
1453 }
1454 /*
1455 * Copy the table down so inactive entries at the
1456 * end are removed.
1457 */
1458 memmove(&bestsp[db - i], bestsp,
Nathan Scottafbcb3f2006-03-17 17:27:28 +11001459 (be32_to_cpu(ltp->bestcount) - (db - i)) * sizeof(*bestsp));
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001460 be32_add_cpu(&ltp->bestcount, -(db - i));
Dave Chinnerbc851782014-06-06 15:20:54 +10001461 xfs_dir3_leaf_log_tail(args, lbp);
1462 xfs_dir3_leaf_log_bests(args, lbp, 0,
1463 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 Chinner7dda6e82014-06-06 15:11:18 +10001470 else if (db != args->geo->datablk)
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 +
Dave Chinner30028032014-06-06 15:08:18 +10001518 xfs_dir2_dataptr_to_off(args->geo, 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 Chinnerbc851782014-06-06 15:20:54 +10001526 xfs_dir2_data_log_entry(args, 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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 xfs_trans_t *tp; /* transaction pointer */
1604
1605 dp = args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 tp = args->trans;
1607 /*
1608 * Read the offending data block. We need its buffer.
1609 */
Dave Chinner2998ab12014-06-06 15:07:53 +10001610 error = xfs_dir3_data_read(tp, dp, xfs_dir2_db_to_da(args->geo, db),
1611 -1, &dbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001612 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
Dave Chinner1d9025e2012-06-22 18:50:14 +10001615 leaf = lbp->b_addr;
Dave Chinner8f661932014-06-06 15:15:59 +10001616 ltp = xfs_dir2_leaf_tail_p(args->geo, leaf);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001617
1618#ifdef DEBUG
1619{
Dave Chinner1d9025e2012-06-22 18:50:14 +10001620 struct xfs_dir2_data_hdr *hdr = dbp->b_addr;
Dave Chinner2ca98772013-10-29 22:11:49 +11001621 struct xfs_dir2_data_free *bf = dp->d_ops->data_bestfree_p(hdr);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001622
Dave Chinner33363fe2013-04-03 16:11:22 +11001623 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
1624 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC));
1625 ASSERT(be16_to_cpu(bf[0].length) ==
Dave Chinner8f661932014-06-06 15:15:59 +10001626 args->geo->blksize - dp->d_ops->data_entry_offset);
Nathan Scottafbcb3f2006-03-17 17:27:28 +11001627 ASSERT(db == be32_to_cpu(ltp->bestcount) - 1);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001628}
1629#endif
1630
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 /*
1632 * Get rid of the data block.
1633 */
1634 if ((error = xfs_dir2_shrink_inode(args, db, dbp))) {
Dave Chinner24513372014-06-25 14:58:08 +10001635 ASSERT(error != -ENOSPC);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001636 xfs_trans_brelse(tp, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 return error;
1638 }
1639 /*
1640 * Eliminate the last bests entry from the table.
1641 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001642 bestsp = xfs_dir2_leaf_bests_p(ltp);
Marcin Slusarz413d57c2008-02-13 15:03:29 -08001643 be32_add_cpu(&ltp->bestcount, -1);
Nathan Scottafbcb3f2006-03-17 17:27:28 +11001644 memmove(&bestsp[1], &bestsp[0], be32_to_cpu(ltp->bestcount) * sizeof(*bestsp));
Dave Chinnerbc851782014-06-06 15:20:54 +10001645 xfs_dir3_leaf_log_tail(args, lbp);
1646 xfs_dir3_leaf_log_bests(args, lbp, 0, be32_to_cpu(ltp->bestcount) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 return 0;
1648}
1649
Christoph Hellwig22823962011-07-08 14:35:53 +02001650static inline size_t
Dave Chinner24df33b2013-04-12 07:30:21 +10001651xfs_dir3_leaf_size(
1652 struct xfs_dir3_icleaf_hdr *hdr,
Christoph Hellwig22823962011-07-08 14:35:53 +02001653 int counts)
1654{
Dave Chinner24df33b2013-04-12 07:30:21 +10001655 int entries;
1656 int hdrsize;
Christoph Hellwig22823962011-07-08 14:35:53 +02001657
Dave Chinner24df33b2013-04-12 07:30:21 +10001658 entries = hdr->count - hdr->stale;
1659 if (hdr->magic == XFS_DIR2_LEAF1_MAGIC ||
1660 hdr->magic == XFS_DIR2_LEAFN_MAGIC)
1661 hdrsize = sizeof(struct xfs_dir2_leaf_hdr);
1662 else
1663 hdrsize = sizeof(struct xfs_dir3_leaf_hdr);
1664
1665 return hdrsize + entries * sizeof(xfs_dir2_leaf_entry_t)
1666 + counts * sizeof(xfs_dir2_data_off_t)
1667 + sizeof(xfs_dir2_leaf_tail_t);
Christoph Hellwig22823962011-07-08 14:35:53 +02001668}
1669
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670/*
1671 * Convert node form directory to leaf form directory.
1672 * The root of the node form dir needs to already be a LEAFN block.
1673 * Just return if we can't do anything.
1674 */
1675int /* error */
1676xfs_dir2_node_to_leaf(
1677 xfs_da_state_t *state) /* directory operation state */
1678{
1679 xfs_da_args_t *args; /* operation arguments */
1680 xfs_inode_t *dp; /* incore directory inode */
1681 int error; /* error return code */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001682 struct xfs_buf *fbp; /* buffer for freespace block */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 xfs_fileoff_t fo; /* freespace file offset */
1684 xfs_dir2_free_t *free; /* freespace structure */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001685 struct xfs_buf *lbp; /* buffer for leaf block */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 xfs_dir2_leaf_tail_t *ltp; /* tail of leaf structure */
1687 xfs_dir2_leaf_t *leaf; /* leaf structure */
1688 xfs_mount_t *mp; /* filesystem mount point */
1689 int rval; /* successful free trim? */
1690 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner24df33b2013-04-12 07:30:21 +10001691 struct xfs_dir3_icleaf_hdr leafhdr;
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001692 struct xfs_dir3_icfree_hdr freehdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
1694 /*
1695 * There's more than a leaf level in the btree, so there must
1696 * be multiple leafn blocks. Give up.
1697 */
1698 if (state->path.active > 1)
1699 return 0;
1700 args = state->args;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001701
1702 trace_xfs_dir2_node_to_leaf(args);
1703
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 mp = state->mp;
1705 dp = args->dp;
1706 tp = args->trans;
1707 /*
1708 * Get the last offset in the file.
1709 */
Eric Sandeen7fb2cd42014-04-14 18:58:05 +10001710 if ((error = xfs_bmap_last_offset(dp, &fo, XFS_DATA_FORK))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 return error;
1712 }
Dave Chinnerd6cf1302014-06-06 15:14:11 +10001713 fo -= args->geo->fsbcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 /*
1715 * If there are freespace blocks other than the first one,
1716 * take this opportunity to remove trailing empty freespace blocks
1717 * that may have been left behind during no-space-reservation
1718 * operations.
1719 */
Dave Chinner7dda6e82014-06-06 15:11:18 +10001720 while (fo > args->geo->freeblk) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 if ((error = xfs_dir2_node_trim_free(args, fo, &rval))) {
1722 return error;
1723 }
1724 if (rval)
Dave Chinnerd6cf1302014-06-06 15:14:11 +10001725 fo -= args->geo->fsbcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 else
1727 return 0;
1728 }
1729 /*
1730 * Now find the block just before the freespace block.
1731 */
1732 if ((error = xfs_bmap_last_before(tp, dp, &fo, XFS_DATA_FORK))) {
1733 return error;
1734 }
1735 /*
1736 * If it's not the single leaf block, give up.
1737 */
Dave Chinner8f661932014-06-06 15:15:59 +10001738 if (XFS_FSB_TO_B(mp, fo) > XFS_DIR2_LEAF_OFFSET + args->geo->blksize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 return 0;
1740 lbp = state->path.blk[0].bp;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001741 leaf = lbp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001742 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001743
1744 ASSERT(leafhdr.magic == XFS_DIR2_LEAFN_MAGIC ||
1745 leafhdr.magic == XFS_DIR3_LEAFN_MAGIC);
1746
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 /*
1748 * Read the freespace block.
1749 */
Dave Chinner7dda6e82014-06-06 15:11:18 +10001750 error = xfs_dir2_free_read(tp, dp, args->geo->freeblk, &fbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001751 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001753 free = fbp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +11001754 dp->d_ops->free_hdr_from_disk(&freehdr, free);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001755
1756 ASSERT(!freehdr.firstdb);
Christoph Hellwig22823962011-07-08 14:35:53 +02001757
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 /*
1759 * Now see if the leafn and free data will fit in a leaf1.
1760 * If not, release the buffer and give up.
1761 */
Dave Chinner8f661932014-06-06 15:15:59 +10001762 if (xfs_dir3_leaf_size(&leafhdr, freehdr.nvalid) > args->geo->blksize) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001763 xfs_trans_brelse(tp, fbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 return 0;
1765 }
Christoph Hellwig22823962011-07-08 14:35:53 +02001766
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 /*
1768 * If the leaf has any stale entries in it, compress them out.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 */
Dave Chinner24df33b2013-04-12 07:30:21 +10001770 if (leafhdr.stale)
1771 xfs_dir3_leaf_compact(args, &leafhdr, lbp);
Dave Chinnerb0f539d2012-11-14 17:53:49 +11001772
Dave Chinner24df33b2013-04-12 07:30:21 +10001773 lbp->b_ops = &xfs_dir3_leaf1_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +11001774 xfs_trans_buf_set_type(tp, lbp, XFS_BLFT_DIR_LEAF1_BUF);
Dave Chinner24df33b2013-04-12 07:30:21 +10001775 leafhdr.magic = (leafhdr.magic == XFS_DIR2_LEAFN_MAGIC)
1776 ? XFS_DIR2_LEAF1_MAGIC
1777 : XFS_DIR3_LEAF1_MAGIC;
Dave Chinnerb0f539d2012-11-14 17:53:49 +11001778
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 /*
1780 * Set up the leaf tail from the freespace block.
1781 */
Dave Chinner8f661932014-06-06 15:15:59 +10001782 ltp = xfs_dir2_leaf_tail_p(args->geo, leaf);
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001783 ltp->bestcount = cpu_to_be32(freehdr.nvalid);
Dave Chinner24df33b2013-04-12 07:30:21 +10001784
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 /*
1786 * Set up the leaf bests table.
1787 */
Dave Chinner24dd0f52013-10-30 13:48:41 -05001788 memcpy(xfs_dir2_leaf_bests_p(ltp), dp->d_ops->free_bests_p(free),
Dave Chinnercbc8adf2013-04-03 16:11:21 +11001789 freehdr.nvalid * sizeof(xfs_dir2_data_off_t));
Dave Chinner24df33b2013-04-12 07:30:21 +10001790
Dave Chinner01ba43b2013-10-29 22:11:52 +11001791 dp->d_ops->leaf_hdr_to_disk(leaf, &leafhdr);
Dave Chinnerbc851782014-06-06 15:20:54 +10001792 xfs_dir3_leaf_log_header(args, lbp);
1793 xfs_dir3_leaf_log_bests(args, lbp, 0, be32_to_cpu(ltp->bestcount) - 1);
1794 xfs_dir3_leaf_log_tail(args, lbp);
Dave Chinner41419562013-10-29 22:11:50 +11001795 xfs_dir3_leaf_check(dp, lbp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001796
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 /*
1798 * Get rid of the freespace block.
1799 */
Dave Chinner8c44a282014-06-06 15:04:41 +10001800 error = xfs_dir2_shrink_inode(args,
Dave Chinner30028032014-06-06 15:08:18 +10001801 xfs_dir2_byte_to_db(args->geo, XFS_DIR2_FREE_OFFSET),
1802 fbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 if (error) {
1804 /*
1805 * This can't fail here because it can only happen when
1806 * punching out the middle of an extent, and this is an
1807 * isolated block.
1808 */
Dave Chinner24513372014-06-25 14:58:08 +10001809 ASSERT(error != -ENOSPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 return error;
1811 }
1812 fbp = NULL;
1813 /*
1814 * Now see if we can convert the single-leaf directory
1815 * down to a block form directory.
1816 * This routine always kills the dabuf for the leaf, so
1817 * eliminate it from the path.
1818 */
1819 error = xfs_dir2_leaf_to_block(args, lbp, NULL);
1820 state->path.blk[0].bp = NULL;
1821 return error;
1822}