sui_archival/
lib.rs

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
// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0
#![allow(dead_code)]

pub mod reader;
pub mod writer;

#[cfg(test)]
mod tests;

use crate::reader::{ArchiveReader, ArchiveReaderMetrics};
use anyhow::{anyhow, Result};
use byteorder::{BigEndian, ReadBytesExt, WriteBytesExt};
use bytes::Bytes;
use fastcrypto::hash::{HashFunction, Sha3_256};
use indicatif::{ProgressBar, ProgressStyle};
use num_enum::IntoPrimitive;
use num_enum::TryFromPrimitive;
use object_store::path::Path;
use prometheus::Registry;
use serde::{Deserialize, Serialize};
use std::fs;
use std::io::{BufWriter, Cursor, Read, Seek, SeekFrom, Write};
use std::num::NonZeroUsize;
use std::ops::Range;
use std::sync::atomic::{AtomicU64, Ordering};
use std::sync::Arc;
use std::time::{Duration, Instant};
use sui_config::genesis::Genesis;
use sui_config::node::ArchiveReaderConfig;
use sui_config::object_storage_config::ObjectStoreConfig;
use sui_storage::blob::{Blob, BlobEncoding};
use sui_storage::object_store::util::{get, put};
use sui_storage::object_store::{ObjectStoreGetExt, ObjectStorePutExt};
use sui_storage::{compute_sha3_checksum, compute_sha3_checksum_for_bytes, SHA3_BYTES};
use sui_types::base_types::ExecutionData;
use sui_types::messages_checkpoint::{FullCheckpointContents, VerifiedCheckpointContents};
use sui_types::storage::{SingleCheckpointSharedInMemoryStore, WriteStore};
use tracing::{error, info};

#[allow(rustdoc::invalid_html_tags)]
/// Checkpoints and summaries are persisted as blob files. Files are committed to local store
/// by duration or file size. Committed files are synced with the remote store continuously. Files are
/// optionally compressed with the zstd compression format. Filenames follow the format
/// <checkpoint_seq_num>.<suffix> where `checkpoint_seq_num` is the first checkpoint present in that
/// file. MANIFEST is the index and source of truth for all files present in the archive.
///
/// State Archival Directory Layout
///  - archive/
///     - MANIFEST
///     - epoch_0/
///        - 0.chk
///        - 0.sum
///        - 1000.chk
///        - 1000.sum
///        - 3000.chk
///        - 3000.sum
///        - ...
///        - 100000.chk
///        - 100000.sum
///     - epoch_1/
///        - 101000.chk
///        - ...
///
/// Blob File Disk Format
///┌──────────────────────────────┐
///│       magic <4 byte>         │
///├──────────────────────────────┤
///│  storage format <1 byte>     │
// ├──────────────────────────────┤
///│    file compression <1 byte> │
// ├──────────────────────────────┤
///│ ┌──────────────────────────┐ │
///│ │         Blob 1           │ │
///│ ├──────────────────────────┤ │
///│ │          ...             │ │
///│ ├──────────────────────────┤ │
///│ │        Blob N            │ │
///│ └──────────────────────────┘ │
///└──────────────────────────────┘
/// Blob
///┌───────────────┬───────────────────┬──────────────┐
///│ len <uvarint> │ encoding <1 byte> │ data <bytes> │
///└───────────────┴───────────────────┴──────────────┘
///
/// MANIFEST File Disk Format
///┌──────────────────────────────┐
///│        magic<4 byte>         │
///├──────────────────────────────┤
///│   serialized manifest        │
///├──────────────────────────────┤
///│      sha3 <32 bytes>         │
///└──────────────────────────────┘
pub const CHECKPOINT_FILE_MAGIC: u32 = 0x0000DEAD;
pub const SUMMARY_FILE_MAGIC: u32 = 0x0000CAFE;
const MANIFEST_FILE_MAGIC: u32 = 0x00C0FFEE;
const MAGIC_BYTES: usize = 4;
const CHECKPOINT_FILE_SUFFIX: &str = "chk";
const SUMMARY_FILE_SUFFIX: &str = "sum";
const EPOCH_DIR_PREFIX: &str = "epoch_";
const MANIFEST_FILENAME: &str = "MANIFEST";

