blob: d950cde3afeba7bf0e43bd1cba4ec8bf26ab2854 [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_sb.h"
David Chinnerda353b02007-08-28 14:00:13 +100025#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_mount.h"
Dave Chinner57062782013-10-15 09:17:51 +110027#include "xfs_da_format.h"
Nathan Scotta844f452005-11-02 14:38:42 +110028#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_inode.h"
Dave Chinner239880e2013-10-23 10:50:10 +110030#include "xfs_trans.h"
Nathan Scotta844f452005-11-02 14:38:42 +110031#include "xfs_inode_item.h"
Dave Chinnerf3508bc2013-07-10 07:04:00 +100032#include "xfs_bmap.h"
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +110033#include "xfs_buf_item.h"
Dave Chinner2b9ab5a2013-08-12 20:49:37 +100034#include "xfs_dir2.h"
Christoph Hellwig57926642011-07-13 13:43:48 +020035#include "xfs_dir2_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_error.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000037#include "xfs_trace.h"
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +110038#include "xfs_cksum.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110039#include "xfs_dinode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41/*
42 * Local function prototypes.
43 */
Dave Chinner1d9025e2012-06-22 18:50:14 +100044static void xfs_dir2_block_log_leaf(xfs_trans_t *tp, struct xfs_buf *bp,
45 int first, int last);
46static void xfs_dir2_block_log_tail(xfs_trans_t *tp, struct xfs_buf *bp);
47static int xfs_dir2_block_lookup_int(xfs_da_args_t *args, struct xfs_buf **bpp,
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 int *entno);
49static int xfs_dir2_block_sort(const void *a, const void *b);
50
Nathan Scottf6c2d1f2006-06-20 13:04:51 +100051static xfs_dahash_t xfs_dir_hash_dot, xfs_dir_hash_dotdot;
52
53/*
54 * One-time startup routine called from xfs_init().
55 */
56void
57xfs_dir_startup(void)
58{
Dave Chinner4a24cb72010-01-20 10:48:05 +110059 xfs_dir_hash_dot = xfs_da_hashname((unsigned char *)".", 1);
60 xfs_dir_hash_dotdot = xfs_da_hashname((unsigned char *)"..", 2);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +100061}
62
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +110063static bool
64xfs_dir3_block_verify(
Dave Chinner82025d72012-11-12 22:54:12 +110065 struct xfs_buf *bp)
66{
67 struct xfs_mount *mp = bp->b_target->bt_mount;
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +110068 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
Dave Chinner82025d72012-11-12 22:54:12 +110069
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +110070 if (xfs_sb_version_hascrc(&mp->m_sb)) {
71 if (hdr3->magic != cpu_to_be32(XFS_DIR3_BLOCK_MAGIC))
72 return false;
73 if (!uuid_equal(&hdr3->uuid, &mp->m_sb.sb_uuid))
74 return false;
75 if (be64_to_cpu(hdr3->blkno) != bp->b_bn)
76 return false;
77 } else {
78 if (hdr3->magic != cpu_to_be32(XFS_DIR2_BLOCK_MAGIC))
79 return false;
80 }
Dave Chinner33363fe2013-04-03 16:11:22 +110081 if (__xfs_dir3_data_check(NULL, bp))
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +110082 return false;
83 return true;
84}
Dave Chinner82025d72012-11-12 22:54:12 +110085
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +110086static void
87xfs_dir3_block_read_verify(
88 struct xfs_buf *bp)
89{
90 struct xfs_mount *mp = bp->b_target->bt_mount;
91
Eric Sandeence5028c2014-02-27 15:23:10 +110092 if (xfs_sb_version_hascrc(&mp->m_sb) &&
93 !xfs_buf_verify_cksum(bp, XFS_DIR3_DATA_CRC_OFF))
94 xfs_buf_ioerror(bp, EFSBADCRC);
95 else if (!xfs_dir3_block_verify(bp))
Dave Chinner82025d72012-11-12 22:54:12 +110096 xfs_buf_ioerror(bp, EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +110097
98 if (bp->b_error)
99 xfs_verifier_error(bp);
Dave Chinner612cfbf2012-11-14 17:52:32 +1100100}
Dave Chinner82025d72012-11-12 22:54:12 +1100101
Dave Chinner612cfbf2012-11-14 17:52:32 +1100102static void
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100103xfs_dir3_block_write_verify(
Dave Chinner1813dd62012-11-14 17:54:40 +1100104 struct xfs_buf *bp)
105{
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100106 struct xfs_mount *mp = bp->b_target->bt_mount;
107 struct xfs_buf_log_item *bip = bp->b_fspriv;
108 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
109
110 if (!xfs_dir3_block_verify(bp)) {
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100111 xfs_buf_ioerror(bp, EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100112 xfs_verifier_error(bp);
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100113 return;
114 }
115
116 if (!xfs_sb_version_hascrc(&mp->m_sb))
117 return;
118
119 if (bip)
120 hdr3->lsn = cpu_to_be64(bip->bli_item.li_lsn);
121
Eric Sandeenf1dbcd72014-02-27 15:18:23 +1100122 xfs_buf_update_cksum(bp, XFS_DIR3_DATA_CRC_OFF);
Dave Chinner1813dd62012-11-14 17:54:40 +1100123}
124
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100125const struct xfs_buf_ops xfs_dir3_block_buf_ops = {
126 .verify_read = xfs_dir3_block_read_verify,
127 .verify_write = xfs_dir3_block_write_verify,
Dave Chinner1813dd62012-11-14 17:54:40 +1100128};
Dave Chinner82025d72012-11-12 22:54:12 +1100129
Dave Chinner4a8af272013-08-12 20:49:36 +1000130int
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100131xfs_dir3_block_read(
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100132 struct xfs_trans *tp,
133 struct xfs_inode *dp,
134 struct xfs_buf **bpp)
135{
136 struct xfs_mount *mp = dp->i_mount;
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100137 int err;
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100138
Dave Chinner7dda6e82014-06-06 15:11:18 +1000139 err = xfs_da_read_buf(tp, dp, mp->m_dir_geo->datablk, -1, bpp,
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100140 XFS_DATA_FORK, &xfs_dir3_block_buf_ops);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100141 if (!err && tp)
Dave Chinner61fe1352013-04-03 16:11:30 +1100142 xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_DIR_BLOCK_BUF);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100143 return err;
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100144}
145
146static void
147xfs_dir3_block_init(
148 struct xfs_mount *mp,
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100149 struct xfs_trans *tp,
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100150 struct xfs_buf *bp,
151 struct xfs_inode *dp)
152{
153 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
154
155 bp->b_ops = &xfs_dir3_block_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100156 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_BLOCK_BUF);
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100157
158 if (xfs_sb_version_hascrc(&mp->m_sb)) {
159 memset(hdr3, 0, sizeof(*hdr3));
160 hdr3->magic = cpu_to_be32(XFS_DIR3_BLOCK_MAGIC);
161 hdr3->blkno = cpu_to_be64(bp->b_bn);
162 hdr3->owner = cpu_to_be64(dp->i_ino);
163 uuid_copy(&hdr3->uuid, &mp->m_sb.sb_uuid);
164 return;
165
166 }
167 hdr3->magic = cpu_to_be32(XFS_DIR2_BLOCK_MAGIC);
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100168}
169
170static void
171xfs_dir2_block_need_space(
Dave Chinner2ca98772013-10-29 22:11:49 +1100172 struct xfs_inode *dp,
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100173 struct xfs_dir2_data_hdr *hdr,
174 struct xfs_dir2_block_tail *btp,
175 struct xfs_dir2_leaf_entry *blp,
176 __be16 **tagpp,
177 struct xfs_dir2_data_unused **dupp,
178 struct xfs_dir2_data_unused **enddupp,
179 int *compact,
180 int len)
181{
182 struct xfs_dir2_data_free *bf;
183 __be16 *tagp = NULL;
184 struct xfs_dir2_data_unused *dup = NULL;
185 struct xfs_dir2_data_unused *enddup = NULL;
186
187 *compact = 0;
Dave Chinner2ca98772013-10-29 22:11:49 +1100188 bf = dp->d_ops->data_bestfree_p(hdr);
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100189
190 /*
191 * If there are stale entries we'll use one for the leaf.
192 */
193 if (btp->stale) {
194 if (be16_to_cpu(bf[0].length) >= len) {
195 /*
196 * The biggest entry enough to avoid compaction.
197 */
198 dup = (xfs_dir2_data_unused_t *)
199 ((char *)hdr + be16_to_cpu(bf[0].offset));
200 goto out;
201 }
202
203 /*
204 * Will need to compact to make this work.
205 * Tag just before the first leaf entry.
206 */
207 *compact = 1;
208 tagp = (__be16 *)blp - 1;
209
210 /* Data object just before the first leaf entry. */
211 dup = (xfs_dir2_data_unused_t *)((char *)hdr + be16_to_cpu(*tagp));
212
213 /*
214 * If it's not free then the data will go where the
215 * leaf data starts now, if it works at all.
216 */
217 if (be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
218 if (be16_to_cpu(dup->length) + (be32_to_cpu(btp->stale) - 1) *
219 (uint)sizeof(*blp) < len)
220 dup = NULL;
221 } else if ((be32_to_cpu(btp->stale) - 1) * (uint)sizeof(*blp) < len)
222 dup = NULL;
223 else
224 dup = (xfs_dir2_data_unused_t *)blp;
225 goto out;
226 }
227
228 /*
229 * no stale entries, so just use free space.
230 * Tag just before the first leaf entry.
231 */
232 tagp = (__be16 *)blp - 1;
233
234 /* Data object just before the first leaf entry. */
235 enddup = (xfs_dir2_data_unused_t *)((char *)hdr + be16_to_cpu(*tagp));
236
237 /*
238 * If it's not free then can't do this add without cleaning up:
239 * the space before the first leaf entry needs to be free so it
240 * can be expanded to hold the pointer to the new entry.
241 */
242 if (be16_to_cpu(enddup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
243 /*
244 * Check out the biggest freespace and see if it's the same one.
245 */
246 dup = (xfs_dir2_data_unused_t *)
247 ((char *)hdr + be16_to_cpu(bf[0].offset));
248 if (dup != enddup) {
249 /*
250 * Not the same free entry, just check its length.
251 */
252 if (be16_to_cpu(dup->length) < len)
253 dup = NULL;
254 goto out;
255 }
256
257 /*
258 * It is the biggest freespace, can it hold the leaf too?
259 */
260 if (be16_to_cpu(dup->length) < len + (uint)sizeof(*blp)) {
261 /*
262 * Yes, use the second-largest entry instead if it works.
263 */
264 if (be16_to_cpu(bf[1].length) >= len)
265 dup = (xfs_dir2_data_unused_t *)
266 ((char *)hdr + be16_to_cpu(bf[1].offset));
267 else
268 dup = NULL;
269 }
270 }
271out:
272 *tagpp = tagp;
273 *dupp = dup;
274 *enddupp = enddup;
275}
276
277/*
278 * compact the leaf entries.
279 * Leave the highest-numbered stale entry stale.
280 * XXX should be the one closest to mid but mid is not yet computed.
281 */
282static void
283xfs_dir2_block_compact(
284 struct xfs_trans *tp,
Dave Chinner9d23fc82013-10-29 22:11:48 +1100285 struct xfs_inode *dp,
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100286 struct xfs_buf *bp,
287 struct xfs_dir2_data_hdr *hdr,
288 struct xfs_dir2_block_tail *btp,
289 struct xfs_dir2_leaf_entry *blp,
290 int *needlog,
291 int *lfloghigh,
292 int *lfloglow)
293{
294 int fromidx; /* source leaf index */
295 int toidx; /* target leaf index */
296 int needscan = 0;
297 int highstale; /* high stale index */
298
299 fromidx = toidx = be32_to_cpu(btp->count) - 1;
300 highstale = *lfloghigh = -1;
301 for (; fromidx >= 0; fromidx--) {
302 if (blp[fromidx].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR)) {
303 if (highstale == -1)
304 highstale = toidx;
305 else {
306 if (*lfloghigh == -1)
307 *lfloghigh = toidx;
308 continue;
309 }
310 }
311 if (fromidx < toidx)
312 blp[toidx] = blp[fromidx];
313 toidx--;
314 }
315 *lfloglow = toidx + 1 - (be32_to_cpu(btp->stale) - 1);
316 *lfloghigh -= be32_to_cpu(btp->stale) - 1;
317 be32_add_cpu(&btp->count, -(be32_to_cpu(btp->stale) - 1));
Dave Chinner2ca98772013-10-29 22:11:49 +1100318 xfs_dir2_data_make_free(tp, dp, bp,
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100319 (xfs_dir2_data_aoff_t)((char *)blp - (char *)hdr),
320 (xfs_dir2_data_aoff_t)((be32_to_cpu(btp->stale) - 1) * sizeof(*blp)),
321 needlog, &needscan);
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100322 btp->stale = cpu_to_be32(1);
323 /*
324 * If we now need to rebuild the bestfree map, do so.
325 * This needs to happen before the next call to use_free.
326 */
327 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +1100328 xfs_dir2_data_freescan(dp, hdr, needlog);
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100329}
330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331/*
332 * Add an entry to a block directory.
333 */
334int /* error */
335xfs_dir2_block_addname(
336 xfs_da_args_t *args) /* directory op arguments */
337{
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200338 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000340 struct xfs_buf *bp; /* buffer for block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 xfs_dir2_block_tail_t *btp; /* block tail */
342 int compact; /* need to compact leaf ents */
343 xfs_dir2_data_entry_t *dep; /* block data entry */
344 xfs_inode_t *dp; /* directory inode */
345 xfs_dir2_data_unused_t *dup; /* block unused entry */
346 int error; /* error return value */
347 xfs_dir2_data_unused_t *enddup=NULL; /* unused at end of data */
348 xfs_dahash_t hash; /* hash value of found entry */
349 int high; /* high index for binary srch */
350 int highstale; /* high stale index */
351 int lfloghigh=0; /* last final leaf to log */
352 int lfloglow=0; /* first final leaf to log */
353 int len; /* length of the new entry */
354 int low; /* low index for binary srch */
355 int lowstale; /* low stale index */
356 int mid=0; /* midpoint for binary srch */
357 xfs_mount_t *mp; /* filesystem mount point */
358 int needlog; /* need to log header */
359 int needscan; /* need to rescan freespace */
Nathan Scott3d693c62006-03-17 17:28:27 +1100360 __be16 *tagp; /* pointer to tag value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 xfs_trans_t *tp; /* transaction structure */
362
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000363 trace_xfs_dir2_block_addname(args);
364
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 dp = args->dp;
366 tp = args->trans;
367 mp = dp->i_mount;
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100368
369 /* Read the (one and only) directory block into bp. */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100370 error = xfs_dir3_block_read(tp, dp, &bp);
Dave Chinner4bb20a82012-11-12 22:54:10 +1100371 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return error;
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100373
Dave Chinner9d23fc82013-10-29 22:11:48 +1100374 len = dp->d_ops->data_entsize(args->namelen);
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 /*
377 * Set up pointers to parts of the block.
378 */
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100379 hdr = bp->b_addr;
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200380 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000381 blp = xfs_dir2_block_leaf_p(btp);
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 /*
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100384 * Find out if we can reuse stale entries or whether we need extra
385 * space for entry and new leaf.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 */
Dave Chinner2ca98772013-10-29 22:11:49 +1100387 xfs_dir2_block_need_space(dp, hdr, btp, blp, &tagp, &dup,
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100388 &enddup, &compact, len);
389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 /*
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100391 * Done everything we need for a space check now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 */
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100393 if (args->op_flags & XFS_DA_OP_JUSTCHECK) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000394 xfs_trans_brelse(tp, bp);
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100395 if (!dup)
396 return XFS_ERROR(ENOSPC);
397 return 0;
398 }
399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 /*
401 * If we don't have space for the new entry & leaf ...
402 */
403 if (!dup) {
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100404 /* Don't have a space reservation: return no-space. */
405 if (args->total == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 return XFS_ERROR(ENOSPC);
407 /*
408 * Convert to the next larger format.
409 * Then add the new entry in that format.
410 */
411 error = xfs_dir2_block_to_leaf(args, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 if (error)
413 return error;
414 return xfs_dir2_leaf_addname(args);
415 }
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 needlog = needscan = 0;
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100418
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 /*
420 * If need to compact the leaf entries, do it now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 */
Eric Sandeen37f13562013-01-10 10:41:48 -0600422 if (compact) {
Dave Chinner9d23fc82013-10-29 22:11:48 +1100423 xfs_dir2_block_compact(tp, dp, bp, hdr, btp, blp, &needlog,
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100424 &lfloghigh, &lfloglow);
Eric Sandeen37f13562013-01-10 10:41:48 -0600425 /* recalculate blp post-compaction */
426 blp = xfs_dir2_block_leaf_p(btp);
427 } else if (btp->stale) {
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100428 /*
429 * Set leaf logging boundaries to impossible state.
430 * For the no-stale case they're set explicitly.
431 */
Nathan Scotte922fff2006-03-17 17:27:56 +1100432 lfloglow = be32_to_cpu(btp->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 lfloghigh = -1;
434 }
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 /*
437 * Find the slot that's first lower than our hash value, -1 if none.
438 */
Nathan Scotte922fff2006-03-17 17:27:56 +1100439 for (low = 0, high = be32_to_cpu(btp->count) - 1; low <= high; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 mid = (low + high) >> 1;
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100441 if ((hash = be32_to_cpu(blp[mid].hashval)) == args->hashval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 break;
443 if (hash < args->hashval)
444 low = mid + 1;
445 else
446 high = mid - 1;
447 }
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100448 while (mid >= 0 && be32_to_cpu(blp[mid].hashval) >= args->hashval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 mid--;
450 }
451 /*
452 * No stale entries, will use enddup space to hold new leaf.
453 */
454 if (!btp->stale) {
455 /*
456 * Mark the space needed for the new leaf entry, now in use.
457 */
Dave Chinner2ca98772013-10-29 22:11:49 +1100458 xfs_dir2_data_use_free(tp, dp, bp, enddup,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 (xfs_dir2_data_aoff_t)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200460 ((char *)enddup - (char *)hdr + be16_to_cpu(enddup->length) -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 sizeof(*blp)),
462 (xfs_dir2_data_aoff_t)sizeof(*blp),
463 &needlog, &needscan);
464 /*
465 * Update the tail (entry count).
466 */
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800467 be32_add_cpu(&btp->count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 /*
469 * If we now need to rebuild the bestfree map, do so.
470 * This needs to happen before the next call to use_free.
471 */
472 if (needscan) {
Dave Chinner9d23fc82013-10-29 22:11:48 +1100473 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 needscan = 0;
475 }
476 /*
477 * Adjust pointer to the first leaf entry, we're about to move
478 * the table up one to open up space for the new leaf entry.
479 * Then adjust our index to match.
480 */
481 blp--;
482 mid++;
483 if (mid)
484 memmove(blp, &blp[1], mid * sizeof(*blp));
485 lfloglow = 0;
486 lfloghigh = mid;
487 }
488 /*
489 * Use a stale leaf for our new entry.
490 */
491 else {
492 for (lowstale = mid;
493 lowstale >= 0 &&
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200494 blp[lowstale].address !=
495 cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 lowstale--)
497 continue;
498 for (highstale = mid + 1;
Nathan Scotte922fff2006-03-17 17:27:56 +1100499 highstale < be32_to_cpu(btp->count) &&
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200500 blp[highstale].address !=
501 cpu_to_be32(XFS_DIR2_NULL_DATAPTR) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 (lowstale < 0 || mid - lowstale > highstale - mid);
503 highstale++)
504 continue;
505 /*
506 * Move entries toward the low-numbered stale entry.
507 */
508 if (lowstale >= 0 &&
Nathan Scotte922fff2006-03-17 17:27:56 +1100509 (highstale == be32_to_cpu(btp->count) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 mid - lowstale <= highstale - mid)) {
511 if (mid - lowstale)
512 memmove(&blp[lowstale], &blp[lowstale + 1],
513 (mid - lowstale) * sizeof(*blp));
514 lfloglow = MIN(lowstale, lfloglow);
515 lfloghigh = MAX(mid, lfloghigh);
516 }
517 /*
518 * Move entries toward the high-numbered stale entry.
519 */
520 else {
Nathan Scotte922fff2006-03-17 17:27:56 +1100521 ASSERT(highstale < be32_to_cpu(btp->count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 mid++;
523 if (highstale - mid)
524 memmove(&blp[mid + 1], &blp[mid],
525 (highstale - mid) * sizeof(*blp));
526 lfloglow = MIN(mid, lfloglow);
527 lfloghigh = MAX(highstale, lfloghigh);
528 }
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800529 be32_add_cpu(&btp->stale, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 }
531 /*
532 * Point to the new data entry.
533 */
534 dep = (xfs_dir2_data_entry_t *)dup;
535 /*
536 * Fill in the leaf entry.
537 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100538 blp[mid].hashval = cpu_to_be32(args->hashval);
Eric Sandeen25994052014-04-14 19:02:30 +1000539 blp[mid].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200540 (char *)dep - (char *)hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 xfs_dir2_block_log_leaf(tp, bp, lfloglow, lfloghigh);
542 /*
543 * Mark space for the data entry used.
544 */
Dave Chinner2ca98772013-10-29 22:11:49 +1100545 xfs_dir2_data_use_free(tp, dp, bp, dup,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200546 (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 (xfs_dir2_data_aoff_t)len, &needlog, &needscan);
548 /*
549 * Create the new data entry.
550 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +1000551 dep->inumber = cpu_to_be64(args->inumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 dep->namelen = args->namelen;
553 memcpy(dep->name, args->name, args->namelen);
Dave Chinner9d23fc82013-10-29 22:11:48 +1100554 dp->d_ops->data_put_ftype(dep, args->filetype);
555 tagp = dp->d_ops->data_entry_tag_p(dep);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200556 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 /*
558 * Clean up the bestfree array and log the header, tail, and entry.
559 */
560 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +1100561 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 if (needlog)
Dave Chinner2ca98772013-10-29 22:11:49 +1100563 xfs_dir2_data_log_header(tp, dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 xfs_dir2_block_log_tail(tp, bp);
Dave Chinner9d23fc82013-10-29 22:11:48 +1100565 xfs_dir2_data_log_entry(tp, dp, bp, dep);
Dave Chinner33363fe2013-04-03 16:11:22 +1100566 xfs_dir3_data_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 return 0;
568}
569
570/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 * Log leaf entries from the block.
572 */
573static void
574xfs_dir2_block_log_leaf(
575 xfs_trans_t *tp, /* transaction structure */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000576 struct xfs_buf *bp, /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 int first, /* index of first logged leaf */
578 int last) /* index of last logged leaf */
579{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000580 xfs_dir2_data_hdr_t *hdr = bp->b_addr;
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200581 xfs_dir2_leaf_entry_t *blp;
582 xfs_dir2_block_tail_t *btp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200584 btp = xfs_dir2_block_tail_p(tp->t_mountp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000585 blp = xfs_dir2_block_leaf_p(btp);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000586 xfs_trans_log_buf(tp, bp, (uint)((char *)&blp[first] - (char *)hdr),
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200587 (uint)((char *)&blp[last + 1] - (char *)hdr - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588}
589
590/*
591 * Log the block tail.
592 */
593static void
594xfs_dir2_block_log_tail(
595 xfs_trans_t *tp, /* transaction structure */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000596 struct xfs_buf *bp) /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000598 xfs_dir2_data_hdr_t *hdr = bp->b_addr;
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200599 xfs_dir2_block_tail_t *btp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200601 btp = xfs_dir2_block_tail_p(tp->t_mountp, hdr);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000602 xfs_trans_log_buf(tp, bp, (uint)((char *)btp - (char *)hdr),
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200603 (uint)((char *)(btp + 1) - (char *)hdr - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604}
605
606/*
607 * Look up an entry in the block. This is the external routine,
608 * xfs_dir2_block_lookup_int does the real work.
609 */
610int /* error */
611xfs_dir2_block_lookup(
612 xfs_da_args_t *args) /* dir lookup arguments */
613{
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200614 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000616 struct xfs_buf *bp; /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 xfs_dir2_block_tail_t *btp; /* block tail */
618 xfs_dir2_data_entry_t *dep; /* block data entry */
619 xfs_inode_t *dp; /* incore inode */
620 int ent; /* entry index */
621 int error; /* error return value */
622 xfs_mount_t *mp; /* filesystem mount point */
623
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000624 trace_xfs_dir2_block_lookup(args);
625
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 /*
627 * Get the buffer, look up the entry.
628 * If not found (ENOENT) then return, have no buffer.
629 */
630 if ((error = xfs_dir2_block_lookup_int(args, &bp, &ent)))
631 return error;
632 dp = args->dp;
633 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000634 hdr = bp->b_addr;
Dave Chinner33363fe2013-04-03 16:11:22 +1100635 xfs_dir3_data_check(dp, bp);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200636 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000637 blp = xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 /*
639 * Get the offset from the leaf entry, to point to the data.
640 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200641 dep = (xfs_dir2_data_entry_t *)((char *)hdr +
Dave Chinner30028032014-06-06 15:08:18 +1000642 xfs_dir2_dataptr_to_off(args->geo,
643 be32_to_cpu(blp[ent].address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 /*
Barry Naujok384f3ce2008-05-21 16:58:22 +1000645 * Fill in inode number, CI name if appropriate, release the block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +1000647 args->inumber = be64_to_cpu(dep->inumber);
Dave Chinner9d23fc82013-10-29 22:11:48 +1100648 args->filetype = dp->d_ops->data_get_ftype(dep);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000649 error = xfs_dir_cilookup_result(args, dep->name, dep->namelen);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000650 xfs_trans_brelse(args->trans, bp);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000651 return XFS_ERROR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652}
653
654/*
655 * Internal block lookup routine.
656 */
657static int /* error */
658xfs_dir2_block_lookup_int(
659 xfs_da_args_t *args, /* dir lookup arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000660 struct xfs_buf **bpp, /* returned block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 int *entno) /* returned entry number */
662{
663 xfs_dir2_dataptr_t addr; /* data entry address */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200664 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000666 struct xfs_buf *bp; /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 xfs_dir2_block_tail_t *btp; /* block tail */
668 xfs_dir2_data_entry_t *dep; /* block data entry */
669 xfs_inode_t *dp; /* incore inode */
670 int error; /* error return value */
671 xfs_dahash_t hash; /* found hash value */
672 int high; /* binary search high index */
673 int low; /* binary search low index */
674 int mid; /* binary search current idx */
675 xfs_mount_t *mp; /* filesystem mount point */
676 xfs_trans_t *tp; /* transaction pointer */
Barry Naujok5163f952008-05-21 16:41:01 +1000677 enum xfs_dacmp cmp; /* comparison result */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
679 dp = args->dp;
680 tp = args->trans;
681 mp = dp->i_mount;
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100682
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100683 error = xfs_dir3_block_read(tp, dp, &bp);
Dave Chinner4bb20a82012-11-12 22:54:10 +1100684 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 return error;
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100686
Dave Chinner1d9025e2012-06-22 18:50:14 +1000687 hdr = bp->b_addr;
Dave Chinner33363fe2013-04-03 16:11:22 +1100688 xfs_dir3_data_check(dp, bp);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200689 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000690 blp = xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 /*
692 * Loop doing a binary search for our hash value.
693 * Find our entry, ENOENT if it's not there.
694 */
Nathan Scotte922fff2006-03-17 17:27:56 +1100695 for (low = 0, high = be32_to_cpu(btp->count) - 1; ; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 ASSERT(low <= high);
697 mid = (low + high) >> 1;
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100698 if ((hash = be32_to_cpu(blp[mid].hashval)) == args->hashval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 break;
700 if (hash < args->hashval)
701 low = mid + 1;
702 else
703 high = mid - 1;
704 if (low > high) {
Barry Naujok6a178102008-05-21 16:42:05 +1000705 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000706 xfs_trans_brelse(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 return XFS_ERROR(ENOENT);
708 }
709 }
710 /*
711 * Back up to the first one with the right hash value.
712 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100713 while (mid > 0 && be32_to_cpu(blp[mid - 1].hashval) == args->hashval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 mid--;
715 }
716 /*
717 * Now loop forward through all the entries with the
718 * right hash value looking for our name.
719 */
720 do {
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100721 if ((addr = be32_to_cpu(blp[mid].address)) == XFS_DIR2_NULL_DATAPTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 continue;
723 /*
724 * Get pointer to the entry from the leaf.
725 */
726 dep = (xfs_dir2_data_entry_t *)
Dave Chinner30028032014-06-06 15:08:18 +1000727 ((char *)hdr + xfs_dir2_dataptr_to_off(args->geo, addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 /*
Barry Naujok5163f952008-05-21 16:41:01 +1000729 * Compare name and if it's an exact match, return the index
730 * and buffer. If it's the first case-insensitive match, store
731 * the index and buffer and continue looking for an exact match.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 */
Barry Naujok5163f952008-05-21 16:41:01 +1000733 cmp = mp->m_dirnameops->compname(args, dep->name, dep->namelen);
734 if (cmp != XFS_CMP_DIFFERENT && cmp != args->cmpresult) {
735 args->cmpresult = cmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 *bpp = bp;
737 *entno = mid;
Barry Naujok5163f952008-05-21 16:41:01 +1000738 if (cmp == XFS_CMP_EXACT)
739 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 }
Barry Naujok5163f952008-05-21 16:41:01 +1000741 } while (++mid < be32_to_cpu(btp->count) &&
742 be32_to_cpu(blp[mid].hashval) == hash);
743
Barry Naujok6a178102008-05-21 16:42:05 +1000744 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
Barry Naujok5163f952008-05-21 16:41:01 +1000745 /*
746 * Here, we can only be doing a lookup (not a rename or replace).
747 * If a case-insensitive match was found earlier, return success.
748 */
749 if (args->cmpresult == XFS_CMP_CASE)
750 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 /*
752 * No match, release the buffer and return ENOENT.
753 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000754 xfs_trans_brelse(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 return XFS_ERROR(ENOENT);
756}
757
758/*
759 * Remove an entry from a block format directory.
760 * If that makes the block small enough to fit in shortform, transform it.
761 */
762int /* error */
763xfs_dir2_block_removename(
764 xfs_da_args_t *args) /* directory operation args */
765{
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200766 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 xfs_dir2_leaf_entry_t *blp; /* block leaf pointer */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000768 struct xfs_buf *bp; /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 xfs_dir2_block_tail_t *btp; /* block tail */
770 xfs_dir2_data_entry_t *dep; /* block data entry */
771 xfs_inode_t *dp; /* incore inode */
772 int ent; /* block leaf entry index */
773 int error; /* error return value */
774 xfs_mount_t *mp; /* filesystem mount point */
775 int needlog; /* need to log block header */
776 int needscan; /* need to fixup bestfree */
777 xfs_dir2_sf_hdr_t sfh; /* shortform header */
778 int size; /* shortform size */
779 xfs_trans_t *tp; /* transaction pointer */
780
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000781 trace_xfs_dir2_block_removename(args);
782
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 /*
784 * Look up the entry in the block. Gets the buffer and entry index.
785 * It will always be there, the vnodeops level does a lookup first.
786 */
787 if ((error = xfs_dir2_block_lookup_int(args, &bp, &ent))) {
788 return error;
789 }
790 dp = args->dp;
791 tp = args->trans;
792 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000793 hdr = bp->b_addr;
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200794 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000795 blp = xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 /*
797 * Point to the data entry using the leaf entry.
798 */
Dave Chinner30028032014-06-06 15:08:18 +1000799 dep = (xfs_dir2_data_entry_t *)((char *)hdr +
800 xfs_dir2_dataptr_to_off(args->geo,
801 be32_to_cpu(blp[ent].address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 /*
803 * Mark the data entry's space free.
804 */
805 needlog = needscan = 0;
Dave Chinner2ca98772013-10-29 22:11:49 +1100806 xfs_dir2_data_make_free(tp, dp, bp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200807 (xfs_dir2_data_aoff_t)((char *)dep - (char *)hdr),
Dave Chinner9d23fc82013-10-29 22:11:48 +1100808 dp->d_ops->data_entsize(dep->namelen), &needlog, &needscan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 /*
810 * Fix up the block tail.
811 */
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800812 be32_add_cpu(&btp->stale, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 xfs_dir2_block_log_tail(tp, bp);
814 /*
815 * Remove the leaf entry by marking it stale.
816 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100817 blp[ent].address = cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 xfs_dir2_block_log_leaf(tp, bp, ent, ent);
819 /*
820 * Fix up bestfree, log the header if necessary.
821 */
822 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +1100823 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 if (needlog)
Dave Chinner2ca98772013-10-29 22:11:49 +1100825 xfs_dir2_data_log_header(tp, dp, bp);
Dave Chinner33363fe2013-04-03 16:11:22 +1100826 xfs_dir3_data_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 /*
828 * See if the size as a shortform is good enough.
829 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200830 size = xfs_dir2_block_sfsize(dp, hdr, &sfh);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000831 if (size > XFS_IFORK_DSIZE(dp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 return 0;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 /*
835 * If it works, do the conversion.
836 */
837 return xfs_dir2_block_to_sf(args, bp, size, &sfh);
838}
839
840/*
841 * Replace an entry in a V2 block directory.
842 * Change the inode number to the new value.
843 */
844int /* error */
845xfs_dir2_block_replace(
846 xfs_da_args_t *args) /* directory operation args */
847{
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200848 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000850 struct xfs_buf *bp; /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 xfs_dir2_block_tail_t *btp; /* block tail */
852 xfs_dir2_data_entry_t *dep; /* block data entry */
853 xfs_inode_t *dp; /* incore inode */
854 int ent; /* leaf entry index */
855 int error; /* error return value */
856 xfs_mount_t *mp; /* filesystem mount point */
857
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000858 trace_xfs_dir2_block_replace(args);
859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 /*
861 * Lookup the entry in the directory. Get buffer and entry index.
862 * This will always succeed since the caller has already done a lookup.
863 */
864 if ((error = xfs_dir2_block_lookup_int(args, &bp, &ent))) {
865 return error;
866 }
867 dp = args->dp;
868 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000869 hdr = bp->b_addr;
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200870 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000871 blp = xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 /*
873 * Point to the data entry we need to change.
874 */
Dave Chinner30028032014-06-06 15:08:18 +1000875 dep = (xfs_dir2_data_entry_t *)((char *)hdr +
876 xfs_dir2_dataptr_to_off(args->geo,
877 be32_to_cpu(blp[ent].address)));
Christoph Hellwigff9901c2006-06-09 14:48:37 +1000878 ASSERT(be64_to_cpu(dep->inumber) != args->inumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 /*
880 * Change the inode number to the new value.
881 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +1000882 dep->inumber = cpu_to_be64(args->inumber);
Dave Chinner9d23fc82013-10-29 22:11:48 +1100883 dp->d_ops->data_put_ftype(dep, args->filetype);
884 xfs_dir2_data_log_entry(args->trans, dp, bp, dep);
Dave Chinner33363fe2013-04-03 16:11:22 +1100885 xfs_dir3_data_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 return 0;
887}
888
889/*
890 * Qsort comparison routine for the block leaf entries.
891 */
892static int /* sort order */
893xfs_dir2_block_sort(
894 const void *a, /* first leaf entry */
895 const void *b) /* second leaf entry */
896{
897 const xfs_dir2_leaf_entry_t *la; /* first leaf entry */
898 const xfs_dir2_leaf_entry_t *lb; /* second leaf entry */
899
900 la = a;
901 lb = b;
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100902 return be32_to_cpu(la->hashval) < be32_to_cpu(lb->hashval) ? -1 :
903 (be32_to_cpu(la->hashval) > be32_to_cpu(lb->hashval) ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904}
905
906/*
907 * Convert a V2 leaf directory to a V2 block directory if possible.
908 */
909int /* error */
910xfs_dir2_leaf_to_block(
911 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000912 struct xfs_buf *lbp, /* leaf buffer */
913 struct xfs_buf *dbp) /* data buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914{
Nathan Scott68b3a102006-03-17 17:27:19 +1100915 __be16 *bestsp; /* leaf bests table */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200916 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 xfs_dir2_block_tail_t *btp; /* block tail */
918 xfs_inode_t *dp; /* incore directory inode */
919 xfs_dir2_data_unused_t *dup; /* unused data entry */
920 int error; /* error return value */
921 int from; /* leaf from index */
922 xfs_dir2_leaf_t *leaf; /* leaf structure */
923 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
924 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
925 xfs_mount_t *mp; /* file system mount point */
926 int needlog; /* need to log data header */
927 int needscan; /* need to scan for bestfree */
928 xfs_dir2_sf_hdr_t sfh; /* shortform header */
929 int size; /* bytes used */
Nathan Scott3d693c62006-03-17 17:28:27 +1100930 __be16 *tagp; /* end of entry (tag) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 int to; /* block/leaf to index */
932 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner24df33b2013-04-12 07:30:21 +1000933 struct xfs_dir2_leaf_entry *ents;
934 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000936 trace_xfs_dir2_leaf_to_block(args);
937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 dp = args->dp;
939 tp = args->trans;
940 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000941 leaf = lbp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100942 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +1100943 ents = dp->d_ops->leaf_ents_p(leaf);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000944 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000945
946 ASSERT(leafhdr.magic == XFS_DIR2_LEAF1_MAGIC ||
947 leafhdr.magic == XFS_DIR3_LEAF1_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 /*
949 * If there are data blocks other than the first one, take this
950 * opportunity to remove trailing empty data blocks that may have
951 * been left behind during no-space-reservation operations.
952 * These will show up in the leaf bests table.
953 */
954 while (dp->i_d.di_size > mp->m_dirblksize) {
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100955 int hdrsz;
956
Dave Chinner1c9a5b22013-10-30 09:15:02 +1100957 hdrsz = dp->d_ops->data_entry_offset;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000958 bestsp = xfs_dir2_leaf_bests_p(ltp);
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100959 if (be16_to_cpu(bestsp[be32_to_cpu(ltp->bestcount) - 1]) ==
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100960 mp->m_dirblksize - hdrsz) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 if ((error =
962 xfs_dir2_leaf_trim_data(args, lbp,
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100963 (xfs_dir2_db_t)(be32_to_cpu(ltp->bestcount) - 1))))
Dave Chinner1d9025e2012-06-22 18:50:14 +1000964 return error;
965 } else
966 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 }
968 /*
969 * Read the data block if we don't already have it, give up if it fails.
970 */
Dave Chinner4bb20a82012-11-12 22:54:10 +1100971 if (!dbp) {
Dave Chinner7dda6e82014-06-06 15:11:18 +1000972 error = xfs_dir3_data_read(tp, dp, args->geo->datablk, -1, &dbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +1100973 if (error)
974 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 }
Dave Chinner1d9025e2012-06-22 18:50:14 +1000976 hdr = dbp->b_addr;
Dave Chinner33363fe2013-04-03 16:11:22 +1100977 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
978 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC));
979
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 /*
981 * Size of the "leaf" area in the block.
982 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200983 size = (uint)sizeof(xfs_dir2_block_tail_t) +
Dave Chinner24df33b2013-04-12 07:30:21 +1000984 (uint)sizeof(*lep) * (leafhdr.count - leafhdr.stale);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 /*
986 * Look at the last data entry.
987 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200988 tagp = (__be16 *)((char *)hdr + mp->m_dirblksize) - 1;
989 dup = (xfs_dir2_data_unused_t *)((char *)hdr + be16_to_cpu(*tagp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 /*
991 * If it's not free or is too short we can't do it.
992 */
Nathan Scottad354eb2006-03-17 17:27:37 +1100993 if (be16_to_cpu(dup->freetag) != XFS_DIR2_DATA_FREE_TAG ||
Dave Chinner1d9025e2012-06-22 18:50:14 +1000994 be16_to_cpu(dup->length) < size)
995 return 0;
996
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 /*
998 * Start converting it to block form.
999 */
Dave Chinnerd75afeb2013-04-03 16:11:29 +11001000 xfs_dir3_block_init(mp, tp, dbp, dp);
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11001001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 needlog = 1;
1003 needscan = 0;
1004 /*
1005 * Use up the space at the end of the block (blp/btp).
1006 */
Dave Chinner2ca98772013-10-29 22:11:49 +11001007 xfs_dir2_data_use_free(tp, dp, dbp, dup, mp->m_dirblksize - size, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 &needlog, &needscan);
1009 /*
1010 * Initialize the block tail.
1011 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001012 btp = xfs_dir2_block_tail_p(mp, hdr);
Dave Chinner24df33b2013-04-12 07:30:21 +10001013 btp->count = cpu_to_be32(leafhdr.count - leafhdr.stale);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 btp->stale = 0;
1015 xfs_dir2_block_log_tail(tp, dbp);
1016 /*
1017 * Initialize the block leaf area. We compact out stale entries.
1018 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001019 lep = xfs_dir2_block_leaf_p(btp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001020 for (from = to = 0; from < leafhdr.count; from++) {
1021 if (ents[from].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 continue;
Dave Chinner24df33b2013-04-12 07:30:21 +10001023 lep[to++] = ents[from];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 }
Nathan Scotte922fff2006-03-17 17:27:56 +11001025 ASSERT(to == be32_to_cpu(btp->count));
1026 xfs_dir2_block_log_leaf(tp, dbp, 0, be32_to_cpu(btp->count) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 /*
1028 * Scan the bestfree if we need it and log the data block header.
1029 */
1030 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +11001031 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 if (needlog)
Dave Chinner2ca98772013-10-29 22:11:49 +11001033 xfs_dir2_data_log_header(tp, dp, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 /*
1035 * Pitch the old leaf block.
1036 */
Dave Chinner7dda6e82014-06-06 15:11:18 +10001037 error = xfs_da_shrink_inode(args, args->geo->leafblk, lbp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001038 if (error)
1039 return error;
1040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 /*
1042 * Now see if the resulting block can be shrunken to shortform.
1043 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001044 size = xfs_dir2_block_sfsize(dp, hdr, &sfh);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001045 if (size > XFS_IFORK_DSIZE(dp))
1046 return 0;
1047
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 return xfs_dir2_block_to_sf(args, dbp, size, &sfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049}
1050
1051/*
1052 * Convert the shortform directory to block form.
1053 */
1054int /* error */
1055xfs_dir2_sf_to_block(
1056 xfs_da_args_t *args) /* operation arguments */
1057{
1058 xfs_dir2_db_t blkno; /* dir-relative block # (0) */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001059 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001061 struct xfs_buf *bp; /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 xfs_dir2_block_tail_t *btp; /* block tail pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 xfs_dir2_data_entry_t *dep; /* data entry pointer */
1064 xfs_inode_t *dp; /* incore directory inode */
1065 int dummy; /* trash */
1066 xfs_dir2_data_unused_t *dup; /* unused entry pointer */
1067 int endoffset; /* end of data objects */
1068 int error; /* error return value */
1069 int i; /* index */
1070 xfs_mount_t *mp; /* filesystem mount point */
1071 int needlog; /* need to log block header */
1072 int needscan; /* need to scan block freespc */
1073 int newoffset; /* offset from current entry */
1074 int offset; /* target block offset */
1075 xfs_dir2_sf_entry_t *sfep; /* sf entry pointer */
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001076 xfs_dir2_sf_hdr_t *oldsfp; /* old shortform header */
1077 xfs_dir2_sf_hdr_t *sfp; /* shortform header */
Nathan Scott3d693c62006-03-17 17:28:27 +11001078 __be16 *tagp; /* end of data entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 xfs_trans_t *tp; /* transaction pointer */
Barry Naujok5163f952008-05-21 16:41:01 +10001080 struct xfs_name name;
Dave Chinnerf3508bc2013-07-10 07:04:00 +10001081 struct xfs_ifork *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001083 trace_xfs_dir2_sf_to_block(args);
1084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 dp = args->dp;
1086 tp = args->trans;
1087 mp = dp->i_mount;
Dave Chinnerf3508bc2013-07-10 07:04:00 +10001088 ifp = XFS_IFORK_PTR(dp, XFS_DATA_FORK);
1089 ASSERT(ifp->if_flags & XFS_IFINLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 /*
1091 * Bomb out if the shortform directory is way too short.
1092 */
1093 if (dp->i_d.di_size < offsetof(xfs_dir2_sf_hdr_t, parent)) {
1094 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1095 return XFS_ERROR(EIO);
1096 }
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001097
Dave Chinnerf3508bc2013-07-10 07:04:00 +10001098 oldsfp = (xfs_dir2_sf_hdr_t *)ifp->if_u1.if_data;
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001099
Dave Chinnerf3508bc2013-07-10 07:04:00 +10001100 ASSERT(ifp->if_bytes == dp->i_d.di_size);
1101 ASSERT(ifp->if_u1.if_data != NULL);
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001102 ASSERT(dp->i_d.di_size >= xfs_dir2_sf_hdr_size(oldsfp->i8count));
Dave Chinnerf3508bc2013-07-10 07:04:00 +10001103 ASSERT(dp->i_d.di_nextents == 0);
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001104
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 /*
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001106 * Copy the directory into a temporary buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 * Then pitch the incore inode data so we can make extents.
1108 */
Dave Chinnerf3508bc2013-07-10 07:04:00 +10001109 sfp = kmem_alloc(ifp->if_bytes, KM_SLEEP);
1110 memcpy(sfp, oldsfp, ifp->if_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
Dave Chinnerf3508bc2013-07-10 07:04:00 +10001112 xfs_idata_realloc(dp, -ifp->if_bytes, XFS_DATA_FORK);
1113 xfs_bmap_local_to_extents_empty(dp, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 dp->i_d.di_size = 0;
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001115
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 /*
1117 * Add block 0 to the inode.
1118 */
1119 error = xfs_dir2_grow_inode(args, XFS_DIR2_DATA_SPACE, &blkno);
1120 if (error) {
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001121 kmem_free(sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 return error;
1123 }
1124 /*
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11001125 * Initialize the data block, then convert it to block format.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11001127 error = xfs_dir3_data_init(args, blkno, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 if (error) {
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001129 kmem_free(sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 return error;
1131 }
Dave Chinnerd75afeb2013-04-03 16:11:29 +11001132 xfs_dir3_block_init(mp, tp, bp, dp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001133 hdr = bp->b_addr;
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11001134
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 /*
1136 * Compute size of block "tail" area.
1137 */
1138 i = (uint)sizeof(*btp) +
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001139 (sfp->count + 2) * (uint)sizeof(xfs_dir2_leaf_entry_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 /*
1141 * The whole thing is initialized to free by the init routine.
1142 * Say we're using the leaf and tail area.
1143 */
Dave Chinner2ca98772013-10-29 22:11:49 +11001144 dup = dp->d_ops->data_unused_p(hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 needlog = needscan = 0;
Dave Chinner2ca98772013-10-29 22:11:49 +11001146 xfs_dir2_data_use_free(tp, dp, bp, dup, mp->m_dirblksize - i, i, &needlog,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 &needscan);
1148 ASSERT(needscan == 0);
1149 /*
1150 * Fill in the tail.
1151 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001152 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001153 btp->count = cpu_to_be32(sfp->count + 2); /* ., .. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 btp->stale = 0;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001155 blp = xfs_dir2_block_leaf_p(btp);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001156 endoffset = (uint)((char *)blp - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 /*
1158 * Remove the freespace, we'll manage it.
1159 */
Dave Chinner2ca98772013-10-29 22:11:49 +11001160 xfs_dir2_data_use_free(tp, dp, bp, dup,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001161 (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr),
Nathan Scottad354eb2006-03-17 17:27:37 +11001162 be16_to_cpu(dup->length), &needlog, &needscan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 /*
1164 * Create entry for .
1165 */
Dave Chinner9d23fc82013-10-29 22:11:48 +11001166 dep = dp->d_ops->data_dot_entry_p(hdr);
Christoph Hellwigff9901c2006-06-09 14:48:37 +10001167 dep->inumber = cpu_to_be64(dp->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 dep->namelen = 1;
1169 dep->name[0] = '.';
Dave Chinner9d23fc82013-10-29 22:11:48 +11001170 dp->d_ops->data_put_ftype(dep, XFS_DIR3_FT_DIR);
1171 tagp = dp->d_ops->data_entry_tag_p(dep);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001172 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Dave Chinner9d23fc82013-10-29 22:11:48 +11001173 xfs_dir2_data_log_entry(tp, dp, bp, dep);
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001174 blp[0].hashval = cpu_to_be32(xfs_dir_hash_dot);
Eric Sandeen25994052014-04-14 19:02:30 +10001175 blp[0].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001176 (char *)dep - (char *)hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 /*
1178 * Create entry for ..
1179 */
Dave Chinner9d23fc82013-10-29 22:11:48 +11001180 dep = dp->d_ops->data_dotdot_entry_p(hdr);
Dave Chinner47401752013-10-29 22:11:47 +11001181 dep->inumber = cpu_to_be64(dp->d_ops->sf_get_parent_ino(sfp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 dep->namelen = 2;
1183 dep->name[0] = dep->name[1] = '.';
Dave Chinner9d23fc82013-10-29 22:11:48 +11001184 dp->d_ops->data_put_ftype(dep, XFS_DIR3_FT_DIR);
1185 tagp = dp->d_ops->data_entry_tag_p(dep);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001186 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Dave Chinner9d23fc82013-10-29 22:11:48 +11001187 xfs_dir2_data_log_entry(tp, dp, bp, dep);
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001188 blp[1].hashval = cpu_to_be32(xfs_dir_hash_dotdot);
Eric Sandeen25994052014-04-14 19:02:30 +10001189 blp[1].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001190 (char *)dep - (char *)hdr));
Dave Chinner1c9a5b22013-10-30 09:15:02 +11001191 offset = dp->d_ops->data_first_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 /*
1193 * Loop over existing entries, stuff them in.
1194 */
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001195 i = 0;
1196 if (!sfp->count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 sfep = NULL;
1198 else
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001199 sfep = xfs_dir2_sf_firstentry(sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 /*
1201 * Need to preserve the existing offset values in the sf directory.
1202 * Insert holes (unused entries) where necessary.
1203 */
1204 while (offset < endoffset) {
1205 /*
1206 * sfep is null when we reach the end of the list.
1207 */
1208 if (sfep == NULL)
1209 newoffset = endoffset;
1210 else
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001211 newoffset = xfs_dir2_sf_get_offset(sfep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 /*
1213 * There should be a hole here, make one.
1214 */
1215 if (offset < newoffset) {
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001216 dup = (xfs_dir2_data_unused_t *)((char *)hdr + offset);
Nathan Scottad354eb2006-03-17 17:27:37 +11001217 dup->freetag = cpu_to_be16(XFS_DIR2_DATA_FREE_TAG);
1218 dup->length = cpu_to_be16(newoffset - offset);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001219 *xfs_dir2_data_unused_tag_p(dup) = cpu_to_be16(
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001220 ((char *)dup - (char *)hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 xfs_dir2_data_log_unused(tp, bp, dup);
Dave Chinner2ca98772013-10-29 22:11:49 +11001222 xfs_dir2_data_freeinsert(hdr,
1223 dp->d_ops->data_bestfree_p(hdr),
1224 dup, &dummy);
Nathan Scottad354eb2006-03-17 17:27:37 +11001225 offset += be16_to_cpu(dup->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 continue;
1227 }
1228 /*
1229 * Copy a real entry.
1230 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001231 dep = (xfs_dir2_data_entry_t *)((char *)hdr + newoffset);
Dave Chinner47401752013-10-29 22:11:47 +11001232 dep->inumber = cpu_to_be64(dp->d_ops->sf_get_ino(sfp, sfep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 dep->namelen = sfep->namelen;
Dave Chinner9d23fc82013-10-29 22:11:48 +11001234 dp->d_ops->data_put_ftype(dep, dp->d_ops->sf_get_ftype(sfep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 memcpy(dep->name, sfep->name, dep->namelen);
Dave Chinner9d23fc82013-10-29 22:11:48 +11001236 tagp = dp->d_ops->data_entry_tag_p(dep);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001237 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Dave Chinner9d23fc82013-10-29 22:11:48 +11001238 xfs_dir2_data_log_entry(tp, dp, bp, dep);
Barry Naujok5163f952008-05-21 16:41:01 +10001239 name.name = sfep->name;
1240 name.len = sfep->namelen;
1241 blp[2 + i].hashval = cpu_to_be32(mp->m_dirnameops->
1242 hashname(&name));
Eric Sandeen25994052014-04-14 19:02:30 +10001243 blp[2 + i].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001244 (char *)dep - (char *)hdr));
1245 offset = (int)((char *)(tagp + 1) - (char *)hdr);
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001246 if (++i == sfp->count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 sfep = NULL;
1248 else
Dave Chinner32c54832013-10-29 22:11:46 +11001249 sfep = dp->d_ops->sf_nextentry(sfp, sfep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 }
1251 /* Done with the temporary buffer */
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001252 kmem_free(sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 /*
1254 * Sort the leaf entries by hash value.
1255 */
Nathan Scotte922fff2006-03-17 17:27:56 +11001256 xfs_sort(blp, be32_to_cpu(btp->count), sizeof(*blp), xfs_dir2_block_sort);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 /*
1258 * Log the leaf entry area and tail.
1259 * Already logged the header in data_init, ignore needlog.
1260 */
1261 ASSERT(needscan == 0);
Nathan Scotte922fff2006-03-17 17:27:56 +11001262 xfs_dir2_block_log_leaf(tp, bp, 0, be32_to_cpu(btp->count) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 xfs_dir2_block_log_tail(tp, bp);
Dave Chinner33363fe2013-04-03 16:11:22 +11001264 xfs_dir3_data_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 return 0;
1266}