canic-backup 0.94.14

Manifest and orchestration primitives for Canic deployment backup and restore
Documentation
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
use crate::{
    execution::{
        BackupExecutionJournalOperation, BackupExecutionOperationState,
        BackupExecutionResumeSummary,
    },
    journal::ArtifactState,
    persistence::CommandLifetimeHandle,
    plan::{BackupExecutionPreflightReceipts, BackupPlan},
};
use serde::Serialize;
use std::{error::Error as StdError, fmt, path::Path, path::PathBuf};
use thiserror::Error as ThisError;

use crate::persistence::JournalLockError;

///
/// BackupRunnerConfig
///

#[derive(Clone, Debug, Eq, PartialEq)]
pub struct BackupRunnerConfig {
    pub out: PathBuf,
    pub max_steps: Option<usize>,
    pub updated_at: Option<String>,
    pub tool_name: String,
    pub tool_version: String,
}

///
/// BackupRunnerExecutor
///

pub trait BackupRunnerExecutor {
    /// Prove execution preflights before any mutating operation runs.
    fn preflight_receipts(
        &mut self,
        plan: &BackupPlan,
        preflight_id: &str,
        validated_at: &str,
        expires_at: &str,
    ) -> Result<BackupExecutionPreflightReceipts, BackupRunnerCommandError>;

    /// Observe one canister's authoritative lifecycle status.
    fn canister_status(
        &mut self,
        canister_id: &str,
    ) -> Result<BackupRunnerCanisterStatus, BackupRunnerCommandError>;

    /// Observe the authoritative snapshots currently retained for one canister.
    fn snapshot_inventory(
        &mut self,
        canister_id: &str,
    ) -> Result<Vec<BackupRunnerSnapshot>, BackupRunnerCommandError>;

    /// Stop one selected canister.
    fn stop_canister(
        &mut self,
        canister_id: &str,
        command_lifetime: CommandLifetimeHandle,
    ) -> Result<(), BackupRunnerCommandError>;

    /// Start one selected canister.
    fn start_canister(
        &mut self,
        canister_id: &str,
        command_lifetime: CommandLifetimeHandle,
    ) -> Result<(), BackupRunnerCommandError>;

    /// Create one selected canister snapshot and return the typed snapshot receipt.
    fn create_snapshot(
        &mut self,
        canister_id: &str,
        command_lifetime: CommandLifetimeHandle,
    ) -> Result<BackupRunnerSnapshot, BackupRunnerCommandError>;

    /// Download one selected snapshot into a temporary artifact directory.
    fn download_snapshot(
        &mut self,
        canister_id: &str,
        snapshot_id: &str,
        artifact_path: &Path,
        command_lifetime: CommandLifetimeHandle,
    ) -> Result<(), BackupRunnerCommandError>;
}

///
/// BackupRunnerCanisterStatus
///
/// Typed lifecycle status used to reconcile interrupted backup operations.
///

#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum BackupRunnerCanisterStatus {
    Running,
    Stopped,
    Stopping,
}

impl BackupRunnerCanisterStatus {
    #[must_use]
    pub const fn label(self) -> &'static str {
        match self {
            Self::Running => "Running",
            Self::Stopped => "Stopped",
            Self::Stopping => "Stopping",
        }
    }
}

///
/// BackupRunnerSnapshot
///

#[derive(Clone, Debug, Eq, PartialEq)]
pub struct BackupRunnerSnapshot {
    pub snapshot_id: String,
    pub taken_at_timestamp: Option<u64>,
    pub total_size_bytes: Option<u64>,
}

///
/// BackupRunnerCommandError
///

#[derive(Clone, Debug, Eq, PartialEq)]
pub struct BackupRunnerCommandError {
    pub status: String,
    pub message: String,
}

impl BackupRunnerCommandError {
    #[must_use]
    pub fn failed(status: impl Into<String>, message: impl Into<String>) -> Self {
        Self {
            status: status.into(),
            message: message.into(),
        }
    }
}

impl fmt::Display for BackupRunnerCommandError {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(formatter, "{}: {}", self.status, self.message)
    }
}

impl StdError for BackupRunnerCommandError {}

///
/// BackupRunnerError
///

#[derive(Debug, ThisError)]
pub enum BackupRunnerError {
    #[error("backup execution journal is locked: {lock_path}")]
    JournalLocked { lock_path: String },

    #[error("backup execution journal lock path is unsafe: {lock_path} ({kind})")]
    JournalLockUnsafeEntry { lock_path: String, kind: String },

