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