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