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
//! Module: operational_readiness::manifest
//!
//! Responsibility: generate the frozen 0.94 protocol-case inventory.
//! Does not own: crash injection, product state, or journey results.
//! Boundary: maps design point IDs to exact variants and interruption sides.

#[cfg(test)]
mod tests;

use crate::{plan::BackupOperationKind, restore::RestoreApplyOperationKind};

/// Test-only 0.94 protocol area.
#[derive(Clone, Copy, Debug, Eq, Ord, PartialEq, PartialOrd)]
pub enum ProtocolArea {
    Backup,
    Verification,
    Restore,
    Rejection,
}

/// Observable interruption position represented by one protocol case.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum InterruptionPosition {
    BeforeDurableWrite,
    AfterDurableWrite,
    EffectCommittedReceiptMissing,
    OwnerDeadCommandInFlight,
    Interrupted,
    ResponseLostAfterPersistence,
    Rejection,
}

/// Canonical operation or boundary exercised by one protocol case.
#[derive(Clone, Debug, Eq, PartialEq)]
pub enum ProtocolSubject {
    Boundary(&'static str),
    BackupOperation(BackupOperationKind),
    RestoreOperation(RestoreApplyOperationKind),
}

/// One uniquely identified executable 0.94 protocol case.
#[derive(Clone, Debug, Eq, PartialEq)]
pub struct ProtocolCase {
    pub case_id: String,
    pub point_id: &'static str,
    pub area: ProtocolArea,
    pub subject: ProtocolSubject,
    pub position: InterruptionPosition,
}

/// Generate the complete frozen 0.94 protocol inventory.
pub fn protocol_cases() -> Vec<ProtocolCase> {
    let mut cases = Vec::with_capacity(106);
    append_backup_cases(&mut cases);
    append_verification_cases(&mut cases);
    append_restore_cases(&mut cases);
    append_rejection_cases(&mut cases);
    cases
}

/// Require one exact case identity to remain in the frozen manifest.
pub fn assert_case_defined(case_id: &str) {
    assert!(
        protocol_cases().iter().any(|case| case.case_id == case_id),
        "0.94 protocol case is not defined: {case_id}"
    );
}

fn append_backup_cases(cases: &mut Vec<ProtocolCase>) {
    append_write_sides(
        cases,
        "CANIC-094-B01",
        ProtocolArea::Backup,
        ProtocolSubject::Boundary("execution-journal-publication"),
    );
    append_write_sides(
        cases,
        "CANIC-094-B02",
        ProtocolArea::Backup,
        ProtocolSubject::Boundary("preflight-applied-plan-publication"),
    );
    append_write_sides(
        cases,
        "CANIC-094-B03",
        ProtocolArea::Backup,
        ProtocolSubject::Boundary("preflight-acceptance"),
    );
    append_backup_operation_write_sides(cases, "CANIC-094-B04", backup_post_preflight_operations());
    append_backup_effect_case(cases, "CANIC-094-B05", BackupOperationKind::Stop);
    append_backup_effect_case(cases, "CANIC-094-B06", BackupOperationKind::CreateSnapshot);
    append_write_sides(
        cases,
        "CANIC-094-B07",
        ProtocolArea::Backup,
        ProtocolSubject::Boundary("created-artifact-journal-publication"),
    );
    append_backup_effect_case(cases, "CANIC-094-B08", BackupOperationKind::Start);
    append_backup_effect_case(
        cases,
        "CANIC-094-B09",
        BackupOperationKind::DownloadSnapshot,
    );
    append_write_sides(
        cases,
        "CANIC-094-B10",
        ProtocolArea::Backup,
        ProtocolSubject::Boundary("downloaded-artifact-transition"),
    );
    append_backup_effect_case(cases, "CANIC-094-B11", BackupOperationKind::VerifyArtifact);
    append_write_sides(
        cases,
        "CANIC-094-B12",
        ProtocolArea::Backup,
        ProtocolSubject::Boundary("checksum-verified-artifact-transition"),
    );
    append_write_sides(
        cases,
        "CANIC-094-B13",
        ProtocolArea::Backup,
        ProtocolSubject::Boundary("canonical-artifact-publication"),
    );
    append_write_sides(
        cases,
        "CANIC-094-B14",
        ProtocolArea::Backup,
        ProtocolSubject::Boundary("durable-artifact-transition"),
    );
    append_write_sides(
        cases,
        "CANIC-094-B15",
        ProtocolArea::Backup,
        ProtocolSubject::Boundary("manifest-publication"),
    );
    append_backup_operation_write_sides(cases, "CANIC-094-B16", backup_post_preflight_operations());
    push_case(
        cases,
        "CANIC-094-B17",
        ProtocolArea::Backup,
        ProtocolSubject::Boundary("final-successful-response"),
        InterruptionPosition::ResponseLostAfterPersistence,
    );
    for operation in backup_mutating_operations() {
        push_case(
            cases,
            "CANIC-094-B18",
            ProtocolArea::Backup,
            ProtocolSubject::BackupOperation(operation),
            InterruptionPosition::OwnerDeadCommandInFlight,
        );
    }
}

fn append_verification_cases(cases: &mut Vec<ProtocolCase>) {
    for (point_id, boundary) in [
        ("CANIC-094-V01", "before-document-validation"),
        ("CANIC-094-V02", "during-artifact-checksum"),
        ("CANIC-094-V03", "after-result-before-output"),
    ] {
        push_case(
            cases,
            point_id,
            ProtocolArea::Verification,
            ProtocolSubject::Boundary(boundary),
            InterruptionPosition::Interrupted,
        );
    }
}

fn append_restore_cases(cases: &mut Vec<ProtocolCase>) {
    append_write_sides(
        cases,
        "CANIC-094-R01",
        ProtocolArea::Restore,
        ProtocolSubject::Boundary("restore-plan-publication"),
    );
    append_write_sides(
        cases,
        "CANIC-094-R02",
        ProtocolArea::Restore,
        ProtocolSubject::Boundary("apply-journal-publication"),
    );
    push_case(
        cases,
        "CANIC-094-R03",
        ProtocolArea::Restore,
        ProtocolSubject::Boundary("private-upload-staging"),
        InterruptionPosition::Interrupted,
    );
    append_restore_operation_write_sides(cases, "CANIC-094-R04", restore_operations());
    push_case(
        cases,
        "CANIC-094-R05",
        ProtocolArea::Restore,
        ProtocolSubject::Boundary("stopped-canister-precondition"),
        InterruptionPosition::Interrupted,
    );
    for (point_id, operation) in [
        ("CANIC-094-R06", RestoreApplyOperationKind::UploadSnapshot),
        ("CANIC-094-R07", RestoreApplyOperationKind::StopCanister),
        ("CANIC-094-R08", RestoreApplyOperationKind::LoadSnapshot),
        ("CANIC-094-R09", RestoreApplyOperationKind::StartCanister),
        ("CANIC-094-R10", RestoreApplyOperationKind::VerifyMember),
        ("CANIC-094-R11", RestoreApplyOperationKind::VerifyDeployment),
    ] {
        push_case(
            cases,
            point_id,
            ProtocolArea::Restore,
            ProtocolSubject::RestoreOperation(operation),
            InterruptionPosition::EffectCommittedReceiptMissing,
        );
    }
    append_restore_operation_write_sides(cases, "CANIC-094-R12", restore_operations());
    push_case(
        cases,
        "CANIC-094-R13",
        ProtocolArea::Restore,
        ProtocolSubject::Boundary("final-successful-response"),
        InterruptionPosition::ResponseLostAfterPersistence,
    );
    for operation in restore_mutating_operations() {
        push_case(
            cases,
            "CANIC-094-R14",
            ProtocolArea::Restore,
            ProtocolSubject::RestoreOperation(operation),
            InterruptionPosition::OwnerDeadCommandInFlight,
        );
    }
}

fn append_rejection_cases(cases: &mut Vec<ProtocolCase>) {
    for (point_id, subject) in [
        ("CANIC-094-C01", "invalid-json"),
        ("CANIC-094-C02", "identity-or-operation-mismatch"),
        ("CANIC-094-C03", "stale-authority-identity"),
        ("CANIC-094-C04", "unsafe-or-invalid-artifact"),
        ("CANIC-094-C05", "partial-private-stage"),
        ("CANIC-094-C06", "publication-journal-disagreement"),
        ("CANIC-094-C07", "lock-evidence"),
        ("CANIC-094-C08", "terminal-receipt-disagreement"),
        ("CANIC-094-C09", "missing-command-identity"),
        ("CANIC-094-C10", "persistence-failure"),
    ] {
        push_case(
            cases,
            point_id,
            ProtocolArea::Rejection,
            ProtocolSubject::Boundary(subject),
            InterruptionPosition::Rejection,
        );
    }
}

fn append_backup_effect_case(
    cases: &mut Vec<ProtocolCase>,
    point_id: &'static str,
    operation: BackupOperationKind,
) {
    push_case(
        cases,
        point_id,
        ProtocolArea::Backup,
        ProtocolSubject::BackupOperation(operation),
        InterruptionPosition::EffectCommittedReceiptMissing,
    );
}

fn append_write_sides(
    cases: &mut Vec<ProtocolCase>,
    point_id: &'static str,
    area: ProtocolArea,
    subject: ProtocolSubject,
) {
    for position in [
        InterruptionPosition::BeforeDurableWrite,
        InterruptionPosition::AfterDurableWrite,
    ] {
        push_case(cases, point_id, area, subject.clone(), position);
    }
}

fn append_backup_operation_write_sides(
    cases: &mut Vec<ProtocolCase>,
    point_id: &'static str,
    operations: Vec<BackupOperationKind>,
) {
    for operation in operations {
        append_write_sides(
            cases,
            point_id,
            ProtocolArea::Backup,
            ProtocolSubject::BackupOperation(operation),
        );
    }
}

fn append_restore_operation_write_sides(
    cases: &mut Vec<ProtocolCase>,
    point_id: &'static str,
    operations: Vec<RestoreApplyOperationKind>,
) {
    for operation in operations {
        append_write_sides(
            cases,
            point_id,
            ProtocolArea::Restore,
            ProtocolSubject::RestoreOperation(operation),
        );
    }
}

fn push_case(
    cases: &mut Vec<ProtocolCase>,
    point_id: &'static str,
    area: ProtocolArea,
    subject: ProtocolSubject,
    position: InterruptionPosition,
) {
    let case_id = format!(
        "{point_id}/{}/{}",
        subject_label(&subject),
        position_label(position)
    );
    cases.push(ProtocolCase {
        case_id,
        point_id,
        area,
        subject,
        position,
    });
}

pub fn backup_post_preflight_operations() -> Vec<BackupOperationKind> {
    vec![
        BackupOperationKind::Stop,
        BackupOperationKind::CreateSnapshot,
        BackupOperationKind::Start,
        BackupOperationKind::DownloadSnapshot,
        BackupOperationKind::VerifyArtifact,
        BackupOperationKind::FinalizeManifest,
    ]
}

fn backup_mutating_operations() -> Vec<BackupOperationKind> {
    vec![
        BackupOperationKind::Stop,
        BackupOperationKind::CreateSnapshot,
        BackupOperationKind::Start,
        BackupOperationKind::DownloadSnapshot,
    ]
}

pub fn restore_operations() -> Vec<RestoreApplyOperationKind> {
    vec![
        RestoreApplyOperationKind::UploadSnapshot,
        RestoreApplyOperationKind::StopCanister,
        RestoreApplyOperationKind::LoadSnapshot,
        RestoreApplyOperationKind::StartCanister,
        RestoreApplyOperationKind::VerifyMember,
        RestoreApplyOperationKind::VerifyDeployment,
    ]
}

fn restore_mutating_operations() -> Vec<RestoreApplyOperationKind> {
    vec![
        RestoreApplyOperationKind::UploadSnapshot,
        RestoreApplyOperationKind::StopCanister,
        RestoreApplyOperationKind::LoadSnapshot,
        RestoreApplyOperationKind::StartCanister,
    ]
}

fn subject_label(subject: &ProtocolSubject) -> &'static str {
    match subject {
        ProtocolSubject::Boundary(label) => label,
        ProtocolSubject::BackupOperation(operation) => backup_operation_label(operation),
        ProtocolSubject::RestoreOperation(operation) => restore_operation_label(operation),
    }
}

