blob: 90cdbf4b5f1902f983f504b6b704cd2a433ddfbb [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
92 if ((xfs_sb_version_hascrc(&mp->m_sb) &&
93 !xfs_verify_cksum(bp->b_addr, BBTOB(bp->b_length),
94 XFS_DIR3_DATA_CRC_OFF)) ||
95 !xfs_dir3_block_verify(bp)) {
96 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
Dave Chinner82025d72012-11-12 22:54:12 +110097 xfs_buf_ioerror(bp, EFSCORRUPTED);
98 }
Dave Chinner612cfbf2012-11-14 17:52:32 +110099}
Dave Chinner82025d72012-11-12 22:54:12 +1100100
Dave Chinner612cfbf2012-11-14 17:52:32 +1100101static void
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100102xfs_dir3_block_write_verify(
Dave Chinner1813dd62012-11-14 17:54:40 +1100103 struct xfs_buf *bp)
104{
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100105 struct xfs_mount *mp = bp->b_target->bt_mount;
106 struct xfs_buf_log_item *bip = bp->b_fspriv;
107 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
108
109 if (!xfs_dir3_block_verify(bp)) {
110 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
111 xfs_buf_ioerror(bp, EFSCORRUPTED);
112 return;
113 }
114
115 if (!xfs_sb_version_hascrc(&mp->m_sb))
116 return;
117
118 if (bip)
119 hdr3->lsn = cpu_to_be64(bip->bli_item.li_lsn);
120
121 xfs_update_cksum(bp->b_addr, BBTOB(bp->b_length), XFS_DIR3_DATA_CRC_OFF);
Dave Chinner1813dd62012-11-14 17:54:40 +1100122}
123
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100124const struct xfs_buf_ops xfs_dir3_block_buf_ops = {
125 .verify_read = xfs_dir3_block_read_verify,
126 .verify_write = xfs_dir3_block_write_verify,
Dave Chinner1813dd62012-11-14 17:54:40 +1100127};
Dave Chinner82025d72012-11-12 22:54:12 +1100128
Dave Chinner4a8af272013-08-12 20:49:36 +1000129int
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100130xfs_dir3_block_read(
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100131 struct xfs_trans *tp,
132 struct xfs_inode *dp,
133 struct xfs_buf **bpp)
134{
135 struct xfs_mount *mp = dp->i_mount;
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100136 int err;
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100137
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100138 err = xfs_da_read_buf(tp, dp, mp->m_dirdatablk, -1, bpp,
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100139 XFS_DATA_FORK, &xfs_dir3_block_buf_ops);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100140 if (!err && tp)
Dave Chinner61fe1352013-04-03 16:11:30 +1100141 xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_DIR_BLOCK_BUF);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100142 return err;
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100143}
144
145static void
146xfs_dir3_block_init(
147 struct xfs_mount *mp,
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100148 struct xfs_trans *tp,
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100149 struct xfs_buf *bp,
150 struct xfs_inode *dp)
151{
152 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
153
154 bp->b_ops = &xfs_dir3_block_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100155 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_BLOCK_BUF);
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100156
157 if (xfs_sb_version_hascrc(&mp->m_sb)) {
158 memset(hdr3, 0, sizeof(*hdr3));
159 hdr3->magic = cpu_to_be32(XFS_DIR3_BLOCK_MAGIC);
160 hdr3->blkno = cpu_to_be64(bp->b_bn);
161 hdr3->owner = cpu_to_be64(dp->i_ino);
162 uuid_copy(&hdr3->uuid, &mp->m_sb.sb_uuid);
163 return;
164
165 }
166 hdr3->magic = cpu_to_be32(XFS_DIR2_BLOCK_MAGIC);
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100167}
168
169static void
170xfs_dir2_block_need_space(
Dave Chinner2ca98772013-10-29 22:11:49 +1100171 struct xfs_inode *dp,
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100172 struct xfs_dir2_data_hdr *hdr,
173 struct xfs_dir2_block_tail *btp,
174 struct xfs_dir2_leaf_entry *blp,
175 __be16 **tagpp,
176 struct xfs_dir2_data_unused **dupp,
177 struct xfs_dir2_data_unused **enddupp,
178 int *compact,
179 int len)
180{
181 struct xfs_dir2_data_free *bf;
182 __be16 *tagp = NULL;
183 struct xfs_dir2_data_unused *dup = NULL;
184 struct xfs_dir2_data_unused *enddup = NULL;
185
186 *compact = 0;
Dave Chinner2ca98772013-10-29 22:11:49 +1100187 bf = dp->d_ops->data_bestfree_p(hdr);
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100188
189 /*
190 * If there are stale entries we'll use one for the leaf.
191 */
192 if (btp->stale) {
193 if (be16_to_cpu(bf[0].length) >= len) {
194 /*
195 * The biggest entry enough to avoid compaction.
196 */
197 dup = (xfs_dir2_data_unused_t *)
198 ((char *)hdr + be16_to_cpu(bf[0].offset));
199 goto out;
200 }
201
202 /*
203 * Will need to compact to make this work.
204 * Tag just before the first leaf entry.
205 */
206 *compact = 1;
207 tagp = (__be16 *)blp - 1;
208
209 /* Data object just before the first leaf entry. */
210 dup = (xfs_dir2_data_unused_t *)((char *)hdr + be16_to_cpu(*tagp));
211
212 /*
213 * If it's not free then the data will go where the
214 * leaf data starts now, if it works at all.
215 */
216 if (be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
217 if (be16_to_cpu(dup->length) + (be32_to_cpu(btp->stale) - 1) *
218 (uint)sizeof(*blp) < len)
219 dup = NULL;
220 } else if ((be32_to_cpu(btp->stale) - 1) * (uint)sizeof(*blp) < len)
221 dup = NULL;
222 else
223 dup = (xfs_dir2_data_unused_t *)blp;
224 goto out;
225 }
226
227 /*
228 * no stale entries, so just use free space.
229 * Tag just before the first leaf entry.
230 */
231 tagp = (__be16 *)blp - 1;
232
233 /* Data object just before the first leaf entry. */
234 enddup = (xfs_dir2_data_unused_t *)((char *)hdr + be16_to_cpu(*tagp));
235
236 /*
237 * If it's not free then can't do this add without cleaning up:
238 * the space before the first leaf entry needs to be free so it
239 * can be expanded to hold the pointer to the new entry.
240 */
241 if (be16_to_cpu(enddup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
242 /*
243 * Check out the biggest freespace and see if it's the same one.
244 */
245 dup = (xfs_dir2_data_unused_t *)
246 ((char *)hdr + be16_to_cpu(bf[0].offset));
247 if (dup != enddup) {
248 /*
249 * Not the same free entry, just check its length.
250 */
251 if (be16_to_cpu(dup->length) < len)
252 dup = NULL;
253 goto out;
254 }
255
256 /*
257 * It is the biggest freespace, can it hold the leaf too?
258 */
259 if (be16_to_cpu(dup->length) < len + (uint)sizeof(*blp)) {
260 /*
261 * Yes, use the second-largest entry instead if it works.
262 */
263 if (be16_to_cpu(bf[1].length) >= len)
264 dup = (xfs_dir2_data_unused_t *)
265 ((char *)hdr + be16_to_cpu(bf[1].offset));
266 else
267 dup = NULL;
268 }
269 }
270out:
271 *tagpp = tagp;
272 *dupp = dup;
273 *enddupp = enddup;
274}
275
276/*
277 * compact the leaf entries.
278 * Leave the highest-numbered stale entry stale.
279 * XXX should be the one closest to mid but mid is not yet computed.
280 */
281static void
282xfs_dir2_block_compact(
283 struct xfs_trans *tp,
Dave Chinner9d23fc82013-10-29 22:11:48 +1100284 struct xfs_inode *dp,
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100285 struct xfs_buf *bp,
286 struct xfs_dir2_data_hdr *hdr,
287 struct xfs_dir2_block_tail *btp,
288 struct xfs_dir2_leaf_entry *blp,
289 int *needlog,
290 int *lfloghigh,
291 int *lfloglow)
292{
293 int fromidx; /* source leaf index */
294 int toidx; /* target leaf index */
295 int needscan = 0;
296 int highstale; /* high stale index */
297
298 fromidx = toidx = be32_to_cpu(btp->count) - 1;
299 highstale = *lfloghigh = -1;
300 for (; fromidx >= 0; fromidx--) {
301 if (blp[fromidx].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR)) {
302 if (highstale == -1)
303 highstale = toidx;
304 else {
305 if (*lfloghigh == -1)
306 *lfloghigh = toidx;
307 continue;
308 }
309 }
310 if (fromidx < toidx)
311 blp[toidx] = blp[fromidx];
312 toidx--;
313 }
314 *lfloglow = toidx + 1 - (be32_to_cpu(btp->stale) - 1);
315 *lfloghigh -= be32_to_cpu(btp->stale) - 1;
316 be32_add_cpu(&btp->count, -(be32_to_cpu(btp->stale) - 1));
Dave Chinner2ca98772013-10-29 22:11:49 +1100317 xfs_dir2_data_make_free(tp, dp, bp,
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100318 (xfs_dir2_data_aoff_t)((char *)blp - (char *)hdr),
319 (xfs_dir2_data_aoff_t)((be32_to_cpu(btp->stale) - 1) * sizeof(*blp)),
320 needlog, &needscan);
321 blp += be32_to_cpu(btp->stale) - 1;
322 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);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000539 blp[mid].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(mp,
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 +
Barry Naujok384f3ce2008-05-21 16:58:22 +1000642 xfs_dir2_dataptr_to_off(mp, be32_to_cpu(blp[ent].address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 /*
Barry Naujok384f3ce2008-05-21 16:58:22 +1000644 * Fill in inode number, CI name if appropriate, release the block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +1000646 args->inumber = be64_to_cpu(dep->inumber);
Dave Chinner9d23fc82013-10-29 22:11:48 +1100647 args->filetype = dp->d_ops->data_get_ftype(dep);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000648 error = xfs_dir_cilookup_result(args, dep->name, dep->namelen);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000649 xfs_trans_brelse(args->trans, bp);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000650 return XFS_ERROR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651}
652
653/*
654 * Internal block lookup routine.
655 */
656static int /* error */
657xfs_dir2_block_lookup_int(
658 xfs_da_args_t *args, /* dir lookup arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000659 struct xfs_buf **bpp, /* returned block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 int *entno) /* returned entry number */
661{
662 xfs_dir2_dataptr_t addr; /* data entry address */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200663 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000665 struct xfs_buf *bp; /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 xfs_dir2_block_tail_t *btp; /* block tail */
667 xfs_dir2_data_entry_t *dep; /* block data entry */
668 xfs_inode_t *dp; /* incore inode */
669 int error; /* error return value */
670 xfs_dahash_t hash; /* found hash value */
671 int high; /* binary search high index */
672 int low; /* binary search low index */
673 int mid; /* binary search current idx */
674 xfs_mount_t *mp; /* filesystem mount point */
675 xfs_trans_t *tp; /* transaction pointer */
Barry Naujok5163f952008-05-21 16:41:01 +1000676 enum xfs_dacmp cmp; /* comparison result */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
678 dp = args->dp;
679 tp = args->trans;
680 mp = dp->i_mount;
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100681
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100682 error = xfs_dir3_block_read(tp, dp, &bp);
Dave Chinner4bb20a82012-11-12 22:54:10 +1100683 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 return error;
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100685
Dave Chinner1d9025e2012-06-22 18:50:14 +1000686 hdr = bp->b_addr;
Dave Chinner33363fe2013-04-03 16:11:22 +1100687 xfs_dir3_data_check(dp, bp);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200688 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000689 blp = xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 /*
691 * Loop doing a binary search for our hash value.
692 * Find our entry, ENOENT if it's not there.
693 */
Nathan Scotte922fff2006-03-17 17:27:56 +1100694 for (low = 0, high = be32_to_cpu(btp->count) - 1; ; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 ASSERT(low <= high);
696 mid = (low + high) >> 1;
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100697 if ((hash = be32_to_cpu(blp[mid].hashval)) == args->hashval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 break;
699 if (hash < args->hashval)
700 low = mid + 1;
701 else
702 high = mid - 1;
703 if (low > high) {
Barry Naujok6a178102008-05-21 16:42:05 +1000704 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000705 xfs_trans_brelse(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 return XFS_ERROR(ENOENT);
707 }
708 }
709 /*
710 * Back up to the first one with the right hash value.
711 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100712 while (mid > 0 && be32_to_cpu(blp[mid - 1].hashval) == args->hashval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 mid--;
714 }
715 /*
716 * Now loop forward through all the entries with the
717 * right hash value looking for our name.
718 */
719 do {
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100720 if ((addr = be32_to_cpu(blp[mid].address)) == XFS_DIR2_NULL_DATAPTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 continue;
722 /*
723 * Get pointer to the entry from the leaf.
724 */
725 dep = (xfs_dir2_data_entry_t *)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200726 ((char *)hdr + xfs_dir2_dataptr_to_off(mp, addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 /*
Barry Naujok5163f952008-05-21 16:41:01 +1000728 * Compare name and if it's an exact match, return the index
729 * and buffer. If it's the first case-insensitive match, store
730 * the index and buffer and continue looking for an exact match.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 */
Barry Naujok5163f952008-05-21 16:41:01 +1000732 cmp = mp->m_dirnameops->compname(args, dep->name, dep->namelen);
733 if (cmp != XFS_CMP_DIFFERENT && cmp != args->cmpresult) {
734 args->cmpresult = cmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 *bpp = bp;
736 *entno = mid;
Barry Naujok5163f952008-05-21 16:41:01 +1000737 if (cmp == XFS_CMP_EXACT)
738 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 }
Barry Naujok5163f952008-05-21 16:41:01 +1000740 } while (++mid < be32_to_cpu(btp->count) &&
741 be32_to_cpu(blp[mid].hashval) == hash);
742
Barry Naujok6a178102008-05-21 16:42:05 +1000743 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
Barry Naujok5163f952008-05-21 16:41:01 +1000744 /*
745 * Here, we can only be doing a lookup (not a rename or replace).
746 * If a case-insensitive match was found earlier, return success.
747 */
748 if (args->cmpresult == XFS_CMP_CASE)
749 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 /*
751 * No match, release the buffer and return ENOENT.
752 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000753 xfs_trans_brelse(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 return XFS_ERROR(ENOENT);
755}
756
757/*
758 * Remove an entry from a block format directory.
759 * If that makes the block small enough to fit in shortform, transform it.
760 */
761int /* error */
762xfs_dir2_block_removename(
763 xfs_da_args_t *args) /* directory operation args */
764{
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200765 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 xfs_dir2_leaf_entry_t *blp; /* block leaf pointer */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000767 struct xfs_buf *bp; /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 xfs_dir2_block_tail_t *btp; /* block tail */
769 xfs_dir2_data_entry_t *dep; /* block data entry */
770 xfs_inode_t *dp; /* incore inode */
771 int ent; /* block leaf entry index */
772 int error; /* error return value */
773 xfs_mount_t *mp; /* filesystem mount point */
774 int needlog; /* need to log block header */
775 int needscan; /* need to fixup bestfree */
776 xfs_dir2_sf_hdr_t sfh; /* shortform header */
777 int size; /* shortform size */
778 xfs_trans_t *tp; /* transaction pointer */
779
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000780 trace_xfs_dir2_block_removename(args);
781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 /*
783 * Look up the entry in the block. Gets the buffer and entry index.
784 * It will always be there, the vnodeops level does a lookup first.
785 */
786 if ((error = xfs_dir2_block_lookup_int(args, &bp, &ent))) {
787 return error;
788 }
789 dp = args->dp;
790 tp = args->trans;
791 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000792 hdr = bp->b_addr;
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200793 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000794 blp = xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 /*
796 * Point to the data entry using the leaf entry.
797 */
798 dep = (xfs_dir2_data_entry_t *)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200799 ((char *)hdr + xfs_dir2_dataptr_to_off(mp, be32_to_cpu(blp[ent].address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 /*
801 * Mark the data entry's space free.
802 */
803 needlog = needscan = 0;
Dave Chinner2ca98772013-10-29 22:11:49 +1100804 xfs_dir2_data_make_free(tp, dp, bp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200805 (xfs_dir2_data_aoff_t)((char *)dep - (char *)hdr),
Dave Chinner9d23fc82013-10-29 22:11:48 +1100806 dp->d_ops->data_entsize(dep->namelen), &needlog, &needscan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 /*
808 * Fix up the block tail.
809 */
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800810 be32_add_cpu(&btp->stale, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 xfs_dir2_block_log_tail(tp, bp);
812 /*
813 * Remove the leaf entry by marking it stale.
814 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100815 blp[ent].address = cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 xfs_dir2_block_log_leaf(tp, bp, ent, ent);
817 /*
818 * Fix up bestfree, log the header if necessary.
819 */
820 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +1100821 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 if (needlog)
Dave Chinner2ca98772013-10-29 22:11:49 +1100823 xfs_dir2_data_log_header(tp, dp, bp);
Dave Chinner33363fe2013-04-03 16:11:22 +1100824 xfs_dir3_data_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 /*
826 * See if the size as a shortform is good enough.
827 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200828 size = xfs_dir2_block_sfsize(dp, hdr, &sfh);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000829 if (size > XFS_IFORK_DSIZE(dp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 return 0;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 /*
833 * If it works, do the conversion.
834 */
835 return xfs_dir2_block_to_sf(args, bp, size, &sfh);
836}
837
838/*
839 * Replace an entry in a V2 block directory.
840 * Change the inode number to the new value.
841 */
842int /* error */
843xfs_dir2_block_replace(
844 xfs_da_args_t *args) /* directory operation args */
845{
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200846 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000848 struct xfs_buf *bp; /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 xfs_dir2_block_tail_t *btp; /* block tail */
850 xfs_dir2_data_entry_t *dep; /* block data entry */
851 xfs_inode_t *dp; /* incore inode */
852 int ent; /* leaf entry index */
853 int error; /* error return value */
854 xfs_mount_t *mp; /* filesystem mount point */
855
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000856 trace_xfs_dir2_block_replace(args);
857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 /*
859 * Lookup the entry in the directory. Get buffer and entry index.
860 * This will always succeed since the caller has already done a lookup.
861 */
862 if ((error = xfs_dir2_block_lookup_int(args, &bp, &ent))) {
863 return error;
864 }
865 dp = args->dp;
866 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000867 hdr = bp->b_addr;
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200868 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000869 blp = xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 /*
871 * Point to the data entry we need to change.
872 */
873 dep = (xfs_dir2_data_entry_t *)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200874 ((char *)hdr + xfs_dir2_dataptr_to_off(mp, be32_to_cpu(blp[ent].address)));
Christoph Hellwigff9901c2006-06-09 14:48:37 +1000875 ASSERT(be64_to_cpu(dep->inumber) != args->inumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 /*
877 * Change the inode number to the new value.
878 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +1000879 dep->inumber = cpu_to_be64(args->inumber);
Dave Chinner9d23fc82013-10-29 22:11:48 +1100880 dp->d_ops->data_put_ftype(dep, args->filetype);
881 xfs_dir2_data_log_entry(args->trans, dp, bp, dep);
Dave Chinner33363fe2013-04-03 16:11:22 +1100882 xfs_dir3_data_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 return 0;
884}
885
886/*
887 * Qsort comparison routine for the block leaf entries.
888 */
889static int /* sort order */
890xfs_dir2_block_sort(
891 const void *a, /* first leaf entry */
892 const void *b) /* second leaf entry */
893{
894 const xfs_dir2_leaf_entry_t *la; /* first leaf entry */
895 const xfs_dir2_leaf_entry_t *lb; /* second leaf entry */
896
897 la = a;
898 lb = b;
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100899 return be32_to_cpu(la->hashval) < be32_to_cpu(lb->hashval) ? -1 :
900 (be32_to_cpu(la->hashval) > be32_to_cpu(lb->hashval) ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901}
902
903/*
904 * Convert a V2 leaf directory to a V2 block directory if possible.
905 */
906int /* error */
907xfs_dir2_leaf_to_block(
908 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000909 struct xfs_buf *lbp, /* leaf buffer */
910 struct xfs_buf *dbp) /* data buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911{
Nathan Scott68b3a102006-03-17 17:27:19 +1100912 __be16 *bestsp; /* leaf bests table */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200913 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 xfs_dir2_block_tail_t *btp; /* block tail */
915 xfs_inode_t *dp; /* incore directory inode */
916 xfs_dir2_data_unused_t *dup; /* unused data entry */
917 int error; /* error return value */
918 int from; /* leaf from index */
919 xfs_dir2_leaf_t *leaf; /* leaf structure */
920 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
921 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
922 xfs_mount_t *mp; /* file system mount point */
923 int needlog; /* need to log data header */
924 int needscan; /* need to scan for bestfree */
925 xfs_dir2_sf_hdr_t sfh; /* shortform header */
926 int size; /* bytes used */
Nathan Scott3d693c62006-03-17 17:28:27 +1100927 __be16 *tagp; /* end of entry (tag) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 int to; /* block/leaf to index */
929 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner24df33b2013-04-12 07:30:21 +1000930 struct xfs_dir2_leaf_entry *ents;
931 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000933 trace_xfs_dir2_leaf_to_block(args);
934
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 dp = args->dp;
936 tp = args->trans;
937 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000938 leaf = lbp->b_addr;
Dave Chinner01ba43b2013-10-29 22:11:52 +1100939 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
Dave Chinner41419562013-10-29 22:11:50 +1100940 ents = dp->d_ops->leaf_ents_p(leaf);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000941 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +1000942
943 ASSERT(leafhdr.magic == XFS_DIR2_LEAF1_MAGIC ||
944 leafhdr.magic == XFS_DIR3_LEAF1_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 /*
946 * If there are data blocks other than the first one, take this
947 * opportunity to remove trailing empty data blocks that may have
948 * been left behind during no-space-reservation operations.
949 * These will show up in the leaf bests table.
950 */
951 while (dp->i_d.di_size > mp->m_dirblksize) {
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100952 int hdrsz;
953
Dave Chinner1c9a5b22013-10-30 09:15:02 +1100954 hdrsz = dp->d_ops->data_entry_offset;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000955 bestsp = xfs_dir2_leaf_bests_p(ltp);
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100956 if (be16_to_cpu(bestsp[be32_to_cpu(ltp->bestcount) - 1]) ==
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100957 mp->m_dirblksize - hdrsz) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 if ((error =
959 xfs_dir2_leaf_trim_data(args, lbp,
Nathan Scottafbcb3f2006-03-17 17:27:28 +1100960 (xfs_dir2_db_t)(be32_to_cpu(ltp->bestcount) - 1))))
Dave Chinner1d9025e2012-06-22 18:50:14 +1000961 return error;
962 } else
963 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 }
965 /*
966 * Read the data block if we don't already have it, give up if it fails.
967 */
Dave Chinner4bb20a82012-11-12 22:54:10 +1100968 if (!dbp) {
Dave Chinner33363fe2013-04-03 16:11:22 +1100969 error = xfs_dir3_data_read(tp, dp, mp->m_dirdatablk, -1, &dbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +1100970 if (error)
971 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 }
Dave Chinner1d9025e2012-06-22 18:50:14 +1000973 hdr = dbp->b_addr;
Dave Chinner33363fe2013-04-03 16:11:22 +1100974 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
975 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC));
976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 /*
978 * Size of the "leaf" area in the block.
979 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200980 size = (uint)sizeof(xfs_dir2_block_tail_t) +
Dave Chinner24df33b2013-04-12 07:30:21 +1000981 (uint)sizeof(*lep) * (leafhdr.count - leafhdr.stale);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 /*
983 * Look at the last data entry.
984 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200985 tagp = (__be16 *)((char *)hdr + mp->m_dirblksize) - 1;
986 dup = (xfs_dir2_data_unused_t *)((char *)hdr + be16_to_cpu(*tagp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 /*
988 * If it's not free or is too short we can't do it.
989 */
Nathan Scottad354eb2006-03-17 17:27:37 +1100990 if (be16_to_cpu(dup->freetag) != XFS_DIR2_DATA_FREE_TAG ||
Dave Chinner1d9025e2012-06-22 18:50:14 +1000991 be16_to_cpu(dup->length) < size)
992 return 0;
993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 /*
995 * Start converting it to block form.
996 */
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100997 xfs_dir3_block_init(mp, tp, dbp, dp);
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100998
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 needlog = 1;
1000 needscan = 0;
1001 /*
1002 * Use up the space at the end of the block (blp/btp).
1003 */
Dave Chinner2ca98772013-10-29 22:11:49 +11001004 xfs_dir2_data_use_free(tp, dp, dbp, dup, mp->m_dirblksize - size, size,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 &needlog, &needscan);
1006 /*
1007 * Initialize the block tail.
1008 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001009 btp = xfs_dir2_block_tail_p(mp, hdr);
Dave Chinner24df33b2013-04-12 07:30:21 +10001010 btp->count = cpu_to_be32(leafhdr.count - leafhdr.stale);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 btp->stale = 0;
1012 xfs_dir2_block_log_tail(tp, dbp);
1013 /*
1014 * Initialize the block leaf area. We compact out stale entries.
1015 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001016 lep = xfs_dir2_block_leaf_p(btp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001017 for (from = to = 0; from < leafhdr.count; from++) {
1018 if (ents[from].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 continue;
Dave Chinner24df33b2013-04-12 07:30:21 +10001020 lep[to++] = ents[from];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 }
Nathan Scotte922fff2006-03-17 17:27:56 +11001022 ASSERT(to == be32_to_cpu(btp->count));
1023 xfs_dir2_block_log_leaf(tp, dbp, 0, be32_to_cpu(btp->count) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 /*
1025 * Scan the bestfree if we need it and log the data block header.
1026 */
1027 if (needscan)
Dave Chinner9d23fc82013-10-29 22:11:48 +11001028 xfs_dir2_data_freescan(dp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 if (needlog)
Dave Chinner2ca98772013-10-29 22:11:49 +11001030 xfs_dir2_data_log_header(tp, dp, dbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 /*
1032 * Pitch the old leaf block.
1033 */
1034 error = xfs_da_shrink_inode(args, mp->m_dirleafblk, lbp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001035 if (error)
1036 return error;
1037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 /*
1039 * Now see if the resulting block can be shrunken to shortform.
1040 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001041 size = xfs_dir2_block_sfsize(dp, hdr, &sfh);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001042 if (size > XFS_IFORK_DSIZE(dp))
1043 return 0;
1044
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 return xfs_dir2_block_to_sf(args, dbp, size, &sfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046}
1047
1048/*
1049 * Convert the shortform directory to block form.
1050 */
1051int /* error */
1052xfs_dir2_sf_to_block(
1053 xfs_da_args_t *args) /* operation arguments */
1054{
1055 xfs_dir2_db_t blkno; /* dir-relative block # (0) */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001056 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001058 struct xfs_buf *bp; /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 xfs_dir2_block_tail_t *btp; /* block tail pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 xfs_dir2_data_entry_t *dep; /* data entry pointer */
1061 xfs_inode_t *dp; /* incore directory inode */
1062 int dummy; /* trash */
1063 xfs_dir2_data_unused_t *dup; /* unused entry pointer */
1064 int endoffset; /* end of data objects */
1065 int error; /* error return value */
1066 int i; /* index */
1067 xfs_mount_t *mp; /* filesystem mount point */
1068 int needlog; /* need to log block header */
1069 int needscan; /* need to scan block freespc */
1070 int newoffset; /* offset from current entry */
1071 int offset; /* target block offset */
1072 xfs_dir2_sf_entry_t *sfep; /* sf entry pointer */
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001073 xfs_dir2_sf_hdr_t *oldsfp; /* old shortform header */
1074 xfs_dir2_sf_hdr_t *sfp; /* shortform header */
Nathan Scott3d693c62006-03-17 17:28:27 +11001075 __be16 *tagp; /* end of data entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 xfs_trans_t *tp; /* transaction pointer */
Barry Naujok5163f952008-05-21 16:41:01 +10001077 struct xfs_name name;
Dave Chinnerf3508bc2013-07-10 07:04:00 +10001078 struct xfs_ifork *ifp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001080 trace_xfs_dir2_sf_to_block(args);
1081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 dp = args->dp;
1083 tp = args->trans;
1084 mp = dp->i_mount;
Dave Chinnerf3508bc2013-07-10 07:04:00 +10001085 ifp = XFS_IFORK_PTR(dp, XFS_DATA_FORK);
1086 ASSERT(ifp->if_flags & XFS_IFINLINE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 /*
1088 * Bomb out if the shortform directory is way too short.
1089 */
1090 if (dp->i_d.di_size < offsetof(xfs_dir2_sf_hdr_t, parent)) {
1091 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1092 return XFS_ERROR(EIO);
1093 }
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001094
Dave Chinnerf3508bc2013-07-10 07:04:00 +10001095 oldsfp = (xfs_dir2_sf_hdr_t *)ifp->if_u1.if_data;
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001096
Dave Chinnerf3508bc2013-07-10 07:04:00 +10001097 ASSERT(ifp->if_bytes == dp->i_d.di_size);
1098 ASSERT(ifp->if_u1.if_data != NULL);
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001099 ASSERT(dp->i_d.di_size >= xfs_dir2_sf_hdr_size(oldsfp->i8count));
Dave Chinnerf3508bc2013-07-10 07:04:00 +10001100 ASSERT(dp->i_d.di_nextents == 0);
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 /*
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001103 * Copy the directory into a temporary buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 * Then pitch the incore inode data so we can make extents.
1105 */
Dave Chinnerf3508bc2013-07-10 07:04:00 +10001106 sfp = kmem_alloc(ifp->if_bytes, KM_SLEEP);
1107 memcpy(sfp, oldsfp, ifp->if_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Dave Chinnerf3508bc2013-07-10 07:04:00 +10001109 xfs_idata_realloc(dp, -ifp->if_bytes, XFS_DATA_FORK);
1110 xfs_bmap_local_to_extents_empty(dp, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 dp->i_d.di_size = 0;
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001112
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 /*
1114 * Add block 0 to the inode.
1115 */
1116 error = xfs_dir2_grow_inode(args, XFS_DIR2_DATA_SPACE, &blkno);
1117 if (error) {
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001118 kmem_free(sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 return error;
1120 }
1121 /*
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11001122 * Initialize the data block, then convert it to block format.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11001124 error = xfs_dir3_data_init(args, blkno, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 if (error) {
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001126 kmem_free(sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 return error;
1128 }
Dave Chinnerd75afeb2013-04-03 16:11:29 +11001129 xfs_dir3_block_init(mp, tp, bp, dp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001130 hdr = bp->b_addr;
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11001131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 /*
1133 * Compute size of block "tail" area.
1134 */
1135 i = (uint)sizeof(*btp) +
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001136 (sfp->count + 2) * (uint)sizeof(xfs_dir2_leaf_entry_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 /*
1138 * The whole thing is initialized to free by the init routine.
1139 * Say we're using the leaf and tail area.
1140 */
Dave Chinner2ca98772013-10-29 22:11:49 +11001141 dup = dp->d_ops->data_unused_p(hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 needlog = needscan = 0;
Dave Chinner2ca98772013-10-29 22:11:49 +11001143 xfs_dir2_data_use_free(tp, dp, bp, dup, mp->m_dirblksize - i, i, &needlog,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 &needscan);
1145 ASSERT(needscan == 0);
1146 /*
1147 * Fill in the tail.
1148 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001149 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001150 btp->count = cpu_to_be32(sfp->count + 2); /* ., .. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 btp->stale = 0;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001152 blp = xfs_dir2_block_leaf_p(btp);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001153 endoffset = (uint)((char *)blp - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 /*
1155 * Remove the freespace, we'll manage it.
1156 */
Dave Chinner2ca98772013-10-29 22:11:49 +11001157 xfs_dir2_data_use_free(tp, dp, bp, dup,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001158 (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr),
Nathan Scottad354eb2006-03-17 17:27:37 +11001159 be16_to_cpu(dup->length), &needlog, &needscan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 /*
1161 * Create entry for .
1162 */
Dave Chinner9d23fc82013-10-29 22:11:48 +11001163 dep = dp->d_ops->data_dot_entry_p(hdr);
Christoph Hellwigff9901c2006-06-09 14:48:37 +10001164 dep->inumber = cpu_to_be64(dp->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 dep->namelen = 1;
1166 dep->name[0] = '.';
Dave Chinner9d23fc82013-10-29 22:11:48 +11001167 dp->d_ops->data_put_ftype(dep, XFS_DIR3_FT_DIR);
1168 tagp = dp->d_ops->data_entry_tag_p(dep);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001169 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Dave Chinner9d23fc82013-10-29 22:11:48 +11001170 xfs_dir2_data_log_entry(tp, dp, bp, dep);
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001171 blp[0].hashval = cpu_to_be32(xfs_dir_hash_dot);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001172 blp[0].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(mp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001173 (char *)dep - (char *)hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 /*
1175 * Create entry for ..
1176 */
Dave Chinner9d23fc82013-10-29 22:11:48 +11001177 dep = dp->d_ops->data_dotdot_entry_p(hdr);
Dave Chinner47401752013-10-29 22:11:47 +11001178 dep->inumber = cpu_to_be64(dp->d_ops->sf_get_parent_ino(sfp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 dep->namelen = 2;
1180 dep->name[0] = dep->name[1] = '.';
Dave Chinner9d23fc82013-10-29 22:11:48 +11001181 dp->d_ops->data_put_ftype(dep, XFS_DIR3_FT_DIR);
1182 tagp = dp->d_ops->data_entry_tag_p(dep);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001183 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Dave Chinner9d23fc82013-10-29 22:11:48 +11001184 xfs_dir2_data_log_entry(tp, dp, bp, dep);
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001185 blp[1].hashval = cpu_to_be32(xfs_dir_hash_dotdot);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001186 blp[1].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(mp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001187 (char *)dep - (char *)hdr));
Dave Chinner1c9a5b22013-10-30 09:15:02 +11001188 offset = dp->d_ops->data_first_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 /*
1190 * Loop over existing entries, stuff them in.
1191 */
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001192 i = 0;
1193 if (!sfp->count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 sfep = NULL;
1195 else
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001196 sfep = xfs_dir2_sf_firstentry(sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 /*
1198 * Need to preserve the existing offset values in the sf directory.
1199 * Insert holes (unused entries) where necessary.
1200 */
1201 while (offset < endoffset) {
1202 /*
1203 * sfep is null when we reach the end of the list.
1204 */
1205 if (sfep == NULL)
1206 newoffset = endoffset;
1207 else
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001208 newoffset = xfs_dir2_sf_get_offset(sfep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 /*
1210 * There should be a hole here, make one.
1211 */
1212 if (offset < newoffset) {
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001213 dup = (xfs_dir2_data_unused_t *)((char *)hdr + offset);
Nathan Scottad354eb2006-03-17 17:27:37 +11001214 dup->freetag = cpu_to_be16(XFS_DIR2_DATA_FREE_TAG);
1215 dup->length = cpu_to_be16(newoffset - offset);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001216 *xfs_dir2_data_unused_tag_p(dup) = cpu_to_be16(
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001217 ((char *)dup - (char *)hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 xfs_dir2_data_log_unused(tp, bp, dup);
Dave Chinner2ca98772013-10-29 22:11:49 +11001219 xfs_dir2_data_freeinsert(hdr,
1220 dp->d_ops->data_bestfree_p(hdr),
1221 dup, &dummy);
Nathan Scottad354eb2006-03-17 17:27:37 +11001222 offset += be16_to_cpu(dup->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 continue;
1224 }
1225 /*
1226 * Copy a real entry.
1227 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001228 dep = (xfs_dir2_data_entry_t *)((char *)hdr + newoffset);
Dave Chinner47401752013-10-29 22:11:47 +11001229 dep->inumber = cpu_to_be64(dp->d_ops->sf_get_ino(sfp, sfep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 dep->namelen = sfep->namelen;
Dave Chinner9d23fc82013-10-29 22:11:48 +11001231 dp->d_ops->data_put_ftype(dep, dp->d_ops->sf_get_ftype(sfep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 memcpy(dep->name, sfep->name, dep->namelen);
Dave Chinner9d23fc82013-10-29 22:11:48 +11001233 tagp = dp->d_ops->data_entry_tag_p(dep);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001234 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Dave Chinner9d23fc82013-10-29 22:11:48 +11001235 xfs_dir2_data_log_entry(tp, dp, bp, dep);
Barry Naujok5163f952008-05-21 16:41:01 +10001236 name.name = sfep->name;
1237 name.len = sfep->namelen;
1238 blp[2 + i].hashval = cpu_to_be32(mp->m_dirnameops->
1239 hashname(&name));
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001240 blp[2 + i].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(mp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001241 (char *)dep - (char *)hdr));
1242 offset = (int)((char *)(tagp + 1) - (char *)hdr);
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001243 if (++i == sfp->count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 sfep = NULL;
1245 else
Dave Chinner32c54832013-10-29 22:11:46 +11001246 sfep = dp->d_ops->sf_nextentry(sfp, sfep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 }
1248 /* Done with the temporary buffer */
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001249 kmem_free(sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 /*
1251 * Sort the leaf entries by hash value.
1252 */
Nathan Scotte922fff2006-03-17 17:27:56 +11001253 xfs_sort(blp, be32_to_cpu(btp->count), sizeof(*blp), xfs_dir2_block_sort);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254 /*
1255 * Log the leaf entry area and tail.
1256 * Already logged the header in data_init, ignore needlog.
1257 */
1258 ASSERT(needscan == 0);
Nathan Scotte922fff2006-03-17 17:27:56 +11001259 xfs_dir2_block_log_leaf(tp, bp, 0, be32_to_cpu(btp->count) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 xfs_dir2_block_log_tail(tp, bp);
Dave Chinner33363fe2013-04-03 16:11:22 +11001261 xfs_dir3_data_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 return 0;
1263}