#[derive(
    Copy, Clone, Debug, Eq, PartialEq, Serialize, Deserialize, TryFromPrimitive, IntoPrimitive,
)]
#[repr(u8)]
pub enum FileType {
    CheckpointContent = 0,
    CheckpointSummary,
}

#[derive(Debug, Clone, Serialize, Deserialize, Eq, PartialEq)]
pub struct FileMetadata {
    pub file_type: FileType,
    pub epoch_num: u64,
    pub checkpoint_seq_range: Range<u64>,
    pub sha3_digest: [u8; 32],
}

impl FileMetadata {
    pub fn file_path(&self) -> Path {
        let dir_path = Path::from(format!("{}{}", EPOCH_DIR_PREFIX, self.epoch_num));
        match self.file_type {
            FileType::CheckpointContent => dir_path.child(&*format!(
                "{}.{CHECKPOINT_FILE_SUFFIX}",
                self.checkpoint_seq_range.start
            )),
            FileType::CheckpointSummary => dir_path.child(&*format!(
                "{}.{SUMMARY_FILE_SUFFIX}",
                self.checkpoint_seq_range.start
            )),
        }
    }
}

#[derive(Debug, Clone, Serialize, Deserialize, Eq, PartialEq)]
pub struct ManifestV1 {
    pub archive_version: u8,
    pub next_checkpoint_seq_num: u64,
    pub file_metadata: Vec<FileMetadata>,
    pub epoch: u64,
}

#[derive(Debug, Serialize, Deserialize, Clone, Eq, PartialEq)]
pub enum Manifest {
    V1(ManifestV1),
}

impl Manifest {
    pub fn new(epoch: u64, next_checkpoint_seq_num: u64) -> Self {
        Manifest::V1(ManifestV1 {
            archive_version: 1,
            next_checkpoint_seq_num,
            file_metadata: vec![],
            epoch,
        })
    }
    pub fn files(&self) -> Vec<FileMetadata> {
        match self {
            Manifest::V1(manifest) => manifest.file_metadata.clone(),
        }
    }
    pub fn epoch_num(&self) -> u64 {
        match self {
            Manifest::V1(manifest) => manifest.epoch,
        }
    }
    pub fn next_checkpoint_seq_num(&self) -> u64 {
        match self {
            Manifest::V1(manifest) => manifest.next_checkpoint_seq_num,
        }
    }
    pub fn next_checkpoint_after_epoch(&self, epoch_num: u64) -> u64 {
        match self {
            Manifest::V1(manifest) => {
                let mut summary_files: Vec<_> = manifest
                    .file_metadata
                    .clone()
                    .into_iter()
                    .filter(|f| f.file_type == FileType::CheckpointSummary)
                    .collect();
                summary_files.sort_by_key(|f| f.checkpoint_seq_range.start);
                assert!(summary_files
                    .windows(2)
                    .all(|w| w[1].checkpoint_seq_range.start == w[0].checkpoint_seq_range.end));
                assert_eq!(summary_files.first().unwrap().checkpoint_seq_range.start, 0);
                summary_files
                    .iter()
                    .find(|f| f.epoch_num > epoch_num)
                    .map(|f| f.checkpoint_seq_range.start)
                    .unwrap_or(u64::MAX)
            }
        }
    }

    pub fn get_all_end_of_epoch_checkpoint_seq_numbers(&self) -> Result<Vec<u64>> {
        match self {
            Manifest::V1(manifest) => {
                let mut summary_files: Vec<_> = manifest
                    .file_metadata
                    .clone()
                    .into_iter()
                    .filter(|f| f.file_type == FileType::CheckpointSummary)
                    .collect();
                summary_files.sort_by_key(|f| f.checkpoint_seq_range.start);
                assert!(summary_files
                    .windows(2)
                    .all(|w| w[1].checkpoint_seq_range.start == w[0].checkpoint_seq_range.end));
                assert_eq!(summary_files.first().unwrap().checkpoint_seq_range.start, 0);
                // get last checkpoint seq num per epoch
                let res = summary_files.windows(2).filter_map(|w| {
                    if w[1].epoch_num == w[0].epoch_num + 1 {
                        Some(w[0].checkpoint_seq_range.end - 1)
                    } else {
                        None
                    }
                });
                Ok(res.collect())
            }
        }
    }

