]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/xfs/libxfs/xfs_dir2_block.c
Merge branch 'core-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[mirror_ubuntu-artful-kernel.git] / fs / xfs / libxfs / xfs_dir2_block.c
CommitLineData
1da177e4 1/*
7b718769 2 * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
f5f3d9b0 3 * Copyright (c) 2013 Red Hat, Inc.
7b718769 4 * All Rights Reserved.
1da177e4 5 *
7b718769
NS
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
1da177e4
LT
8 * published by the Free Software Foundation.
9 *
7b718769
NS
10 * 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.
1da177e4 14 *
7b718769
NS
15 * 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
1da177e4 18 */
1da177e4 19#include "xfs.h"
a844f451 20#include "xfs_fs.h"
a4fbe6ab 21#include "xfs_format.h"
239880ef
DC
22#include "xfs_log_format.h"
23#include "xfs_trans_resv.h"
1da177e4 24#include "xfs_mount.h"
57062787 25#include "xfs_da_format.h"
a844f451 26#include "xfs_da_btree.h"
1da177e4 27#include "xfs_inode.h"
239880ef 28#include "xfs_trans.h"
a844f451 29#include "xfs_inode_item.h"
f3508bcd 30#include "xfs_bmap.h"
f5f3d9b0 31#include "xfs_buf_item.h"
2b9ab5ab 32#include "xfs_dir2.h"
57926640 33#include "xfs_dir2_priv.h"
1da177e4 34#include "xfs_error.h"
0b1b213f 35#include "xfs_trace.h"
f5f3d9b0 36#include "xfs_cksum.h"
1da177e4
LT
37
38/*
39 * Local function prototypes.
40 */
1d9025e5
DC
41static void xfs_dir2_block_log_leaf(xfs_trans_t *tp, struct xfs_buf *bp,
42 int first, int last);
43static void xfs_dir2_block_log_tail(xfs_trans_t *tp, struct xfs_buf *bp);
44static int xfs_dir2_block_lookup_int(xfs_da_args_t *args, struct xfs_buf **bpp,
1da177e4
LT
45 int *entno);
46static int xfs_dir2_block_sort(const void *a, const void *b);
47
f6c2d1fa
NS
48static xfs_dahash_t xfs_dir_hash_dot, xfs_dir_hash_dotdot;
49
50/*
51 * One-time startup routine called from xfs_init().
52 */
53void
54xfs_dir_startup(void)
55{
4a24cb71
DC
56 xfs_dir_hash_dot = xfs_da_hashname((unsigned char *)".", 1);
57 xfs_dir_hash_dotdot = xfs_da_hashname((unsigned char *)"..", 2);
f6c2d1fa
NS
58}
59
f5f3d9b0
DC
60static bool
61xfs_dir3_block_verify(
82025d7f
DC
62 struct xfs_buf *bp)
63{
64 struct xfs_mount *mp = bp->b_target->bt_mount;
f5f3d9b0
DC
65 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
66
67 if (xfs_sb_version_hascrc(&mp->m_sb)) {
68 if (hdr3->magic != cpu_to_be32(XFS_DIR3_BLOCK_MAGIC))
69 return false;
ce748eaa 70 if (!uuid_equal(&hdr3->uuid, &mp->m_sb.sb_meta_uuid))
f5f3d9b0
DC
71 return false;
72 if (be64_to_cpu(hdr3->blkno) != bp->b_bn)
73 return false;
74 } else {
75 if (hdr3->magic != cpu_to_be32(XFS_DIR2_BLOCK_MAGIC))
76 return false;
82025d7f 77 }
33363fee 78 if (__xfs_dir3_data_check(NULL, bp))
f5f3d9b0
DC
79 return false;
80 return true;
612cfbfe 81}
82025d7f 82
612cfbfe 83static void
f5f3d9b0 84xfs_dir3_block_read_verify(
612cfbfe
DC
85 struct xfs_buf *bp)
86{
f5f3d9b0
DC
87 struct xfs_mount *mp = bp->b_target->bt_mount;
88
ce5028cf
ES
89 if (xfs_sb_version_hascrc(&mp->m_sb) &&
90 !xfs_buf_verify_cksum(bp, XFS_DIR3_DATA_CRC_OFF))
2451337d 91 xfs_buf_ioerror(bp, -EFSBADCRC);
ce5028cf 92 else if (!xfs_dir3_block_verify(bp))
2451337d 93 xfs_buf_ioerror(bp, -EFSCORRUPTED);
ce5028cf
ES
94
95 if (bp->b_error)
96 xfs_verifier_error(bp);
612cfbfe
DC
97}
98
1813dd64 99static void
f5f3d9b0 100xfs_dir3_block_write_verify(
612cfbfe
DC
101 struct xfs_buf *bp)
102{
f5f3d9b0
DC
103 struct xfs_mount *mp = bp->b_target->bt_mount;
104 struct xfs_buf_log_item *bip = bp->b_fspriv;
105 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
106
107 if (!xfs_dir3_block_verify(bp)) {
2451337d 108 xfs_buf_ioerror(bp, -EFSCORRUPTED);
ce5028cf 109 xfs_verifier_error(bp);
f5f3d9b0
DC
110 return;
111 }
112
113 if (!xfs_sb_version_hascrc(&mp->m_sb))
114 return;
115
116 if (bip)
117 hdr3->lsn = cpu_to_be64(bip->bli_item.li_lsn);
118
f1dbcd7e 119 xfs_buf_update_cksum(bp, XFS_DIR3_DATA_CRC_OFF);
82025d7f
DC
120}
121
f5f3d9b0
DC
122const struct xfs_buf_ops xfs_dir3_block_buf_ops = {
123 .verify_read = xfs_dir3_block_read_verify,
124 .verify_write = xfs_dir3_block_write_verify,
1813dd64
DC
125};
126
4a8af273 127int
f5f3d9b0 128xfs_dir3_block_read(
20f7e9f3
DC
129 struct xfs_trans *tp,
130 struct xfs_inode *dp,
131 struct xfs_buf **bpp)
132{
133 struct xfs_mount *mp = dp->i_mount;
d75afeb3 134 int err;
20f7e9f3 135
7dda6e86 136 err = xfs_da_read_buf(tp, dp, mp->m_dir_geo->datablk, -1, bpp,
f5f3d9b0 137 XFS_DATA_FORK, &xfs_dir3_block_buf_ops);
d75afeb3 138 if (!err && tp)
61fe135c 139 xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_DIR_BLOCK_BUF);
d75afeb3 140 return err;
f5f3d9b0
DC
141}
142
143static void
144xfs_dir3_block_init(
145 struct xfs_mount *mp,
d75afeb3 146 struct xfs_trans *tp,
f5f3d9b0
DC
147 struct xfs_buf *bp,
148 struct xfs_inode *dp)
149{
150 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
151
152 bp->b_ops = &xfs_dir3_block_buf_ops;
61fe135c 153 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_BLOCK_BUF);
f5f3d9b0
DC
154
155 if (xfs_sb_version_hascrc(&mp->m_sb)) {
156 memset(hdr3, 0, sizeof(*hdr3));
157 hdr3->magic = cpu_to_be32(XFS_DIR3_BLOCK_MAGIC);
158 hdr3->blkno = cpu_to_be64(bp->b_bn);
159 hdr3->owner = cpu_to_be64(dp->i_ino);
ce748eaa 160 uuid_copy(&hdr3->uuid, &mp->m_sb.sb_meta_uuid);
f5f3d9b0
DC
161 return;
162
163 }
164 hdr3->magic = cpu_to_be32(XFS_DIR2_BLOCK_MAGIC);
20f7e9f3
DC
165}
166
167static void
168xfs_dir2_block_need_space(
2ca98774 169 struct xfs_inode *dp,
20f7e9f3
DC
170 struct xfs_dir2_data_hdr *hdr,
171 struct xfs_dir2_block_tail *btp,
172 struct xfs_dir2_leaf_entry *blp,
173 __be16 **tagpp,
174 struct xfs_dir2_data_unused **dupp,
175 struct xfs_dir2_data_unused **enddupp,
176 int *compact,
177 int len)
178{
179 struct xfs_dir2_data_free *bf;
180 __be16 *tagp = NULL;
181 struct xfs_dir2_data_unused *dup = NULL;
182 struct xfs_dir2_data_unused *enddup = NULL;
183
184 *compact = 0;
2ca98774 185 bf = dp->d_ops->data_bestfree_p(hdr);
20f7e9f3
DC
186
187 /*
188 * If there are stale entries we'll use one for the leaf.
189 */
190 if (btp->stale) {
191 if (be16_to_cpu(bf[0].length) >= len) {
192 /*
193 * The biggest entry enough to avoid compaction.
194 */
195 dup = (xfs_dir2_data_unused_t *)
196 ((char *)hdr + be16_to_cpu(bf[0].offset));
197 goto out;
198 }
199
200 /*
201 * Will need to compact to make this work.
202 * Tag just before the first leaf entry.
203 */
204 *compact = 1;
205 tagp = (__be16 *)blp - 1;
206
207 /* Data object just before the first leaf entry. */
208 dup = (xfs_dir2_data_unused_t *)((char *)hdr + be16_to_cpu(*tagp));
209
210 /*
211 * If it's not free then the data will go where the
212 * leaf data starts now, if it works at all.
213 */
214 if (be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
215 if (be16_to_cpu(dup->length) + (be32_to_cpu(btp->stale) - 1) *
216 (uint)sizeof(*blp) < len)
217 dup = NULL;
218 } else if ((be32_to_cpu(btp->stale) - 1) * (uint)sizeof(*blp) < len)
219 dup = NULL;
220 else
221 dup = (xfs_dir2_data_unused_t *)blp;
222 goto out;
223 }
224
225 /*
226 * no stale entries, so just use free space.
227 * Tag just before the first leaf entry.
228 */
229 tagp = (__be16 *)blp - 1;
230
231 /* Data object just before the first leaf entry. */
232 enddup = (xfs_dir2_data_unused_t *)((char *)hdr + be16_to_cpu(*tagp));
233
234 /*
235 * If it's not free then can't do this add without cleaning up:
236 * the space before the first leaf entry needs to be free so it
237 * can be expanded to hold the pointer to the new entry.
238 */
239 if (be16_to_cpu(enddup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
240 /*
241 * Check out the biggest freespace and see if it's the same one.
242 */
243 dup = (xfs_dir2_data_unused_t *)
244 ((char *)hdr + be16_to_cpu(bf[0].offset));
245 if (dup != enddup) {
246 /*
247 * Not the same free entry, just check its length.
248 */
249 if (be16_to_cpu(dup->length) < len)
250 dup = NULL;
251 goto out;
252 }
253
254 /*
255 * It is the biggest freespace, can it hold the leaf too?
256 */
257 if (be16_to_cpu(dup->length) < len + (uint)sizeof(*blp)) {
258 /*
259 * Yes, use the second-largest entry instead if it works.
260 */
261 if (be16_to_cpu(bf[1].length) >= len)
262 dup = (xfs_dir2_data_unused_t *)
263 ((char *)hdr + be16_to_cpu(bf[1].offset));
264 else
265 dup = NULL;
266 }
267 }
268out:
269 *tagpp = tagp;
270 *dupp = dup;
271 *enddupp = enddup;
272}
273
274/*
275 * compact the leaf entries.
276 * Leave the highest-numbered stale entry stale.
277 * XXX should be the one closest to mid but mid is not yet computed.
278 */
279static void
280xfs_dir2_block_compact(
bc85178a 281 struct xfs_da_args *args,
20f7e9f3
DC
282 struct xfs_buf *bp,
283 struct xfs_dir2_data_hdr *hdr,
284 struct xfs_dir2_block_tail *btp,
285 struct xfs_dir2_leaf_entry *blp,
286 int *needlog,
287 int *lfloghigh,
288 int *lfloglow)
289{
290 int fromidx; /* source leaf index */
291 int toidx; /* target leaf index */
292 int needscan = 0;
293 int highstale; /* high stale index */
294
295 fromidx = toidx = be32_to_cpu(btp->count) - 1;
296 highstale = *lfloghigh = -1;
297 for (; fromidx >= 0; fromidx--) {
298 if (blp[fromidx].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR)) {
299 if (highstale == -1)
300 highstale = toidx;
301 else {
302 if (*lfloghigh == -1)
303 *lfloghigh = toidx;
304 continue;
305 }
306 }
307 if (fromidx < toidx)
308 blp[toidx] = blp[fromidx];
309 toidx--;
310 }
311 *lfloglow = toidx + 1 - (be32_to_cpu(btp->stale) - 1);
312 *lfloghigh -= be32_to_cpu(btp->stale) - 1;
313 be32_add_cpu(&btp->count, -(be32_to_cpu(btp->stale) - 1));
bc85178a 314 xfs_dir2_data_make_free(args, bp,
20f7e9f3
DC
315 (xfs_dir2_data_aoff_t)((char *)blp - (char *)hdr),
316 (xfs_dir2_data_aoff_t)((be32_to_cpu(btp->stale) - 1) * sizeof(*blp)),
317 needlog, &needscan);
20f7e9f3
DC
318 btp->stale = cpu_to_be32(1);
319 /*
320 * If we now need to rebuild the bestfree map, do so.
321 * This needs to happen before the next call to use_free.
322 */
323 if (needscan)
bc85178a 324 xfs_dir2_data_freescan(args->dp, hdr, needlog);
20f7e9f3
DC
325}
326
1da177e4
LT
327/*
328 * Add an entry to a block directory.
329 */
330int /* error */
331xfs_dir2_block_addname(
332 xfs_da_args_t *args) /* directory op arguments */
333{
4f6ae1a4 334 xfs_dir2_data_hdr_t *hdr; /* block header */
1da177e4 335 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
1d9025e5 336 struct xfs_buf *bp; /* buffer for block */
1da177e4
LT
337 xfs_dir2_block_tail_t *btp; /* block tail */
338 int compact; /* need to compact leaf ents */
339 xfs_dir2_data_entry_t *dep; /* block data entry */
340 xfs_inode_t *dp; /* directory inode */
341 xfs_dir2_data_unused_t *dup; /* block unused entry */
342 int error; /* error return value */
343 xfs_dir2_data_unused_t *enddup=NULL; /* unused at end of data */
344 xfs_dahash_t hash; /* hash value of found entry */
345 int high; /* high index for binary srch */
346 int highstale; /* high stale index */
347 int lfloghigh=0; /* last final leaf to log */
348 int lfloglow=0; /* first final leaf to log */
349 int len; /* length of the new entry */
350 int low; /* low index for binary srch */
351 int lowstale; /* low stale index */
352 int mid=0; /* midpoint for binary srch */
1da177e4
LT
353 int needlog; /* need to log header */
354 int needscan; /* need to rescan freespace */
3d693c6e 355 __be16 *tagp; /* pointer to tag value */
1da177e4
LT
356 xfs_trans_t *tp; /* transaction structure */
357
0b1b213f
CH
358 trace_xfs_dir2_block_addname(args);
359
1da177e4
LT
360 dp = args->dp;
361 tp = args->trans;
20f7e9f3
DC
362
363 /* Read the (one and only) directory block into bp. */
f5f3d9b0 364 error = xfs_dir3_block_read(tp, dp, &bp);
4bb20a83 365 if (error)
1da177e4 366 return error;
20f7e9f3 367
9d23fc85 368 len = dp->d_ops->data_entsize(args->namelen);
20f7e9f3 369
1da177e4
LT
370 /*
371 * Set up pointers to parts of the block.
372 */
20f7e9f3 373 hdr = bp->b_addr;
8f66193c 374 btp = xfs_dir2_block_tail_p(args->geo, hdr);
bbaaf538 375 blp = xfs_dir2_block_leaf_p(btp);
20f7e9f3 376
1da177e4 377 /*
20f7e9f3
DC
378 * Find out if we can reuse stale entries or whether we need extra
379 * space for entry and new leaf.
1da177e4 380 */
2ca98774 381 xfs_dir2_block_need_space(dp, hdr, btp, blp, &tagp, &dup,
20f7e9f3
DC
382 &enddup, &compact, len);
383
1da177e4 384 /*
20f7e9f3 385 * Done everything we need for a space check now.
1da177e4 386 */
20f7e9f3 387 if (args->op_flags & XFS_DA_OP_JUSTCHECK) {
1d9025e5 388 xfs_trans_brelse(tp, bp);
20f7e9f3 389 if (!dup)
2451337d 390 return -ENOSPC;
20f7e9f3
DC
391 return 0;
392 }
393
1da177e4
LT
394 /*
395 * If we don't have space for the new entry & leaf ...
396 */
397 if (!dup) {
20f7e9f3
DC
398 /* Don't have a space reservation: return no-space. */
399 if (args->total == 0)
2451337d 400 return -ENOSPC;
1da177e4
LT
401 /*
402 * Convert to the next larger format.
403 * Then add the new entry in that format.
404 */
405 error = xfs_dir2_block_to_leaf(args, bp);
1da177e4
LT
406 if (error)
407 return error;
408 return xfs_dir2_leaf_addname(args);
409 }
20f7e9f3 410
1da177e4 411 needlog = needscan = 0;
20f7e9f3 412
1da177e4
LT
413 /*
414 * If need to compact the leaf entries, do it now.
1da177e4 415 */
37f13561 416 if (compact) {
bc85178a 417 xfs_dir2_block_compact(args, bp, hdr, btp, blp, &needlog,
20f7e9f3 418 &lfloghigh, &lfloglow);
37f13561
ES
419 /* recalculate blp post-compaction */
420 blp = xfs_dir2_block_leaf_p(btp);
421 } else if (btp->stale) {
1da177e4 422 /*
20f7e9f3
DC
423 * Set leaf logging boundaries to impossible state.
424 * For the no-stale case they're set explicitly.
1da177e4 425 */
e922fffa 426 lfloglow = be32_to_cpu(btp->count);
1da177e4
LT
427 lfloghigh = -1;
428 }
20f7e9f3 429
1da177e4
LT
430 /*
431 * Find the slot that's first lower than our hash value, -1 if none.
432 */
e922fffa 433 for (low = 0, high = be32_to_cpu(btp->count) - 1; low <= high; ) {
1da177e4 434 mid = (low + high) >> 1;
3c1f9c15 435 if ((hash = be32_to_cpu(blp[mid].hashval)) == args->hashval)
1da177e4
LT
436 break;
437 if (hash < args->hashval)
438 low = mid + 1;
439 else
440 high = mid - 1;
441 }
3c1f9c15 442 while (mid >= 0 && be32_to_cpu(blp[mid].hashval) >= args->hashval) {
1da177e4
LT
443 mid--;
444 }
445 /*
446 * No stale entries, will use enddup space to hold new leaf.
447 */
448 if (!btp->stale) {
449 /*
450 * Mark the space needed for the new leaf entry, now in use.
451 */
bc85178a 452 xfs_dir2_data_use_free(args, bp, enddup,
1da177e4 453 (xfs_dir2_data_aoff_t)
4f6ae1a4 454 ((char *)enddup - (char *)hdr + be16_to_cpu(enddup->length) -
1da177e4
LT
455 sizeof(*blp)),
456 (xfs_dir2_data_aoff_t)sizeof(*blp),
457 &needlog, &needscan);
458 /*
459 * Update the tail (entry count).
460 */
413d57c9 461 be32_add_cpu(&btp->count, 1);
1da177e4
LT
462 /*
463 * If we now need to rebuild the bestfree map, do so.
464 * This needs to happen before the next call to use_free.
465 */
466 if (needscan) {
9d23fc85 467 xfs_dir2_data_freescan(dp, hdr, &needlog);
1da177e4
LT
468 needscan = 0;
469 }
470 /*
471 * Adjust pointer to the first leaf entry, we're about to move
472 * the table up one to open up space for the new leaf entry.
473 * Then adjust our index to match.
474 */
475 blp--;
476 mid++;
477 if (mid)
478 memmove(blp, &blp[1], mid * sizeof(*blp));
479 lfloglow = 0;
480 lfloghigh = mid;
481 }
482 /*
483 * Use a stale leaf for our new entry.
484 */
485 else {
486 for (lowstale = mid;
487 lowstale >= 0 &&
69ef921b
CH
488 blp[lowstale].address !=
489 cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
1da177e4
LT
490 lowstale--)
491 continue;
492 for (highstale = mid + 1;
e922fffa 493 highstale < be32_to_cpu(btp->count) &&
69ef921b
CH
494 blp[highstale].address !=
495 cpu_to_be32(XFS_DIR2_NULL_DATAPTR) &&
1da177e4
LT
496 (lowstale < 0 || mid - lowstale > highstale - mid);
497 highstale++)
498 continue;
499 /*
500 * Move entries toward the low-numbered stale entry.
501 */
502 if (lowstale >= 0 &&
e922fffa 503 (highstale == be32_to_cpu(btp->count) ||
1da177e4
LT
504 mid - lowstale <= highstale - mid)) {
505 if (mid - lowstale)
506 memmove(&blp[lowstale], &blp[lowstale + 1],
507 (mid - lowstale) * sizeof(*blp));
508 lfloglow = MIN(lowstale, lfloglow);
509 lfloghigh = MAX(mid, lfloghigh);
510 }
511 /*
512 * Move entries toward the high-numbered stale entry.
513 */
514 else {
e922fffa 515 ASSERT(highstale < be32_to_cpu(btp->count));
1da177e4
LT
516 mid++;
517 if (highstale - mid)
518 memmove(&blp[mid + 1], &blp[mid],
519 (highstale - mid) * sizeof(*blp));
520 lfloglow = MIN(mid, lfloglow);
521 lfloghigh = MAX(highstale, lfloghigh);
522 }
413d57c9 523 be32_add_cpu(&btp->stale, -1);
1da177e4
LT
524 }
525 /*
526 * Point to the new data entry.
527 */
528 dep = (xfs_dir2_data_entry_t *)dup;
529 /*
530 * Fill in the leaf entry.
531 */
3c1f9c15 532 blp[mid].hashval = cpu_to_be32(args->hashval);
25994053 533 blp[mid].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(
4f6ae1a4 534 (char *)dep - (char *)hdr));
1da177e4
LT
535 xfs_dir2_block_log_leaf(tp, bp, lfloglow, lfloghigh);
536 /*
537 * Mark space for the data entry used.
538 */
bc85178a 539 xfs_dir2_data_use_free(args, bp, dup,
4f6ae1a4 540 (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr),
1da177e4
LT
541 (xfs_dir2_data_aoff_t)len, &needlog, &needscan);
542 /*
543 * Create the new data entry.
544 */
ff9901c1 545 dep->inumber = cpu_to_be64(args->inumber);
1da177e4
LT
546 dep->namelen = args->namelen;
547 memcpy(dep->name, args->name, args->namelen);
9d23fc85
DC
548 dp->d_ops->data_put_ftype(dep, args->filetype);
549 tagp = dp->d_ops->data_entry_tag_p(dep);
4f6ae1a4 550 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
1da177e4
LT
551 /*
552 * Clean up the bestfree array and log the header, tail, and entry.
553 */
554 if (needscan)
9d23fc85 555 xfs_dir2_data_freescan(dp, hdr, &needlog);
1da177e4 556 if (needlog)
bc85178a 557 xfs_dir2_data_log_header(args, bp);
1da177e4 558 xfs_dir2_block_log_tail(tp, bp);
bc85178a 559 xfs_dir2_data_log_entry(args, bp, dep);
33363fee 560 xfs_dir3_data_check(dp, bp);
1da177e4
LT
561 return 0;
562}
563
1da177e4
LT
564/*
565 * Log leaf entries from the block.
566 */
567static void
568xfs_dir2_block_log_leaf(
569 xfs_trans_t *tp, /* transaction structure */
1d9025e5 570 struct xfs_buf *bp, /* block buffer */
1da177e4
LT
571 int first, /* index of first logged leaf */
572 int last) /* index of last logged leaf */
573{
1d9025e5 574 xfs_dir2_data_hdr_t *hdr = bp->b_addr;
4f6ae1a4
CH
575 xfs_dir2_leaf_entry_t *blp;
576 xfs_dir2_block_tail_t *btp;
1da177e4 577
8f66193c 578 btp = xfs_dir2_block_tail_p(tp->t_mountp->m_dir_geo, hdr);
bbaaf538 579 blp = xfs_dir2_block_leaf_p(btp);
1d9025e5 580 xfs_trans_log_buf(tp, bp, (uint)((char *)&blp[first] - (char *)hdr),
4f6ae1a4 581 (uint)((char *)&blp[last + 1] - (char *)hdr - 1));
1da177e4
LT
582}
583
584/*
585 * Log the block tail.
586 */
587static void
588xfs_dir2_block_log_tail(
589 xfs_trans_t *tp, /* transaction structure */
1d9025e5 590 struct xfs_buf *bp) /* block buffer */
1da177e4 591{
1d9025e5 592 xfs_dir2_data_hdr_t *hdr = bp->b_addr;
4f6ae1a4 593 xfs_dir2_block_tail_t *btp;
1da177e4 594
8f66193c 595 btp = xfs_dir2_block_tail_p(tp->t_mountp->m_dir_geo, hdr);
1d9025e5 596 xfs_trans_log_buf(tp, bp, (uint)((char *)btp - (char *)hdr),
4f6ae1a4 597 (uint)((char *)(btp + 1) - (char *)hdr - 1));
1da177e4
LT
598}
599
600/*
601 * Look up an entry in the block. This is the external routine,
602 * xfs_dir2_block_lookup_int does the real work.
603 */
604int /* error */
605xfs_dir2_block_lookup(
606 xfs_da_args_t *args) /* dir lookup arguments */
607{
4f6ae1a4 608 xfs_dir2_data_hdr_t *hdr; /* block header */
1da177e4 609 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
1d9025e5 610 struct xfs_buf *bp; /* block buffer */
1da177e4
LT
611 xfs_dir2_block_tail_t *btp; /* block tail */
612 xfs_dir2_data_entry_t *dep; /* block data entry */
613 xfs_inode_t *dp; /* incore inode */
614 int ent; /* entry index */
615 int error; /* error return value */
1da177e4 616
0b1b213f
CH
617 trace_xfs_dir2_block_lookup(args);
618
1da177e4
LT
619 /*
620 * Get the buffer, look up the entry.
621 * If not found (ENOENT) then return, have no buffer.
622 */
623 if ((error = xfs_dir2_block_lookup_int(args, &bp, &ent)))
624 return error;
625 dp = args->dp;
1d9025e5 626 hdr = bp->b_addr;
33363fee 627 xfs_dir3_data_check(dp, bp);
8f66193c 628 btp = xfs_dir2_block_tail_p(args->geo, hdr);
bbaaf538 629 blp = xfs_dir2_block_leaf_p(btp);
1da177e4
LT
630 /*
631 * Get the offset from the leaf entry, to point to the data.
632 */
4f6ae1a4 633 dep = (xfs_dir2_data_entry_t *)((char *)hdr +
30028030
DC
634 xfs_dir2_dataptr_to_off(args->geo,
635 be32_to_cpu(blp[ent].address)));
1da177e4 636 /*
384f3ced 637 * Fill in inode number, CI name if appropriate, release the block.
1da177e4 638 */
ff9901c1 639 args->inumber = be64_to_cpu(dep->inumber);
9d23fc85 640 args->filetype = dp->d_ops->data_get_ftype(dep);
384f3ced 641 error = xfs_dir_cilookup_result(args, dep->name, dep->namelen);
1d9025e5 642 xfs_trans_brelse(args->trans, bp);
b474c7ae 643 return error;
1da177e4
LT
644}
645
646/*
647 * Internal block lookup routine.
648 */
649static int /* error */
650xfs_dir2_block_lookup_int(
651 xfs_da_args_t *args, /* dir lookup arguments */
1d9025e5 652 struct xfs_buf **bpp, /* returned block buffer */
1da177e4
LT
653 int *entno) /* returned entry number */
654{
655 xfs_dir2_dataptr_t addr; /* data entry address */
4f6ae1a4 656 xfs_dir2_data_hdr_t *hdr; /* block header */
1da177e4 657 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
1d9025e5 658 struct xfs_buf *bp; /* block buffer */
1da177e4
LT
659 xfs_dir2_block_tail_t *btp; /* block tail */
660 xfs_dir2_data_entry_t *dep; /* block data entry */
661 xfs_inode_t *dp; /* incore inode */
662 int error; /* error return value */
663 xfs_dahash_t hash; /* found hash value */
664 int high; /* binary search high index */
665 int low; /* binary search low index */
666 int mid; /* binary search current idx */
667 xfs_mount_t *mp; /* filesystem mount point */
668 xfs_trans_t *tp; /* transaction pointer */
5163f95a 669 enum xfs_dacmp cmp; /* comparison result */
1da177e4
LT
670
671 dp = args->dp;
672 tp = args->trans;
673 mp = dp->i_mount;
20f7e9f3 674
f5f3d9b0 675 error = xfs_dir3_block_read(tp, dp, &bp);
4bb20a83 676 if (error)
1da177e4 677 return error;
20f7e9f3 678
1d9025e5 679 hdr = bp->b_addr;
33363fee 680 xfs_dir3_data_check(dp, bp);
8f66193c 681 btp = xfs_dir2_block_tail_p(args->geo, hdr);
bbaaf538 682 blp = xfs_dir2_block_leaf_p(btp);
1da177e4
LT
683 /*
684 * Loop doing a binary search for our hash value.
685 * Find our entry, ENOENT if it's not there.
686 */
e922fffa 687 for (low = 0, high = be32_to_cpu(btp->count) - 1; ; ) {
1da177e4
LT
688 ASSERT(low <= high);
689 mid = (low + high) >> 1;
3c1f9c15 690 if ((hash = be32_to_cpu(blp[mid].hashval)) == args->hashval)
1da177e4
LT
691 break;
692 if (hash < args->hashval)
693 low = mid + 1;
694 else
695 high = mid - 1;
696 if (low > high) {
6a178100 697 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
1d9025e5 698 xfs_trans_brelse(tp, bp);
2451337d 699 return -ENOENT;
1da177e4
LT
700 }
701 }
702 /*
703 * Back up to the first one with the right hash value.
704 */
3c1f9c15 705 while (mid > 0 && be32_to_cpu(blp[mid - 1].hashval) == args->hashval) {
1da177e4
LT
706 mid--;
707 }
708 /*
709 * Now loop forward through all the entries with the
710 * right hash value looking for our name.
711 */
712 do {
3c1f9c15 713 if ((addr = be32_to_cpu(blp[mid].address)) == XFS_DIR2_NULL_DATAPTR)
1da177e4
LT
714 continue;
715 /*
716 * Get pointer to the entry from the leaf.
717 */
718 dep = (xfs_dir2_data_entry_t *)
30028030 719 ((char *)hdr + xfs_dir2_dataptr_to_off(args->geo, addr));
1da177e4 720 /*
5163f95a
BN
721 * Compare name and if it's an exact match, return the index
722 * and buffer. If it's the first case-insensitive match, store
723 * the index and buffer and continue looking for an exact match.
1da177e4 724 */
5163f95a
BN
725 cmp = mp->m_dirnameops->compname(args, dep->name, dep->namelen);
726 if (cmp != XFS_CMP_DIFFERENT && cmp != args->cmpresult) {
727 args->cmpresult = cmp;
1da177e4
LT
728 *bpp = bp;
729 *entno = mid;
5163f95a
BN
730 if (cmp == XFS_CMP_EXACT)
731 return 0;
1da177e4 732 }
5163f95a
BN
733 } while (++mid < be32_to_cpu(btp->count) &&
734 be32_to_cpu(blp[mid].hashval) == hash);
735
6a178100 736 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
5163f95a
BN
737 /*
738 * Here, we can only be doing a lookup (not a rename or replace).
739 * If a case-insensitive match was found earlier, return success.
740 */
741 if (args->cmpresult == XFS_CMP_CASE)
742 return 0;
1da177e4
LT
743 /*
744 * No match, release the buffer and return ENOENT.
745 */
1d9025e5 746 xfs_trans_brelse(tp, bp);
2451337d 747 return -ENOENT;
1da177e4
LT
748}
749
750/*
751 * Remove an entry from a block format directory.
752 * If that makes the block small enough to fit in shortform, transform it.
753 */
754int /* error */
755xfs_dir2_block_removename(
756 xfs_da_args_t *args) /* directory operation args */
757{
4f6ae1a4 758 xfs_dir2_data_hdr_t *hdr; /* block header */
1da177e4 759 xfs_dir2_leaf_entry_t *blp; /* block leaf pointer */
1d9025e5 760 struct xfs_buf *bp; /* block buffer */
1da177e4
LT
761 xfs_dir2_block_tail_t *btp; /* block tail */
762 xfs_dir2_data_entry_t *dep; /* block data entry */
763 xfs_inode_t *dp; /* incore inode */
764 int ent; /* block leaf entry index */
765 int error; /* error return value */
1da177e4
LT
766 int needlog; /* need to log block header */
767 int needscan; /* need to fixup bestfree */
768 xfs_dir2_sf_hdr_t sfh; /* shortform header */
769 int size; /* shortform size */
770 xfs_trans_t *tp; /* transaction pointer */
771
0b1b213f
CH
772 trace_xfs_dir2_block_removename(args);
773
1da177e4
LT
774 /*
775 * Look up the entry in the block. Gets the buffer and entry index.
776 * It will always be there, the vnodeops level does a lookup first.
777 */
778 if ((error = xfs_dir2_block_lookup_int(args, &bp, &ent))) {
779 return error;
780 }
781 dp = args->dp;
782 tp = args->trans;
1d9025e5 783 hdr = bp->b_addr;
8f66193c 784 btp = xfs_dir2_block_tail_p(args->geo, hdr);
bbaaf538 785 blp = xfs_dir2_block_leaf_p(btp);
1da177e4
LT
786 /*
787 * Point to the data entry using the leaf entry.
788 */
30028030
DC
789 dep = (xfs_dir2_data_entry_t *)((char *)hdr +
790 xfs_dir2_dataptr_to_off(args->geo,
791 be32_to_cpu(blp[ent].address)));
1da177e4
LT
792 /*
793 * Mark the data entry's space free.
794 */
795 needlog = needscan = 0;
bc85178a 796 xfs_dir2_data_make_free(args, bp,
4f6ae1a4 797 (xfs_dir2_data_aoff_t)((char *)dep - (char *)hdr),
9d23fc85 798 dp->d_ops->data_entsize(dep->namelen), &needlog, &needscan);
1da177e4
LT
799 /*
800 * Fix up the block tail.
801 */
413d57c9 802 be32_add_cpu(&btp->stale, 1);
1da177e4
LT
803 xfs_dir2_block_log_tail(tp, bp);
804 /*
805 * Remove the leaf entry by marking it stale.
806 */
3c1f9c15 807 blp[ent].address = cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
1da177e4
LT
808 xfs_dir2_block_log_leaf(tp, bp, ent, ent);
809 /*
810 * Fix up bestfree, log the header if necessary.
811 */
812 if (needscan)
9d23fc85 813 xfs_dir2_data_freescan(dp, hdr, &needlog);
1da177e4 814 if (needlog)
bc85178a 815 xfs_dir2_data_log_header(args, bp);
33363fee 816 xfs_dir3_data_check(dp, bp);
1da177e4
LT
817 /*
818 * See if the size as a shortform is good enough.
819 */
4f6ae1a4 820 size = xfs_dir2_block_sfsize(dp, hdr, &sfh);
1d9025e5 821 if (size > XFS_IFORK_DSIZE(dp))
1da177e4 822 return 0;
1d9025e5 823
1da177e4
LT
824 /*
825 * If it works, do the conversion.
826 */
827 return xfs_dir2_block_to_sf(args, bp, size, &sfh);
828}
829
830/*
831 * Replace an entry in a V2 block directory.
832 * Change the inode number to the new value.
833 */
834int /* error */
835xfs_dir2_block_replace(
836 xfs_da_args_t *args) /* directory operation args */
837{
4f6ae1a4 838 xfs_dir2_data_hdr_t *hdr; /* block header */
1da177e4 839 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
1d9025e5 840 struct xfs_buf *bp; /* block buffer */
1da177e4
LT
841 xfs_dir2_block_tail_t *btp; /* block tail */
842 xfs_dir2_data_entry_t *dep; /* block data entry */
843 xfs_inode_t *dp; /* incore inode */
844 int ent; /* leaf entry index */
845 int error; /* error return value */
1da177e4 846
0b1b213f
CH
847 trace_xfs_dir2_block_replace(args);
848
1da177e4
LT
849 /*
850 * Lookup the entry in the directory. Get buffer and entry index.
851 * This will always succeed since the caller has already done a lookup.
852 */
853 if ((error = xfs_dir2_block_lookup_int(args, &bp, &ent))) {
854 return error;
855 }
856 dp = args->dp;
1d9025e5 857 hdr = bp->b_addr;
8f66193c 858 btp = xfs_dir2_block_tail_p(args->geo, hdr);
bbaaf538 859 blp = xfs_dir2_block_leaf_p(btp);
1da177e4
LT
860 /*
861 * Point to the data entry we need to change.
862 */
30028030
DC
863 dep = (xfs_dir2_data_entry_t *)((char *)hdr +
864 xfs_dir2_dataptr_to_off(args->geo,
865 be32_to_cpu(blp[ent].address)));
ff9901c1 866 ASSERT(be64_to_cpu(dep->inumber) != args->inumber);
1da177e4
LT
867 /*
868 * Change the inode number to the new value.
869 */
ff9901c1 870 dep->inumber = cpu_to_be64(args->inumber);
9d23fc85 871 dp->d_ops->data_put_ftype(dep, args->filetype);
bc85178a 872 xfs_dir2_data_log_entry(args, bp, dep);
33363fee 873 xfs_dir3_data_check(dp, bp);
1da177e4
LT
874 return 0;
875}
876
877/*
878 * Qsort comparison routine for the block leaf entries.
879 */
880static int /* sort order */
881xfs_dir2_block_sort(
882 const void *a, /* first leaf entry */
883 const void *b) /* second leaf entry */
884{
885 const xfs_dir2_leaf_entry_t *la; /* first leaf entry */
886 const xfs_dir2_leaf_entry_t *lb; /* second leaf entry */
887
888 la = a;
889 lb = b;
3c1f9c15
NS
890 return be32_to_cpu(la->hashval) < be32_to_cpu(lb->hashval) ? -1 :
891 (be32_to_cpu(la->hashval) > be32_to_cpu(lb->hashval) ? 1 : 0);
1da177e4
LT
892}
893
894/*
895 * Convert a V2 leaf directory to a V2 block directory if possible.
896 */
897int /* error */
898xfs_dir2_leaf_to_block(
899 xfs_da_args_t *args, /* operation arguments */
1d9025e5
DC
900 struct xfs_buf *lbp, /* leaf buffer */
901 struct xfs_buf *dbp) /* data buffer */
1da177e4 902{
68b3a102 903 __be16 *bestsp; /* leaf bests table */
4f6ae1a4 904 xfs_dir2_data_hdr_t *hdr; /* block header */
1da177e4
LT
905 xfs_dir2_block_tail_t *btp; /* block tail */
906 xfs_inode_t *dp; /* incore directory inode */
907 xfs_dir2_data_unused_t *dup; /* unused data entry */
908 int error; /* error return value */
909 int from; /* leaf from index */
910 xfs_dir2_leaf_t *leaf; /* leaf structure */
911 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
912 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
913 xfs_mount_t *mp; /* file system mount point */
914 int needlog; /* need to log data header */
915 int needscan; /* need to scan for bestfree */
916 xfs_dir2_sf_hdr_t sfh; /* shortform header */
917 int size; /* bytes used */
3d693c6e 918 __be16 *tagp; /* end of entry (tag) */
1da177e4
LT
919 int to; /* block/leaf to index */
920 xfs_trans_t *tp; /* transaction pointer */
24df33b4
DC
921 struct xfs_dir2_leaf_entry *ents;
922 struct xfs_dir3_icleaf_hdr leafhdr;
1da177e4 923
0b1b213f
CH
924 trace_xfs_dir2_leaf_to_block(args);
925
1da177e4
LT
926 dp = args->dp;
927 tp = args->trans;
928 mp = dp->i_mount;
1d9025e5 929 leaf = lbp->b_addr;
01ba43b8 930 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
4141956a 931 ents = dp->d_ops->leaf_ents_p(leaf);
8f66193c 932 ltp = xfs_dir2_leaf_tail_p(args->geo, leaf);
24df33b4
DC
933
934 ASSERT(leafhdr.magic == XFS_DIR2_LEAF1_MAGIC ||
935 leafhdr.magic == XFS_DIR3_LEAF1_MAGIC);
1da177e4
LT
936 /*
937 * If there are data blocks other than the first one, take this
938 * opportunity to remove trailing empty data blocks that may have
939 * been left behind during no-space-reservation operations.
940 * These will show up in the leaf bests table.
941 */
8f66193c 942 while (dp->i_d.di_size > args->geo->blksize) {
f5f3d9b0
DC
943 int hdrsz;
944
1c9a5b2e 945 hdrsz = dp->d_ops->data_entry_offset;
bbaaf538 946 bestsp = xfs_dir2_leaf_bests_p(ltp);
afbcb3f9 947 if (be16_to_cpu(bestsp[be32_to_cpu(ltp->bestcount) - 1]) ==
8f66193c 948 args->geo->blksize - hdrsz) {
1da177e4
LT
949 if ((error =
950 xfs_dir2_leaf_trim_data(args, lbp,
afbcb3f9 951 (xfs_dir2_db_t)(be32_to_cpu(ltp->bestcount) - 1))))
1d9025e5
DC
952 return error;
953 } else
954 return 0;
1da177e4
LT
955 }
956 /*
957 * Read the data block if we don't already have it, give up if it fails.
958 */
4bb20a83 959 if (!dbp) {
7dda6e86 960 error = xfs_dir3_data_read(tp, dp, args->geo->datablk, -1, &dbp);
4bb20a83
DC
961 if (error)
962 return error;
1da177e4 963 }
1d9025e5 964 hdr = dbp->b_addr;
33363fee
DC
965 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
966 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC));
967
1da177e4
LT
968 /*
969 * Size of the "leaf" area in the block.
970 */
4f6ae1a4 971 size = (uint)sizeof(xfs_dir2_block_tail_t) +
24df33b4 972 (uint)sizeof(*lep) * (leafhdr.count - leafhdr.stale);
1da177e4
LT
973 /*
974 * Look at the last data entry.
975 */
8f66193c 976 tagp = (__be16 *)((char *)hdr + args->geo->blksize) - 1;
4f6ae1a4 977 dup = (xfs_dir2_data_unused_t *)((char *)hdr + be16_to_cpu(*tagp));
1da177e4
LT
978 /*
979 * If it's not free or is too short we can't do it.
980 */
ad354eb3 981 if (be16_to_cpu(dup->freetag) != XFS_DIR2_DATA_FREE_TAG ||
1d9025e5
DC
982 be16_to_cpu(dup->length) < size)
983 return 0;
984
1da177e4
LT
985 /*
986 * Start converting it to block form.
987 */
d75afeb3 988 xfs_dir3_block_init(mp, tp, dbp, dp);
f5f3d9b0 989
1da177e4
LT
990 needlog = 1;
991 needscan = 0;
992 /*
993 * Use up the space at the end of the block (blp/btp).
994 */
bc85178a 995 xfs_dir2_data_use_free(args, dbp, dup, args->geo->blksize - size, size,
1da177e4
LT
996 &needlog, &needscan);
997 /*
998 * Initialize the block tail.
999 */
8f66193c 1000 btp = xfs_dir2_block_tail_p(args->geo, hdr);
24df33b4 1001 btp->count = cpu_to_be32(leafhdr.count - leafhdr.stale);
1da177e4
LT
1002 btp->stale = 0;
1003 xfs_dir2_block_log_tail(tp, dbp);
1004 /*
1005 * Initialize the block leaf area. We compact out stale entries.
1006 */
bbaaf538 1007 lep = xfs_dir2_block_leaf_p(btp);
24df33b4
DC
1008 for (from = to = 0; from < leafhdr.count; from++) {
1009 if (ents[from].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
1da177e4 1010 continue;
24df33b4 1011 lep[to++] = ents[from];
1da177e4 1012 }
e922fffa
NS
1013 ASSERT(to == be32_to_cpu(btp->count));
1014 xfs_dir2_block_log_leaf(tp, dbp, 0, be32_to_cpu(btp->count) - 1);
1da177e4
LT
1015 /*
1016 * Scan the bestfree if we need it and log the data block header.
1017 */
1018 if (needscan)
9d23fc85 1019 xfs_dir2_data_freescan(dp, hdr, &needlog);
1da177e4 1020 if (needlog)
bc85178a 1021 xfs_dir2_data_log_header(args, dbp);
1da177e4
LT
1022 /*
1023 * Pitch the old leaf block.
1024 */
7dda6e86 1025 error = xfs_da_shrink_inode(args, args->geo->leafblk, lbp);
1d9025e5
DC
1026 if (error)
1027 return error;
1028
1da177e4
LT
1029 /*
1030 * Now see if the resulting block can be shrunken to shortform.
1031 */
4f6ae1a4 1032 size = xfs_dir2_block_sfsize(dp, hdr, &sfh);
1d9025e5
DC
1033 if (size > XFS_IFORK_DSIZE(dp))
1034 return 0;
1035
1da177e4 1036 return xfs_dir2_block_to_sf(args, dbp, size, &sfh);
1da177e4
LT
1037}
1038
1039/*
1040 * Convert the shortform directory to block form.
1041 */
1042int /* error */
1043xfs_dir2_sf_to_block(
1044 xfs_da_args_t *args) /* operation arguments */
1045{
1046 xfs_dir2_db_t blkno; /* dir-relative block # (0) */
4f6ae1a4 1047 xfs_dir2_data_hdr_t *hdr; /* block header */
1da177e4 1048 xfs_dir2_leaf_entry_t *blp; /* block leaf entries */
1d9025e5 1049 struct xfs_buf *bp; /* block buffer */
1da177e4 1050 xfs_dir2_block_tail_t *btp; /* block tail pointer */
1da177e4
LT
1051 xfs_dir2_data_entry_t *dep; /* data entry pointer */
1052 xfs_inode_t *dp; /* incore directory inode */
1053 int dummy; /* trash */
1054 xfs_dir2_data_unused_t *dup; /* unused entry pointer */
1055 int endoffset; /* end of data objects */
1056 int error; /* error return value */
1057 int i; /* index */
1058 xfs_mount_t *mp; /* filesystem mount point */
1059 int needlog; /* need to log block header */
1060 int needscan; /* need to scan block freespc */
1061 int newoffset; /* offset from current entry */
1062 int offset; /* target block offset */
1063 xfs_dir2_sf_entry_t *sfep; /* sf entry pointer */
ac8ba50f
CH
1064 xfs_dir2_sf_hdr_t *oldsfp; /* old shortform header */
1065 xfs_dir2_sf_hdr_t *sfp; /* shortform header */
3d693c6e 1066 __be16 *tagp; /* end of data entry */
1da177e4 1067 xfs_trans_t *tp; /* transaction pointer */
5163f95a 1068 struct xfs_name name;
f3508bcd 1069 struct xfs_ifork *ifp;
1da177e4 1070
0b1b213f
CH
1071 trace_xfs_dir2_sf_to_block(args);
1072
1da177e4
LT
1073 dp = args->dp;
1074 tp = args->trans;
1075 mp = dp->i_mount;
f3508bcd
DC
1076 ifp = XFS_IFORK_PTR(dp, XFS_DATA_FORK);
1077 ASSERT(ifp->if_flags & XFS_IFINLINE);
1da177e4
LT
1078 /*
1079 * Bomb out if the shortform directory is way too short.
1080 */
1081 if (dp->i_d.di_size < offsetof(xfs_dir2_sf_hdr_t, parent)) {
1082 ASSERT(XFS_FORCED_SHUTDOWN(mp));
2451337d 1083 return -EIO;
1da177e4 1084 }
ac8ba50f 1085
f3508bcd 1086 oldsfp = (xfs_dir2_sf_hdr_t *)ifp->if_u1.if_data;
ac8ba50f 1087
f3508bcd
DC
1088 ASSERT(ifp->if_bytes == dp->i_d.di_size);
1089 ASSERT(ifp->if_u1.if_data != NULL);
ac8ba50f 1090 ASSERT(dp->i_d.di_size >= xfs_dir2_sf_hdr_size(oldsfp->i8count));
f3508bcd 1091 ASSERT(dp->i_d.di_nextents == 0);
ac8ba50f 1092
1da177e4 1093 /*
ac8ba50f 1094 * Copy the directory into a temporary buffer.
1da177e4
LT
1095 * Then pitch the incore inode data so we can make extents.
1096 */
f3508bcd
DC
1097 sfp = kmem_alloc(ifp->if_bytes, KM_SLEEP);
1098 memcpy(sfp, oldsfp, ifp->if_bytes);
1da177e4 1099
f3508bcd
DC
1100 xfs_idata_realloc(dp, -ifp->if_bytes, XFS_DATA_FORK);
1101 xfs_bmap_local_to_extents_empty(dp, XFS_DATA_FORK);
1da177e4 1102 dp->i_d.di_size = 0;
ac8ba50f 1103
1da177e4
LT
1104 /*
1105 * Add block 0 to the inode.
1106 */
1107 error = xfs_dir2_grow_inode(args, XFS_DIR2_DATA_SPACE, &blkno);
1108 if (error) {
ac8ba50f 1109 kmem_free(sfp);
1da177e4
LT
1110 return error;
1111 }
1112 /*
f5f3d9b0 1113 * Initialize the data block, then convert it to block format.
1da177e4 1114 */
f5f3d9b0 1115 error = xfs_dir3_data_init(args, blkno, &bp);
1da177e4 1116 if (error) {
ac8ba50f 1117 kmem_free(sfp);
1da177e4
LT
1118 return error;
1119 }
d75afeb3 1120 xfs_dir3_block_init(mp, tp, bp, dp);
1d9025e5 1121 hdr = bp->b_addr;
f5f3d9b0 1122
1da177e4
LT
1123 /*
1124 * Compute size of block "tail" area.
1125 */
1126 i = (uint)sizeof(*btp) +
ac8ba50f 1127 (sfp->count + 2) * (uint)sizeof(xfs_dir2_leaf_entry_t);
1da177e4
LT
1128 /*
1129 * The whole thing is initialized to free by the init routine.
1130 * Say we're using the leaf and tail area.
1131 */
2ca98774 1132 dup = dp->d_ops->data_unused_p(hdr);
1da177e4 1133 needlog = needscan = 0;
bc85178a 1134 xfs_dir2_data_use_free(args, bp, dup, args->geo->blksize - i,
8f66193c 1135 i, &needlog, &needscan);
1da177e4
LT
1136 ASSERT(needscan == 0);
1137 /*
1138 * Fill in the tail.
1139 */
8f66193c 1140 btp = xfs_dir2_block_tail_p(args->geo, hdr);
ac8ba50f 1141 btp->count = cpu_to_be32(sfp->count + 2); /* ., .. */
1da177e4 1142 btp->stale = 0;
bbaaf538 1143 blp = xfs_dir2_block_leaf_p(btp);
4f6ae1a4 1144 endoffset = (uint)((char *)blp - (char *)hdr);
1da177e4
LT
1145 /*
1146 * Remove the freespace, we'll manage it.
1147 */
bc85178a 1148 xfs_dir2_data_use_free(args, bp, dup,
4f6ae1a4 1149 (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr),
ad354eb3 1150 be16_to_cpu(dup->length), &needlog, &needscan);
1da177e4
LT
1151 /*
1152 * Create entry for .
1153 */
9d23fc85 1154 dep = dp->d_ops->data_dot_entry_p(hdr);
ff9901c1 1155 dep->inumber = cpu_to_be64(dp->i_ino);
1da177e4
LT
1156 dep->namelen = 1;
1157 dep->name[0] = '.';
9d23fc85
DC
1158 dp->d_ops->data_put_ftype(dep, XFS_DIR3_FT_DIR);
1159 tagp = dp->d_ops->data_entry_tag_p(dep);
4f6ae1a4 1160 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
bc85178a 1161 xfs_dir2_data_log_entry(args, bp, dep);
3c1f9c15 1162 blp[0].hashval = cpu_to_be32(xfs_dir_hash_dot);
25994053 1163 blp[0].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(
4f6ae1a4 1164 (char *)dep - (char *)hdr));
1da177e4
LT
1165 /*
1166 * Create entry for ..
1167 */
9d23fc85 1168 dep = dp->d_ops->data_dotdot_entry_p(hdr);
4740175e 1169 dep->inumber = cpu_to_be64(dp->d_ops->sf_get_parent_ino(sfp));
1da177e4
LT
1170 dep->namelen = 2;
1171 dep->name[0] = dep->name[1] = '.';
9d23fc85
DC
1172 dp->d_ops->data_put_ftype(dep, XFS_DIR3_FT_DIR);
1173 tagp = dp->d_ops->data_entry_tag_p(dep);
4f6ae1a4 1174 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
bc85178a 1175 xfs_dir2_data_log_entry(args, bp, dep);
3c1f9c15 1176 blp[1].hashval = cpu_to_be32(xfs_dir_hash_dotdot);
25994053 1177 blp[1].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(
4f6ae1a4 1178 (char *)dep - (char *)hdr));
1c9a5b2e 1179 offset = dp->d_ops->data_first_offset;
1da177e4
LT
1180 /*
1181 * Loop over existing entries, stuff them in.
1182 */
ac8ba50f
CH
1183 i = 0;
1184 if (!sfp->count)
1da177e4
LT
1185 sfep = NULL;
1186 else
bbaaf538 1187 sfep = xfs_dir2_sf_firstentry(sfp);
1da177e4
LT
1188 /*
1189 * Need to preserve the existing offset values in the sf directory.
1190 * Insert holes (unused entries) where necessary.
1191 */
1192 while (offset < endoffset) {
1193 /*
1194 * sfep is null when we reach the end of the list.
1195 */
1196 if (sfep == NULL)
1197 newoffset = endoffset;
1198 else
bbaaf538 1199 newoffset = xfs_dir2_sf_get_offset(sfep);
1da177e4
LT
1200 /*
1201 * There should be a hole here, make one.
1202 */
1203 if (offset < newoffset) {
4f6ae1a4 1204 dup = (xfs_dir2_data_unused_t *)((char *)hdr + offset);
ad354eb3
NS
1205 dup->freetag = cpu_to_be16(XFS_DIR2_DATA_FREE_TAG);
1206 dup->length = cpu_to_be16(newoffset - offset);
bbaaf538 1207 *xfs_dir2_data_unused_tag_p(dup) = cpu_to_be16(
4f6ae1a4 1208 ((char *)dup - (char *)hdr));
bc85178a 1209 xfs_dir2_data_log_unused(args, bp, dup);
2ca98774
DC
1210 xfs_dir2_data_freeinsert(hdr,
1211 dp->d_ops->data_bestfree_p(hdr),
1212 dup, &dummy);
ad354eb3 1213 offset += be16_to_cpu(dup->length);
1da177e4
LT
1214 continue;
1215 }
1216 /*
1217 * Copy a real entry.
1218 */
4f6ae1a4 1219 dep = (xfs_dir2_data_entry_t *)((char *)hdr + newoffset);
4740175e 1220 dep->inumber = cpu_to_be64(dp->d_ops->sf_get_ino(sfp, sfep));
1da177e4 1221 dep->namelen = sfep->namelen;
9d23fc85 1222 dp->d_ops->data_put_ftype(dep, dp->d_ops->sf_get_ftype(sfep));
1da177e4 1223 memcpy(dep->name, sfep->name, dep->namelen);
9d23fc85 1224 tagp = dp->d_ops->data_entry_tag_p(dep);
4f6ae1a4 1225 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
bc85178a 1226 xfs_dir2_data_log_entry(args, bp, dep);
5163f95a
BN
1227 name.name = sfep->name;
1228 name.len = sfep->namelen;
1229 blp[2 + i].hashval = cpu_to_be32(mp->m_dirnameops->
1230 hashname(&name));
25994053 1231 blp[2 + i].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(
4f6ae1a4
CH
1232 (char *)dep - (char *)hdr));
1233 offset = (int)((char *)(tagp + 1) - (char *)hdr);
ac8ba50f 1234 if (++i == sfp->count)
1da177e4
LT
1235 sfep = NULL;
1236 else
32c5483a 1237 sfep = dp->d_ops->sf_nextentry(sfp, sfep);
1da177e4
LT
1238 }
1239 /* Done with the temporary buffer */
ac8ba50f 1240 kmem_free(sfp);
1da177e4
LT
1241 /*
1242 * Sort the leaf entries by hash value.
1243 */
e922fffa 1244 xfs_sort(blp, be32_to_cpu(btp->count), sizeof(*blp), xfs_dir2_block_sort);
1da177e4
LT
1245 /*
1246 * Log the leaf entry area and tail.
1247 * Already logged the header in data_init, ignore needlog.
1248 */
1249 ASSERT(needscan == 0);
e922fffa 1250 xfs_dir2_block_log_leaf(tp, bp, 0, be32_to_cpu(btp->count) - 1);
1da177e4 1251 xfs_dir2_block_log_tail(tp, bp);
33363fee 1252 xfs_dir3_data_check(dp, bp);
1da177e4
LT
1253 return 0;
1254}