pub fn backup_operation_label(operation: &BackupOperationKind) -> &'static str {
    match operation {
        BackupOperationKind::ValidateTopology => "validate-topology",
        BackupOperationKind::ValidateControlAuthority => "validate-control-authority",
        BackupOperationKind::ValidateSnapshotReadAuthority => "validate-snapshot-read-authority",
        BackupOperationKind::ValidateQuiescencePolicy => "validate-quiescence-policy",
        BackupOperationKind::Stop => "stop",
        BackupOperationKind::CreateSnapshot => "create-snapshot",
        BackupOperationKind::Start => "start",
        BackupOperationKind::DownloadSnapshot => "download-snapshot",
        BackupOperationKind::VerifyArtifact => "verify-artifact",
        BackupOperationKind::FinalizeManifest => "finalize-manifest",
    }
}

pub const fn restore_operation_label(operation: &RestoreApplyOperationKind) -> &'static str {
    match operation {
        RestoreApplyOperationKind::StopCanister => "stop-canister",
        RestoreApplyOperationKind::StartCanister => "start-canister",
        RestoreApplyOperationKind::UploadSnapshot => "upload-snapshot",
        RestoreApplyOperationKind::LoadSnapshot => "load-snapshot",
        RestoreApplyOperationKind::VerifyMember => "verify-member",
        RestoreApplyOperationKind::VerifyDeployment => "verify-deployment",
    }
}

const fn position_label(position: InterruptionPosition) -> &'static str {
    match position {
        InterruptionPosition::BeforeDurableWrite => "before-durable-write",
        InterruptionPosition::AfterDurableWrite => "after-durable-write",
        InterruptionPosition::EffectCommittedReceiptMissing => "effect-committed-receipt-missing",
        InterruptionPosition::OwnerDeadCommandInFlight => "owner-dead-command-in-flight",
        InterruptionPosition::Interrupted => "interrupted",
        InterruptionPosition::ResponseLostAfterPersistence => "response-lost-after-persistence",
        InterruptionPosition::Rejection => "rejection",
    }
}