    #[error(
        "backup operation {sequence} {operation_id} has an external command still running: {lock_path}"
    )]
    CommandInFlight {
        sequence: usize,
        operation_id: String,
        lock_path: String,
    },

    #[error(
        "backup operation {sequence} {operation_id} has a quiescent command with an unknown external outcome: {lock_path}"
    )]
    CommandOutcomeUnknown {
        sequence: usize,
        operation_id: String,
        lock_path: String,
    },

    #[error(
        "backup operation {sequence} {operation_id} command lock path is unsafe: {lock_path} ({kind})"
    )]
    CommandLockUnsafeEntry {
        sequence: usize,
        operation_id: String,
        lock_path: String,
        kind: String,
    },

    #[error(
        "backup operation {sequence} {operation_id} observed unsettled canister status {status}"
    )]
    CanisterStatusUnsettled {
        sequence: usize,
        operation_id: String,
        status: &'static str,
    },

    #[error("backup operation {sequence} canister status observation failed: {status}: {message}")]
    CanisterStatusFailed {
        sequence: usize,
        status: String,
        message: String,
    },

    #[error(
        "backup operation {sequence} snapshot inventory observation failed: {status}: {message}"
    )]
    SnapshotInventoryFailed {
        sequence: usize,
        status: String,
        message: String,
    },

    #[error(
        "backup operation {sequence} {operation_id} snapshot inventory lost baseline identities: {snapshot_ids:?}"
    )]
    SnapshotInventoryLostBaseline {
        sequence: usize,
        operation_id: String,
        snapshot_ids: Vec<String>,
    },

    #[error(
        "backup operation {sequence} {operation_id} snapshot identity is ambiguous: {snapshot_ids:?}"
    )]
    SnapshotIdentityAmbiguous {
        sequence: usize,
        operation_id: String,
        snapshot_ids: Vec<String>,
    },

    #[error(
        "backup operation {sequence} {operation_id} snapshot inventory contains a blank identity"
    )]
    InvalidSnapshotIdentity {
        sequence: usize,
        operation_id: String,
    },

    #[error(
        "backup operation {sequence} {operation_id} snapshot inventory contains duplicate identity {snapshot_id}"
    )]
    DuplicateSnapshotIdentity {
        sequence: usize,
        operation_id: String,
        snapshot_id: String,
    },

    #[error("backup operation {sequence} {operation_id} is missing its command lifetime handle")]
    MissingCommandLifetime {
        sequence: usize,
        operation_id: String,
    },

    #[error(
        "download journal backup id does not match the backup plan: expected={expected}, actual={actual}"
    )]
    DownloadJournalBackupIdMismatch { expected: String, actual: String },

    #[error(
        "download journal topology receipt {field} does not match the backup plan: expected={expected}, actual={actual}"
    )]
    DownloadJournalTopologyMismatch {
        field: &'static str,
        expected: String,
        actual: String,
    },

    #[error("backup operation {sequence} has no target canister")]
    MissingOperationTarget { sequence: usize },

    #[error("backup operation {sequence} has no snapshot id for target {target_canister_id}")]
    MissingSnapshotId {
        sequence: usize,
        target_canister_id: String,
    },

    #[error(
        "backup operation {sequence} has no artifact journal entry for target {target_canister_id}"
    )]
    MissingArtifactEntry {
        sequence: usize,
        target_canister_id: String,
    },

    #[error(
        "backup operation {sequence} has multiple artifact snapshots for target {target_canister_id}: {snapshot_ids:?}"
    )]
    AmbiguousArtifactSnapshot {
        sequence: usize,
        target_canister_id: String,
        snapshot_ids: Vec<String>,
    },

    #[error(
        "backup operation {sequence} artifact snapshot for target {target_canister_id} does not match the execution receipt: expected={expected_snapshot_id}, actual={actual_snapshot_id}"
    )]
    ArtifactDownloadSnapshotMismatch {
        sequence: usize,
        target_canister_id: String,
        expected_snapshot_id: String,
        actual_snapshot_id: String,
    },

    #[error(
        "backup operation {sequence} artifact path for target {target_canister_id} does not match the runner path: journal={journal_path}, expected={expected_path}"
    )]
    ArtifactPathMismatch {
        sequence: usize,
        target_canister_id: String,
        journal_path: String,
        expected_path: String,
    },

    #[error(
        "backup operation {sequence} cannot reconcile pending download for target {target_canister_id} while artifact state is {state:?}"
    )]
    ArtifactDownloadStateConflict {
        sequence: usize,
        target_canister_id: String,
        state: ArtifactState,
    },

    #[error(
        "backup operation {sequence} cannot reconcile pending artifact verification for target {target_canister_id} while artifact state is {state:?}"
    )]
    ArtifactVerificationStateConflict {
        sequence: usize,
        target_canister_id: String,
        state: ArtifactState,
    },

    #[error(
        "backup manifest exists before finalization operation {sequence} reached a recoverable state: {state:?}"
    )]
    PrematureManifest {
        sequence: usize,
        state: BackupExecutionOperationState,
    },

    #[error(
        "backup operation {sequence} artifact temp path for target {target_canister_id} does not match expected runner path: journal={journal_path}, expected={expected_path}"
    )]
    ArtifactTempPathMismatch {
        sequence: usize,
        target_canister_id: String,
        journal_path: String,
        expected_path: String,
    },

    #[error(
        "backup operation {sequence} artifact temp path for target {target_canister_id} is missing: {path}"
    )]
    ArtifactTempPathMissing {
        sequence: usize,
        target_canister_id: String,
        path: String,
    },

    #[error(
        "backup operation {sequence} artifact temp path for target {target_canister_id} is unsafe: {path} ({kind})"
    )]
    ArtifactTempPathUnsafeEntry {
        sequence: usize,
        target_canister_id: String,
        path: String,
        kind: String,
    },

    #[error("backup operation {sequence} failed: {status}: {message}")]
    CommandFailed {
        sequence: usize,
        status: String,
        message: String,
    },

    #[error("backup failure containment failed after {primary}: {containment}")]
    FailureContainmentFailed {
        #[source]
        primary: Box<Self>,
        containment: Box<Self>,
    },

    #[error("backup preflight failed: {status}: {message}")]
    PreflightFailed { status: String, message: String },

    #[error("backup execution has no operation ready to run")]
    NoReadyOperation,

    #[error("backup execution is blocked: {reasons:?}")]
    Blocked { reasons: Vec<String> },

    #[error(transparent)]
    Io(#[from] std::io::Error),

    #[error(transparent)]
    Json(#[from] serde_json::Error),

    #[error(transparent)]
    Persistence(#[from] crate::persistence::PersistenceError),

    #[error(transparent)]
    BackupPlan(#[from] crate::plan::BackupPlanError),

    #[error(transparent)]
    ExecutionJournal(#[from] crate::execution::BackupExecutionJournalError),

    #[error(transparent)]
    Journal(#[from] crate::journal::JournalValidationError),

    #[error(transparent)]
    Checksum(#[from] crate::artifacts::ArtifactChecksumError),

    #[error(transparent)]
    Manifest(#[from] crate::manifest::ManifestValidationError),
}

impl From<JournalLockError> for BackupRunnerError {
    fn from(error: JournalLockError) -> Self {
        match error {
            JournalLockError::Locked { lock_path } => Self::JournalLocked { lock_path },
            JournalLockError::UnsafeEntry { lock_path, kind } => {
                Self::JournalLockUnsafeEntry { lock_path, kind }
            }
            JournalLockError::Io(error) => Self::Io(error),
        }
    }
}

///
/// BackupRunResponse
///

#[derive(Clone, Debug, Serialize)]
pub struct BackupRunResponse {
    pub run_id: String,
    pub plan_id: String,
    pub backup_id: String,
    pub complete: bool,
    pub max_steps_reached: bool,
    pub executed_operation_count: usize,
    pub executed_operations: Vec<BackupRunExecutedOperation>,
    pub execution: BackupExecutionResumeSummary,
}

///
/// BackupRunExecutedOperation
///

#[derive(Clone, Debug, Eq, PartialEq, Serialize)]
pub struct BackupRunExecutedOperation {
    pub sequence: usize,
    pub operation_id: String,
    pub kind: String,
    pub target_canister_id: Option<String>,
    pub outcome: String,
}

impl BackupRunExecutedOperation {
    pub(super) fn completed(operation: &BackupExecutionJournalOperation) -> Self {
        Self::from_operation(operation, "completed")
    }

    pub(super) fn failed(operation: &BackupExecutionJournalOperation) -> Self {
        Self::from_operation(operation, "failed")
    }

    fn from_operation(operation: &BackupExecutionJournalOperation, outcome: &str) -> Self {
        Self {
            sequence: operation.sequence,
            operation_id: operation.operation_id.clone(),
            kind: format!("{:?}", operation.kind),
            target_canister_id: operation.target_canister_id.clone(),
            outcome: outcome.to_string(),
        }
    }
}