    pub fn update(
        &mut self,
        epoch_num: u64,
        checkpoint_sequence_number: u64,
        checkpoint_file_metadata: FileMetadata,
        summary_file_metadata: FileMetadata,
    ) {
        match self {
            Manifest::V1(manifest) => {
                manifest.epoch = epoch_num;
                manifest.next_checkpoint_seq_num = checkpoint_sequence_number;
                if let Some(last_file_metadata) = manifest.file_metadata.last() {
                    if last_file_metadata.checkpoint_seq_range
                        == checkpoint_file_metadata.checkpoint_seq_range
                    {
                        return;
                    }
                }
                manifest
                    .file_metadata
                    .extend(vec![checkpoint_file_metadata, summary_file_metadata]);
            }
        }
    }
}

#[derive(Debug, Clone, Serialize, Deserialize, Eq, PartialEq)]
pub struct CheckpointUpdates {
    checkpoint_file_metadata: FileMetadata,
    summary_file_metadata: FileMetadata,
    manifest: Manifest,
}

impl CheckpointUpdates {
    pub fn new(
        epoch_num: u64,
        checkpoint_sequence_number: u64,
        checkpoint_file_metadata: FileMetadata,
        summary_file_metadata: FileMetadata,
        manifest: &mut Manifest,
    ) -> Self {
        manifest.update(
            epoch_num,
            checkpoint_sequence_number,
            checkpoint_file_metadata.clone(),
            summary_file_metadata.clone(),
        );
        CheckpointUpdates {
            checkpoint_file_metadata,
            summary_file_metadata,
            manifest: manifest.clone(),
        }
    }
    pub fn content_file_path(&self) -> Path {
        self.checkpoint_file_metadata.file_path()
    }
    pub fn summary_file_path(&self) -> Path {
        self.summary_file_metadata.file_path()
    }
    pub fn manifest_file_path(&self) -> Path {
        Path::from(MANIFEST_FILENAME)
    }
}

pub fn create_file_metadata(
    file_path: &std::path::Path,
    file_type: FileType,
    epoch_num: u64,
    checkpoint_seq_range: Range<u64>,
) -> Result<FileMetadata> {
    let sha3_digest = compute_sha3_checksum(file_path)?;
    let file_metadata = FileMetadata {
        file_type,
        epoch_num,
        checkpoint_seq_range,
        sha3_digest,
    };
    Ok(file_metadata)
}

pub fn create_file_metadata_from_bytes(
    bytes: Bytes,
    file_type: FileType,
    epoch_num: u64,
    checkpoint_seq_range: Range<u64>,
) -> Result<FileMetadata> {
    let sha3_digest = compute_sha3_checksum_for_bytes(bytes)?;
    let file_metadata = FileMetadata {
        file_type,
        epoch_num,
        checkpoint_seq_range,
        sha3_digest,
    };
    Ok(file_metadata)
}

pub async fn read_manifest<S: ObjectStoreGetExt>(remote_store: S) -> Result<Manifest> {
    let manifest_file_path = Path::from(MANIFEST_FILENAME);
    let vec = get(&remote_store, &manifest_file_path).await?.to_vec();
    read_manifest_from_bytes(vec)
}

pub fn read_manifest_from_bytes(vec: Vec<u8>) -> Result<Manifest> {
    let manifest_file_size = vec.len();
    let mut manifest_reader = Cursor::new(vec);
    manifest_reader.rewind()?;
    let magic = manifest_reader.read_u32::<BigEndian>()?;
    if magic != MANIFEST_FILE_MAGIC {
        return Err(anyhow!("Unexpected magic byte in manifest: {}", magic));
    }
    manifest_reader.seek(SeekFrom::End(-(SHA3_BYTES as i64)))?;
    let mut sha3_digest = [0u8; SHA3_BYTES];
    manifest_reader.read_exact(&mut sha3_digest)?;
    manifest_reader.rewind()?;
    let mut content_buf = vec![0u8; manifest_file_size - SHA3_BYTES];
    manifest_reader.read_exact(&mut content_buf)?;
    let mut hasher = Sha3_256::default();
    hasher.update(&content_buf);
    let computed_digest = hasher.finalize().digest;
    if computed_digest != sha3_digest {
        return Err(anyhow!(
            "Manifest corrupted, computed checksum: {:?}, stored checksum: {:?}",
            computed_digest,
            sha3_digest
        ));
    }
    manifest_reader.rewind()?;
    manifest_reader.seek(SeekFrom::Start(MAGIC_BYTES as u64))?;
    Blob::read(&mut manifest_reader)?.decode()
}

