blob: d2e445f92ffb0fa189aff66c20ff3397e704f730 [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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "xfs_types.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_log.h"
23#include "xfs_trans.h"
24#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"
Nathan Scotta844f452005-11-02 14:38:42 +110027#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_dinode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110031#include "xfs_inode_item.h"
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +110032#include "xfs_buf_item.h"
Dave Chinner8d2a5e62012-03-07 04:50:19 +000033#include "xfs_dir2.h"
Christoph Hellwig57926642011-07-13 13:43:48 +020034#include "xfs_dir2_format.h"
35#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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40/*
41 * Local function prototypes.
42 */
Dave Chinner1d9025e2012-06-22 18:50:14 +100043static void xfs_dir2_block_log_leaf(xfs_trans_t *tp, struct xfs_buf *bp,
44 int first, int last);
45static void xfs_dir2_block_log_tail(xfs_trans_t *tp, struct xfs_buf *bp);
46static int xfs_dir2_block_lookup_int(xfs_da_args_t *args, struct xfs_buf **bpp,
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 int *entno);
48static int xfs_dir2_block_sort(const void *a, const void *b);
49
Nathan Scottf6c2d1f2006-06-20 13:04:51 +100050static xfs_dahash_t xfs_dir_hash_dot, xfs_dir_hash_dotdot;
51
52/*
53 * One-time startup routine called from xfs_init().
54 */
55void
56xfs_dir_startup(void)
57{
Dave Chinner4a24cb72010-01-20 10:48:05 +110058 xfs_dir_hash_dot = xfs_da_hashname((unsigned char *)".", 1);
59 xfs_dir_hash_dotdot = xfs_da_hashname((unsigned char *)"..", 2);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +100060}
61
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +110062static bool
63xfs_dir3_block_verify(
Dave Chinner82025d72012-11-12 22:54:12 +110064 struct xfs_buf *bp)
65{
66 struct xfs_mount *mp = bp->b_target->bt_mount;
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +110067 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
Dave Chinner82025d72012-11-12 22:54:12 +110068
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +110069 if (xfs_sb_version_hascrc(&mp->m_sb)) {
70 if (hdr3->magic != cpu_to_be32(XFS_DIR3_BLOCK_MAGIC))
71 return false;
72 if (!uuid_equal(&hdr3->uuid, &mp->m_sb.sb_uuid))
73 return false;
74 if (be64_to_cpu(hdr3->blkno) != bp->b_bn)
75 return false;
76 } else {
77 if (hdr3->magic != cpu_to_be32(XFS_DIR2_BLOCK_MAGIC))
78 return false;
79 }
Dave Chinner33363fe2013-04-03 16:11:22 +110080 if (__xfs_dir3_data_check(NULL, bp))
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +110081 return false;
82 return true;
83}
Dave Chinner82025d72012-11-12 22:54:12 +110084
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +110085static void
86xfs_dir3_block_read_verify(
87 struct xfs_buf *bp)
88{
89 struct xfs_mount *mp = bp->b_target->bt_mount;
90
91 if ((xfs_sb_version_hascrc(&mp->m_sb) &&
92 !xfs_verify_cksum(bp->b_addr, BBTOB(bp->b_length),
93 XFS_DIR3_DATA_CRC_OFF)) ||
94 !xfs_dir3_block_verify(bp)) {
95 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
Dave Chinner82025d72012-11-12 22:54:12 +110096 xfs_buf_ioerror(bp, EFSCORRUPTED);
97 }
Dave Chinner612cfbf2012-11-14 17:52:32 +110098}
Dave Chinner82025d72012-11-12 22:54:12 +110099
Dave Chinner612cfbf2012-11-14 17:52:32 +1100100static void
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100101xfs_dir3_block_write_verify(
Dave Chinner1813dd62012-11-14 17:54:40 +1100102 struct xfs_buf *bp)
103{
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100104 struct xfs_mount *mp = bp->b_target->bt_mount;
105 struct xfs_buf_log_item *bip = bp->b_fspriv;
106 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
107
108 if (!xfs_dir3_block_verify(bp)) {
109 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
110 xfs_buf_ioerror(bp, EFSCORRUPTED);
111 return;
112 }
113
114 if (!xfs_sb_version_hascrc(&mp->m_sb))
115 return;
116
117 if (bip)
118 hdr3->lsn = cpu_to_be64(bip->bli_item.li_lsn);
119
120 xfs_update_cksum(bp->b_addr, BBTOB(bp->b_length), XFS_DIR3_DATA_CRC_OFF);
Dave Chinner1813dd62012-11-14 17:54:40 +1100121}
122
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100123const struct xfs_buf_ops xfs_dir3_block_buf_ops = {
124 .verify_read = xfs_dir3_block_read_verify,
125 .verify_write = xfs_dir3_block_write_verify,
Dave Chinner1813dd62012-11-14 17:54:40 +1100126};
Dave Chinner82025d72012-11-12 22:54:12 +1100127
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100128static int
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100129xfs_dir3_block_read(
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100130 struct xfs_trans *tp,
131 struct xfs_inode *dp,
132 struct xfs_buf **bpp)
133{
134 struct xfs_mount *mp = dp->i_mount;
135
136 return xfs_da_read_buf(tp, dp, mp->m_dirdatablk, -1, bpp,
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100137 XFS_DATA_FORK, &xfs_dir3_block_buf_ops);
138}
139
140static void
141xfs_dir3_block_init(
142 struct xfs_mount *mp,
143 struct xfs_buf *bp,
144 struct xfs_inode *dp)
145{
146 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
147
148 bp->b_ops = &xfs_dir3_block_buf_ops;
149
150 if (xfs_sb_version_hascrc(&mp->m_sb)) {
151 memset(hdr3, 0, sizeof(*hdr3));
152 hdr3->magic = cpu_to_be32(XFS_DIR3_BLOCK_MAGIC);
153 hdr3->blkno = cpu_to_be64(bp->b_bn);
154 hdr3->owner = cpu_to_be64(dp->i_ino);
155 uuid_copy(&hdr3->uuid, &mp->m_sb.sb_uuid);
156 return;
157
158 }
159 hdr3->magic = cpu_to_be32(XFS_DIR2_BLOCK_MAGIC);
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100160}
161
162static void
163xfs_dir2_block_need_space(
164 struct xfs_dir2_data_hdr *hdr,
165 struct xfs_dir2_block_tail *btp,
166 struct xfs_dir2_leaf_entry *blp,
167 __be16 **tagpp,
168 struct xfs_dir2_data_unused **dupp,
169 struct xfs_dir2_data_unused **enddupp,
170 int *compact,
171 int len)
172{
173 struct xfs_dir2_data_free *bf;
174 __be16 *tagp = NULL;
175 struct xfs_dir2_data_unused *dup = NULL;
176 struct xfs_dir2_data_unused *enddup = NULL;
177
178 *compact = 0;
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100179 bf = xfs_dir3_data_bestfree_p(hdr);
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100180
181 /*
182 * If there are stale entries we'll use one for the leaf.
183 */
184 if (btp->stale) {
185 if (be16_to_cpu(bf[0].length) >= len) {
186 /*
187 * The biggest entry enough to avoid compaction.
188 */
189 dup = (xfs_dir2_data_unused_t *)
190 ((char *)hdr + be16_to_cpu(bf[0].offset));
191 goto out;
192 }
193
194 /*
195 * Will need to compact to make this work.
196 * Tag just before the first leaf entry.
197 */
198 *compact = 1;
199 tagp = (__be16 *)blp - 1;
200
201 /* Data object just before the first leaf entry. */
202 dup = (xfs_dir2_data_unused_t *)((char *)hdr + be16_to_cpu(*tagp));
203
204 /*
205 * If it's not free then the data will go where the
206 * leaf data starts now, if it works at all.
207 */
208 if (be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
209 if (be16_to_cpu(dup->length) + (be32_to_cpu(btp->stale) - 1) *
210 (uint)sizeof(*blp) < len)
211 dup = NULL;
212 } else if ((be32_to_cpu(btp->stale) - 1) * (uint)sizeof(*blp) < len)
213 dup = NULL;
214 else
215 dup = (xfs_dir2_data_unused_t *)blp;
216 goto out;
217 }
218
219 /*
220 * no stale entries, so just use free space.
221 * Tag just before the first leaf entry.
222 */
223 tagp = (__be16 *)blp - 1;
224
225 /* Data object just before the first leaf entry. */
226 enddup = (xfs_dir2_data_unused_t *)((char *)hdr + be16_to_cpu(*tagp));
227
228 /*
229 * If it's not free then can't do this add without cleaning up:
230 * the space before the first leaf entry needs to be free so it
231 * can be expanded to hold the pointer to the new entry.
232 */
233 if (be16_to_cpu(enddup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
234 /*
235 * Check out the biggest freespace and see if it's the same one.
236 */
237 dup = (xfs_dir2_data_unused_t *)
238 ((char *)hdr + be16_to_cpu(bf[0].offset));
239 if (dup != enddup) {
240 /*
241 * Not the same free entry, just check its length.
242 */
243 if (be16_to_cpu(dup->length) < len)
244 dup = NULL;
245 goto out;
246 }
247
248 /*
249 * It is the biggest freespace, can it hold the leaf too?
250 */
251 if (be16_to_cpu(dup->length) < len + (uint)sizeof(*blp)) {
252 /*
253 * Yes, use the second-largest entry instead if it works.
254 */
255 if (be16_to_cpu(bf[1].length) >= len)
256 dup = (xfs_dir2_data_unused_t *)
257 ((char *)hdr + be16_to_cpu(bf[1].offset));
258 else
259 dup = NULL;
260 }
261 }
262out:
263 *tagpp = tagp;
264 *dupp = dup;
265 *enddupp = enddup;
266}
267
268/*
269 * compact the leaf entries.
270 * Leave the highest-numbered stale entry stale.
271 * XXX should be the one closest to mid but mid is not yet computed.
272 */
273static void
274xfs_dir2_block_compact(
275 struct xfs_trans *tp,
276 struct xfs_buf *bp,
277 struct xfs_dir2_data_hdr *hdr,
278 struct xfs_dir2_block_tail *btp,
279 struct xfs_dir2_leaf_entry *blp,
280 int *needlog,
281 int *lfloghigh,
282 int *lfloglow)
283{
284 int fromidx; /* source leaf index */
285 int toidx; /* target leaf index */
286 int needscan = 0;
287 int highstale; /* high stale index */
288
289 fromidx = toidx = be32_to_cpu(btp->count) - 1;
290 highstale = *lfloghigh = -1;
291 for (; fromidx >= 0; fromidx--) {
292 if (blp[fromidx].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR)) {
293 if (highstale == -1)
294 highstale = toidx;
295 else {
296 if (*lfloghigh == -1)
297 *lfloghigh = toidx;
298 continue;
299 }
300 }
301 if (fromidx < toidx)
302 blp[toidx] = blp[fromidx];
303 toidx--;
304 }
305 *lfloglow = toidx + 1 - (be32_to_cpu(btp->stale) - 1);
306 *lfloghigh -= be32_to_cpu(btp->stale) - 1;
307 be32_add_cpu(&btp->count, -(be32_to_cpu(btp->stale) - 1));
308 xfs_dir2_data_make_free(tp, bp,
309 (xfs_dir2_data_aoff_t)((char *)blp - (char *)hdr),
310 (xfs_dir2_data_aoff_t)((be32_to_cpu(btp->stale) - 1) * sizeof(*blp)),
311 needlog, &needscan);
312 blp += be32_to_cpu(btp->stale) - 1;
313 btp->stale = cpu_to_be32(1);
314 /*
315 * If we now need to rebuild the bestfree map, do so.
316 * This needs to happen before the next call to use_free.
317 */
318 if (needscan)
319 xfs_dir2_data_freescan(tp->t_mountp, hdr, needlog);
320}
321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322/*
323 * Add an entry to a block directory.
324 */
325int /* error */
326xfs_dir2_block_addname(
327 xfs_da_args_t *args) /* directory op arguments */
328{
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200329 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000331 struct xfs_buf *bp; /* buffer for block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 xfs_dir2_block_tail_t *btp; /* block tail */
333 int compact; /* need to compact leaf ents */
334 xfs_dir2_data_entry_t *dep; /* block data entry */
335 xfs_inode_t *dp; /* directory inode */
336 xfs_dir2_data_unused_t *dup; /* block unused entry */
337 int error; /* error return value */
338 xfs_dir2_data_unused_t *enddup=NULL; /* unused at end of data */
339 xfs_dahash_t hash; /* hash value of found entry */
340 int high; /* high index for binary srch */
341 int highstale; /* high stale index */
342 int lfloghigh=0; /* last final leaf to log */
343 int lfloglow=0; /* first final leaf to log */
344 int len; /* length of the new entry */
345 int low; /* low index for binary srch */
346 int lowstale; /* low stale index */
347 int mid=0; /* midpoint for binary srch */
348 xfs_mount_t *mp; /* filesystem mount point */
349 int needlog; /* need to log header */
350 int needscan; /* need to rescan freespace */
Nathan Scott3d693c62006-03-17 17:28:27 +1100351 __be16 *tagp; /* pointer to tag value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 xfs_trans_t *tp; /* transaction structure */
353
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000354 trace_xfs_dir2_block_addname(args);
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 dp = args->dp;
357 tp = args->trans;
358 mp = dp->i_mount;
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100359
360 /* Read the (one and only) directory block into bp. */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100361 error = xfs_dir3_block_read(tp, dp, &bp);
Dave Chinner4bb20a82012-11-12 22:54:10 +1100362 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 return error;
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100364
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000365 len = xfs_dir2_data_entsize(args->namelen);
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 /*
368 * Set up pointers to parts of the block.
369 */
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100370 hdr = bp->b_addr;
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200371 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000372 blp = xfs_dir2_block_leaf_p(btp);
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 /*
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100375 * Find out if we can reuse stale entries or whether we need extra
376 * space for entry and new leaf.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 */
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100378 xfs_dir2_block_need_space(hdr, btp, blp, &tagp, &dup,
379 &enddup, &compact, len);
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 /*
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100382 * Done everything we need for a space check now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 */
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100384 if (args->op_flags & XFS_DA_OP_JUSTCHECK) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000385 xfs_trans_brelse(tp, bp);
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100386 if (!dup)
387 return XFS_ERROR(ENOSPC);
388 return 0;
389 }
390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 /*
392 * If we don't have space for the new entry & leaf ...
393 */
394 if (!dup) {
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100395 /* Don't have a space reservation: return no-space. */
396 if (args->total == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 return XFS_ERROR(ENOSPC);
398 /*
399 * Convert to the next larger format.
400 * Then add the new entry in that format.
401 */
402 error = xfs_dir2_block_to_leaf(args, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 if (error)
404 return error;
405 return xfs_dir2_leaf_addname(args);
406 }
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 needlog = needscan = 0;
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 /*
411 * If need to compact the leaf entries, do it now.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 */
Eric Sandeen37f13562013-01-10 10:41:48 -0600413 if (compact) {
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100414 xfs_dir2_block_compact(tp, bp, hdr, btp, blp, &needlog,
415 &lfloghigh, &lfloglow);
Eric Sandeen37f13562013-01-10 10:41:48 -0600416 /* recalculate blp post-compaction */
417 blp = xfs_dir2_block_leaf_p(btp);
418 } else if (btp->stale) {
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100419 /*
420 * Set leaf logging boundaries to impossible state.
421 * For the no-stale case they're set explicitly.
422 */
Nathan Scotte922fff2006-03-17 17:27:56 +1100423 lfloglow = be32_to_cpu(btp->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 lfloghigh = -1;
425 }
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 /*
428 * Find the slot that's first lower than our hash value, -1 if none.
429 */
Nathan Scotte922fff2006-03-17 17:27:56 +1100430 for (low = 0, high = be32_to_cpu(btp->count) - 1; low <= high; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 mid = (low + high) >> 1;
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100432 if ((hash = be32_to_cpu(blp[mid].hashval)) == args->hashval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 break;
434 if (hash < args->hashval)
435 low = mid + 1;
436 else
437 high = mid - 1;
438 }
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100439 while (mid >= 0 && be32_to_cpu(blp[mid].hashval) >= args->hashval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 mid--;
441 }
442 /*
443 * No stale entries, will use enddup space to hold new leaf.
444 */
445 if (!btp->stale) {
446 /*
447 * Mark the space needed for the new leaf entry, now in use.
448 */
449 xfs_dir2_data_use_free(tp, bp, enddup,
450 (xfs_dir2_data_aoff_t)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200451 ((char *)enddup - (char *)hdr + be16_to_cpu(enddup->length) -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 sizeof(*blp)),
453 (xfs_dir2_data_aoff_t)sizeof(*blp),
454 &needlog, &needscan);
455 /*
456 * Update the tail (entry count).
457 */
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800458 be32_add_cpu(&btp->count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 /*
460 * If we now need to rebuild the bestfree map, do so.
461 * This needs to happen before the next call to use_free.
462 */
463 if (needscan) {
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200464 xfs_dir2_data_freescan(mp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 needscan = 0;
466 }
467 /*
468 * Adjust pointer to the first leaf entry, we're about to move
469 * the table up one to open up space for the new leaf entry.
470 * Then adjust our index to match.
471 */
472 blp--;
473 mid++;
474 if (mid)
475 memmove(blp, &blp[1], mid * sizeof(*blp));
476 lfloglow = 0;
477 lfloghigh = mid;
478 }
479 /*
480 * Use a stale leaf for our new entry.
481 */
482 else {
483 for (lowstale = mid;
484 lowstale >= 0 &&
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200485 blp[lowstale].address !=
486 cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 lowstale--)
488 continue;
489 for (highstale = mid + 1;
Nathan Scotte922fff2006-03-17 17:27:56 +1100490 highstale < be32_to_cpu(btp->count) &&
Christoph Hellwig69ef9212011-07-08 14:36:05 +0200491 blp[highstale].address !=
492 cpu_to_be32(XFS_DIR2_NULL_DATAPTR) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 (lowstale < 0 || mid - lowstale > highstale - mid);
494 highstale++)
495 continue;
496 /*
497 * Move entries toward the low-numbered stale entry.
498 */
499 if (lowstale >= 0 &&
Nathan Scotte922fff2006-03-17 17:27:56 +1100500 (highstale == be32_to_cpu(btp->count) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 mid - lowstale <= highstale - mid)) {
502 if (mid - lowstale)
503 memmove(&blp[lowstale], &blp[lowstale + 1],
504 (mid - lowstale) * sizeof(*blp));
505 lfloglow = MIN(lowstale, lfloglow);
506 lfloghigh = MAX(mid, lfloghigh);
507 }
508 /*
509 * Move entries toward the high-numbered stale entry.
510 */
511 else {
Nathan Scotte922fff2006-03-17 17:27:56 +1100512 ASSERT(highstale < be32_to_cpu(btp->count));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 mid++;
514 if (highstale - mid)
515 memmove(&blp[mid + 1], &blp[mid],
516 (highstale - mid) * sizeof(*blp));
517 lfloglow = MIN(mid, lfloglow);
518 lfloghigh = MAX(highstale, lfloghigh);
519 }
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800520 be32_add_cpu(&btp->stale, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 }
522 /*
523 * Point to the new data entry.
524 */
525 dep = (xfs_dir2_data_entry_t *)dup;
526 /*
527 * Fill in the leaf entry.
528 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100529 blp[mid].hashval = cpu_to_be32(args->hashval);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000530 blp[mid].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(mp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200531 (char *)dep - (char *)hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 xfs_dir2_block_log_leaf(tp, bp, lfloglow, lfloghigh);
533 /*
534 * Mark space for the data entry used.
535 */
536 xfs_dir2_data_use_free(tp, bp, dup,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200537 (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 (xfs_dir2_data_aoff_t)len, &needlog, &needscan);
539 /*
540 * Create the new data entry.
541 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +1000542 dep->inumber = cpu_to_be64(args->inumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 dep->namelen = args->namelen;
544 memcpy(dep->name, args->name, args->namelen);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000545 tagp = xfs_dir2_data_entry_tag_p(dep);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200546 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 /*
548 * Clean up the bestfree array and log the header, tail, and entry.
549 */
550 if (needscan)
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200551 xfs_dir2_data_freescan(mp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 if (needlog)
553 xfs_dir2_data_log_header(tp, bp);
554 xfs_dir2_block_log_tail(tp, bp);
555 xfs_dir2_data_log_entry(tp, bp, dep);
Dave Chinner33363fe2013-04-03 16:11:22 +1100556 xfs_dir3_data_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 return 0;
558}
559
560/*
561 * Readdir for block directories.
562 */
563int /* error */
564xfs_dir2_block_getdents(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 xfs_inode_t *dp, /* incore inode */
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000566 void *dirent,
567 xfs_off_t *offset,
568 filldir_t filldir)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200570 xfs_dir2_data_hdr_t *hdr; /* block header */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000571 struct xfs_buf *bp; /* buffer for block */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 xfs_dir2_block_tail_t *btp; /* block tail */
573 xfs_dir2_data_entry_t *dep; /* block data entry */
574 xfs_dir2_data_unused_t *dup; /* block unused entry */
575 char *endptr; /* end of the data entries */
576 int error; /* error return value */
577 xfs_mount_t *mp; /* filesystem mount point */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 char *ptr; /* current data entry */
579 int wantoff; /* starting block offset */
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000580 xfs_off_t cook;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582 mp = dp->i_mount;
583 /*
584 * If the block number in the offset is out of range, we're done.
585 */
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100586 if (xfs_dir2_dataptr_to_db(mp, *offset) > mp->m_dirdatablk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 return 0;
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100588
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100589 error = xfs_dir3_block_read(NULL, dp, &bp);
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000590 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 return error;
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 /*
594 * Extract the byte offset we start at from the seek pointer.
595 * We'll skip entries before this.
596 */
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000597 wantoff = xfs_dir2_dataptr_to_off(mp, *offset);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000598 hdr = bp->b_addr;
Dave Chinner33363fe2013-04-03 16:11:22 +1100599 xfs_dir3_data_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 /*
601 * Set up values for the loop.
602 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200603 btp = xfs_dir2_block_tail_p(mp, hdr);
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100604 ptr = (char *)xfs_dir3_data_entry_p(hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000605 endptr = (char *)xfs_dir2_block_leaf_p(btp);
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 /*
608 * Loop over the data portion of the block.
609 * Each object is a real entry (dep) or an unused one (dup).
610 */
611 while (ptr < endptr) {
612 dup = (xfs_dir2_data_unused_t *)ptr;
613 /*
614 * Unused, skip it.
615 */
Nathan Scottad354eb2006-03-17 17:27:37 +1100616 if (be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
617 ptr += be16_to_cpu(dup->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 continue;
619 }
620
621 dep = (xfs_dir2_data_entry_t *)ptr;
622
623 /*
624 * Bump pointer for the next iteration.
625 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000626 ptr += xfs_dir2_data_entsize(dep->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 /*
628 * The entry is before the desired starting point, skip it.
629 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200630 if ((char *)dep - (char *)hdr < wantoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000633 cook = xfs_dir2_db_off_to_dataptr(mp, mp->m_dirdatablk,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200634 (char *)dep - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
636 /*
637 * If it didn't fit, set the final offset to here & return.
638 */
Dave Chinner4a24cb72010-01-20 10:48:05 +1100639 if (filldir(dirent, (char *)dep->name, dep->namelen,
640 cook & 0x7fffffff, be64_to_cpu(dep->inumber),
641 DT_UNKNOWN)) {
Christoph Hellwig15440312009-01-08 14:00:00 -0500642 *offset = cook & 0x7fffffff;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000643 xfs_trans_brelse(NULL, bp);
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000644 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 }
646 }
647
648 /*
649 * Reached the end of the block.
Nathan Scottc41564b2006-03-29 08:55:14 +1000650 * Set the offset to a non-existent block 1 and return.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 */
Christoph Hellwig15440312009-01-08 14:00:00 -0500652 *offset = xfs_dir2_db_off_to_dataptr(mp, mp->m_dirdatablk + 1, 0) &
653 0x7fffffff;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000654 xfs_trans_brelse(NULL, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 return 0;
656}
657
658/*
659 * Log leaf entries from the block.
660 */
661static void
662xfs_dir2_block_log_leaf(
663 xfs_trans_t *tp, /* transaction structure */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000664 struct xfs_buf *bp, /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 int first, /* index of first logged leaf */
666 int last) /* index of last logged leaf */
667{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000668 xfs_dir2_data_hdr_t *hdr = bp->b_addr;
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200669 xfs_dir2_leaf_entry_t *blp;
670 xfs_dir2_block_tail_t *btp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200672 btp = xfs_dir2_block_tail_p(tp->t_mountp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000673 blp = xfs_dir2_block_leaf_p(btp);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000674 xfs_trans_log_buf(tp, bp, (uint)((char *)&blp[first] - (char *)hdr),
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200675 (uint)((char *)&blp[last + 1] - (char *)hdr - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
677
678/*
679 * Log the block tail.
680 */
681static void
682xfs_dir2_block_log_tail(
683 xfs_trans_t *tp, /* transaction structure */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000684 struct xfs_buf *bp) /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000686 xfs_dir2_data_hdr_t *hdr = bp->b_addr;
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200687 xfs_dir2_block_tail_t *btp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200689 btp = xfs_dir2_block_tail_p(tp->t_mountp, hdr);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000690 xfs_trans_log_buf(tp, bp, (uint)((char *)btp - (char *)hdr),
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200691 (uint)((char *)(btp + 1) - (char *)hdr - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692}
693
694/*
695 * Look up an entry in the block. This is the external routine,
696 * xfs_dir2_block_lookup_int does the real work.
697 */
698int /* error */
699xfs_dir2_block_lookup(
700 xfs_da_args_t *args) /* dir lookup arguments */
701{
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200702 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000704 struct xfs_buf *bp; /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 xfs_dir2_block_tail_t *btp; /* block tail */
706 xfs_dir2_data_entry_t *dep; /* block data entry */
707 xfs_inode_t *dp; /* incore inode */
708 int ent; /* entry index */
709 int error; /* error return value */
710 xfs_mount_t *mp; /* filesystem mount point */
711
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000712 trace_xfs_dir2_block_lookup(args);
713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 /*
715 * Get the buffer, look up the entry.
716 * If not found (ENOENT) then return, have no buffer.
717 */
718 if ((error = xfs_dir2_block_lookup_int(args, &bp, &ent)))
719 return error;
720 dp = args->dp;
721 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000722 hdr = bp->b_addr;
Dave Chinner33363fe2013-04-03 16:11:22 +1100723 xfs_dir3_data_check(dp, bp);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200724 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000725 blp = xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 /*
727 * Get the offset from the leaf entry, to point to the data.
728 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200729 dep = (xfs_dir2_data_entry_t *)((char *)hdr +
Barry Naujok384f3ce2008-05-21 16:58:22 +1000730 xfs_dir2_dataptr_to_off(mp, be32_to_cpu(blp[ent].address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 /*
Barry Naujok384f3ce2008-05-21 16:58:22 +1000732 * Fill in inode number, CI name if appropriate, release the block.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +1000734 args->inumber = be64_to_cpu(dep->inumber);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000735 error = xfs_dir_cilookup_result(args, dep->name, dep->namelen);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000736 xfs_trans_brelse(args->trans, bp);
Barry Naujok384f3ce2008-05-21 16:58:22 +1000737 return XFS_ERROR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738}
739
740/*
741 * Internal block lookup routine.
742 */
743static int /* error */
744xfs_dir2_block_lookup_int(
745 xfs_da_args_t *args, /* dir lookup arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000746 struct xfs_buf **bpp, /* returned block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 int *entno) /* returned entry number */
748{
749 xfs_dir2_dataptr_t addr; /* data entry address */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200750 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000752 struct xfs_buf *bp; /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 xfs_dir2_block_tail_t *btp; /* block tail */
754 xfs_dir2_data_entry_t *dep; /* block data entry */
755 xfs_inode_t *dp; /* incore inode */
756 int error; /* error return value */
757 xfs_dahash_t hash; /* found hash value */
758 int high; /* binary search high index */
759 int low; /* binary search low index */
760 int mid; /* binary search current idx */
761 xfs_mount_t *mp; /* filesystem mount point */
762 xfs_trans_t *tp; /* transaction pointer */
Barry Naujok5163f952008-05-21 16:41:01 +1000763 enum xfs_dacmp cmp; /* comparison result */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
765 dp = args->dp;
766 tp = args->trans;
767 mp = dp->i_mount;
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100768
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +1100769 error = xfs_dir3_block_read(tp, dp, &bp);
Dave Chinner4bb20a82012-11-12 22:54:10 +1100770 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 return error;
Dave Chinner20f7e9f2012-11-12 22:54:11 +1100772
Dave Chinner1d9025e2012-06-22 18:50:14 +1000773 hdr = bp->b_addr;
Dave Chinner33363fe2013-04-03 16:11:22 +1100774 xfs_dir3_data_check(dp, bp);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200775 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000776 blp = xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 /*
778 * Loop doing a binary search for our hash value.
779 * Find our entry, ENOENT if it's not there.
780 */
Nathan Scotte922fff2006-03-17 17:27:56 +1100781 for (low = 0, high = be32_to_cpu(btp->count) - 1; ; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 ASSERT(low <= high);
783 mid = (low + high) >> 1;
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100784 if ((hash = be32_to_cpu(blp[mid].hashval)) == args->hashval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 break;
786 if (hash < args->hashval)
787 low = mid + 1;
788 else
789 high = mid - 1;
790 if (low > high) {
Barry Naujok6a178102008-05-21 16:42:05 +1000791 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000792 xfs_trans_brelse(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 return XFS_ERROR(ENOENT);
794 }
795 }
796 /*
797 * Back up to the first one with the right hash value.
798 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100799 while (mid > 0 && be32_to_cpu(blp[mid - 1].hashval) == args->hashval) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 mid--;
801 }
802 /*
803 * Now loop forward through all the entries with the
804 * right hash value looking for our name.
805 */
806 do {
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100807 if ((addr = be32_to_cpu(blp[mid].address)) == XFS_DIR2_NULL_DATAPTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 continue;
809 /*
810 * Get pointer to the entry from the leaf.
811 */
812 dep = (xfs_dir2_data_entry_t *)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200813 ((char *)hdr + xfs_dir2_dataptr_to_off(mp, addr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 /*
Barry Naujok5163f952008-05-21 16:41:01 +1000815 * Compare name and if it's an exact match, return the index
816 * and buffer. If it's the first case-insensitive match, store
817 * the index and buffer and continue looking for an exact match.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 */
Barry Naujok5163f952008-05-21 16:41:01 +1000819 cmp = mp->m_dirnameops->compname(args, dep->name, dep->namelen);
820 if (cmp != XFS_CMP_DIFFERENT && cmp != args->cmpresult) {
821 args->cmpresult = cmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 *bpp = bp;
823 *entno = mid;
Barry Naujok5163f952008-05-21 16:41:01 +1000824 if (cmp == XFS_CMP_EXACT)
825 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 }
Barry Naujok5163f952008-05-21 16:41:01 +1000827 } while (++mid < be32_to_cpu(btp->count) &&
828 be32_to_cpu(blp[mid].hashval) == hash);
829
Barry Naujok6a178102008-05-21 16:42:05 +1000830 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
Barry Naujok5163f952008-05-21 16:41:01 +1000831 /*
832 * Here, we can only be doing a lookup (not a rename or replace).
833 * If a case-insensitive match was found earlier, return success.
834 */
835 if (args->cmpresult == XFS_CMP_CASE)
836 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 /*
838 * No match, release the buffer and return ENOENT.
839 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000840 xfs_trans_brelse(tp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 return XFS_ERROR(ENOENT);
842}
843
844/*
845 * Remove an entry from a block format directory.
846 * If that makes the block small enough to fit in shortform, transform it.
847 */
848int /* error */
849xfs_dir2_block_removename(
850 xfs_da_args_t *args) /* directory operation args */
851{
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200852 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 xfs_dir2_leaf_entry_t *blp; /* block leaf pointer */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000854 struct xfs_buf *bp; /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 xfs_dir2_block_tail_t *btp; /* block tail */
856 xfs_dir2_data_entry_t *dep; /* block data entry */
857 xfs_inode_t *dp; /* incore inode */
858 int ent; /* block leaf entry index */
859 int error; /* error return value */
860 xfs_mount_t *mp; /* filesystem mount point */
861 int needlog; /* need to log block header */
862 int needscan; /* need to fixup bestfree */
863 xfs_dir2_sf_hdr_t sfh; /* shortform header */
864 int size; /* shortform size */
865 xfs_trans_t *tp; /* transaction pointer */
866
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000867 trace_xfs_dir2_block_removename(args);
868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 /*
870 * Look up the entry in the block. Gets the buffer and entry index.
871 * It will always be there, the vnodeops level does a lookup first.
872 */
873 if ((error = xfs_dir2_block_lookup_int(args, &bp, &ent))) {
874 return error;
875 }
876 dp = args->dp;
877 tp = args->trans;
878 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000879 hdr = bp->b_addr;
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200880 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000881 blp = xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 /*
883 * Point to the data entry using the leaf entry.
884 */
885 dep = (xfs_dir2_data_entry_t *)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200886 ((char *)hdr + xfs_dir2_dataptr_to_off(mp, be32_to_cpu(blp[ent].address)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 /*
888 * Mark the data entry's space free.
889 */
890 needlog = needscan = 0;
891 xfs_dir2_data_make_free(tp, bp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200892 (xfs_dir2_data_aoff_t)((char *)dep - (char *)hdr),
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000893 xfs_dir2_data_entsize(dep->namelen), &needlog, &needscan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 /*
895 * Fix up the block tail.
896 */
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800897 be32_add_cpu(&btp->stale, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 xfs_dir2_block_log_tail(tp, bp);
899 /*
900 * Remove the leaf entry by marking it stale.
901 */
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100902 blp[ent].address = cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 xfs_dir2_block_log_leaf(tp, bp, ent, ent);
904 /*
905 * Fix up bestfree, log the header if necessary.
906 */
907 if (needscan)
Christoph Hellwigc2066e22011-07-08 14:35:38 +0200908 xfs_dir2_data_freescan(mp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 if (needlog)
910 xfs_dir2_data_log_header(tp, bp);
Dave Chinner33363fe2013-04-03 16:11:22 +1100911 xfs_dir3_data_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 /*
913 * See if the size as a shortform is good enough.
914 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200915 size = xfs_dir2_block_sfsize(dp, hdr, &sfh);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000916 if (size > XFS_IFORK_DSIZE(dp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 return 0;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000918
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 /*
920 * If it works, do the conversion.
921 */
922 return xfs_dir2_block_to_sf(args, bp, size, &sfh);
923}
924
925/*
926 * Replace an entry in a V2 block directory.
927 * Change the inode number to the new value.
928 */
929int /* error */
930xfs_dir2_block_replace(
931 xfs_da_args_t *args) /* directory operation args */
932{
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200933 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000935 struct xfs_buf *bp; /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 xfs_dir2_block_tail_t *btp; /* block tail */
937 xfs_dir2_data_entry_t *dep; /* block data entry */
938 xfs_inode_t *dp; /* incore inode */
939 int ent; /* leaf entry index */
940 int error; /* error return value */
941 xfs_mount_t *mp; /* filesystem mount point */
942
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000943 trace_xfs_dir2_block_replace(args);
944
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 /*
946 * Lookup the entry in the directory. Get buffer and entry index.
947 * This will always succeed since the caller has already done a lookup.
948 */
949 if ((error = xfs_dir2_block_lookup_int(args, &bp, &ent))) {
950 return error;
951 }
952 dp = args->dp;
953 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000954 hdr = bp->b_addr;
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200955 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +1000956 blp = xfs_dir2_block_leaf_p(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 /*
958 * Point to the data entry we need to change.
959 */
960 dep = (xfs_dir2_data_entry_t *)
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200961 ((char *)hdr + xfs_dir2_dataptr_to_off(mp, be32_to_cpu(blp[ent].address)));
Christoph Hellwigff9901c2006-06-09 14:48:37 +1000962 ASSERT(be64_to_cpu(dep->inumber) != args->inumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 /*
964 * Change the inode number to the new value.
965 */
Christoph Hellwigff9901c2006-06-09 14:48:37 +1000966 dep->inumber = cpu_to_be64(args->inumber);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 xfs_dir2_data_log_entry(args->trans, bp, dep);
Dave Chinner33363fe2013-04-03 16:11:22 +1100968 xfs_dir3_data_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 return 0;
970}
971
972/*
973 * Qsort comparison routine for the block leaf entries.
974 */
975static int /* sort order */
976xfs_dir2_block_sort(
977 const void *a, /* first leaf entry */
978 const void *b) /* second leaf entry */
979{
980 const xfs_dir2_leaf_entry_t *la; /* first leaf entry */
981 const xfs_dir2_leaf_entry_t *lb; /* second leaf entry */
982
983 la = a;
984 lb = b;
Nathan Scott3c1f9c12006-03-17 17:28:18 +1100985 return be32_to_cpu(la->hashval) < be32_to_cpu(lb->hashval) ? -1 :
986 (be32_to_cpu(la->hashval) > be32_to_cpu(lb->hashval) ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987}
988
989/*
990 * Convert a V2 leaf directory to a V2 block directory if possible.
991 */
992int /* error */
993xfs_dir2_leaf_to_block(
994 xfs_da_args_t *args, /* operation arguments */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000995 struct xfs_buf *lbp, /* leaf buffer */
996 struct xfs_buf *dbp) /* data buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997{
Nathan Scott68b3a102006-03-17 17:27:19 +1100998 __be16 *bestsp; /* leaf bests table */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +0200999 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 xfs_dir2_block_tail_t *btp; /* block tail */
1001 xfs_inode_t *dp; /* incore directory inode */
1002 xfs_dir2_data_unused_t *dup; /* unused data entry */
1003 int error; /* error return value */
1004 int from; /* leaf from index */
1005 xfs_dir2_leaf_t *leaf; /* leaf structure */
1006 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1007 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
1008 xfs_mount_t *mp; /* file system mount point */
1009 int needlog; /* need to log data header */
1010 int needscan; /* need to scan for bestfree */
1011 xfs_dir2_sf_hdr_t sfh; /* shortform header */
1012 int size; /* bytes used */
Nathan Scott3d693c62006-03-17 17:28:27 +11001013 __be16 *tagp; /* end of entry (tag) */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 int to; /* block/leaf to index */
1015 xfs_trans_t *tp; /* transaction pointer */
Dave Chinner24df33b2013-04-12 07:30:21 +10001016 struct xfs_dir2_leaf_entry *ents;
1017 struct xfs_dir3_icleaf_hdr leafhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001019 trace_xfs_dir2_leaf_to_block(args);
1020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 dp = args->dp;
1022 tp = args->trans;
1023 mp = dp->i_mount;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001024 leaf = lbp->b_addr;
Dave Chinner24df33b2013-04-12 07:30:21 +10001025 xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);
1026 ents = xfs_dir3_leaf_ents_p(leaf);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001027 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
Dave Chinner24df33b2013-04-12 07:30:21 +10001028
1029 ASSERT(leafhdr.magic == XFS_DIR2_LEAF1_MAGIC ||
1030 leafhdr.magic == XFS_DIR3_LEAF1_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 /*
1032 * If there are data blocks other than the first one, take this
1033 * opportunity to remove trailing empty data blocks that may have
1034 * been left behind during no-space-reservation operations.
1035 * These will show up in the leaf bests table.
1036 */
1037 while (dp->i_d.di_size > mp->m_dirblksize) {
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11001038 int hdrsz;
1039
1040 hdrsz = xfs_dir3_data_hdr_size(xfs_sb_version_hascrc(&mp->m_sb));
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001041 bestsp = xfs_dir2_leaf_bests_p(ltp);
Nathan Scottafbcb3f2006-03-17 17:27:28 +11001042 if (be16_to_cpu(bestsp[be32_to_cpu(ltp->bestcount) - 1]) ==
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11001043 mp->m_dirblksize - hdrsz) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 if ((error =
1045 xfs_dir2_leaf_trim_data(args, lbp,
Nathan Scottafbcb3f2006-03-17 17:27:28 +11001046 (xfs_dir2_db_t)(be32_to_cpu(ltp->bestcount) - 1))))
Dave Chinner1d9025e2012-06-22 18:50:14 +10001047 return error;
1048 } else
1049 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 }
1051 /*
1052 * Read the data block if we don't already have it, give up if it fails.
1053 */
Dave Chinner4bb20a82012-11-12 22:54:10 +11001054 if (!dbp) {
Dave Chinner33363fe2013-04-03 16:11:22 +11001055 error = xfs_dir3_data_read(tp, dp, mp->m_dirdatablk, -1, &dbp);
Dave Chinner4bb20a82012-11-12 22:54:10 +11001056 if (error)
1057 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10001059 hdr = dbp->b_addr;
Dave Chinner33363fe2013-04-03 16:11:22 +11001060 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
1061 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC));
1062
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 /*
1064 * Size of the "leaf" area in the block.
1065 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001066 size = (uint)sizeof(xfs_dir2_block_tail_t) +
Dave Chinner24df33b2013-04-12 07:30:21 +10001067 (uint)sizeof(*lep) * (leafhdr.count - leafhdr.stale);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 /*
1069 * Look at the last data entry.
1070 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001071 tagp = (__be16 *)((char *)hdr + mp->m_dirblksize) - 1;
1072 dup = (xfs_dir2_data_unused_t *)((char *)hdr + be16_to_cpu(*tagp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 /*
1074 * If it's not free or is too short we can't do it.
1075 */
Nathan Scottad354eb2006-03-17 17:27:37 +11001076 if (be16_to_cpu(dup->freetag) != XFS_DIR2_DATA_FREE_TAG ||
Dave Chinner1d9025e2012-06-22 18:50:14 +10001077 be16_to_cpu(dup->length) < size)
1078 return 0;
1079
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 /*
1081 * Start converting it to block form.
1082 */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11001083 xfs_dir3_block_init(mp, dbp, dp);
1084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 needlog = 1;
1086 needscan = 0;
1087 /*
1088 * Use up the space at the end of the block (blp/btp).
1089 */
1090 xfs_dir2_data_use_free(tp, dbp, dup, mp->m_dirblksize - size, size,
1091 &needlog, &needscan);
1092 /*
1093 * Initialize the block tail.
1094 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001095 btp = xfs_dir2_block_tail_p(mp, hdr);
Dave Chinner24df33b2013-04-12 07:30:21 +10001096 btp->count = cpu_to_be32(leafhdr.count - leafhdr.stale);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 btp->stale = 0;
1098 xfs_dir2_block_log_tail(tp, dbp);
1099 /*
1100 * Initialize the block leaf area. We compact out stale entries.
1101 */
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001102 lep = xfs_dir2_block_leaf_p(btp);
Dave Chinner24df33b2013-04-12 07:30:21 +10001103 for (from = to = 0; from < leafhdr.count; from++) {
1104 if (ents[from].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 continue;
Dave Chinner24df33b2013-04-12 07:30:21 +10001106 lep[to++] = ents[from];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 }
Nathan Scotte922fff2006-03-17 17:27:56 +11001108 ASSERT(to == be32_to_cpu(btp->count));
1109 xfs_dir2_block_log_leaf(tp, dbp, 0, be32_to_cpu(btp->count) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 /*
1111 * Scan the bestfree if we need it and log the data block header.
1112 */
1113 if (needscan)
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001114 xfs_dir2_data_freescan(mp, hdr, &needlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 if (needlog)
1116 xfs_dir2_data_log_header(tp, dbp);
1117 /*
1118 * Pitch the old leaf block.
1119 */
1120 error = xfs_da_shrink_inode(args, mp->m_dirleafblk, lbp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001121 if (error)
1122 return error;
1123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 /*
1125 * Now see if the resulting block can be shrunken to shortform.
1126 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001127 size = xfs_dir2_block_sfsize(dp, hdr, &sfh);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001128 if (size > XFS_IFORK_DSIZE(dp))
1129 return 0;
1130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 return xfs_dir2_block_to_sf(args, dbp, size, &sfh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132}
1133
1134/*
1135 * Convert the shortform directory to block form.
1136 */
1137int /* error */
1138xfs_dir2_sf_to_block(
1139 xfs_da_args_t *args) /* operation arguments */
1140{
1141 xfs_dir2_db_t blkno; /* dir-relative block # (0) */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001142 xfs_dir2_data_hdr_t *hdr; /* block header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001144 struct xfs_buf *bp; /* block buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 xfs_dir2_block_tail_t *btp; /* block tail pointer */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 xfs_dir2_data_entry_t *dep; /* data entry pointer */
1147 xfs_inode_t *dp; /* incore directory inode */
1148 int dummy; /* trash */
1149 xfs_dir2_data_unused_t *dup; /* unused entry pointer */
1150 int endoffset; /* end of data objects */
1151 int error; /* error return value */
1152 int i; /* index */
1153 xfs_mount_t *mp; /* filesystem mount point */
1154 int needlog; /* need to log block header */
1155 int needscan; /* need to scan block freespc */
1156 int newoffset; /* offset from current entry */
1157 int offset; /* target block offset */
1158 xfs_dir2_sf_entry_t *sfep; /* sf entry pointer */
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001159 xfs_dir2_sf_hdr_t *oldsfp; /* old shortform header */
1160 xfs_dir2_sf_hdr_t *sfp; /* shortform header */
Nathan Scott3d693c62006-03-17 17:28:27 +11001161 __be16 *tagp; /* end of data entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 xfs_trans_t *tp; /* transaction pointer */
Barry Naujok5163f952008-05-21 16:41:01 +10001163 struct xfs_name name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001165 trace_xfs_dir2_sf_to_block(args);
1166
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 dp = args->dp;
1168 tp = args->trans;
1169 mp = dp->i_mount;
1170 ASSERT(dp->i_df.if_flags & XFS_IFINLINE);
1171 /*
1172 * Bomb out if the shortform directory is way too short.
1173 */
1174 if (dp->i_d.di_size < offsetof(xfs_dir2_sf_hdr_t, parent)) {
1175 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1176 return XFS_ERROR(EIO);
1177 }
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001178
1179 oldsfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data;
1180
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 ASSERT(dp->i_df.if_bytes == dp->i_d.di_size);
1182 ASSERT(dp->i_df.if_u1.if_data != NULL);
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001183 ASSERT(dp->i_d.di_size >= xfs_dir2_sf_hdr_size(oldsfp->i8count));
1184
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 /*
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001186 * Copy the directory into a temporary buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 * Then pitch the incore inode data so we can make extents.
1188 */
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001189 sfp = kmem_alloc(dp->i_df.if_bytes, KM_SLEEP);
1190 memcpy(sfp, oldsfp, dp->i_df.if_bytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001192 xfs_idata_realloc(dp, -dp->i_df.if_bytes, XFS_DATA_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 dp->i_d.di_size = 0;
1194 xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001195
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 /*
1197 * Add block 0 to the inode.
1198 */
1199 error = xfs_dir2_grow_inode(args, XFS_DIR2_DATA_SPACE, &blkno);
1200 if (error) {
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001201 kmem_free(sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 return error;
1203 }
1204 /*
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11001205 * Initialize the data block, then convert it to block format.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11001207 error = xfs_dir3_data_init(args, blkno, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 if (error) {
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001209 kmem_free(sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 return error;
1211 }
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11001212 xfs_dir3_block_init(mp, bp, dp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001213 hdr = bp->b_addr;
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11001214
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 /*
1216 * Compute size of block "tail" area.
1217 */
1218 i = (uint)sizeof(*btp) +
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001219 (sfp->count + 2) * (uint)sizeof(xfs_dir2_leaf_entry_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 /*
1221 * The whole thing is initialized to free by the init routine.
1222 * Say we're using the leaf and tail area.
1223 */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11001224 dup = xfs_dir3_data_unused_p(hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 needlog = needscan = 0;
1226 xfs_dir2_data_use_free(tp, bp, dup, mp->m_dirblksize - i, i, &needlog,
1227 &needscan);
1228 ASSERT(needscan == 0);
1229 /*
1230 * Fill in the tail.
1231 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001232 btp = xfs_dir2_block_tail_p(mp, hdr);
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001233 btp->count = cpu_to_be32(sfp->count + 2); /* ., .. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 btp->stale = 0;
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001235 blp = xfs_dir2_block_leaf_p(btp);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001236 endoffset = (uint)((char *)blp - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 /*
1238 * Remove the freespace, we'll manage it.
1239 */
1240 xfs_dir2_data_use_free(tp, bp, dup,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001241 (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr),
Nathan Scottad354eb2006-03-17 17:27:37 +11001242 be16_to_cpu(dup->length), &needlog, &needscan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 /*
1244 * Create entry for .
1245 */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11001246 dep = xfs_dir3_data_dot_entry_p(hdr);
Christoph Hellwigff9901c2006-06-09 14:48:37 +10001247 dep->inumber = cpu_to_be64(dp->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 dep->namelen = 1;
1249 dep->name[0] = '.';
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001250 tagp = xfs_dir2_data_entry_tag_p(dep);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001251 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 xfs_dir2_data_log_entry(tp, bp, dep);
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001253 blp[0].hashval = cpu_to_be32(xfs_dir_hash_dot);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001254 blp[0].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(mp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001255 (char *)dep - (char *)hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 /*
1257 * Create entry for ..
1258 */
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11001259 dep = xfs_dir3_data_dotdot_entry_p(hdr);
Christoph Hellwig8bc38782011-07-08 14:35:03 +02001260 dep->inumber = cpu_to_be64(xfs_dir2_sf_get_parent_ino(sfp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 dep->namelen = 2;
1262 dep->name[0] = dep->name[1] = '.';
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001263 tagp = xfs_dir2_data_entry_tag_p(dep);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001264 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 xfs_dir2_data_log_entry(tp, bp, dep);
Nathan Scott3c1f9c12006-03-17 17:28:18 +11001266 blp[1].hashval = cpu_to_be32(xfs_dir_hash_dotdot);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001267 blp[1].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(mp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001268 (char *)dep - (char *)hdr));
Dave Chinnerf5f3d9b2013-04-03 16:11:20 +11001269 offset = xfs_dir3_data_first_offset(hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 /*
1271 * Loop over existing entries, stuff them in.
1272 */
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001273 i = 0;
1274 if (!sfp->count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 sfep = NULL;
1276 else
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001277 sfep = xfs_dir2_sf_firstentry(sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 /*
1279 * Need to preserve the existing offset values in the sf directory.
1280 * Insert holes (unused entries) where necessary.
1281 */
1282 while (offset < endoffset) {
1283 /*
1284 * sfep is null when we reach the end of the list.
1285 */
1286 if (sfep == NULL)
1287 newoffset = endoffset;
1288 else
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001289 newoffset = xfs_dir2_sf_get_offset(sfep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 /*
1291 * There should be a hole here, make one.
1292 */
1293 if (offset < newoffset) {
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001294 dup = (xfs_dir2_data_unused_t *)((char *)hdr + offset);
Nathan Scottad354eb2006-03-17 17:27:37 +11001295 dup->freetag = cpu_to_be16(XFS_DIR2_DATA_FREE_TAG);
1296 dup->length = cpu_to_be16(newoffset - offset);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001297 *xfs_dir2_data_unused_tag_p(dup) = cpu_to_be16(
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001298 ((char *)dup - (char *)hdr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 xfs_dir2_data_log_unused(tp, bp, dup);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02001300 xfs_dir2_data_freeinsert(hdr, dup, &dummy);
Nathan Scottad354eb2006-03-17 17:27:37 +11001301 offset += be16_to_cpu(dup->length);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 continue;
1303 }
1304 /*
1305 * Copy a real entry.
1306 */
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001307 dep = (xfs_dir2_data_entry_t *)((char *)hdr + newoffset);
Christoph Hellwig8bc38782011-07-08 14:35:03 +02001308 dep->inumber = cpu_to_be64(xfs_dir2_sfe_get_ino(sfp, sfep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 dep->namelen = sfep->namelen;
1310 memcpy(dep->name, sfep->name, dep->namelen);
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001311 tagp = xfs_dir2_data_entry_tag_p(dep);
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001312 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 xfs_dir2_data_log_entry(tp, bp, dep);
Barry Naujok5163f952008-05-21 16:41:01 +10001314 name.name = sfep->name;
1315 name.len = sfep->namelen;
1316 blp[2 + i].hashval = cpu_to_be32(mp->m_dirnameops->
1317 hashname(&name));
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001318 blp[2 + i].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(mp,
Christoph Hellwig4f6ae1a2011-07-08 14:35:27 +02001319 (char *)dep - (char *)hdr));
1320 offset = (int)((char *)(tagp + 1) - (char *)hdr);
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001321 if (++i == sfp->count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 sfep = NULL;
1323 else
Christoph Hellwigbbaaf532007-06-28 16:43:50 +10001324 sfep = xfs_dir2_sf_nextentry(sfp, sfep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 }
1326 /* Done with the temporary buffer */
Christoph Hellwigac8ba502011-07-08 14:35:13 +02001327 kmem_free(sfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 /*
1329 * Sort the leaf entries by hash value.
1330 */
Nathan Scotte922fff2006-03-17 17:27:56 +11001331 xfs_sort(blp, be32_to_cpu(btp->count), sizeof(*blp), xfs_dir2_block_sort);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 /*
1333 * Log the leaf entry area and tail.
1334 * Already logged the header in data_init, ignore needlog.
1335 */
1336 ASSERT(needscan == 0);
Nathan Scotte922fff2006-03-17 17:27:56 +11001337 xfs_dir2_block_log_leaf(tp, bp, 0, be32_to_cpu(btp->count) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 xfs_dir2_block_log_tail(tp, bp);
Dave Chinner33363fe2013-04-03 16:11:22 +11001339 xfs_dir3_data_check(dp, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 return 0;
1341}