2 * Copyright (c) 2010 The DragonFly Project. All rights reserved.
4 * This code is derived from software contributed to The DragonFly Project
5 * by Ilya Dryomov <idryomov@gmail.com>
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * 3. Neither the name of The DragonFly Project nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific, prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39 #include <crypto/sha2/sha2.h>
41 #define DEDUP_BUF (64 * 1024)
43 /* Sorted list of block CRCs - light version for dedup-simulate */
44 struct sim_dedup_entry_rb_tree
;
45 RB_HEAD(sim_dedup_entry_rb_tree
, sim_dedup_entry
) sim_dedup_tree
=
46 RB_INITIALIZER(&sim_dedup_tree
);
47 RB_PROTOTYPE2(sim_dedup_entry_rb_tree
, sim_dedup_entry
, rb_entry
,
48 rb_sim_dedup_entry_compare
, hammer_crc_t
);
50 struct sim_dedup_entry
{
52 uint64_t ref_blks
; /* number of blocks referenced */
53 uint64_t ref_size
; /* size of data referenced */
54 RB_ENTRY(sim_dedup_entry
) rb_entry
;
58 struct hammer_btree_leaf_elm leaf
;
64 RB_HEAD(sha_dedup_entry_rb_tree
, sha_dedup_entry
) fict_root
;
67 RB_ENTRY(dedup_entry
) rb_entry
;
70 #define HAMMER_DEDUP_ENTRY_FICTITIOUS 0x0001
72 struct sha_dedup_entry
{
73 struct hammer_btree_leaf_elm leaf
;
76 uint8_t sha_hash
[SHA256_DIGEST_LENGTH
];
77 RB_ENTRY(sha_dedup_entry
) fict_entry
;
80 /* Sorted list of HAMMER B-Tree keys */
81 struct dedup_entry_rb_tree
;
82 struct sha_dedup_entry_rb_tree
;
84 RB_HEAD(dedup_entry_rb_tree
, dedup_entry
) dedup_tree
=
85 RB_INITIALIZER(&dedup_tree
);
86 RB_PROTOTYPE2(dedup_entry_rb_tree
, dedup_entry
, rb_entry
,
87 rb_dedup_entry_compare
, hammer_crc_t
);
89 RB_PROTOTYPE(sha_dedup_entry_rb_tree
, sha_dedup_entry
, fict_entry
,
90 rb_sha_dedup_entry_compare
);
93 * Pass2 list - contains entries that were not dedup'ed because ioctl failed
95 STAILQ_HEAD(, pass2_dedup_entry
) pass2_dedup_queue
=
96 STAILQ_HEAD_INITIALIZER(pass2_dedup_queue
);
98 struct pass2_dedup_entry
{
99 struct hammer_btree_leaf_elm leaf
;
100 STAILQ_ENTRY(pass2_dedup_entry
) sq_entry
;
103 #define DEDUP_PASS2 0x0001 /* process_btree_elm() mode */
105 static int SigInfoFlag
;
106 static int SigAlrmFlag
;
107 static int64_t DedupDataReads
;
108 static int64_t DedupCurrentRecords
;
109 static int64_t DedupTotalRecords
;
110 static uint32_t DedupCrcStart
;
111 static uint32_t DedupCrcEnd
;
112 static uint64_t MemoryUse
;
114 /* PFS global ids - we deal with just one PFS at a run */
116 static struct hammer_ioc_pseudofs_rw glob_pfs
;
119 * Global accounting variables
121 * Last three don't have to be 64-bit, just to be safe..
123 static uint64_t dedup_alloc_size
;
124 static uint64_t dedup_ref_size
;
125 static uint64_t dedup_skipped_size
;
126 static uint64_t dedup_crc_failures
;
127 static uint64_t dedup_sha_failures
;
128 static uint64_t dedup_underflows
;
129 static uint64_t dedup_successes_count
;
130 static uint64_t dedup_successes_bytes
;
132 static int rb_sim_dedup_entry_compare(struct sim_dedup_entry
*sim_de1
,
133 struct sim_dedup_entry
*sim_de2
);
134 static int rb_dedup_entry_compare(struct dedup_entry
*de1
,
135 struct dedup_entry
*de2
);
136 static int rb_sha_dedup_entry_compare(struct sha_dedup_entry
*sha_de1
,
137 struct sha_dedup_entry
*sha_de2
);
138 typedef int (*scan_pfs_cb_t
)(hammer_btree_leaf_elm_t scan_leaf
, int flags
);
139 static void scan_pfs(char *filesystem
, scan_pfs_cb_t func
, const char *id
);
140 static int collect_btree_elm(hammer_btree_leaf_elm_t scan_leaf
, int flags
);
141 static int count_btree_elm(hammer_btree_leaf_elm_t scan_leaf
, int flags
);
142 static int process_btree_elm(hammer_btree_leaf_elm_t scan_leaf
, int flags
);
143 static int upgrade_chksum(hammer_btree_leaf_elm_t leaf
, uint8_t *sha_hash
);
144 static void dump_simulated_dedup(void);
145 static void dump_real_dedup(void);
146 static void dedup_usage(int code
);
148 RB_GENERATE2(sim_dedup_entry_rb_tree
, sim_dedup_entry
, rb_entry
,
149 rb_sim_dedup_entry_compare
, hammer_crc_t
, crc
);
150 RB_GENERATE2(dedup_entry_rb_tree
, dedup_entry
, rb_entry
,
151 rb_dedup_entry_compare
, hammer_crc_t
, leaf
.data_crc
);
152 RB_GENERATE(sha_dedup_entry_rb_tree
, sha_dedup_entry
, fict_entry
,
153 rb_sha_dedup_entry_compare
);
157 rb_sim_dedup_entry_compare(struct sim_dedup_entry
*sim_de1
,
158 struct sim_dedup_entry
*sim_de2
)
160 if (sim_de1
->crc
< sim_de2
->crc
)
162 if (sim_de1
->crc
> sim_de2
->crc
)
170 rb_dedup_entry_compare(struct dedup_entry
*de1
, struct dedup_entry
*de2
)
172 if (de1
->leaf
.data_crc
< de2
->leaf
.data_crc
)
174 if (de1
->leaf
.data_crc
> de2
->leaf
.data_crc
)
182 rb_sha_dedup_entry_compare(struct sha_dedup_entry
*sha_de1
,
183 struct sha_dedup_entry
*sha_de2
)
185 unsigned long *h1
= (unsigned long *)&sha_de1
->sha_hash
;
186 unsigned long *h2
= (unsigned long *)&sha_de2
->sha_hash
;
189 for (i
= 0; i
< SHA256_DIGEST_LENGTH
/ (int)sizeof(unsigned long); ++i
) {
200 * dedup-simulate <filesystem>
203 hammer_cmd_dedup_simulate(char **av
, int ac
)
205 struct sim_dedup_entry
*sim_de
;
212 glob_fd
= getpfs(&glob_pfs
, av
[0]);
215 * Collection passes (memory limited)
217 printf("Dedup-simulate running\n");
219 DedupCrcStart
= DedupCrcEnd
;
224 printf("B-Tree pass crc-range %08x-max\n",
228 scan_pfs(av
[0], collect_btree_elm
, "simu-pass");
231 dump_simulated_dedup();
234 * Calculate simulated dedup ratio and get rid of the tree
236 while ((sim_de
= RB_ROOT(&sim_dedup_tree
)) != NULL
) {
237 assert(sim_de
->ref_blks
!= 0);
238 dedup_ref_size
+= sim_de
->ref_size
;
239 dedup_alloc_size
+= sim_de
->ref_size
/ sim_de
->ref_blks
;
241 RB_REMOVE(sim_dedup_entry_rb_tree
, &sim_dedup_tree
, sim_de
);
244 if (DedupCrcEnd
&& VerboseOpt
== 0)
246 } while (DedupCrcEnd
);
248 printf("Dedup-simulate %s succeeded\n", av
[0]);
249 relpfs(glob_fd
, &glob_pfs
);
251 printf("Simulated dedup ratio = %.2f\n",
252 (dedup_alloc_size
!= 0) ?
253 (double)dedup_ref_size
/ dedup_alloc_size
: 0);
260 hammer_cmd_dedup(char **av
, int ac
)
262 struct dedup_entry
*de
;
263 struct sha_dedup_entry
*sha_de
;
264 struct pass2_dedup_entry
*pass2_de
;
277 STAILQ_INIT(&pass2_dedup_queue
);
279 glob_fd
= getpfs(&glob_pfs
, av
[0]);
282 * A cycle file is _required_ for resuming dedup after the timeout
283 * specified with -t has expired. If no -c option, then place a
284 * .dedup.cycle file either in the PFS snapshots directory or in
285 * the default snapshots directory.
288 if (glob_pfs
.ondisk
->snapshots
[0] != '/') {
289 asprintf(&tmp
, "%s/%s/.dedup.cycle",
290 SNAPSHOTS_BASE
, av
[0]);
292 asprintf(&tmp
, "%s/.dedup.cycle",
293 glob_pfs
.ondisk
->snapshots
);
300 * Pre-pass to cache the btree
302 scan_pfs(av
[0], count_btree_elm
, "pre-pass ");
303 DedupTotalRecords
= DedupCurrentRecords
;
306 * Collection passes (memory limited)
308 printf("Dedup running\n");
310 DedupCrcStart
= DedupCrcEnd
;
315 printf("B-Tree pass crc-range %08x-max\n",
319 scan_pfs(av
[0], process_btree_elm
, "main-pass");
321 while ((pass2_de
= STAILQ_FIRST(&pass2_dedup_queue
)) != NULL
) {
322 if (process_btree_elm(&pass2_de
->leaf
, DEDUP_PASS2
))
323 dedup_skipped_size
-= pass2_de
->leaf
.data_len
;
325 STAILQ_REMOVE_HEAD(&pass2_dedup_queue
, sq_entry
);
328 assert(STAILQ_EMPTY(&pass2_dedup_queue
));
334 * Calculate dedup ratio and get rid of the trees
336 while ((de
= RB_ROOT(&dedup_tree
)) != NULL
) {
337 if (de
->flags
& HAMMER_DEDUP_ENTRY_FICTITIOUS
) {
338 while ((sha_de
= RB_ROOT(&de
->u
.fict_root
)) != NULL
) {
339 assert(sha_de
->ref_blks
!= 0);
340 dedup_ref_size
+= sha_de
->ref_size
;
341 dedup_alloc_size
+= sha_de
->ref_size
/ sha_de
->ref_blks
;
343 RB_REMOVE(sha_dedup_entry_rb_tree
,
344 &de
->u
.fict_root
, sha_de
);
347 assert(RB_EMPTY(&de
->u
.fict_root
));
349 assert(de
->u
.de
.ref_blks
!= 0);
350 dedup_ref_size
+= de
->u
.de
.ref_size
;
351 dedup_alloc_size
+= de
->u
.de
.ref_size
/ de
->u
.de
.ref_blks
;
354 RB_REMOVE(dedup_entry_rb_tree
, &dedup_tree
, de
);
357 assert(RB_EMPTY(&dedup_tree
));
358 if (DedupCrcEnd
&& VerboseOpt
== 0)
360 } while (DedupCrcEnd
);
362 printf("Dedup %s succeeded\n", av
[0]);
363 relpfs(glob_fd
, &glob_pfs
);
365 humanize_unsigned(buf
, sizeof(buf
), dedup_ref_size
, "B", 1024);
366 printf("Dedup ratio = %.2f (in this run)\n"
368 ((dedup_alloc_size
!= 0) ?
369 (double)dedup_ref_size
/ dedup_alloc_size
: 0),
372 humanize_unsigned(buf
, sizeof(buf
), dedup_alloc_size
, "B", 1024);
373 printf(" %8s allocated\n", buf
);
374 humanize_unsigned(buf
, sizeof(buf
), dedup_skipped_size
, "B", 1024);
375 printf(" %8s skipped\n", buf
);
376 printf(" %8jd CRC collisions\n"
377 " %8jd SHA collisions\n"
378 " %8jd big-block underflows\n"
379 " %8jd new dedup records\n"
380 " %8jd new dedup bytes\n",
381 (intmax_t)dedup_crc_failures
,
382 (intmax_t)dedup_sha_failures
,
383 (intmax_t)dedup_underflows
,
384 (intmax_t)dedup_successes_count
,
385 (intmax_t)dedup_successes_bytes
388 /* Once completed remove cycle file */
389 hammer_reset_cycle();
391 /* We don't want to mess up with other directives */
400 count_btree_elm(hammer_btree_leaf_elm_t scan_leaf __unused
, int flags __unused
)
407 collect_btree_elm(hammer_btree_leaf_elm_t scan_leaf
, int flags __unused
)
409 struct sim_dedup_entry
*sim_de
;
412 * If we are using too much memory we have to clean some out, which
413 * will cause the run to use multiple passes. Be careful of integer
416 if (MemoryUse
> MemoryLimit
) {
417 DedupCrcEnd
= DedupCrcStart
+
418 (uint32_t)(DedupCrcEnd
- DedupCrcStart
- 1) / 2;
420 printf("memory limit crc-range %08x-%08x\n",
421 DedupCrcStart
, DedupCrcEnd
);
425 sim_de
= RB_MAX(sim_dedup_entry_rb_tree
,
427 if (sim_de
== NULL
|| sim_de
->crc
< DedupCrcEnd
)
429 RB_REMOVE(sim_dedup_entry_rb_tree
,
430 &sim_dedup_tree
, sim_de
);
431 MemoryUse
-= sizeof(*sim_de
);
437 * Collect statistics based on the CRC only, do not try to read
438 * any data blocks or run SHA hashes.
440 sim_de
= RB_LOOKUP(sim_dedup_entry_rb_tree
, &sim_dedup_tree
,
441 scan_leaf
->data_crc
);
443 if (sim_de
== NULL
) {
444 sim_de
= calloc(1, sizeof(*sim_de
));
445 sim_de
->crc
= scan_leaf
->data_crc
;
446 RB_INSERT(sim_dedup_entry_rb_tree
, &sim_dedup_tree
, sim_de
);
447 MemoryUse
+= sizeof(*sim_de
);
450 sim_de
->ref_blks
+= 1;
451 sim_de
->ref_size
+= scan_leaf
->data_len
;
457 validate_dedup_pair(hammer_btree_leaf_elm_t p
, hammer_btree_leaf_elm_t q
)
459 if (HAMMER_ZONE(p
->data_offset
) != HAMMER_ZONE(q
->data_offset
))
461 if (p
->data_len
!= q
->data_len
)
467 #define DEDUP_TECH_FAILURE 1
468 #define DEDUP_CMP_FAILURE 2
469 #define DEDUP_INVALID_ZONE 3
470 #define DEDUP_UNDERFLOW 4
471 #define DEDUP_VERS_FAILURE 5
475 deduplicate(hammer_btree_leaf_elm_t p
, hammer_btree_leaf_elm_t q
)
477 struct hammer_ioc_dedup dedup
;
479 bzero(&dedup
, sizeof(dedup
));
482 * If data_offset fields are the same there is no need to run ioctl,
483 * candidate is already dedup'ed.
485 if (p
->data_offset
== q
->data_offset
)
488 dedup
.elm1
= p
->base
;
489 dedup
.elm2
= q
->base
;
491 if (ioctl(glob_fd
, HAMMERIOC_DEDUP
, &dedup
) < 0) {
492 if (errno
== EOPNOTSUPP
)
493 return (DEDUP_VERS_FAILURE
); /* must be at least version 5 */
494 /* Technical failure - locking or w/e */
495 return (DEDUP_TECH_FAILURE
);
497 if (dedup
.head
.flags
& HAMMER_IOC_DEDUP_CMP_FAILURE
)
498 return (DEDUP_CMP_FAILURE
);
499 if (dedup
.head
.flags
& HAMMER_IOC_DEDUP_INVALID_ZONE
)
500 return (DEDUP_INVALID_ZONE
);
501 if (dedup
.head
.flags
& HAMMER_IOC_DEDUP_UNDERFLOW
)
502 return (DEDUP_UNDERFLOW
);
504 ++dedup_successes_count
;
505 dedup_successes_bytes
+= p
->data_len
;
511 process_btree_elm(hammer_btree_leaf_elm_t scan_leaf
, int flags
)
513 struct dedup_entry
*de
;
514 struct sha_dedup_entry
*sha_de
, temp
;
515 struct pass2_dedup_entry
*pass2_de
;
519 * If we are using too much memory we have to clean some out, which
520 * will cause the run to use multiple passes. Be careful of integer
523 while (MemoryUse
> MemoryLimit
) {
524 DedupCrcEnd
= DedupCrcStart
+
525 (uint32_t)(DedupCrcEnd
- DedupCrcStart
- 1) / 2;
527 printf("memory limit crc-range %08x-%08x\n",
528 DedupCrcStart
, DedupCrcEnd
);
533 de
= RB_MAX(dedup_entry_rb_tree
, &dedup_tree
);
534 if (de
== NULL
|| de
->leaf
.data_crc
< DedupCrcEnd
)
536 if (de
->flags
& HAMMER_DEDUP_ENTRY_FICTITIOUS
) {
537 while ((sha_de
= RB_ROOT(&de
->u
.fict_root
)) !=
539 RB_REMOVE(sha_dedup_entry_rb_tree
,
540 &de
->u
.fict_root
, sha_de
);
541 MemoryUse
-= sizeof(*sha_de
);
545 RB_REMOVE(dedup_entry_rb_tree
, &dedup_tree
, de
);
546 MemoryUse
-= sizeof(*de
);
552 * Collect statistics based on the CRC. Colliding CRCs usually
553 * cause a SHA sub-tree to be created under the de.
555 * Trivial case if de not found.
557 de
= RB_LOOKUP(dedup_entry_rb_tree
, &dedup_tree
, scan_leaf
->data_crc
);
559 de
= calloc(1, sizeof(*de
));
560 de
->leaf
= *scan_leaf
;
561 RB_INSERT(dedup_entry_rb_tree
, &dedup_tree
, de
);
562 MemoryUse
+= sizeof(*de
);
567 * Found entry in CRC tree
569 if (de
->flags
& HAMMER_DEDUP_ENTRY_FICTITIOUS
) {
571 * Optimize the case where a CRC failure results in multiple
572 * SHA entries. If we unconditionally issue a data-read a
573 * degenerate situation where a colliding CRC's second SHA
574 * entry contains the lion's share of the deduplication
575 * candidates will result in excessive data block reads.
577 * Deal with the degenerate case by looking for a matching
578 * data_offset/data_len in the SHA elements we already have
579 * before reading the data block and generating a new SHA.
581 RB_FOREACH(sha_de
, sha_dedup_entry_rb_tree
, &de
->u
.fict_root
) {
582 if (sha_de
->leaf
.data_offset
==
583 scan_leaf
->data_offset
&&
584 sha_de
->leaf
.data_len
== scan_leaf
->data_len
) {
585 memcpy(temp
.sha_hash
, sha_de
->sha_hash
,
586 SHA256_DIGEST_LENGTH
);
592 * Entry in CRC tree is fictitious, so we already had problems
593 * with this CRC. Upgrade (compute SHA) the candidate and
594 * dive into SHA subtree. If upgrade fails insert the candidate
595 * into Pass2 list (it will be processed later).
597 if (sha_de
== NULL
) {
598 if (upgrade_chksum(scan_leaf
, temp
.sha_hash
))
601 sha_de
= RB_FIND(sha_dedup_entry_rb_tree
,
602 &de
->u
.fict_root
, &temp
);
606 * Nothing in SHA subtree so far, so this is a new
607 * 'dataset'. Insert new entry into SHA subtree.
609 if (sha_de
== NULL
) {
610 sha_de
= calloc(1, sizeof(*sha_de
));
611 sha_de
->leaf
= *scan_leaf
;
612 memcpy(sha_de
->sha_hash
, temp
.sha_hash
,
613 SHA256_DIGEST_LENGTH
);
614 RB_INSERT(sha_dedup_entry_rb_tree
, &de
->u
.fict_root
,
616 MemoryUse
+= sizeof(*sha_de
);
617 goto upgrade_stats_sha
;
621 * Found entry in SHA subtree, it means we have a potential
622 * dedup pair. Validate it (zones have to match and data_len
623 * field have to be the same too. If validation fails, treat
624 * it as a SHA collision (jump to sha256_failure).
626 if (validate_dedup_pair(&sha_de
->leaf
, scan_leaf
))
630 * We have a valid dedup pair (SHA match, validated).
632 * In case of technical failure (dedup pair was good, but
633 * ioctl failed anyways) insert the candidate into Pass2 list
634 * (we will try to dedup it after we are done with the rest of
637 * If ioctl fails because either of blocks is in the non-dedup
638 * zone (we can dedup only in LARGE_DATA and SMALL_DATA) don't
639 * bother with the candidate and terminate early.
641 * If ioctl fails because of big-block underflow replace the
642 * leaf node that found dedup entry represents with scan_leaf.
644 error
= deduplicate(&sha_de
->leaf
, scan_leaf
);
647 goto upgrade_stats_sha
;
648 case DEDUP_TECH_FAILURE
:
650 case DEDUP_CMP_FAILURE
:
652 case DEDUP_INVALID_ZONE
:
653 goto terminate_early
;
654 case DEDUP_UNDERFLOW
:
656 sha_de
->leaf
= *scan_leaf
;
657 memcpy(sha_de
->sha_hash
, temp
.sha_hash
,
658 SHA256_DIGEST_LENGTH
);
659 goto upgrade_stats_sha
;
660 case DEDUP_VERS_FAILURE
:
661 errx(1, "HAMMER filesystem must be at least "
662 "version 5 to dedup");
665 fprintf(stderr
, "Unknown error\n");
666 goto terminate_early
;
670 * Ooh la la.. SHA-256 collision. Terminate early, there's
671 * nothing we can do here.
674 ++dedup_sha_failures
;
675 goto terminate_early
;
678 * Candidate CRC is good for now (we found an entry in CRC
679 * tree and it's not fictitious). This means we have a
680 * potential dedup pair.
682 if (validate_dedup_pair(&de
->leaf
, scan_leaf
))
686 * We have a valid dedup pair (CRC match, validated)
688 error
= deduplicate(&de
->leaf
, scan_leaf
);
692 case DEDUP_TECH_FAILURE
:
694 case DEDUP_CMP_FAILURE
:
696 case DEDUP_INVALID_ZONE
:
697 goto terminate_early
;
698 case DEDUP_UNDERFLOW
:
700 de
->leaf
= *scan_leaf
;
702 case DEDUP_VERS_FAILURE
:
703 errx(1, "HAMMER filesystem must be at least "
704 "version 5 to dedup");
707 fprintf(stderr
, "Unknown error\n");
708 goto terminate_early
;
713 * We got a CRC collision - either ioctl failed because of
714 * the comparison failure or validation of the potential
715 * dedup pair went bad. In all cases insert both blocks
716 * into SHA subtree (this requires checksum upgrade) and mark
717 * entry that corresponds to this CRC in the CRC tree
718 * fictitious, so that all futher operations with this CRC go
719 * through SHA subtree.
721 ++dedup_crc_failures
;
724 * Insert block that was represented by now fictitious dedup
725 * entry (create a new SHA entry and preserve stats of the
726 * old CRC one). If checksum upgrade fails insert the
727 * candidate into Pass2 list and return - keep both trees
730 sha_de
= calloc(1, sizeof(*sha_de
));
731 sha_de
->leaf
= de
->leaf
;
732 sha_de
->ref_blks
= de
->u
.de
.ref_blks
;
733 sha_de
->ref_size
= de
->u
.de
.ref_size
;
734 if (upgrade_chksum(&sha_de
->leaf
, sha_de
->sha_hash
)) {
738 MemoryUse
+= sizeof(*sha_de
);
740 RB_INIT(&de
->u
.fict_root
);
742 * Here we can insert without prior checking because the tree
743 * is empty at this point
745 RB_INSERT(sha_dedup_entry_rb_tree
, &de
->u
.fict_root
, sha_de
);
748 * Mark entry in CRC tree fictitious
750 de
->flags
|= HAMMER_DEDUP_ENTRY_FICTITIOUS
;
753 * Upgrade checksum of the candidate and insert it into
754 * SHA subtree. If upgrade fails insert the candidate into
757 if (upgrade_chksum(scan_leaf
, temp
.sha_hash
))
759 sha_de
= RB_FIND(sha_dedup_entry_rb_tree
, &de
->u
.fict_root
,
761 if (sha_de
!= NULL
) {
762 /* There is an entry with this SHA already, but the only
763 * RB-tree element at this point is that entry we just
764 * added. We know for sure these blocks are different
765 * (this is crc_failure branch) so treat it as SHA
771 sha_de
= calloc(1, sizeof(*sha_de
));
772 sha_de
->leaf
= *scan_leaf
;
773 memcpy(sha_de
->sha_hash
, temp
.sha_hash
, SHA256_DIGEST_LENGTH
);
774 RB_INSERT(sha_dedup_entry_rb_tree
, &de
->u
.fict_root
, sha_de
);
775 MemoryUse
+= sizeof(*sha_de
);
776 goto upgrade_stats_sha
;
780 de
->u
.de
.ref_blks
+= 1;
781 de
->u
.de
.ref_size
+= scan_leaf
->data_len
;
785 sha_de
->ref_blks
+= 1;
786 sha_de
->ref_size
+= scan_leaf
->data_len
;
791 * If in pass2 mode don't insert anything, fall through to
794 if ((flags
& DEDUP_PASS2
) == 0) {
795 pass2_de
= calloc(1, sizeof(*pass2_de
));
796 pass2_de
->leaf
= *scan_leaf
;
797 STAILQ_INSERT_TAIL(&pass2_dedup_queue
, pass2_de
, sq_entry
);
798 dedup_skipped_size
+= scan_leaf
->data_len
;
804 * Early termination path. Fixup stats.
806 dedup_alloc_size
+= scan_leaf
->data_len
;
807 dedup_ref_size
+= scan_leaf
->data_len
;
813 upgrade_chksum(hammer_btree_leaf_elm_t leaf
, uint8_t *sha_hash
)
815 struct hammer_ioc_data data
;
816 char *buf
= malloc(DEDUP_BUF
);
820 bzero(&data
, sizeof(data
));
821 data
.elm
= leaf
->base
;
823 data
.size
= DEDUP_BUF
;
826 if (ioctl(glob_fd
, HAMMERIOC_GET_DATA
, &data
) < 0) {
827 fprintf(stderr
, "Get-data failed: %s\n", strerror(errno
));
831 DedupDataReads
+= leaf
->data_len
;
833 if (data
.leaf
.data_len
!= leaf
->data_len
) {
838 if (data
.leaf
.base
.btype
== HAMMER_BTREE_TYPE_RECORD
&&
839 data
.leaf
.base
.rec_type
== HAMMER_RECTYPE_DATA
) {
841 SHA256_Update(&ctx
, (void *)buf
, data
.leaf
.data_len
);
842 SHA256_Final(sha_hash
, &ctx
);
852 sigAlrm(int signo __unused
)
859 sigInfo(int signo __unused
)
866 scan_pfs(char *filesystem
, scan_pfs_cb_t func
, const char *id
)
868 struct hammer_ioc_mirror_rw mirror
;
869 hammer_ioc_mrecord_any_t mrec
;
870 struct hammer_btree_leaf_elm elm
;
871 char *buf
= malloc(DEDUP_BUF
);
878 DedupCurrentRecords
= 0;
879 signal(SIGINFO
, sigInfo
);
880 signal(SIGALRM
, sigAlrm
);
883 * Deduplication happens per element so hammer(8) is in full
884 * control of the ioctl()s to actually perform it. SIGALRM
885 * needs to be handled within hammer(8) but a checkpoint
886 * is needed for resuming. Use cycle file for that.
888 * Try to obtain the previous obj_id from the cycle file and
889 * if not available just start from the beginning.
891 bzero(&mirror
, sizeof(mirror
));
892 hammer_key_beg_init(&mirror
.key_beg
);
893 hammer_get_cycle(&mirror
.key_beg
, &mirror
.tid_beg
);
895 if (mirror
.key_beg
.obj_id
!= (int64_t)HAMMER_MIN_OBJID
) {
897 fprintf(stderr
, "%s: mirror-read: Resuming at object %016jx\n",
898 id
, (uintmax_t)mirror
.key_beg
.obj_id
);
902 hammer_key_end_init(&mirror
.key_end
);
904 mirror
.tid_beg
= glob_pfs
.ondisk
->sync_beg_tid
;
905 mirror
.tid_end
= glob_pfs
.ondisk
->sync_end_tid
;
906 mirror
.head
.flags
|= HAMMER_IOC_MIRROR_NODATA
; /* we want only keys */
908 mirror
.size
= DEDUP_BUF
;
909 mirror
.pfs_id
= glob_pfs
.pfs_id
;
910 mirror
.shared_uuid
= glob_pfs
.ondisk
->shared_uuid
;
912 if (VerboseOpt
&& DedupCrcStart
== 0) {
913 printf("%s %s: objspace %016jx:%04x %016jx:%04x\n",
915 (uintmax_t)mirror
.key_beg
.obj_id
,
916 mirror
.key_beg
.localization
,
917 (uintmax_t)mirror
.key_end
.obj_id
,
918 mirror
.key_end
.localization
);
919 printf("%s %s: pfs_id %d\n",
920 id
, filesystem
, glob_pfs
.pfs_id
);
927 mirror
.pfs_id
= glob_pfs
.pfs_id
;
928 mirror
.shared_uuid
= glob_pfs
.ondisk
->shared_uuid
;
929 if (ioctl(glob_fd
, HAMMERIOC_MIRROR_READ
, &mirror
) < 0) {
930 err(1, "Mirror-read %s failed", filesystem
);
933 if (mirror
.head
.flags
& HAMMER_IOC_HEAD_ERROR
) {
934 errx(1, "Mirror-read %s fatal error %d",
935 filesystem
, mirror
.head
.error
);
940 while (offset
< mirror
.count
) {
941 mrec
= (void *)((char *)buf
+ offset
);
942 bytes
= HAMMER_HEAD_DOALIGN(mrec
->head
.rec_size
);
943 if (offset
+ bytes
> mirror
.count
) {
944 errx(1, "Misaligned record");
947 assert((mrec
->head
.type
&
948 HAMMER_MRECF_TYPE_MASK
) ==
949 HAMMER_MREC_TYPE_REC
);
951 elm
= mrec
->rec
.leaf
;
952 if (elm
.base
.btype
!= HAMMER_BTREE_TYPE_RECORD
)
954 if (elm
.base
.rec_type
!= HAMMER_RECTYPE_DATA
)
956 ++DedupCurrentRecords
;
957 if (DedupCrcStart
!= DedupCrcEnd
) {
958 if (elm
.data_crc
< DedupCrcStart
)
961 elm
.data_crc
>= DedupCrcEnd
) {
968 mirror
.key_beg
= mirror
.key_cur
;
969 if (DidInterrupt
|| SigAlrmFlag
) {
971 fprintf(stderr
, "%s\n",
972 (DidInterrupt
? "Interrupted" : "Timeout"));
974 hammer_set_cycle(&mirror
.key_cur
, mirror
.tid_beg
);
976 fprintf(stderr
, "Cyclefile %s updated for "
977 "continuation\n", CyclePath
);
982 if (DedupTotalRecords
) {
983 humanize_unsigned(buf1
, sizeof(buf1
),
986 humanize_unsigned(buf2
, sizeof(buf2
),
987 dedup_successes_bytes
,
989 fprintf(stderr
, "%s count %7jd/%jd "
991 "ioread %s newddup %s\n",
993 (intmax_t)DedupCurrentRecords
,
994 (intmax_t)DedupTotalRecords
,
995 (int)(DedupCurrentRecords
* 100 /
997 (int)(DedupCurrentRecords
* 10000 /
998 DedupTotalRecords
% 100),
1001 fprintf(stderr
, "%s count %-7jd\n",
1003 (intmax_t)DedupCurrentRecords
);
1007 } while (mirror
.count
!= 0);
1009 signal(SIGINFO
, SIG_IGN
);
1010 signal(SIGALRM
, SIG_IGN
);
1017 dump_simulated_dedup(void)
1019 struct sim_dedup_entry
*sim_de
;
1021 printf("=== Dumping simulated dedup entries:\n");
1022 RB_FOREACH(sim_de
, sim_dedup_entry_rb_tree
, &sim_dedup_tree
) {
1023 printf("\tcrc=%08x cnt=%ju size=%ju\n",
1025 (intmax_t)sim_de
->ref_blks
,
1026 (intmax_t)sim_de
->ref_size
);
1028 printf("end of dump ===\n");
1033 dump_real_dedup(void)
1035 struct dedup_entry
*de
;
1036 struct sha_dedup_entry
*sha_de
;
1039 printf("=== Dumping dedup entries:\n");
1040 RB_FOREACH(de
, dedup_entry_rb_tree
, &dedup_tree
) {
1041 if (de
->flags
& HAMMER_DEDUP_ENTRY_FICTITIOUS
) {
1042 printf("\tcrc=%08x fictitious\n", de
->leaf
.data_crc
);
1044 RB_FOREACH(sha_de
, sha_dedup_entry_rb_tree
, &de
->u
.fict_root
) {
1045 printf("\t\tcrc=%08x cnt=%ju size=%ju\n\t"
1047 sha_de
->leaf
.data_crc
,
1048 (intmax_t)sha_de
->ref_blks
,
1049 (intmax_t)sha_de
->ref_size
);
1050 for (i
= 0; i
< SHA256_DIGEST_LENGTH
; ++i
)
1051 printf("%02x", sha_de
->sha_hash
[i
]);
1055 printf("\tcrc=%08x cnt=%ju size=%ju\n",
1057 (intmax_t)de
->u
.de
.ref_blks
,
1058 (intmax_t)de
->u
.de
.ref_size
);
1061 printf("end of dump ===\n");
1066 dedup_usage(int code
)
1069 "hammer dedup-simulate <filesystem>\n"
1070 "hammer dedup <filesystem>\n"