pub fn finalize_manifest(manifest: Manifest) -> Result<Bytes> {
    let mut buf = BufWriter::new(vec![]);
    buf.write_u32::<BigEndian>(MANIFEST_FILE_MAGIC)?;
    let blob = Blob::encode(&manifest, BlobEncoding::Bcs)?;
    blob.write(&mut buf)?;
    buf.flush()?;
    let mut hasher = Sha3_256::default();
    hasher.update(buf.get_ref());
    let computed_digest = hasher.finalize().digest;
    buf.write_all(&computed_digest)?;
    Ok(Bytes::from(buf.into_inner()?))
}

pub async fn write_manifest<S: ObjectStorePutExt>(
    manifest: Manifest,
    remote_store: S,
) -> Result<()> {
    let path = Path::from(MANIFEST_FILENAME);
    let bytes = finalize_manifest(manifest)?;
    put(&remote_store, &path, bytes).await?;
    Ok(())
}

pub async fn read_manifest_as_json(remote_store_config: ObjectStoreConfig) -> Result<String> {
    let metrics = ArchiveReaderMetrics::new(&Registry::default());
    let config = ArchiveReaderConfig {
        remote_store_config,
        download_concurrency: NonZeroUsize::new(1).unwrap(),
        use_for_pruning_watermark: false,
    };
    let archive_reader = ArchiveReader::new(config, &metrics)?;
    archive_reader.sync_manifest_once().await?;
    let manifest = archive_reader.get_manifest().await?;
    let json = serde_json::to_string(&manifest).expect("Failed to serialize object");
    Ok(json)
}

pub async fn write_manifest_from_json(
    remote_store_config: ObjectStoreConfig,
    json_manifest_path: std::path::PathBuf,
) -> Result<()> {
    let manifest: Manifest = serde_json::from_str(&fs::read_to_string(json_manifest_path)?)?;
    let store = remote_store_config.make()?;
    write_manifest(manifest, store).await?;
    Ok(())
}

pub async fn verify_archive_with_genesis_config(
    genesis: &std::path::Path,
    remote_store_config: ObjectStoreConfig,
    concurrency: usize,
    interactive: bool,
    num_retries: u32,
) -> Result<()> {
    let genesis = Genesis::load(genesis).unwrap();
    let genesis_committee = genesis.committee()?;
    let mut store = SingleCheckpointSharedInMemoryStore::default();
    let contents = genesis.checkpoint_contents();
    let fullcheckpoint_contents = FullCheckpointContents::from_contents_and_execution_data(
        contents.clone(),
        std::iter::once(ExecutionData::new(
            genesis.transaction().clone(),
            genesis.effects().clone(),
        )),
    );
    store.insert_genesis_state(
        genesis.checkpoint(),
        VerifiedCheckpointContents::new_unchecked(fullcheckpoint_contents),
        genesis_committee,
    );

    let num_retries = std::cmp::max(num_retries, 1);
    for _ in 0..num_retries {
        match verify_archive_with_local_store(
            store.clone(),
            remote_store_config.clone(),
            concurrency,
            interactive,
        )
        .await
        {
            Ok(_) => return Ok(()),
            Err(e) => {
                error!("Error while verifying archive: {}", e);
                tokio::time::sleep(Duration::from_secs(10)).await;
            }
        }
    }

    Err::<(), anyhow::Error>(anyhow!(
        "Failed to verify archive after {} retries",
        num_retries
    ))
}

