blob: 9354e190b82e9e9e4f33a38e2254309159622a97 [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 Chinnerf5f3d9b2013-04-03 16:11:20 +11003 * Copyright (c) 2013 Red Hat, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11004 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Nathan Scott7b718762005-11-02 14:58:39 +11006 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * published by the Free Software Foundation.
9 *
Nathan Scott7b718762005-11-02 14:58:39 +110010 * This program is distributed in the hope that it would be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 *
Nathan Scott7b718762005-11-02 14:58:39 +110015 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110020#include "xfs_fs.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110021#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110022#include "xfs_log_format.h"
23#include "xfs_trans_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_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"
Dave Chinner239880e2013-10-23 10:50:10 +110028#include "xfs_trans.h"
Nathan Scotta844f452005-11-02 14:38:42 +110029#include "xfs_inode_item.h"
Dave Chinnerf3508bc2013-07-10 07:04:00 +100030#include "xfs_bmap.h"
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +110031#include "xfs_buf_item.h"
Dave Chinner2b9ab5a2013-08-12 20:49:37 +100032#include "xfs_dir2.h"
Christoph Hellwig57926642011-07-13 13:43:48 +020033#include "xfs_dir2_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_error.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000035#include "xfs_trace.h"
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +110036#include "xfs_cksum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38/*
39 * Local function prototypes.
40 */
Dave Chinner1d9025e2012-06-22 18:50:14 +100041static void xfs_dir2_block_log_leaf(xfs_trans_t *tp, struct xfs_buf *bp,
42 int first, int last);
43static void xfs_dir2_block_log_tail(xfs_trans_t *tp, struct xfs_buf *bp);
44static int xfs_dir2_block_lookup_int(xfs_da_args_t *args, struct xfs_buf **bpp,
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 int *entno);
46static int xfs_dir2_block_sort(const void *a, const void *b);
47
Nathan Scottf6c2d1f2006-06-20 13:04:51 +100048static xfs_dahash_t xfs_dir_hash_dot, xfs_dir_hash_dotdot;
49
50/*
51 * One-time startup routine called from xfs_init().
52 */
53void
54xfs_dir_startup(void)
55{
Dave Chinner4a24cb72010-01-20 10:48:05 +110056 xfs_dir_hash_dot = xfs_da_hashname((unsigned char *)".", 1);
57 xfs_dir_hash_dotdot = xfs_da_hashname((unsigned char *)"..", 2);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +100058}
59
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +110060static bool
61xfs_dir3_block_verify(
Dave Chinner82025d72012-11-12 22:54:12 +110062 struct xfs_buf *bp)
63{
64 struct xfs_mount *mp = bp->b_target->bt_mount;
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +110065 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
Dave Chinner82025d72012-11-12 22:54:12 +110066
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +110067 if (xfs_sb_version_hascrc(&mp->m_sb)) {
68 if (hdr3->magic != cpu_to_be32(XFS_DIR3_BLOCK_MAGIC))
69 return false;
70 if (!uuid_equal(&hdr3->uuid, &mp->m_sb.sb_uuid))
71 return false;
72 if (be64_to_cpu(hdr3->blkno) != bp->b_bn)
73 return false;
74 } else {
75 if (hdr3->magic != cpu_to_be32(XFS_DIR2_BLOCK_MAGIC))
76 return false;
77 }
Dave Chinner33363fe2013-04-03 16:11:22 +110078 if (__xfs_dir3_data_check(NULL, bp))
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +110079 return false;
80 return true;
81}
Dave Chinner82025d72012-11-12 22:54:12 +110082
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +110083static void
84xfs_dir3_block_read_verify(
85 struct xfs_buf *bp)
86{
87 struct xfs_mount *mp = bp->b_target->bt_mount;
88
Eric Sandeence5028c2014-02-27 15:23:10 +110089 if (xfs_sb_version_hascrc(&mp->m_sb) &&
90 !xfs_buf_verify_cksum(bp, XFS_DIR3_DATA_CRC_OFF))
Dave Chinner24513372014-06-25 14:58:08 +100091 xfs_buf_ioerror(bp, -EFSBADCRC);
Eric Sandeence5028c2014-02-27 15:23:10 +110092 else if (!xfs_dir3_block_verify(bp))
Dave Chinner24513372014-06-25 14:58:08 +100093 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +110094
95 if (bp->b_error)
96 xfs_verifier_error(bp);
Dave Chinner612cfbf2012-11-14 17:52:32 +110097}
Dave Chinner82025d72012-11-12 22:54:12 +110098
Dave Chinner612cfbf2012-11-14 17:52:32 +110099static void
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100100xfs_dir3_block_write_verify(
Dave Chinner1813dd62012-11-14 17:54:40 +1100101 struct xfs_buf *bp)
102{
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100103 struct xfs_mount *mp = bp->b_target->bt_mount;
104 struct xfs_buf_log_item *bip = bp->b_fspriv;
105 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
106
107 if (!xfs_dir3_block_verify(bp)) {
Dave Chinner24513372014-06-25 14:58:08 +1000108 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100109 xfs_verifier_error(bp);
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100110 return;
111 }
112
113 if (!xfs_sb_version_hascrc(&mp->m_sb))
114 return;
115
116 if (bip)
117 hdr3->lsn = cpu_to_be64(bip->bli_item.li_lsn);
118
Eric Sandeenf1dbcd72014-02-27 15:18:23 +1100119 xfs_buf_update_cksum(bp, XFS_DIR3_DATA_CRC_OFF);
Dave Chinner1813dd62012-11-14 17:54:40 +1100120}
121
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100122const struct xfs_buf_ops xfs_dir3_block_buf_ops = {
123 .verify_read = xfs_dir3_block_read_verify,
124 .verify_write = xfs_dir3_block_write_verify,
Dave Chinner1813dd62012-11-14 17:54:40 +1100125};
Dave Chinner82025d72012-11-12 22:54:12 +1100126
Dave Chinner4a8af272013-08-12 20:49:36 +1000127int
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100128xfs_dir3_block_read(
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100129 struct xfs_trans *tp,
130 struct xfs_inode *dp,
131 struct xfs_buf **bpp)
132{
133 struct xfs_mount *mp = dp->i_mount;
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100134 int err;
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100135
Dave Chinner7dda6e82014-06-06 15:11:18 +1000136 err = xfs_da_read_buf(tp, dp, mp->m_dir_geo->datablk, -1, bpp,
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100137 XFS_DATA_FORK, &xfs_dir3_block_buf_ops);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100138 if (!err && tp)
Dave Chinner61fe1352013-04-03 16:11:30 +1100139 xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_DIR_BLOCK_BUF);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100140 return err;
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100141}
142
143static void
144xfs_dir3_block_init(
145 struct xfs_mount *mp,
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100146 struct xfs_trans *tp,
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100147 struct xfs_buf *bp,
148 struct xfs_inode *dp)
149{
150 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
151
152 bp->b_ops = &xfs_dir3_block_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100153 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_BLOCK_BUF);
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100154
155 if (xfs_sb_version_hascrc(&mp->m_sb)) {
156 memset(hdr3, 0, sizeof(*hdr3));
157 hdr3->magic = cpu_to_be32(XFS_DIR3_BLOCK_MAGIC);
158 hdr3->blkno = cpu_to_be64(bp->b_bn);
159 hdr3->owner = cpu_to_be64(dp->i_ino);
160 uuid_copy(&hdr3->uuid, &mp->m_sb.sb_uuid);
161 return;
162
163 }
164 hdr3->magic = cpu_to_be32(XFS_DIR2_BLOCK_MAGIC);
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100165}
166
167static void
168xfs_dir2_block_need_space(
Dave Chinner2ca98772013-10-29 22:11:49 +1100169 struct xfs_inode *dp,
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100170 struct xfs_dir2_data_hdr *hdr,
171 struct xfs_dir2_block_tail *btp,
172 struct xfs_dir2_leaf_entry *blp,
173 __be16 **tagpp,
174 struct xfs_dir2_data_unused **dupp,
175 struct xfs_dir2_data_unused **enddupp,
176 int *compact,
177 int len)
178{
179 struct xfs_dir2_data_free *bf;
180 __be16 *tagp = NULL;
181 struct xfs_dir2_data_unused *dup = NULL;
182 struct xfs_dir2_data_unused *enddup = NULL;
183
184 *compact = 0;
Dave Chinner2ca98772013-10-29 22:11:49 +1100185 bf = dp->d_ops->data_bestfree_p(hdr);
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100186
187 /*
188 * If there are stale entries we'll use one for the leaf.
189 */
190 if (btp->stale) {
191 if (be16_to_cpu(bf[0].length) >= len) {
192 /*
193 * The biggest entry enough to avoid compaction.
194 */
195 dup = (xfs_dir2_data_unused_t *)
196 ((char *)hdr + be16_to_cpu(bf[0].offset));
197 goto out;
198 }
199
200 /*
201 * Will need to compact to make this work.
202 * Tag just before the first leaf entry.
203 */
204 *compact = 1;
205 tagp = (__be16 *)blp - 1;
206
207 /* Data object just before the first leaf entry. */
208 dup = (xfs_dir2_data_unused_t *)((char *)hdr + be16_to_cpu(*tagp));
209
210 /*
211 * If it's not free then the data will go where the
212 * leaf data starts now, if it works at all.
213 */
214 if (be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
215 if (be16_to_cpu(dup->length) + (be32_to_cpu(btp->stale) - 1) *
216 (uint)sizeof(*blp) < len)
217 dup = NULL;
218 } else if ((be32_to_cpu(btp->stale) - 1) * (uint)sizeof(*blp) < len)
219 dup = NULL;
220 else
221 dup = (xfs_dir2_data_unused_t *)blp;
222 goto out;
223 }
224
225 /*
226 * no stale entries, so just use free space.
227 * Tag just before the first leaf entry.
228 */
229 tagp = (__be16 *)blp - 1;
230
231 /* Data object just before the first leaf entry. */
232 enddup = (xfs_dir2_data_unused_t *)((char *)hdr + be16_to_cpu(*tagp));
233
234 /*
235 * If it's not free then can't do this add without cleaning up:
236 * the space before the first leaf entry needs to be free so it
237 * can be expanded to hold the pointer to the new entry.
238 */
239 if (be16_to_cpu(enddup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
240 /*
241 * Check out the biggest freespace and see if it's the same one.
242 */
243 dup = (xfs_dir2_data_unused_t *)
244 ((char *)hdr + be16_to_cpu(bf[0].offset));
245 if (dup != enddup) {
246 /*
247 * Not the same free entry, just check its length.
248 */
249 if (be16_to_cpu(dup->length) < len)
250 dup = NULL;
251 goto out;
252 }
253
254 /*
255 * It is the biggest freespace, can it hold the leaf too?
256 */
257 if (be16_to_cpu(dup->length) < len + (uint)sizeof(*blp)) {
258 /*
259 * Yes, use the second-largest entry instead if it works.
260 */
261 if (be16_to_cpu(bf[1].length) >= len)
262 dup = (xfs_dir2_data_unused_t *)
263 ((char *)hdr + be16_to_cpu(bf[1].offset));
264 else
265 dup = NULL;
266 }
267 }
268out:
269 *tagpp = tagp;
270 *dupp = dup;
271 *enddupp = enddup;
272}
273
274/*
275 * compact the leaf entries.
276 * Leave the highest-numbered stale entry stale.
277 * XXX should be the one closest to mid but mid is not yet computed.
278 */
279static void
280xfs_dir2_block_compact(
Dave Chinnerbc851782014-06-06 15:20:54 +1000281 struct xfs_da_args *args,
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100282 struct xfs_buf *bp,
283 struct xfs_dir2_data_hdr *hdr,
284 struct xfs_dir2_block_tail *btp,
285 struct xfs_dir2_leaf_entry *blp,
286 int *needlog,
287 int *lfloghigh,
288 int *lfloglow)
289{
290 int fromidx; /* source leaf index */
291 int toidx; /* target leaf index */
292 int needscan = 0;
293 int highstale; /* high stale index */
294
295 fromidx = toidx = be32_to_cpu(btp->count) - 1;
296 highstale = *lfloghigh = -1;
297 for (; fromidx >= 0; fromidx--) {
298 if (blp[fromidx].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR)) {
299 if (highstale == -1)
300 highstale = toidx;
301 else {
302 if (*lfloghigh == -1)
303 *lfloghigh = toidx;
304 continue;
305 }
306 }
307 if (fromidx < toidx)
308 blp[toidx] = blp[fromidx];
309 toidx--;
310 }
311 *lfloglow = toidx + 1 - (be32_to_cpu(btp->stale) - 1);
312 *lfloghigh -= be32_to_cpu(btp->stale) - 1;
313 be32_add_cpu(&btp->count, -(be32_to_cpu(btp->stale) - 1));
Dave Chinnerbc851782014-06-06 15:20:54 +1000314 xfs_dir2_data_make_free(args, bp,
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100315 (xfs_dir2_data_aoff_t)((char *)blp - (char *)hdr),
316 (xfs_dir2_data_aoff_t)((be32_to_cpu(btp->stale) - 1) * sizeof(*blp)),
317 needlog, &needscan);
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100318 btp->stale = cpu_to_be32(1);
319 /*
320 * If we now need to rebuild the bestfree map, do so.
321 * This needs to happen before the next call to use_free.
322 */
323 if (needscan)
Dave Chinnerbc851782014-06-06 15:20:54 +1000324 xfs_dir2_data_freescan(args->dp, hdr, needlog);
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100325}
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327/*
328 * Add an entry to a block directory.
329 */
330int /* error */
331xfs_dir2_block_addname(
332 xfs_da_args_t *args) /* directory op arguments */
333{
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200334 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000336 struct xfs_buf *bp; /* buffer for block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 xfs_dir2_block_tail_t *btp; /* block tail */
338 int compact; /* need to compact leaf ents */
339 xfs_dir2_data_entry_t *dep; /* block data entry */
340 xfs_inode_t *dp; /* directory inode */
341 xfs_dir2_data_unused_t *dup; /* block unused entry */
342 int error; /* error return value */
343 xfs_dir2_data_unused_t *enddup=NULL; /* unused at end of data */
344 xfs_dahash_t hash; /* hash value of found entry */
345 int high; /* high index for binary srch */
346 int highstale; /* high stale index */
347 int lfloghigh=0; /* last final leaf to log */
348 int lfloglow=0; /* first final leaf to log */
349 int len; /* length of the new entry */
350 int low; /* low index for binary srch */
351 int lowstale; /* low stale index */
352 int mid=0; /* midpoint for binary srch */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 int needlog; /* need to log header */
354 int needscan; /* need to rescan freespace */
Nathan Scott3d693c62006-03-17 17:28:27 +1100355 __be16 *tagp; /* pointer to tag value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 xfs_trans_t *tp; /* transaction structure */
357
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000358 trace_xfs_dir2_block_addname(args);
359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 dp = args->dp;
361 tp = args->trans;
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100362
363 /* Read the (one and only) directory block into bp. */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100364 error = xfs_dir3_block_read(tp, dp, &bp);
Dave Chinner4bb20a82012-11-12 22:54:10 +1100365 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 return error;
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100367
Dave Chinner9d23fc82013-10-29 22:11:48 +1100368 len = dp->d_ops->data_entsize(args->namelen);
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 /*
371 * Set up pointers to parts of the block.
372 */
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100373 hdr = bp->b_addr;
Dave Chinner8f661932014-06-06 15:15:59 +1000374 btp = xfs_dir2_block_tail_p(args->geo, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000375 blp = xfs_dir2_block_leaf_p(btp);
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 /*
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100378 * Find out if we can reuse stale entries or whether we need extra
379 * space for entry and new leaf.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 */
Dave Chinner2ca98772013-10-29 22:11:49 +1100381 xfs_dir2_block_need_space(dp, hdr, btp, blp, &tagp, &dup,
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100382 &enddup, &compact, len);
383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 /*
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100385 * Done everything we need for a space check now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 */
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100387 if (args->op_flags & XFS_DA_OP_JUSTCHECK) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000388 xfs_trans_brelse(tp, bp);
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100389 if (!dup)
Dave Chinner24513372014-06-25 14:58:08 +1000390 return -ENOSPC;
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100391 return 0;
392 }
393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 /*
395 * If we don't have space for the new entry & leaf ...
396 */
397 if (!dup) {
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100398 /* Don't have a space reservation: return no-space. */
399 if (args->total == 0)
Dave Chinner24513372014-06-25 14:58:08 +1000400 return -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 /*
402 * Convert to the next larger format.
403 * Then add the new entry in that format.
404 */
405 error = xfs_dir2_block_to_leaf(args, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 if (error)
407 return error;
408 return xfs_dir2_leaf_addname(args);
409 }
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 needlog = needscan = 0;
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 /*
414 * If need to compact the leaf entries, do it now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 */
Eric Sandeen37f13562013-01-10 10:41:48 -0600416 if (compact) {
Dave Chinnerbc851782014-06-06 15:20:54 +1000417 xfs_dir2_block_compact(args, bp, hdr, btp, blp, &needlog,
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100418 &lfloghigh, &lfloglow);
Eric Sandeen37f13562013-01-10 10:41:48 -0600419 /* recalculate blp post-compaction */
420 blp = xfs_dir2_block_leaf_p(btp);
421 } else if (btp->stale) {
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100422 /*
423 * Set leaf logging boundaries to impossible state.
424 * For the no-stale case they're set explicitly.
425 */
Nathan Scotte922fff2006-03-17 17:27:56 +1100426 lfloglow = be32_to_cpu(btp->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 lfloghigh = -1;
428 }
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 /*
431 * Find the slot that's first lower than our hash value, -1 if none.
432 */
Nathan Scotte922fff2006-03-17 17:27:56 +1100433 for (low = 0, high = be32_to_cpu(btp->count) - 1; low <= high; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 mid = (low + high) >> 1;
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100435 if ((hash = be32_to_cpu(blp[mid].hashval)) == args->hashval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 break;
437 if (hash < args->hashval)
438 low = mid + 1;
439 else
440 high = mid - 1;
441 }
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100442 while (mid >= 0 && be32_to_cpu(blp[mid].hashval) >= args->hashval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 mid--;
444 }
445 /*
446 * No stale entries, will use enddup space to hold new leaf.
447 */
448 if (!btp->stale) {
449 /*
450 * Mark the space needed for the new leaf entry, now in use.
451 */
Dave Chinnerbc851782014-06-06 15:20:54 +1000452 xfs_dir2_data_use_free(args, bp, enddup,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 (xfs_dir2_data_aoff_t)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200454 ((char *)enddup - (char *)hdr + be16_to_cpu(enddup->length) -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 sizeof(*blp)),
456 (xfs_dir2_data_aoff_t)sizeof(*blp),
457 &needlog, &needscan);
458 /*
459 * Update the tail (entry count).
460 */
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800461 be32_add_cpu(&btp->count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 /*
463 * If we now need to rebuild the bestfree map, do so.
464 * This needs to happen before the next call to use_free.
465 */
466 if (needscan) {
Dave Chinner9d23fc82013-10-29 22:11:48 +1100467 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 needscan = 0;
469 }
470 /*
471 * Adjust pointer to the first leaf entry, we're about to move
472 * the table up one to open up space for the new leaf entry.
473 * Then adjust our index to match.
474 */
475 blp--;
476 mid++;
477 if (mid)
478 memmove(blp, &blp[1], mid * sizeof(*blp));
479 lfloglow = 0;
480 lfloghigh = mid;
481 }
482 /*
483 * Use a stale leaf for our new entry.
484 */
485 else {
486 for (lowstale = mid;
487 lowstale >= 0 &&
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200488 blp[lowstale].address !=
489 cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 lowstale--)
491 continue;
492 for (highstale = mid + 1;
Nathan Scotte922fff2006-03-17 17:27:56 +1100493 highstale < be32_to_cpu(btp->count) &&
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200494 blp[highstale].address !=
495 cpu_to_be32(XFS_DIR2_NULL_DATAPTR) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 (lowstale < 0 || mid - lowstale > highstale - mid);
497 highstale++)
498 continue;
499 /*
500 * Move entries toward the low-numbered stale entry.
501 */
502 if (lowstale >= 0 &&
Nathan Scotte922fff2006-03-17 17:27:56 +1100503 (highstale == be32_to_cpu(btp->count) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 mid - lowstale <= highstale - mid)) {
505 if (mid - lowstale)
506 memmove(&blp[lowstale], &blp[lowstale + 1],
507 (mid - lowstale) * sizeof(*blp));
508 lfloglow = MIN(lowstale, lfloglow);
509 lfloghigh = MAX(mid, lfloghigh);
510 }
511 /*
512 * Move entries toward the high-numbered stale entry.
513 */
514 else {
Nathan Scotte922fff2006-03-17 17:27:56 +1100515 ASSERT(highstale < be32_to_cpu(btp->count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 mid++;
517 if (highstale - mid)
518 memmove(&blp[mid + 1], &blp[mid],
519 (highstale - mid) * sizeof(*blp));
520 lfloglow = MIN(mid, lfloglow);
521 lfloghigh = MAX(highstale, lfloghigh);
522 }
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800523 be32_add_cpu(&btp->stale, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 }
525 /*
526 * Point to the new data entry.
527 */
528 dep = (xfs_dir2_data_entry_t *)dup;
529 /*
530 * Fill in the leaf entry.
531 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100532 blp[mid].hashval = cpu_to_be32(args->hashval);
Eric Sandeen25994052014-04-14 19:02:30 +1000533 blp[mid].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200534 (char *)dep - (char *)hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 xfs_dir2_block_log_leaf(tp, bp, lfloglow, lfloghigh);
536 /*
537 * Mark space for the data entry used.
538 */
Dave Chinnerbc851782014-06-06 15:20:54 +1000539 xfs_dir2_data_use_free(args, bp, dup,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200540 (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 (xfs_dir2_data_aoff_t)len, &needlog, &needscan);
542 /*
543 * Create the new data entry.
544 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +1000545 dep->inumber = cpu_to_be64(args->inumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 dep->namelen = args->namelen;
547 memcpy(dep->name, args->name, args->namelen);
Dave Chinner9d23fc82013-10-29 22:11:48 +1100548 dp->d_ops->data_put_ftype(dep, args->filetype);
549 tagp = dp->d_ops->data_entry_tag_p(dep);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200550 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 /*
552 * Clean up the bestfree array and log the header, tail, and entry.
553 */
554 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +1100555 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 if (needlog)
Dave Chinnerbc851782014-06-06 15:20:54 +1000557 xfs_dir2_data_log_header(args, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 xfs_dir2_block_log_tail(tp, bp);
Dave Chinnerbc851782014-06-06 15:20:54 +1000559 xfs_dir2_data_log_entry(args, bp, dep);
Dave Chinner33363fe2013-04-03 16:11:22 +1100560 xfs_dir3_data_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 return 0;
562}
563
564/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 * Log leaf entries from the block.
566 */
567static void
568xfs_dir2_block_log_leaf(
569 xfs_trans_t *tp, /* transaction structure */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000570 struct xfs_buf *bp, /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 int first, /* index of first logged leaf */
572 int last) /* index of last logged leaf */
573{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000574 xfs_dir2_data_hdr_t *hdr = bp->b_addr;
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200575 xfs_dir2_leaf_entry_t *blp;
576 xfs_dir2_block_tail_t *btp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Dave Chinner8f661932014-06-06 15:15:59 +1000578 btp = xfs_dir2_block_tail_p(tp->t_mountp->m_dir_geo, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000579 blp = xfs_dir2_block_leaf_p(btp);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000580 xfs_trans_log_buf(tp, bp, (uint)((char *)&blp[first] - (char *)hdr),
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200581 (uint)((char *)&blp[last + 1] - (char *)hdr - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582}
583
584/*
585 * Log the block tail.
586 */
587static void
588xfs_dir2_block_log_tail(
589 xfs_trans_t *tp, /* transaction structure */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000590 struct xfs_buf *bp) /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000592 xfs_dir2_data_hdr_t *hdr = bp->b_addr;
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200593 xfs_dir2_block_tail_t *btp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Dave Chinner8f661932014-06-06 15:15:59 +1000595 btp = xfs_dir2_block_tail_p(tp->t_mountp->m_dir_geo, hdr);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000596 xfs_trans_log_buf(tp, bp, (uint)((char *)btp - (char *)hdr),
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200597 (uint)((char *)(btp + 1) - (char *)hdr - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598}
599
600/*
601 * Look up an entry in the block. This is the external routine,
602 * xfs_dir2_block_lookup_int does the real work.
603 */
604int /* error */
605xfs_dir2_block_lookup(
606 xfs_da_args_t *args) /* dir lookup arguments */
607{
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200608 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000610 struct xfs_buf *bp; /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 xfs_dir2_block_tail_t *btp; /* block tail */
612 xfs_dir2_data_entry_t *dep; /* block data entry */
613 xfs_inode_t *dp; /* incore inode */
614 int ent; /* entry index */
615 int error; /* error return value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000617 trace_xfs_dir2_block_lookup(args);
618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 /*
620 * Get the buffer, look up the entry.
621 * If not found (ENOENT) then return, have no buffer.
622 */
623 if ((error = xfs_dir2_block_lookup_int(args, &bp, &ent)))
624 return error;
625 dp = args->dp;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000626 hdr = bp->b_addr;
Dave Chinner33363fe2013-04-03 16:11:22 +1100627 xfs_dir3_data_check(dp, bp);
Dave Chinner8f661932014-06-06 15:15:59 +1000628 btp = xfs_dir2_block_tail_p(args->geo, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000629 blp = xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 /*
631 * Get the offset from the leaf entry, to point to the data.
632 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200633 dep = (xfs_dir2_data_entry_t *)((char *)hdr +
Dave Chinner30028032014-06-06 15:08:18 +1000634 xfs_dir2_dataptr_to_off(args->geo,
635 be32_to_cpu(blp[ent].address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 /*
Barry Naujok384f3ce2008-05-21 16:58:22 +1000637 * Fill in inode number, CI name if appropriate, release the block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +1000639 args->inumber = be64_to_cpu(dep->inumber);
Dave Chinner9d23fc82013-10-29 22:11:48 +1100640 args->filetype = dp->d_ops->data_get_ftype(dep);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000641 error = xfs_dir_cilookup_result(args, dep->name, dep->namelen);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000642 xfs_trans_brelse(args->trans, bp);
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000643 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644}
645
646/*
647 * Internal block lookup routine.
648 */
649static int /* error */
650xfs_dir2_block_lookup_int(
651 xfs_da_args_t *args, /* dir lookup arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000652 struct xfs_buf **bpp, /* returned block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 int *entno) /* returned entry number */
654{
655 xfs_dir2_dataptr_t addr; /* data entry address */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200656 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000658 struct xfs_buf *bp; /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 xfs_dir2_block_tail_t *btp; /* block tail */
660 xfs_dir2_data_entry_t *dep; /* block data entry */
661 xfs_inode_t *dp; /* incore inode */
662 int error; /* error return value */
663 xfs_dahash_t hash; /* found hash value */
664 int high; /* binary search high index */
665 int low; /* binary search low index */
666 int mid; /* binary search current idx */
667 xfs_mount_t *mp; /* filesystem mount point */
668 xfs_trans_t *tp; /* transaction pointer */
Barry Naujok5163f952008-05-21 16:41:01 +1000669 enum xfs_dacmp cmp; /* comparison result */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
671 dp = args->dp;
672 tp = args->trans;
673 mp = dp->i_mount;
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100674
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100675 error = xfs_dir3_block_read(tp, dp, &bp);
Dave Chinner4bb20a82012-11-12 22:54:10 +1100676 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 return error;
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100678
Dave Chinner1d9025e2012-06-22 18:50:14 +1000679 hdr = bp->b_addr;
Dave Chinner33363fe2013-04-03 16:11:22 +1100680 xfs_dir3_data_check(dp, bp);
Dave Chinner8f661932014-06-06 15:15:59 +1000681 btp = xfs_dir2_block_tail_p(args->geo, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000682 blp = xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 /*
684 * Loop doing a binary search for our hash value.
685 * Find our entry, ENOENT if it's not there.
686 */
Nathan Scotte922fff2006-03-17 17:27:56 +1100687 for (low = 0, high = be32_to_cpu(btp->count) - 1; ; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 ASSERT(low <= high);
689 mid = (low + high) >> 1;
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100690 if ((hash = be32_to_cpu(blp[mid].hashval)) == args->hashval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 break;
692 if (hash < args->hashval)
693 low = mid + 1;
694 else
695 high = mid - 1;
696 if (low > high) {
Barry Naujok6a178102008-05-21 16:42:05 +1000697 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000698 xfs_trans_brelse(tp, bp);
Dave Chinner24513372014-06-25 14:58:08 +1000699 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 }
701 }
702 /*
703 * Back up to the first one with the right hash value.
704 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100705 while (mid > 0 && be32_to_cpu(blp[mid - 1].hashval) == args->hashval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 mid--;
707 }
708 /*
709 * Now loop forward through all the entries with the
710 * right hash value looking for our name.
711 */
712 do {
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100713 if ((addr = be32_to_cpu(blp[mid].address)) == XFS_DIR2_NULL_DATAPTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 continue;
715 /*
716 * Get pointer to the entry from the leaf.
717 */
718 dep = (xfs_dir2_data_entry_t *)
Dave Chinner30028032014-06-06 15:08:18 +1000719 ((char *)hdr + xfs_dir2_dataptr_to_off(args->geo, addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 /*
Barry Naujok5163f952008-05-21 16:41:01 +1000721 * Compare name and if it's an exact match, return the index
722 * and buffer. If it's the first case-insensitive match, store
723 * the index and buffer and continue looking for an exact match.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 */
Barry Naujok5163f952008-05-21 16:41:01 +1000725 cmp = mp->m_dirnameops->compname(args, dep->name, dep->namelen);
726 if (cmp != XFS_CMP_DIFFERENT && cmp != args->cmpresult) {
727 args->cmpresult = cmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 *bpp = bp;
729 *entno = mid;
Barry Naujok5163f952008-05-21 16:41:01 +1000730 if (cmp == XFS_CMP_EXACT)
731 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 }
Barry Naujok5163f952008-05-21 16:41:01 +1000733 } while (++mid < be32_to_cpu(btp->count) &&
734 be32_to_cpu(blp[mid].hashval) == hash);
735
Barry Naujok6a178102008-05-21 16:42:05 +1000736 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
Barry Naujok5163f952008-05-21 16:41:01 +1000737 /*
738 * Here, we can only be doing a lookup (not a rename or replace).
739 * If a case-insensitive match was found earlier, return success.
740 */
741 if (args->cmpresult == XFS_CMP_CASE)
742 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 /*
744 * No match, release the buffer and return ENOENT.
745 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000746 xfs_trans_brelse(tp, bp);
Dave Chinner24513372014-06-25 14:58:08 +1000747 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748}
749
750/*
751 * Remove an entry from a block format directory.
752 * If that makes the block small enough to fit in shortform, transform it.
753 */
754int /* error */
755xfs_dir2_block_removename(
756 xfs_da_args_t *args) /* directory operation args */
757{
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200758 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 xfs_dir2_leaf_entry_t *blp; /* block leaf pointer */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000760 struct xfs_buf *bp; /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 xfs_dir2_block_tail_t *btp; /* block tail */
762 xfs_dir2_data_entry_t *dep; /* block data entry */
763 xfs_inode_t *dp; /* incore inode */
764 int ent; /* block leaf entry index */
765 int error; /* error return value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 int needlog; /* need to log block header */
767 int needscan; /* need to fixup bestfree */
768 xfs_dir2_sf_hdr_t sfh; /* shortform header */
769 int size; /* shortform size */
770 xfs_trans_t *tp; /* transaction pointer */
771
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000772 trace_xfs_dir2_block_removename(args);
773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 /*
775 * Look up the entry in the block. Gets the buffer and entry index.
776 * It will always be there, the vnodeops level does a lookup first.
777 */
778 if ((error = xfs_dir2_block_lookup_int(args, &bp, &ent))) {
779 return error;
780 }
781 dp = args->dp;
782 tp = args->trans;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000783 hdr = bp->b_addr;
Dave Chinner8f661932014-06-06 15:15:59 +1000784 btp = xfs_dir2_block_tail_p(args->geo, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000785 blp = xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 /*
787 * Point to the data entry using the leaf entry.
788 */
Dave Chinner30028032014-06-06 15:08:18 +1000789 dep = (xfs_dir2_data_entry_t *)((char *)hdr +
790 xfs_dir2_dataptr_to_off(args->geo,
791 be32_to_cpu(blp[ent].address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 /*
793 * Mark the data entry's space free.
794 */
795 needlog = needscan = 0;
Dave Chinnerbc851782014-06-06 15:20:54 +1000796 xfs_dir2_data_make_free(args, bp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200797 (xfs_dir2_data_aoff_t)((char *)dep - (char *)hdr),
Dave Chinner9d23fc82013-10-29 22:11:48 +1100798 dp->d_ops->data_entsize(dep->namelen), &needlog, &needscan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 /*
800 * Fix up the block tail.
801 */
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800802 be32_add_cpu(&btp->stale, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 xfs_dir2_block_log_tail(tp, bp);
804 /*
805 * Remove the leaf entry by marking it stale.
806 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100807 blp[ent].address = cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 xfs_dir2_block_log_leaf(tp, bp, ent, ent);
809 /*
810 * Fix up bestfree, log the header if necessary.
811 */
812 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +1100813 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 if (needlog)
Dave Chinnerbc851782014-06-06 15:20:54 +1000815 xfs_dir2_data_log_header(args, bp);
Dave Chinner33363fe2013-04-03 16:11:22 +1100816 xfs_dir3_data_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 /*
818 * See if the size as a shortform is good enough.
819 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200820 size = xfs_dir2_block_sfsize(dp, hdr, &sfh);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000821 if (size > XFS_IFORK_DSIZE(dp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 return 0;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 /*
825 * If it works, do the conversion.
826 */
827 return xfs_dir2_block_to_sf(args, bp, size, &sfh);
828}
829
830/*
831 * Replace an entry in a V2 block directory.
832 * Change the inode number to the new value.
833 */
834int /* error */
835xfs_dir2_block_replace(
836 xfs_da_args_t *args) /* directory operation args */
837{
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200838 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000840 struct xfs_buf *bp; /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 xfs_dir2_block_tail_t *btp; /* block tail */
842 xfs_dir2_data_entry_t *dep; /* block data entry */
843 xfs_inode_t *dp; /* incore inode */
844 int ent; /* leaf entry index */
845 int error; /* error return value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000847 trace_xfs_dir2_block_replace(args);
848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 /*
850 * Lookup the entry in the directory. Get buffer and entry index.
851 * This will always succeed since the caller has already done a lookup.
852 */
853 if ((error = xfs_dir2_block_lookup_int(args, &bp, &ent))) {
854 return error;
855 }
856 dp = args->dp;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000857 hdr = bp->b_addr;
Dave Chinner8f661932014-06-06 15:15:59 +1000858 btp = xfs_dir2_block_tail_p(args->geo, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000859 blp = xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 /*
861 * Point to the data entry we need to change.
862 */
Dave Chinner30028032014-06-06 15:08:18 +1000863 dep = (xfs_dir2_data_entry_t *)((char *)hdr +
864 xfs_dir2_dataptr_to_off(args->geo,
865 be32_to_cpu(blp[ent].address)));
Christoph Hellwigff9901c2006-06-09 14:48:37 +1000866 ASSERT(be64_to_cpu(dep->inumber) != args->inumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 /*
868 * Change the inode number to the new value.
869 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +1000870 dep->inumber = cpu_to_be64(args->inumber);
Dave Chinner9d23fc82013-10-29 22:11:48 +1100871 dp->d_ops->data_put_ftype(dep, args->filetype);
Dave Chinnerbc851782014-06-06 15:20:54 +1000872 xfs_dir2_data_log_entry(args, bp, dep);
Dave Chinner33363fe2013-04-03 16:11:22 +1100873 xfs_dir3_data_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 return 0;
875}
876
877/*
878 * Qsort comparison routine for the block leaf entries.
879 */
880static int /* sort order */
881xfs_dir2_block_sort(
882 const void *a, /* first leaf entry */
883 const void *b) /* second leaf entry */
884{
885 const xfs_dir2_leaf_entry_t *la; /* first leaf entry */
886 const xfs_dir2_leaf_entry_t *lb; /* second leaf entry */
887
888 la = a;
889 lb = b;
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100890 return be32_to_cpu(la->hashval) < be32_to_cpu(lb->hashval) ? -1 :
891 (be32_to_cpu(la->hashval) > be32_to_cpu(lb->hashval) ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892}
893
894/*
895 * Convert a V2 leaf directory to a V2 block directory if possible.
896 */
897int /* error */
898xfs_dir2_leaf_to_block(
899 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000900 struct xfs_buf *lbp, /* leaf buffer */
901 struct xfs_buf *dbp) /* data buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902{
Nathan Scott68b3a102006-03-17 17:27:19 +1100903 __be16 *bestsp; /* leaf bests table */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200904 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 xfs_dir2_block_tail_t *btp; /* block tail */
906 xfs_inode_t *dp; /* incore directory inode */
907 xfs_dir2_data_unused_t *dup; /* unused data entry */
908 int error; /* error return value */
909 int from; /* leaf from index */
910 xfs_dir2_leaf_t *leaf; /* leaf structure */
911 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
912 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
913 xfs_mount_t *mp; /* file system mount point */
914 int needlog; /* need to log data header */
915 int needscan; /* need to scan for bestfree */
916 xfs_dir2_sf_hdr_t sfh; /* shortform header */
917 int size; /* bytes used */
Nathan Scott3d693c62006-03-17 17:28:27 +1100918 __be16 *tagp; /* end of entry (tag) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 int to; /* block/leaf to index */
920 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner24df33b2013-04-12 07:30:21 +1000921 struct xfs_dir2_leaf_entry *ents;
922 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000924 trace_xfs_dir2_leaf_to_block(args);
925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 dp = args->dp;
927 tp = args->trans;
928 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000929 leaf = lbp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100930 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +1100931 ents = dp->d_ops->leaf_ents_p(leaf);
Dave Chinner8f661932014-06-06 15:15:59 +1000932 ltp = xfs_dir2_leaf_tail_p(args->geo, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000933
934 ASSERT(leafhdr.magic == XFS_DIR2_LEAF1_MAGIC ||
935 leafhdr.magic == XFS_DIR3_LEAF1_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 /*
937 * If there are data blocks other than the first one, take this
938 * opportunity to remove trailing empty data blocks that may have
939 * been left behind during no-space-reservation operations.
940 * These will show up in the leaf bests table.
941 */
Dave Chinner8f661932014-06-06 15:15:59 +1000942 while (dp->i_d.di_size > args->geo->blksize) {
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100943 int hdrsz;
944
Dave Chinner1c9a5b22013-10-30 09:15:02 +1100945 hdrsz = dp->d_ops->data_entry_offset;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000946 bestsp = xfs_dir2_leaf_bests_p(ltp);
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100947 if (be16_to_cpu(bestsp[be32_to_cpu(ltp->bestcount) - 1]) ==
Dave Chinner8f661932014-06-06 15:15:59 +1000948 args->geo->blksize - hdrsz) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 if ((error =
950 xfs_dir2_leaf_trim_data(args, lbp,
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100951 (xfs_dir2_db_t)(be32_to_cpu(ltp->bestcount) - 1))))
Dave Chinner1d9025e2012-06-22 18:50:14 +1000952 return error;
953 } else
954 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 }
956 /*
957 * Read the data block if we don't already have it, give up if it fails.
958 */
Dave Chinner4bb20a82012-11-12 22:54:10 +1100959 if (!dbp) {
Dave Chinner7dda6e82014-06-06 15:11:18 +1000960 error = xfs_dir3_data_read(tp, dp, args->geo->datablk, -1, &dbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +1100961 if (error)
962 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 }
Dave Chinner1d9025e2012-06-22 18:50:14 +1000964 hdr = dbp->b_addr;
Dave Chinner33363fe2013-04-03 16:11:22 +1100965 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
966 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC));
967
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 /*
969 * Size of the "leaf" area in the block.
970 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200971 size = (uint)sizeof(xfs_dir2_block_tail_t) +
Dave Chinner24df33b2013-04-12 07:30:21 +1000972 (uint)sizeof(*lep) * (leafhdr.count - leafhdr.stale);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 /*
974 * Look at the last data entry.
975 */
Dave Chinner8f661932014-06-06 15:15:59 +1000976 tagp = (__be16 *)((char *)hdr + args->geo->blksize) - 1;
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200977 dup = (xfs_dir2_data_unused_t *)((char *)hdr + be16_to_cpu(*tagp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 /*
979 * If it's not free or is too short we can't do it.
980 */
Nathan Scottad354eb2006-03-17 17:27:37 +1100981 if (be16_to_cpu(dup->freetag) != XFS_DIR2_DATA_FREE_TAG ||
Dave Chinner1d9025e2012-06-22 18:50:14 +1000982 be16_to_cpu(dup->length) < size)
983 return 0;
984
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 /*
986 * Start converting it to block form.
987 */
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100988 xfs_dir3_block_init(mp, tp, dbp, dp);
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100989
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 needlog = 1;
991 needscan = 0;
992 /*
993 * Use up the space at the end of the block (blp/btp).
994 */
Dave Chinnerbc851782014-06-06 15:20:54 +1000995 xfs_dir2_data_use_free(args, dbp, dup, args->geo->blksize - size, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 &needlog, &needscan);
997 /*
998 * Initialize the block tail.
999 */
Dave Chinner8f661932014-06-06 15:15:59 +10001000 btp = xfs_dir2_block_tail_p(args->geo, hdr);
Dave Chinner24df33b2013-04-12 07:30:21 +10001001 btp->count = cpu_to_be32(leafhdr.count - leafhdr.stale);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 btp->stale = 0;
1003 xfs_dir2_block_log_tail(tp, dbp);
1004 /*
1005 * Initialize the block leaf area. We compact out stale entries.
1006 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001007 lep = xfs_dir2_block_leaf_p(btp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001008 for (from = to = 0; from < leafhdr.count; from++) {
1009 if (ents[from].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 continue;
Dave Chinner24df33b2013-04-12 07:30:21 +10001011 lep[to++] = ents[from];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 }
Nathan Scotte922fff2006-03-17 17:27:56 +11001013 ASSERT(to == be32_to_cpu(btp->count));
1014 xfs_dir2_block_log_leaf(tp, dbp, 0, be32_to_cpu(btp->count) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 /*
1016 * Scan the bestfree if we need it and log the data block header.
1017 */
1018 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +11001019 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 if (needlog)
Dave Chinnerbc851782014-06-06 15:20:54 +10001021 xfs_dir2_data_log_header(args, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 /*
1023 * Pitch the old leaf block.
1024 */
Dave Chinner7dda6e82014-06-06 15:11:18 +10001025 error = xfs_da_shrink_inode(args, args->geo->leafblk, lbp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001026 if (error)
1027 return error;
1028
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 /*
1030 * Now see if the resulting block can be shrunken to shortform.
1031 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001032 size = xfs_dir2_block_sfsize(dp, hdr, &sfh);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001033 if (size > XFS_IFORK_DSIZE(dp))
1034 return 0;
1035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 return xfs_dir2_block_to_sf(args, dbp, size, &sfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037}
1038
1039/*
1040 * Convert the shortform directory to block form.
1041 */
1042int /* error */
1043xfs_dir2_sf_to_block(
1044 xfs_da_args_t *args) /* operation arguments */
1045{
1046 xfs_dir2_db_t blkno; /* dir-relative block # (0) */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001047 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001049 struct xfs_buf *bp; /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 xfs_dir2_block_tail_t *btp; /* block tail pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 xfs_dir2_data_entry_t *dep; /* data entry pointer */
1052 xfs_inode_t *dp; /* incore directory inode */
1053 int dummy; /* trash */
1054 xfs_dir2_data_unused_t *dup; /* unused entry pointer */
1055 int endoffset; /* end of data objects */
1056 int error; /* error return value */
1057 int i; /* index */
1058 xfs_mount_t *mp; /* filesystem mount point */
1059 int needlog; /* need to log block header */
1060 int needscan; /* need to scan block freespc */
1061 int newoffset; /* offset from current entry */
1062 int offset; /* target block offset */
1063 xfs_dir2_sf_entry_t *sfep; /* sf entry pointer */
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001064 xfs_dir2_sf_hdr_t *oldsfp; /* old shortform header */
1065 xfs_dir2_sf_hdr_t *sfp; /* shortform header */
Nathan Scott3d693c62006-03-17 17:28:27 +11001066 __be16 *tagp; /* end of data entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 xfs_trans_t *tp; /* transaction pointer */
Barry Naujok5163f952008-05-21 16:41:01 +10001068 struct xfs_name name;
Dave Chinnerf3508bc2013-07-10 07:04:00 +10001069 struct xfs_ifork *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001071 trace_xfs_dir2_sf_to_block(args);
1072
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 dp = args->dp;
1074 tp = args->trans;
1075 mp = dp->i_mount;
Dave Chinnerf3508bc2013-07-10 07:04:00 +10001076 ifp = XFS_IFORK_PTR(dp, XFS_DATA_FORK);
1077 ASSERT(ifp->if_flags & XFS_IFINLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 /*
1079 * Bomb out if the shortform directory is way too short.
1080 */
1081 if (dp->i_d.di_size < offsetof(xfs_dir2_sf_hdr_t, parent)) {
1082 ASSERT(XFS_FORCED_SHUTDOWN(mp));
Dave Chinner24513372014-06-25 14:58:08 +10001083 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 }
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001085
Dave Chinnerf3508bc2013-07-10 07:04:00 +10001086 oldsfp = (xfs_dir2_sf_hdr_t *)ifp->if_u1.if_data;
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001087
Dave Chinnerf3508bc2013-07-10 07:04:00 +10001088 ASSERT(ifp->if_bytes == dp->i_d.di_size);
1089 ASSERT(ifp->if_u1.if_data != NULL);
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001090 ASSERT(dp->i_d.di_size >= xfs_dir2_sf_hdr_size(oldsfp->i8count));
Dave Chinnerf3508bc2013-07-10 07:04:00 +10001091 ASSERT(dp->i_d.di_nextents == 0);
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 /*
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001094 * Copy the directory into a temporary buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 * Then pitch the incore inode data so we can make extents.
1096 */
Dave Chinnerf3508bc2013-07-10 07:04:00 +10001097 sfp = kmem_alloc(ifp->if_bytes, KM_SLEEP);
1098 memcpy(sfp, oldsfp, ifp->if_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
Dave Chinnerf3508bc2013-07-10 07:04:00 +10001100 xfs_idata_realloc(dp, -ifp->if_bytes, XFS_DATA_FORK);
1101 xfs_bmap_local_to_extents_empty(dp, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 dp->i_d.di_size = 0;
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001103
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 /*
1105 * Add block 0 to the inode.
1106 */
1107 error = xfs_dir2_grow_inode(args, XFS_DIR2_DATA_SPACE, &blkno);
1108 if (error) {
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001109 kmem_free(sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 return error;
1111 }
1112 /*
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11001113 * Initialize the data block, then convert it to block format.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11001115 error = xfs_dir3_data_init(args, blkno, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 if (error) {
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001117 kmem_free(sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 return error;
1119 }
Dave Chinnerd75afeb2013-04-03 16:11:29 +11001120 xfs_dir3_block_init(mp, tp, bp, dp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001121 hdr = bp->b_addr;
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11001122
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 /*
1124 * Compute size of block "tail" area.
1125 */
1126 i = (uint)sizeof(*btp) +
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001127 (sfp->count + 2) * (uint)sizeof(xfs_dir2_leaf_entry_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 /*
1129 * The whole thing is initialized to free by the init routine.
1130 * Say we're using the leaf and tail area.
1131 */
Dave Chinner2ca98772013-10-29 22:11:49 +11001132 dup = dp->d_ops->data_unused_p(hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 needlog = needscan = 0;
Dave Chinnerbc851782014-06-06 15:20:54 +10001134 xfs_dir2_data_use_free(args, bp, dup, args->geo->blksize - i,
Dave Chinner8f661932014-06-06 15:15:59 +10001135 i, &needlog, &needscan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 ASSERT(needscan == 0);
1137 /*
1138 * Fill in the tail.
1139 */
Dave Chinner8f661932014-06-06 15:15:59 +10001140 btp = xfs_dir2_block_tail_p(args->geo, hdr);
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001141 btp->count = cpu_to_be32(sfp->count + 2); /* ., .. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 btp->stale = 0;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001143 blp = xfs_dir2_block_leaf_p(btp);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001144 endoffset = (uint)((char *)blp - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 /*
1146 * Remove the freespace, we'll manage it.
1147 */
Dave Chinnerbc851782014-06-06 15:20:54 +10001148 xfs_dir2_data_use_free(args, bp, dup,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001149 (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr),
Nathan Scottad354eb2006-03-17 17:27:37 +11001150 be16_to_cpu(dup->length), &needlog, &needscan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 /*
1152 * Create entry for .
1153 */
Dave Chinner9d23fc82013-10-29 22:11:48 +11001154 dep = dp->d_ops->data_dot_entry_p(hdr);
Christoph Hellwigff9901c2006-06-09 14:48:37 +10001155 dep->inumber = cpu_to_be64(dp->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 dep->namelen = 1;
1157 dep->name[0] = '.';
Dave Chinner9d23fc82013-10-29 22:11:48 +11001158 dp->d_ops->data_put_ftype(dep, XFS_DIR3_FT_DIR);
1159 tagp = dp->d_ops->data_entry_tag_p(dep);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001160 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Dave Chinnerbc851782014-06-06 15:20:54 +10001161 xfs_dir2_data_log_entry(args, bp, dep);
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001162 blp[0].hashval = cpu_to_be32(xfs_dir_hash_dot);
Eric Sandeen25994052014-04-14 19:02:30 +10001163 blp[0].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001164 (char *)dep - (char *)hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 /*
1166 * Create entry for ..
1167 */
Dave Chinner9d23fc82013-10-29 22:11:48 +11001168 dep = dp->d_ops->data_dotdot_entry_p(hdr);
Dave Chinner47401752013-10-29 22:11:47 +11001169 dep->inumber = cpu_to_be64(dp->d_ops->sf_get_parent_ino(sfp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 dep->namelen = 2;
1171 dep->name[0] = dep->name[1] = '.';
Dave Chinner9d23fc82013-10-29 22:11:48 +11001172 dp->d_ops->data_put_ftype(dep, XFS_DIR3_FT_DIR);
1173 tagp = dp->d_ops->data_entry_tag_p(dep);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001174 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Dave Chinnerbc851782014-06-06 15:20:54 +10001175 xfs_dir2_data_log_entry(args, bp, dep);
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001176 blp[1].hashval = cpu_to_be32(xfs_dir_hash_dotdot);
Eric Sandeen25994052014-04-14 19:02:30 +10001177 blp[1].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001178 (char *)dep - (char *)hdr));
Dave Chinner1c9a5b22013-10-30 09:15:02 +11001179 offset = dp->d_ops->data_first_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 /*
1181 * Loop over existing entries, stuff them in.
1182 */
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001183 i = 0;
1184 if (!sfp->count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 sfep = NULL;
1186 else
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001187 sfep = xfs_dir2_sf_firstentry(sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 /*
1189 * Need to preserve the existing offset values in the sf directory.
1190 * Insert holes (unused entries) where necessary.
1191 */
1192 while (offset < endoffset) {
1193 /*
1194 * sfep is null when we reach the end of the list.
1195 */
1196 if (sfep == NULL)
1197 newoffset = endoffset;
1198 else
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001199 newoffset = xfs_dir2_sf_get_offset(sfep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 /*
1201 * There should be a hole here, make one.
1202 */
1203 if (offset < newoffset) {
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001204 dup = (xfs_dir2_data_unused_t *)((char *)hdr + offset);
Nathan Scottad354eb2006-03-17 17:27:37 +11001205 dup->freetag = cpu_to_be16(XFS_DIR2_DATA_FREE_TAG);
1206 dup->length = cpu_to_be16(newoffset - offset);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001207 *xfs_dir2_data_unused_tag_p(dup) = cpu_to_be16(
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001208 ((char *)dup - (char *)hdr));
Dave Chinnerbc851782014-06-06 15:20:54 +10001209 xfs_dir2_data_log_unused(args, bp, dup);
Dave Chinner2ca98772013-10-29 22:11:49 +11001210 xfs_dir2_data_freeinsert(hdr,
1211 dp->d_ops->data_bestfree_p(hdr),
1212 dup, &dummy);
Nathan Scottad354eb2006-03-17 17:27:37 +11001213 offset += be16_to_cpu(dup->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 continue;
1215 }
1216 /*
1217 * Copy a real entry.
1218 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001219 dep = (xfs_dir2_data_entry_t *)((char *)hdr + newoffset);
Dave Chinner47401752013-10-29 22:11:47 +11001220 dep->inumber = cpu_to_be64(dp->d_ops->sf_get_ino(sfp, sfep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 dep->namelen = sfep->namelen;
Dave Chinner9d23fc82013-10-29 22:11:48 +11001222 dp->d_ops->data_put_ftype(dep, dp->d_ops->sf_get_ftype(sfep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 memcpy(dep->name, sfep->name, dep->namelen);
Dave Chinner9d23fc82013-10-29 22:11:48 +11001224 tagp = dp->d_ops->data_entry_tag_p(dep);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001225 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Dave Chinnerbc851782014-06-06 15:20:54 +10001226 xfs_dir2_data_log_entry(args, bp, dep);
Barry Naujok5163f952008-05-21 16:41:01 +10001227 name.name = sfep->name;
1228 name.len = sfep->namelen;
1229 blp[2 + i].hashval = cpu_to_be32(mp->m_dirnameops->
1230 hashname(&name));
Eric Sandeen25994052014-04-14 19:02:30 +10001231 blp[2 + i].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001232 (char *)dep - (char *)hdr));
1233 offset = (int)((char *)(tagp + 1) - (char *)hdr);
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001234 if (++i == sfp->count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 sfep = NULL;
1236 else
Dave Chinner32c54832013-10-29 22:11:46 +11001237 sfep = dp->d_ops->sf_nextentry(sfp, sfep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 }
1239 /* Done with the temporary buffer */
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001240 kmem_free(sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 /*
1242 * Sort the leaf entries by hash value.
1243 */
Nathan Scotte922fff2006-03-17 17:27:56 +11001244 xfs_sort(blp, be32_to_cpu(btp->count), sizeof(*blp), xfs_dir2_block_sort);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 /*
1246 * Log the leaf entry area and tail.
1247 * Already logged the header in data_init, ignore needlog.
1248 */
1249 ASSERT(needscan == 0);
Nathan Scotte922fff2006-03-17 17:27:56 +11001250 xfs_dir2_block_log_leaf(tp, bp, 0, be32_to_cpu(btp->count) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 xfs_dir2_block_log_tail(tp, bp);
Dave Chinner33363fe2013-04-03 16:11:22 +11001252 xfs_dir3_data_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 return 0;
1254}