1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19#include "xfs.h"
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_sb.h"
25#include "xfs_ag.h"
26#include "xfs_mount.h"
27#include "xfs_da_format.h"
28#include "xfs_da_btree.h"
29#include "xfs_inode.h"
30#include "xfs_trans.h"
31#include "xfs_inode_item.h"
32#include "xfs_bmap.h"
33#include "xfs_buf_item.h"
34#include "xfs_dir2.h"
35#include "xfs_dir2_priv.h"
36#include "xfs_error.h"
37#include "xfs_trace.h"
38#include "xfs_cksum.h"
39#include "xfs_dinode.h"
40
41
42
43
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,
48 int *entno);
49static int xfs_dir2_block_sort(const void *a, const void *b);
50
51static xfs_dahash_t xfs_dir_hash_dot, xfs_dir_hash_dotdot;
52
53
54
55
56void
57xfs_dir_startup(void)
58{
59 xfs_dir_hash_dot = xfs_da_hashname((unsigned char *)".", 1);
60 xfs_dir_hash_dotdot = xfs_da_hashname((unsigned char *)"..", 2);
61}
62
63static bool
64xfs_dir3_block_verify(
65 struct xfs_buf *bp)
66{
67 struct xfs_mount *mp = bp->b_target->bt_mount;
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;
80 }
81 if (__xfs_dir3_data_check(NULL, bp))
82 return false;
83 return true;
84}
85
86static void
87xfs_dir3_block_read_verify(
88 struct xfs_buf *bp)
89{
90 struct xfs_mount *mp = bp->b_target->bt_mount;
91
92 if ((xfs_sb_version_hascrc(&mp->m_sb) &&
93 !xfs_verify_cksum(bp->b_addr, BBTOB(bp->b_length),
94 XFS_DIR3_DATA_CRC_OFF)) ||
95 !xfs_dir3_block_verify(bp)) {
96 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
97 xfs_buf_ioerror(bp, EFSCORRUPTED);
98 }
99}
100
101static void
102xfs_dir3_block_write_verify(
103 struct xfs_buf *bp)
104{
105 struct xfs_mount *mp = bp->b_target->bt_mount;
106 struct xfs_buf_log_item *bip = bp->b_fspriv;
107 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
108
109 if (!xfs_dir3_block_verify(bp)) {
110 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
111 xfs_buf_ioerror(bp, EFSCORRUPTED);
112 return;
113 }
114
115 if (!xfs_sb_version_hascrc(&mp->m_sb))
116 return;
117
118 if (bip)
119 hdr3->lsn = cpu_to_be64(bip->bli_item.li_lsn);
120
121 xfs_update_cksum(bp->b_addr, BBTOB(bp->b_length), XFS_DIR3_DATA_CRC_OFF);
122}
123
124const struct xfs_buf_ops xfs_dir3_block_buf_ops = {
125 .verify_read = xfs_dir3_block_read_verify,
126 .verify_write = xfs_dir3_block_write_verify,
127};
128
129int
130xfs_dir3_block_read(
131 struct xfs_trans *tp,
132 struct xfs_inode *dp,
133 struct xfs_buf **bpp)
134{
135 struct xfs_mount *mp = dp->i_mount;
136 int err;
137
138 err = xfs_da_read_buf(tp, dp, mp->m_dirdatablk, -1, bpp,
139 XFS_DATA_FORK, &xfs_dir3_block_buf_ops);
140 if (!err && tp)
141 xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_DIR_BLOCK_BUF);
142 return err;
143}
144
145static void
146xfs_dir3_block_init(
147 struct xfs_mount *mp,
148 struct xfs_trans *tp,
149 struct xfs_buf *bp,
150 struct xfs_inode *dp)
151{
152 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
153
154 bp->b_ops = &xfs_dir3_block_buf_ops;
155 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_BLOCK_BUF);
156
157 if (xfs_sb_version_hascrc(&mp->m_sb)) {
158 memset(hdr3, 0, sizeof(*hdr3));
159 hdr3->magic = cpu_to_be32(XFS_DIR3_BLOCK_MAGIC);
160 hdr3->blkno = cpu_to_be64(bp->b_bn);
161 hdr3->owner = cpu_to_be64(dp->i_ino);
162 uuid_copy(&hdr3->uuid, &mp->m_sb.sb_uuid);
163 return;
164
165 }
166 hdr3->magic = cpu_to_be32(XFS_DIR2_BLOCK_MAGIC);
167}
168
169static void
170xfs_dir2_block_need_space(
171 struct xfs_inode *dp,
172 struct xfs_dir2_data_hdr *hdr,
173 struct xfs_dir2_block_tail *btp,
174 struct xfs_dir2_leaf_entry *blp,
175 __be16 **tagpp,
176 struct xfs_dir2_data_unused **dupp,
177 struct xfs_dir2_data_unused **enddupp,
178 int *compact,
179 int len)
180{
181 struct xfs_dir2_data_free *bf;
182 __be16 *tagp = NULL;
183 struct xfs_dir2_data_unused *dup = NULL;
184 struct xfs_dir2_data_unused *enddup = NULL;
185
186 *compact = 0;
187 bf = dp->d_ops->data_bestfree_p(hdr);
188
189
190
191
192 if (btp->stale) {
193 if (be16_to_cpu(bf[0].length) >= len) {
194
195
196
197 dup = (xfs_dir2_data_unused_t *)
198 ((char *)hdr + be16_to_cpu(bf[0].offset));
199 goto out;
200 }
201
202
203
204
205
206 *compact = 1;
207 tagp = (__be16 *)blp - 1;
208
209
210 dup = (xfs_dir2_data_unused_t *)((char *)hdr + be16_to_cpu(*tagp));
211
212
213
214
215
216 if (be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
217 if (be16_to_cpu(dup->length) + (be32_to_cpu(btp->stale) - 1) *
218 (uint)sizeof(*blp) < len)
219 dup = NULL;
220 } else if ((be32_to_cpu(btp->stale) - 1) * (uint)sizeof(*blp) < len)
221 dup = NULL;
222 else
223 dup = (xfs_dir2_data_unused_t *)blp;
224 goto out;
225 }
226
227
228
229
230
231 tagp = (__be16 *)blp - 1;
232
233
234 enddup = (xfs_dir2_data_unused_t *)((char *)hdr + be16_to_cpu(*tagp));
235
236
237
238
239
240
241 if (be16_to_cpu(enddup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
242
243
244
245 dup = (xfs_dir2_data_unused_t *)
246 ((char *)hdr + be16_to_cpu(bf[0].offset));
247 if (dup != enddup) {
248
249
250
251 if (be16_to_cpu(dup->length) < len)
252 dup = NULL;
253 goto out;
254 }
255
256
257
258
259 if (be16_to_cpu(dup->length) < len + (uint)sizeof(*blp)) {
260
261
262
263 if (be16_to_cpu(bf[1].length) >= len)
264 dup = (xfs_dir2_data_unused_t *)
265 ((char *)hdr + be16_to_cpu(bf[1].offset));
266 else
267 dup = NULL;
268 }
269 }
270out:
271 *tagpp = tagp;
272 *dupp = dup;
273 *enddupp = enddup;
274}
275
276
277
278
279
280
281static void
282xfs_dir2_block_compact(
283 struct xfs_trans *tp,
284 struct xfs_inode *dp,
285 struct xfs_buf *bp,
286 struct xfs_dir2_data_hdr *hdr,
287 struct xfs_dir2_block_tail *btp,
288 struct xfs_dir2_leaf_entry *blp,
289 int *needlog,
290 int *lfloghigh,
291 int *lfloglow)
292{
293 int fromidx;
294 int toidx;
295 int needscan = 0;
296 int highstale;
297
298 fromidx = toidx = be32_to_cpu(btp->count) - 1;
299 highstale = *lfloghigh = -1;
300 for (; fromidx >= 0; fromidx--) {
301 if (blp[fromidx].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR)) {
302 if (highstale == -1)
303 highstale = toidx;
304 else {
305 if (*lfloghigh == -1)
306 *lfloghigh = toidx;
307 continue;
308 }
309 }
310 if (fromidx < toidx)
311 blp[toidx] = blp[fromidx];
312 toidx--;
313 }
314 *lfloglow = toidx + 1 - (be32_to_cpu(btp->stale) - 1);
315 *lfloghigh -= be32_to_cpu(btp->stale) - 1;
316 be32_add_cpu(&btp->count, -(be32_to_cpu(btp->stale) - 1));
317 xfs_dir2_data_make_free(tp, dp, bp,
318 (xfs_dir2_data_aoff_t)((char *)blp - (char *)hdr),
319 (xfs_dir2_data_aoff_t)((be32_to_cpu(btp->stale) - 1) * sizeof(*blp)),
320 needlog, &needscan);
321 blp += be32_to_cpu(btp->stale) - 1;
322 btp->stale = cpu_to_be32(1);
323
324
325
326
327 if (needscan)
328 xfs_dir2_data_freescan(dp, hdr, needlog);
329}
330
331
332
333
334int
335xfs_dir2_block_addname(
336 xfs_da_args_t *args)
337{
338 xfs_dir2_data_hdr_t *hdr;
339 xfs_dir2_leaf_entry_t *blp;
340 struct xfs_buf *bp;
341 xfs_dir2_block_tail_t *btp;
342 int compact;
343 xfs_dir2_data_entry_t *dep;
344 xfs_inode_t *dp;
345 xfs_dir2_data_unused_t *dup;
346 int error;
347 xfs_dir2_data_unused_t *enddup=NULL;
348 xfs_dahash_t hash;
349 int high;
350 int highstale;
351 int lfloghigh=0;
352 int lfloglow=0;
353 int len;
354 int low;
355 int lowstale;
356 int mid=0;
357 xfs_mount_t *mp;
358 int needlog;
359 int needscan;
360 __be16 *tagp;
361 xfs_trans_t *tp;
362
363 trace_xfs_dir2_block_addname(args);
364
365 dp = args->dp;
366 tp = args->trans;
367 mp = dp->i_mount;
368
369
370 error = xfs_dir3_block_read(tp, dp, &bp);
371 if (error)
372 return error;
373
374 len = dp->d_ops->data_entsize(args->namelen);
375
376
377
378
379 hdr = bp->b_addr;
380 btp = xfs_dir2_block_tail_p(mp, hdr);
381 blp = xfs_dir2_block_leaf_p(btp);
382
383
384
385
386
387 xfs_dir2_block_need_space(dp, hdr, btp, blp, &tagp, &dup,
388 &enddup, &compact, len);
389
390
391
392
393 if (args->op_flags & XFS_DA_OP_JUSTCHECK) {
394 xfs_trans_brelse(tp, bp);
395 if (!dup)
396 return XFS_ERROR(ENOSPC);
397 return 0;
398 }
399
400
401
402
403 if (!dup) {
404
405 if (args->total == 0)
406 return XFS_ERROR(ENOSPC);
407
408
409
410
411 error = xfs_dir2_block_to_leaf(args, bp);
412 if (error)
413 return error;
414 return xfs_dir2_leaf_addname(args);
415 }
416
417 needlog = needscan = 0;
418
419
420
421
422 if (compact) {
423 xfs_dir2_block_compact(tp, dp, bp, hdr, btp, blp, &needlog,
424 &lfloghigh, &lfloglow);
425
426 blp = xfs_dir2_block_leaf_p(btp);
427 } else if (btp->stale) {
428
429
430
431
432 lfloglow = be32_to_cpu(btp->count);
433 lfloghigh = -1;
434 }
435
436
437
438
439 for (low = 0, high = be32_to_cpu(btp->count) - 1; low <= high; ) {
440 mid = (low + high) >> 1;
441 if ((hash = be32_to_cpu(blp[mid].hashval)) == args->hashval)
442 break;
443 if (hash < args->hashval)
444 low = mid + 1;
445 else
446 high = mid - 1;
447 }
448 while (mid >= 0 && be32_to_cpu(blp[mid].hashval) >= args->hashval) {
449 mid--;
450 }
451
452
453
454 if (!btp->stale) {
455
456
457
458 xfs_dir2_data_use_free(tp, dp, bp, enddup,
459 (xfs_dir2_data_aoff_t)
460 ((char *)enddup - (char *)hdr + be16_to_cpu(enddup->length) -
461 sizeof(*blp)),
462 (xfs_dir2_data_aoff_t)sizeof(*blp),
463 &needlog, &needscan);
464
465
466
467 be32_add_cpu(&btp->count, 1);
468
469
470
471
472 if (needscan) {
473 xfs_dir2_data_freescan(dp, hdr, &needlog);
474 needscan = 0;
475 }
476
477
478
479
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
490
491 else {
492 for (lowstale = mid;
493 lowstale >= 0 &&
494 blp[lowstale].address !=
495 cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
496 lowstale--)
497 continue;
498 for (highstale = mid + 1;
499 highstale < be32_to_cpu(btp->count) &&
500 blp[highstale].address !=
501 cpu_to_be32(XFS_DIR2_NULL_DATAPTR) &&
502 (lowstale < 0 || mid - lowstale > highstale - mid);
503 highstale++)
504 continue;
505
506
507
508 if (lowstale >= 0 &&
509 (highstale == be32_to_cpu(btp->count) ||
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
519
520 else {
521 ASSERT(highstale < be32_to_cpu(btp->count));
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 }
529 be32_add_cpu(&btp->stale, -1);
530 }
531
532
533
534 dep = (xfs_dir2_data_entry_t *)dup;
535
536
537
538 blp[mid].hashval = cpu_to_be32(args->hashval);
539 blp[mid].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(mp,
540 (char *)dep - (char *)hdr));
541 xfs_dir2_block_log_leaf(tp, bp, lfloglow, lfloghigh);
542
543
544
545 xfs_dir2_data_use_free(tp, dp, bp, dup,
546 (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr),
547 (xfs_dir2_data_aoff_t)len, &needlog, &needscan);
548
549
550
551 dep->inumber = cpu_to_be64(args->inumber);
552 dep->namelen = args->namelen;
553 memcpy(dep->name, args->name, args->namelen);
554 dp->d_ops->data_put_ftype(dep, args->filetype);
555 tagp = dp->d_ops->data_entry_tag_p(dep);
556 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
557
558
559
560 if (needscan)
561 xfs_dir2_data_freescan(dp, hdr, &needlog);
562 if (needlog)
563 xfs_dir2_data_log_header(tp, dp, bp);
564 xfs_dir2_block_log_tail(tp, bp);
565 xfs_dir2_data_log_entry(tp, dp, bp, dep);
566 xfs_dir3_data_check(dp, bp);
567 return 0;
568}
569
570
571
572
573static void
574xfs_dir2_block_log_leaf(
575 xfs_trans_t *tp,
576 struct xfs_buf *bp,
577 int first,
578 int last)
579{
580 xfs_dir2_data_hdr_t *hdr = bp->b_addr;
581 xfs_dir2_leaf_entry_t *blp;
582 xfs_dir2_block_tail_t *btp;
583
584 btp = xfs_dir2_block_tail_p(tp->t_mountp, hdr);
585 blp = xfs_dir2_block_leaf_p(btp);
586 xfs_trans_log_buf(tp, bp, (uint)((char *)&blp[first] - (char *)hdr),
587 (uint)((char *)&blp[last + 1] - (char *)hdr - 1));
588}
589
590
591
592
593static void
594xfs_dir2_block_log_tail(
595 xfs_trans_t *tp,
596 struct xfs_buf *bp)
597{
598 xfs_dir2_data_hdr_t *hdr = bp->b_addr;
599 xfs_dir2_block_tail_t *btp;
600
601 btp = xfs_dir2_block_tail_p(tp->t_mountp, hdr);
602 xfs_trans_log_buf(tp, bp, (uint)((char *)btp - (char *)hdr),
603 (uint)((char *)(btp + 1) - (char *)hdr - 1));
604}
605
606
607
608
609
610int
611xfs_dir2_block_lookup(
612 xfs_da_args_t *args)
613{
614 xfs_dir2_data_hdr_t *hdr;
615 xfs_dir2_leaf_entry_t *blp;
616 struct xfs_buf *bp;
617 xfs_dir2_block_tail_t *btp;
618 xfs_dir2_data_entry_t *dep;
619 xfs_inode_t *dp;
620 int ent;
621 int error;
622 xfs_mount_t *mp;
623
624 trace_xfs_dir2_block_lookup(args);
625
626
627
628
629
630 if ((error = xfs_dir2_block_lookup_int(args, &bp, &ent)))
631 return error;
632 dp = args->dp;
633 mp = dp->i_mount;
634 hdr = bp->b_addr;
635 xfs_dir3_data_check(dp, bp);
636 btp = xfs_dir2_block_tail_p(mp, hdr);
637 blp = xfs_dir2_block_leaf_p(btp);
638
639
640
641 dep = (xfs_dir2_data_entry_t *)((char *)hdr +
642 xfs_dir2_dataptr_to_off(mp, be32_to_cpu(blp[ent].address)));
643
644
645
646 args->inumber = be64_to_cpu(dep->inumber);
647 args->filetype = dp->d_ops->data_get_ftype(dep);
648 error = xfs_dir_cilookup_result(args, dep->name, dep->namelen);
649 xfs_trans_brelse(args->trans, bp);
650 return XFS_ERROR(error);
651}
652
653
654
655
656static int
657xfs_dir2_block_lookup_int(
658 xfs_da_args_t *args,
659 struct xfs_buf **bpp,
660 int *entno)
661{
662 xfs_dir2_dataptr_t addr;
663 xfs_dir2_data_hdr_t *hdr;
664 xfs_dir2_leaf_entry_t *blp;
665 struct xfs_buf *bp;
666 xfs_dir2_block_tail_t *btp;
667 xfs_dir2_data_entry_t *dep;
668 xfs_inode_t *dp;
669 int error;
670 xfs_dahash_t hash;
671 int high;
672 int low;
673 int mid;
674 xfs_mount_t *mp;
675 xfs_trans_t *tp;
676 enum xfs_dacmp cmp;
677
678 dp = args->dp;
679 tp = args->trans;
680 mp = dp->i_mount;
681
682 error = xfs_dir3_block_read(tp, dp, &bp);
683 if (error)
684 return error;
685
686 hdr = bp->b_addr;
687 xfs_dir3_data_check(dp, bp);
688 btp = xfs_dir2_block_tail_p(mp, hdr);
689 blp = xfs_dir2_block_leaf_p(btp);
690
691
692
693
694 for (low = 0, high = be32_to_cpu(btp->count) - 1; ; ) {
695 ASSERT(low <= high);
696 mid = (low + high) >> 1;
697 if ((hash = be32_to_cpu(blp[mid].hashval)) == args->hashval)
698 break;
699 if (hash < args->hashval)
700 low = mid + 1;
701 else
702 high = mid - 1;
703 if (low > high) {
704 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
705 xfs_trans_brelse(tp, bp);
706 return XFS_ERROR(ENOENT);
707 }
708 }
709
710
711
712 while (mid > 0 && be32_to_cpu(blp[mid - 1].hashval) == args->hashval) {
713 mid--;
714 }
715
716
717
718
719 do {
720 if ((addr = be32_to_cpu(blp[mid].address)) == XFS_DIR2_NULL_DATAPTR)
721 continue;
722
723
724
725 dep = (xfs_dir2_data_entry_t *)
726 ((char *)hdr + xfs_dir2_dataptr_to_off(mp, addr));
727
728
729
730
731
732 cmp = mp->m_dirnameops->compname(args, dep->name, dep->namelen);
733 if (cmp != XFS_CMP_DIFFERENT && cmp != args->cmpresult) {
734 args->cmpresult = cmp;
735 *bpp = bp;
736 *entno = mid;
737 if (cmp == XFS_CMP_EXACT)
738 return 0;
739 }
740 } while (++mid < be32_to_cpu(btp->count) &&
741 be32_to_cpu(blp[mid].hashval) == hash);
742
743 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
744
745
746
747
748 if (args->cmpresult == XFS_CMP_CASE)
749 return 0;
750
751
752
753 xfs_trans_brelse(tp, bp);
754 return XFS_ERROR(ENOENT);
755}
756
757
758
759
760
761int
762xfs_dir2_block_removename(
763 xfs_da_args_t *args)
764{
765 xfs_dir2_data_hdr_t *hdr;
766 xfs_dir2_leaf_entry_t *blp;
767 struct xfs_buf *bp;
768 xfs_dir2_block_tail_t *btp;
769 xfs_dir2_data_entry_t *dep;
770 xfs_inode_t *dp;
771 int ent;
772 int error;
773 xfs_mount_t *mp;
774 int needlog;
775 int needscan;
776 xfs_dir2_sf_hdr_t sfh;
777 int size;
778 xfs_trans_t *tp;
779
780 trace_xfs_dir2_block_removename(args);
781
782
783
784
785
786 if ((error = xfs_dir2_block_lookup_int(args, &bp, &ent))) {
787 return error;
788 }
789 dp = args->dp;
790 tp = args->trans;
791 mp = dp->i_mount;
792 hdr = bp->b_addr;
793 btp = xfs_dir2_block_tail_p(mp, hdr);
794 blp = xfs_dir2_block_leaf_p(btp);
795
796
797
798 dep = (xfs_dir2_data_entry_t *)
799 ((char *)hdr + xfs_dir2_dataptr_to_off(mp, be32_to_cpu(blp[ent].address)));
800
801
802
803 needlog = needscan = 0;
804 xfs_dir2_data_make_free(tp, dp, bp,
805 (xfs_dir2_data_aoff_t)((char *)dep - (char *)hdr),
806 dp->d_ops->data_entsize(dep->namelen), &needlog, &needscan);
807
808
809
810 be32_add_cpu(&btp->stale, 1);
811 xfs_dir2_block_log_tail(tp, bp);
812
813
814
815 blp[ent].address = cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
816 xfs_dir2_block_log_leaf(tp, bp, ent, ent);
817
818
819
820 if (needscan)
821 xfs_dir2_data_freescan(dp, hdr, &needlog);
822 if (needlog)
823 xfs_dir2_data_log_header(tp, dp, bp);
824 xfs_dir3_data_check(dp, bp);
825
826
827
828 size = xfs_dir2_block_sfsize(dp, hdr, &sfh);
829 if (size > XFS_IFORK_DSIZE(dp))
830 return 0;
831
832
833
834
835 return xfs_dir2_block_to_sf(args, bp, size, &sfh);
836}
837
838
839
840
841
842int
843xfs_dir2_block_replace(
844 xfs_da_args_t *args)
845{
846 xfs_dir2_data_hdr_t *hdr;
847 xfs_dir2_leaf_entry_t *blp;
848 struct xfs_buf *bp;
849 xfs_dir2_block_tail_t *btp;
850 xfs_dir2_data_entry_t *dep;
851 xfs_inode_t *dp;
852 int ent;
853 int error;
854 xfs_mount_t *mp;
855
856 trace_xfs_dir2_block_replace(args);
857
858
859
860
861
862 if ((error = xfs_dir2_block_lookup_int(args, &bp, &ent))) {
863 return error;
864 }
865 dp = args->dp;
866 mp = dp->i_mount;
867 hdr = bp->b_addr;
868 btp = xfs_dir2_block_tail_p(mp, hdr);
869 blp = xfs_dir2_block_leaf_p(btp);
870
871
872
873 dep = (xfs_dir2_data_entry_t *)
874 ((char *)hdr + xfs_dir2_dataptr_to_off(mp, be32_to_cpu(blp[ent].address)));
875 ASSERT(be64_to_cpu(dep->inumber) != args->inumber);
876
877
878
879 dep->inumber = cpu_to_be64(args->inumber);
880 dp->d_ops->data_put_ftype(dep, args->filetype);
881 xfs_dir2_data_log_entry(args->trans, dp, bp, dep);
882 xfs_dir3_data_check(dp, bp);
883 return 0;
884}
885
886
887
888
889static int
890xfs_dir2_block_sort(
891 const void *a,
892 const void *b)
893{
894 const xfs_dir2_leaf_entry_t *la;
895 const xfs_dir2_leaf_entry_t *lb;
896
897 la = a;
898 lb = b;
899 return be32_to_cpu(la->hashval) < be32_to_cpu(lb->hashval) ? -1 :
900 (be32_to_cpu(la->hashval) > be32_to_cpu(lb->hashval) ? 1 : 0);
901}
902
903
904
905
906int
907xfs_dir2_leaf_to_block(
908 xfs_da_args_t *args,
909 struct xfs_buf *lbp,
910 struct xfs_buf *dbp)
911{
912 __be16 *bestsp;
913 xfs_dir2_data_hdr_t *hdr;
914 xfs_dir2_block_tail_t *btp;
915 xfs_inode_t *dp;
916 xfs_dir2_data_unused_t *dup;
917 int error;
918 int from;
919 xfs_dir2_leaf_t *leaf;
920 xfs_dir2_leaf_entry_t *lep;
921 xfs_dir2_leaf_tail_t *ltp;
922 xfs_mount_t *mp;
923 int needlog;
924 int needscan;
925 xfs_dir2_sf_hdr_t sfh;
926 int size;
927 __be16 *tagp;
928 int to;
929 xfs_trans_t *tp;
930 struct xfs_dir2_leaf_entry *ents;
931 struct xfs_dir3_icleaf_hdr leafhdr;
932
933 trace_xfs_dir2_leaf_to_block(args);
934
935 dp = args->dp;
936 tp = args->trans;
937 mp = dp->i_mount;
938 leaf = lbp->b_addr;
939 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
940 ents = dp->d_ops->leaf_ents_p(leaf);
941 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
942
943 ASSERT(leafhdr.magic == XFS_DIR2_LEAF1_MAGIC ||
944 leafhdr.magic == XFS_DIR3_LEAF1_MAGIC);
945
946
947
948
949
950
951 while (dp->i_d.di_size > mp->m_dirblksize) {
952 int hdrsz;
953
954 hdrsz = dp->d_ops->data_entry_offset;
955 bestsp = xfs_dir2_leaf_bests_p(ltp);
956 if (be16_to_cpu(bestsp[be32_to_cpu(ltp->bestcount) - 1]) ==
957 mp->m_dirblksize - hdrsz) {
958 if ((error =
959 xfs_dir2_leaf_trim_data(args, lbp,
960 (xfs_dir2_db_t)(be32_to_cpu(ltp->bestcount) - 1))))
961 return error;
962 } else
963 return 0;
964 }
965
966
967
968 if (!dbp) {
969 error = xfs_dir3_data_read(tp, dp, mp->m_dirdatablk, -1, &dbp);
970 if (error)
971 return error;
972 }
973 hdr = dbp->b_addr;
974 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
975 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC));
976
977
978
979
980 size = (uint)sizeof(xfs_dir2_block_tail_t) +
981 (uint)sizeof(*lep) * (leafhdr.count - leafhdr.stale);
982
983
984
985 tagp = (__be16 *)((char *)hdr + mp->m_dirblksize) - 1;
986 dup = (xfs_dir2_data_unused_t *)((char *)hdr + be16_to_cpu(*tagp));
987
988
989
990 if (be16_to_cpu(dup->freetag) != XFS_DIR2_DATA_FREE_TAG ||
991 be16_to_cpu(dup->length) < size)
992 return 0;
993
994
995
996
997 xfs_dir3_block_init(mp, tp, dbp, dp);
998
999 needlog = 1;
1000 needscan = 0;
1001
1002
1003
1004 xfs_dir2_data_use_free(tp, dp, dbp, dup, mp->m_dirblksize - size, size,
1005 &needlog, &needscan);
1006
1007
1008
1009 btp = xfs_dir2_block_tail_p(mp, hdr);
1010 btp->count = cpu_to_be32(leafhdr.count - leafhdr.stale);
1011 btp->stale = 0;
1012 xfs_dir2_block_log_tail(tp, dbp);
1013
1014
1015
1016 lep = xfs_dir2_block_leaf_p(btp);
1017 for (from = to = 0; from < leafhdr.count; from++) {
1018 if (ents[from].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
1019 continue;
1020 lep[to++] = ents[from];
1021 }
1022 ASSERT(to == be32_to_cpu(btp->count));
1023 xfs_dir2_block_log_leaf(tp, dbp, 0, be32_to_cpu(btp->count) - 1);
1024
1025
1026
1027 if (needscan)
1028 xfs_dir2_data_freescan(dp, hdr, &needlog);
1029 if (needlog)
1030 xfs_dir2_data_log_header(tp, dp, dbp);
1031
1032
1033
1034 error = xfs_da_shrink_inode(args, mp->m_dirleafblk, lbp);
1035 if (error)
1036 return error;
1037
1038
1039
1040
1041 size = xfs_dir2_block_sfsize(dp, hdr, &sfh);
1042 if (size > XFS_IFORK_DSIZE(dp))
1043 return 0;
1044
1045 return xfs_dir2_block_to_sf(args, dbp, size, &sfh);
1046}
1047
1048
1049
1050
1051int
1052xfs_dir2_sf_to_block(
1053 xfs_da_args_t *args)
1054{
1055 xfs_dir2_db_t blkno;
1056 xfs_dir2_data_hdr_t *hdr;
1057 xfs_dir2_leaf_entry_t *blp;
1058 struct xfs_buf *bp;
1059 xfs_dir2_block_tail_t *btp;
1060 xfs_dir2_data_entry_t *dep;
1061 xfs_inode_t *dp;
1062 int dummy;
1063 xfs_dir2_data_unused_t *dup;
1064 int endoffset;
1065 int error;
1066 int i;
1067 xfs_mount_t *mp;
1068 int needlog;
1069 int needscan;
1070 int newoffset;
1071 int offset;
1072 xfs_dir2_sf_entry_t *sfep;
1073 xfs_dir2_sf_hdr_t *oldsfp;
1074 xfs_dir2_sf_hdr_t *sfp;
1075 __be16 *tagp;
1076 xfs_trans_t *tp;
1077 struct xfs_name name;
1078 struct xfs_ifork *ifp;
1079
1080 trace_xfs_dir2_sf_to_block(args);
1081
1082 dp = args->dp;
1083 tp = args->trans;
1084 mp = dp->i_mount;
1085 ifp = XFS_IFORK_PTR(dp, XFS_DATA_FORK);
1086 ASSERT(ifp->if_flags & XFS_IFINLINE);
1087
1088
1089
1090 if (dp->i_d.di_size < offsetof(xfs_dir2_sf_hdr_t, parent)) {
1091 ASSERT(XFS_FORCED_SHUTDOWN(mp));
1092 return XFS_ERROR(EIO);
1093 }
1094
1095 oldsfp = (xfs_dir2_sf_hdr_t *)ifp->if_u1.if_data;
1096
1097 ASSERT(ifp->if_bytes == dp->i_d.di_size);
1098 ASSERT(ifp->if_u1.if_data != NULL);
1099 ASSERT(dp->i_d.di_size >= xfs_dir2_sf_hdr_size(oldsfp->i8count));
1100 ASSERT(dp->i_d.di_nextents == 0);
1101
1102
1103
1104
1105
1106 sfp = kmem_alloc(ifp->if_bytes, KM_SLEEP);
1107 memcpy(sfp, oldsfp, ifp->if_bytes);
1108
1109 xfs_idata_realloc(dp, -ifp->if_bytes, XFS_DATA_FORK);
1110 xfs_bmap_local_to_extents_empty(dp, XFS_DATA_FORK);
1111 dp->i_d.di_size = 0;
1112
1113
1114
1115
1116 error = xfs_dir2_grow_inode(args, XFS_DIR2_DATA_SPACE, &blkno);
1117 if (error) {
1118 kmem_free(sfp);
1119 return error;
1120 }
1121
1122
1123
1124 error = xfs_dir3_data_init(args, blkno, &bp);
1125 if (error) {
1126 kmem_free(sfp);
1127 return error;
1128 }
1129 xfs_dir3_block_init(mp, tp, bp, dp);
1130 hdr = bp->b_addr;
1131
1132
1133
1134
1135 i = (uint)sizeof(*btp) +
1136 (sfp->count + 2) * (uint)sizeof(xfs_dir2_leaf_entry_t);
1137
1138
1139
1140
1141 dup = dp->d_ops->data_unused_p(hdr);
1142 needlog = needscan = 0;
1143 xfs_dir2_data_use_free(tp, dp, bp, dup, mp->m_dirblksize - i, i, &needlog,
1144 &needscan);
1145 ASSERT(needscan == 0);
1146
1147
1148
1149 btp = xfs_dir2_block_tail_p(mp, hdr);
1150 btp->count = cpu_to_be32(sfp->count + 2);
1151 btp->stale = 0;
1152 blp = xfs_dir2_block_leaf_p(btp);
1153 endoffset = (uint)((char *)blp - (char *)hdr);
1154
1155
1156
1157 xfs_dir2_data_use_free(tp, dp, bp, dup,
1158 (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr),
1159 be16_to_cpu(dup->length), &needlog, &needscan);
1160
1161
1162
1163 dep = dp->d_ops->data_dot_entry_p(hdr);
1164 dep->inumber = cpu_to_be64(dp->i_ino);
1165 dep->namelen = 1;
1166 dep->name[0] = '.';
1167 dp->d_ops->data_put_ftype(dep, XFS_DIR3_FT_DIR);
1168 tagp = dp->d_ops->data_entry_tag_p(dep);
1169 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
1170 xfs_dir2_data_log_entry(tp, dp, bp, dep);
1171 blp[0].hashval = cpu_to_be32(xfs_dir_hash_dot);
1172 blp[0].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(mp,
1173 (char *)dep - (char *)hdr));
1174
1175
1176
1177 dep = dp->d_ops->data_dotdot_entry_p(hdr);
1178 dep->inumber = cpu_to_be64(dp->d_ops->sf_get_parent_ino(sfp));
1179 dep->namelen = 2;
1180 dep->name[0] = dep->name[1] = '.';
1181 dp->d_ops->data_put_ftype(dep, XFS_DIR3_FT_DIR);
1182 tagp = dp->d_ops->data_entry_tag_p(dep);
1183 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
1184 xfs_dir2_data_log_entry(tp, dp, bp, dep);
1185 blp[1].hashval = cpu_to_be32(xfs_dir_hash_dotdot);
1186 blp[1].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(mp,
1187 (char *)dep - (char *)hdr));
1188 offset = dp->d_ops->data_first_offset;
1189
1190
1191
1192 i = 0;
1193 if (!sfp->count)
1194 sfep = NULL;
1195 else
1196 sfep = xfs_dir2_sf_firstentry(sfp);
1197
1198
1199
1200
1201 while (offset < endoffset) {
1202
1203
1204
1205 if (sfep == NULL)
1206 newoffset = endoffset;
1207 else
1208 newoffset = xfs_dir2_sf_get_offset(sfep);
1209
1210
1211
1212 if (offset < newoffset) {
1213 dup = (xfs_dir2_data_unused_t *)((char *)hdr + offset);
1214 dup->freetag = cpu_to_be16(XFS_DIR2_DATA_FREE_TAG);
1215 dup->length = cpu_to_be16(newoffset - offset);
1216 *xfs_dir2_data_unused_tag_p(dup) = cpu_to_be16(
1217 ((char *)dup - (char *)hdr));
1218 xfs_dir2_data_log_unused(tp, bp, dup);
1219 xfs_dir2_data_freeinsert(hdr,
1220 dp->d_ops->data_bestfree_p(hdr),
1221 dup, &dummy);
1222 offset += be16_to_cpu(dup->length);
1223 continue;
1224 }
1225
1226
1227
1228 dep = (xfs_dir2_data_entry_t *)((char *)hdr + newoffset);
1229 dep->inumber = cpu_to_be64(dp->d_ops->sf_get_ino(sfp, sfep));
1230 dep->namelen = sfep->namelen;
1231 dp->d_ops->data_put_ftype(dep, dp->d_ops->sf_get_ftype(sfep));
1232 memcpy(dep->name, sfep->name, dep->namelen);
1233 tagp = dp->d_ops->data_entry_tag_p(dep);
1234 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
1235 xfs_dir2_data_log_entry(tp, dp, bp, dep);
1236 name.name = sfep->name;
1237 name.len = sfep->namelen;
1238 blp[2 + i].hashval = cpu_to_be32(mp->m_dirnameops->
1239 hashname(&name));
1240 blp[2 + i].address = cpu_to_be32(xfs_dir2_byte_to_dataptr(mp,
1241 (char *)dep - (char *)hdr));
1242 offset = (int)((char *)(tagp + 1) - (char *)hdr);
1243 if (++i == sfp->count)
1244 sfep = NULL;
1245 else
1246 sfep = dp->d_ops->sf_nextentry(sfp, sfep);
1247 }
1248
1249 kmem_free(sfp);
1250
1251
1252
1253 xfs_sort(blp, be32_to_cpu(btp->count), sizeof(*blp), xfs_dir2_block_sort);
1254
1255
1256
1257
1258 ASSERT(needscan == 0);
1259 xfs_dir2_block_log_leaf(tp, bp, 0, be32_to_cpu(btp->count) - 1);
1260 xfs_dir2_block_log_tail(tp, bp);
1261 xfs_dir3_data_check(dp, bp);
1262 return 0;
1263}
1264