pub async fn verify_archive_with_checksums(
    remote_store_config: ObjectStoreConfig,
    concurrency: usize,
) -> Result<()> {
    let metrics = ArchiveReaderMetrics::new(&Registry::default());
    let config = ArchiveReaderConfig {
        remote_store_config,
        download_concurrency: NonZeroUsize::new(concurrency).unwrap(),
        use_for_pruning_watermark: false,
    };
    let archive_reader = ArchiveReader::new(config, &metrics)?;
    archive_reader.sync_manifest_once().await?;
    let manifest = archive_reader.get_manifest().await?;
    info!(
        "Next checkpoint in archive store: {}",
        manifest.next_checkpoint_seq_num()
    );

    let file_metadata = archive_reader.verify_manifest(manifest).await?;
    // Account for both summary and content files
    let num_files = file_metadata.len() * 2;
    archive_reader
        .verify_file_consistency(file_metadata)
        .await?;
    info!("All {} files are valid", num_files);
    Ok(())
}

pub async fn verify_archive_with_local_store<S>(
    store: S,
    remote_store_config: ObjectStoreConfig,
    concurrency: usize,
    interactive: bool,
) -> Result<()>
where
    S: WriteStore + Clone + Send + 'static,
{
    let metrics = ArchiveReaderMetrics::new(&Registry::default());
    let config = ArchiveReaderConfig {
        remote_store_config,
        download_concurrency: NonZeroUsize::new(concurrency).unwrap(),
        use_for_pruning_watermark: false,
    };
    let archive_reader = ArchiveReader::new(config, &metrics)?;
    archive_reader.sync_manifest_once().await?;
    let latest_checkpoint_in_archive = archive_reader.latest_available_checkpoint().await?;
    info!(
        "Latest available checkpoint in archive store: {}",
        latest_checkpoint_in_archive
    );
    let latest_checkpoint = store
        .get_highest_synced_checkpoint()
        .map_err(|_| anyhow!("Failed to read highest synced checkpoint"))?
        .sequence_number;
    info!("Highest synced checkpoint in db: {latest_checkpoint}");
    let txn_counter = Arc::new(AtomicU64::new(0));
    let checkpoint_counter = Arc::new(AtomicU64::new(0));
    let progress_bar = if interactive {
        let progress_bar = ProgressBar::new(latest_checkpoint_in_archive).with_style(
            ProgressStyle::with_template("[{elapsed_precise}] {wide_bar} {pos}/{len}({msg})")
                .unwrap(),
        );
        let cloned_progress_bar = progress_bar.clone();
        let cloned_counter = txn_counter.clone();
        let cloned_checkpoint_counter = checkpoint_counter.clone();
        let instant = Instant::now();
        tokio::spawn(async move {
            loop {
                let total_checkpoints_loaded = cloned_checkpoint_counter.load(Ordering::Relaxed);
                let total_checkpoints_per_sec =
                    total_checkpoints_loaded as f64 / instant.elapsed().as_secs_f64();
                let total_txns_per_sec =
                    cloned_counter.load(Ordering::Relaxed) as f64 / instant.elapsed().as_secs_f64();
                cloned_progress_bar.set_position(latest_checkpoint + total_checkpoints_loaded);
                cloned_progress_bar.set_message(format!(
                    "checkpoints/s: {}, txns/s: {}",
                    total_checkpoints_per_sec, total_txns_per_sec
                ));
                tokio::time::sleep(Duration::from_secs(1)).await;
            }
        });
        Some(progress_bar)
    } else {
        let cloned_store = store.clone();
        tokio::spawn(async move {
            loop {
                let latest_checkpoint = cloned_store
                    .get_highest_synced_checkpoint()
                    .map_err(|_| anyhow!("Failed to read highest synced checkpoint"))?
                    .sequence_number;
                let percent = (latest_checkpoint * 100) / latest_checkpoint_in_archive;
                info!("done = {percent}%");
                tokio::time::sleep(Duration::from_secs(60)).await;
                if percent >= 100 {
                    break;
                }
            }
            Ok::<(), anyhow::Error>(())
        });
        None
    };
    archive_reader
        .read(
            store.clone(),
            (latest_checkpoint + 1)..u64::MAX,
            txn_counter,
            checkpoint_counter,
            true,
        )
        .await?;
    progress_bar.iter().for_each(|p| p.finish_and_clear());
    let end = store
        .get_highest_synced_checkpoint()
        .map_err(|_| anyhow!("Failed to read watermark"))?
        .sequence_number;
    info!("Highest verified checkpoint: {}", end);
    Ok(())
}