1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
//! Merkle tree implementation for cryptographic file verification in Titor
//!
//! This module provides a robust Merkle tree implementation that enables efficient
//! and secure verification of file integrity across checkpoints. The implementation
//! supports both individual file verification and batch verification of entire
//! directory structures.
//!
//! ## Overview
//!
//! A Merkle tree is a binary tree where each leaf node represents a hash of a file's
//! content and metadata, and each internal node represents the hash of its children.
//! This structure allows for:
//!
//! - **Efficient Verification**: Verify individual files without downloading entire datasets
//! - **Tamper Detection**: Any modification to files changes the root hash
//! - **Batch Operations**: Verify multiple files simultaneously
//! - **Cryptographic Security**: Based on SHA-256 cryptographic hashing
//!
//! ## Tree Structure
//!
//! ```text
//! Root Hash
//! / \
//! H(A,B) H(C,D)
//! / \ / \
//! H(A) H(B) H(C) H(D)
//! | | | |
//! File A File B File C File D
//! ```
//!
//! Each file contributes a leaf node containing:
//! - Content hash (SHA-256 of file content)
//! - Metadata hash (SHA-256 of permissions, timestamps, etc.)
//! - Combined hash (SHA-256 of content hash + metadata hash)
//!
//! ## Usage Examples
//!
//! ### Basic Tree Construction
//!
//! ```rust,ignore
//! use crate::merkle::{MerkleTree, FileEntryHashBuilder};
//! use titor::types::FileEntry;
//! use std::path::PathBuf;
//! use chrono::Utc;
//!
//! # fn example() -> Result<(), Box<dyn std::error::Error>> {
//! // Create file entries with proper hashes
//! let mut builder = FileEntryHashBuilder::new();
//! let content = b"Hello, world!";
//! let content_hash = builder.hash_content(content);
//! let metadata_hash = builder.hash_metadata(0o644, &Utc::now());
//! let combined_hash = builder.combined_hash(&content_hash, &metadata_hash);
//!
//! let entry = FileEntry {
//! path: PathBuf::from("hello.txt"),
//! content_hash,
//! metadata_hash,
//! combined_hash,
//! size: content.len() as u64,
//! permissions: 0o644,
//! modified: Utc::now(),
//! is_compressed: false,
//! is_symlink: false,
//! symlink_target: None,
//! is_directory: false,
//! };
//!
//! // Build Merkle tree
//! let tree = MerkleTree::from_entries(&[entry])?;
//! let root_hash = tree.root_hash().expect("Tree should have root hash");
//! println!("Root hash: {}", root_hash);
//! # Ok(())
//! # }
//! ```
//!
//! ### Verification Workflow
//!
//! ```rust,ignore
//! use crate::merkle::MerkleTree;
//! use titor::types::FileEntry;
//!
//! # fn example() -> Result<(), Box<dyn std::error::Error>> {
//! # let entries: Vec<FileEntry> = vec![]; // Assume we have file entries
//! // Build tree from current files
//! let current_tree = MerkleTree::from_entries(&entries)?;
//!
//! // Compare with previous checkpoint
//! let previous_root = "previous_root_hash";
//! let current_root = current_tree.root_hash().unwrap_or_default();
//!
//! if current_root == previous_root {
//! println!("Files are unchanged");
//! } else {
//! println!("Files have been modified");
//! }
//! # Ok(())
//! # }
//! ```
//!
//! ## Security Properties
//!
//! - **Collision Resistance**: Based on SHA-256, making hash collisions computationally infeasible
//! - **Tamper Detection**: Any modification to files changes the root hash
//! - **Integrity Verification**: Verify file integrity without accessing original content
//! - **Cryptographic Strength**: Uses industry-standard SHA-256 hashing
//!
//! ## Performance Characteristics
//!
//! - **Time Complexity**: O(n) to build tree, O(log n) for verification
//! - **Space Complexity**: O(n) for tree storage
//! - **Optimization**: Caches intermediate hashes for efficient proof generation
//! - **Scalability**: Handles large file sets efficiently through tree structure
//!
//! ## Implementation Notes
//!
//! - Trees are balanced by duplicating odd nodes during construction
//! - Leaf nodes contain file-specific hashes for content and metadata
//! - Internal nodes are computed from child hashes using SHA-256
//! - Empty trees are supported and return `None` for root hash
use crate;
use crateFileEntry;
use ;
use PathBuf;
use crate;
use trace;
/// A node in the Merkle tree structure
///
/// Represents both internal nodes and leaf nodes in the tree. Internal nodes
/// contain hashes computed from their children, while leaf nodes contain
/// hashes computed from file content and metadata.
///
/// # Structure
///
/// - **Internal nodes**: Have both left and right children, hash computed from children
/// - **Leaf nodes**: Have no children, hash computed from file data
///
/// # Example
///
/// ```rust,ignore
/// use crate::merkle::MerkleNode;
///
/// // Create leaf nodes
/// let leaf1 = MerkleNode {
/// hash: "hash_of_file1".to_string(),
/// left: None,
/// right: None,
/// };
/// let leaf2 = MerkleNode {
/// hash: "hash_of_file2".to_string(),
/// left: None,
/// right: None,
/// };
///
/// // Create internal node from children
/// let internal = MerkleNode::internal(leaf1, leaf2);
/// ```
/// Leaf node in the Merkle tree representing a file
///
/// Each leaf node represents a single file in the filesystem and contains
/// the combined hash of both the file's content and metadata. This ensures
/// that any changes to either the file content or its metadata (permissions,
/// timestamps, etc.) will be detected.
///
/// # Hash Computation
///
/// The combined hash is computed as:
/// ```text
/// combined_hash = SHA-256(content_hash + metadata_hash)
/// ```
///
/// Where:
/// - `content_hash` = SHA-256 of the file's content
/// - `metadata_hash` = SHA-256 of the file's metadata (permissions, timestamps)
///
/// # Example
///
/// ```rust,ignore
/// use crate::merkle::{MerkleLeaf, FileEntryHashBuilder};
/// use chrono::Utc;
///
/// let mut builder = FileEntryHashBuilder::new();
/// let content = b"Hello, world!";
/// let content_hash = builder.hash_content(content);
/// let metadata_hash = builder.hash_metadata(0o644, &Utc::now());
/// let combined_hash = builder.combined_hash(&content_hash, &metadata_hash);
///
/// let leaf = MerkleLeaf { combined_hash };
/// ```
/// Merkle tree for cryptographic file verification
///
/// A complete Merkle tree implementation that enables efficient verification
/// of file integrity across large datasets. The tree is built from file entries
/// and provides cryptographic guarantees about the integrity of the entire
/// file set through a single root hash.
///
/// # Features
///
/// - **Efficient Construction**: O(n) time complexity for tree building
/// - **Cryptographic Security**: Based on SHA-256 hashing
/// - **Proof Generation**: Cached intermediate hashes for efficient proofs
/// - **Path Indexing**: Fast lookup of files by path
/// - **Tamper Detection**: Any file modification changes the root hash
///
/// # Structure
///
/// The tree maintains:
/// - Root node with the top-level hash
/// - All leaf nodes representing individual files
/// - Path index for fast file lookup
/// - Cache of intermediate node hashes
///
/// # Example
///
/// ```rust,ignore
/// use crate::merkle::MerkleTree;
/// use titor::types::FileEntry;
/// use std::path::PathBuf;
///
/// # fn example() -> Result<(), Box<dyn std::error::Error>> {
/// # let file_entries: Vec<FileEntry> = vec![]; // Assume we have file entries
/// // Build tree from file entries
/// let tree = MerkleTree::from_entries(&file_entries)?;
///
/// // Get root hash for verification
/// if let Some(root_hash) = tree.root_hash() {
/// println!("Root hash: {}", root_hash);
/// // Store this hash for later verification
/// }
/// # Ok(())
/// # }
/// ```
///
/// # Performance
///
/// - Tree construction: O(n) where n is the number of files
/// - Root hash computation: O(1) after construction
/// - Memory usage: O(n) for tree storage
/// - Proof generation: O(log n) with caching
/// Compute hash for an internal node
///
/// Computes the SHA-256 hash of an internal node by concatenating the
/// hashes of its left and right children and hashing the result.
///
/// # Arguments
///
/// * `left` - Hash of the left child node
/// * `right` - Hash of the right child node
///
/// # Returns
///
/// Returns the SHA-256 hash as a 64-character hexadecimal string.
///
/// # Example
///
/// ```rust,ignore
/// # use crate::merkle::compute_internal_hash;
/// let left_hash = "abc123..."; // 64-char hex string
/// let right_hash = "def456..."; // 64-char hex string
/// let internal_hash = compute_internal_hash(left_hash, right_hash);
/// assert_eq!(internal_hash.len(), 64);
/// ```
/// Builder for creating file entries with proper hashes
///
/// A utility for computing the various hashes needed for file entries in
/// the Merkle tree. This builder handles the complexity of computing
/// content hashes, metadata hashes, and combined hashes correctly.
///
/// # Hash Types
///
/// The builder computes three types of hashes:
/// 1. **Content Hash**: SHA-256 of the file's content
/// 2. **Metadata Hash**: SHA-256 of file metadata (permissions, timestamps)
/// 3. **Combined Hash**: SHA-256 of content_hash + metadata_hash
///
/// # Example
///
/// ```rust,ignore
/// use crate::merkle::FileEntryHashBuilder;
/// use chrono::Utc;
///
/// let mut builder = FileEntryHashBuilder::new();
/// let content = b"Hello, world!";
///
/// // Compute individual hashes
/// let content_hash = builder.hash_content(content);
/// let metadata_hash = builder.hash_metadata(0o644, &Utc::now());
/// let combined_hash = builder.combined_hash(&content_hash, &metadata_hash);
///
/// // All hashes are 64-character hex strings
/// assert_eq!(content_hash.len(), 64);
/// assert_eq!(metadata_hash.len(), 64);
/// assert_eq!(combined_hash.len(), 64);
/// ```
///
/// # Thread Safety
///
/// The builder is not thread-safe and should not be shared between threads.
/// Create a new builder instance for each thread.