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