canic-core 0.70.11

Canic — a canister orchestration and management toolkit for the Internet Computer
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
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
//! Module: config::schema::subnet
//!
//! Responsibility: define subnet, canister, placement, and refill config shapes.
//! Does not own: topology validation, placement execution, or runtime canister state.
//! Boundary: config schema re-exports these data shapes for validated models.

use crate::{
    cdk::{candid::Principal, types::Cycles},
    ids::CanisterRole,
};
use serde::{Deserialize, Serialize};
use std::{
    collections::{BTreeMap, BTreeSet},
    fmt,
};

mod defaults {
    use super::Cycles;
    use crate::cdk::types::TC;

    pub const fn initial_cycles() -> Cycles {
        Cycles::new(5_000_000_000_000)
    }

    pub const fn topup_threshold() -> Cycles {
        Cycles::new(10 * TC)
    }

    pub const fn topup_amount() -> Cycles {
        Cycles::new(5 * TC)
    }
}

const IMPLICIT_WASM_STORE_ROLE: CanisterRole = CanisterRole::WASM_STORE;

///
/// SubnetConfig
///
/// Configuration for one subnet role and its declared canisters.
/// Owned by config schema and validated before topology workflows use it.
///

#[derive(Clone, Debug, Default, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct SubnetConfig {
    #[serde(default)]
    pub canisters: BTreeMap<CanisterRole, CanisterConfig>,

    #[serde(default)]
    pub pool: CanisterPool,
}

impl SubnetConfig {
    /// Get a canister configuration by role.
    #[must_use]
    pub fn get_canister(&self, role: &CanisterRole) -> Option<CanisterConfig> {
        self.canisters.get(role).cloned().or_else(|| {
            if *role == IMPLICIT_WASM_STORE_ROLE {
                Some(implicit_wasm_store_canister_config())
            } else {
                None
            }
        })
    }

    /// Roles that root creates automatically during subnet bootstrap.
    ///
    /// Configured service roles are the stable subnet services. Singletons,
    /// shards, replicas, and instances are created by their placement managers
    /// instead.
    #[must_use]
    pub fn auto_create_roles(&self) -> BTreeSet<CanisterRole> {
        self.service_roles()
    }

    /// Roles exposed through the subnet index.
    #[must_use]
    pub fn subnet_index_roles(&self) -> BTreeSet<CanisterRole> {
        self.service_roles()
    }

    fn service_roles(&self) -> BTreeSet<CanisterRole> {
        self.canisters
            .iter()
            .filter(|&(_role, canister)| canister.kind == CanisterKind::Service)
            .map(|(role, _canister)| role.clone())
            .collect()
    }
}

///
/// PoolImport
///
/// Per-environment import lists for canister pools.
/// Owned by config schema and consumed by pool import workflows.
///

#[derive(Clone, Debug, Default, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct PoolImport {
    /// Optional count of canisters to import immediately before queuing the rest.
    #[serde(default)]
    pub initial: Option<u16>,

    #[serde(default)]
    pub local: Vec<Principal>,

    #[serde(default)]
    pub ic: Vec<Principal>,
}

///
/// CanisterPool
///
/// Pool sizing and import configuration for root-managed canister pools.
/// Owned by config schema and validated before pool workflows use it.
///

#[derive(Clone, Debug, Default, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct CanisterPool {
    pub minimum_size: u8,
    #[serde(default)]
    pub import: PoolImport,
}

///
/// CanisterAuthConfig
///
/// Canister-local auth feature flags.
/// Owned by config schema and consumed by auth/cache setup.
///

// Build the implicit canister configuration for the mandatory store role.
fn implicit_wasm_store_canister_config() -> CanisterConfig {
    CanisterConfig {
        kind: CanisterKind::Singleton,
        initial_cycles: defaults::initial_cycles(),
        topup: None,
        randomness: RandomnessConfig::default(),
        scaling: None,
        sharding: None,
        directory: None,
        auth: CanisterAuthConfig::default(),
        standards: StandardsCanisterConfig::default(),
        diagnostics: DiagnosticsCanisterConfig::default(),
        metrics: MetricsCanisterConfig::default(),
    }
}

#[derive(Clone, Debug, Default, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct CanisterAuthConfig {
    #[serde(default)]
    pub delegated_token_issuer: bool,

    #[serde(default)]
    pub delegated_token_verifier: bool,

    #[serde(default)]
    pub role_attestation_cache: bool,
}

///
/// StandardsCanisterConfig
///
/// Canister-local standards feature flags.
/// Owned by config schema and consumed by standards dispatch.
///

#[derive(Clone, Debug, Default, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct StandardsCanisterConfig {
    #[serde(default)]
    pub icrc21: bool,
}

///
/// DiagnosticsCanisterConfig
///
/// Canister-local diagnostics feature flags.
/// Owned by config schema and consumed by diagnostics endpoints.
///

#[derive(Clone, Copy, Debug, Default, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct DiagnosticsCanisterConfig {
    #[serde(default)]
    pub memory_ledger: bool,
}

///
/// CanisterConfig
///
/// Configuration for one declared canister role.
/// Owned by config schema and consumed by bootstrap and topology workflows.
///

#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct CanisterConfig {
    /// Kind and placement semantics for this canister role.
    pub kind: CanisterKind,

    #[serde(
        default = "defaults::initial_cycles",
        deserialize_with = "Cycles::from_config"
    )]
    pub initial_cycles: Cycles,

    #[serde(default)]
    pub topup: Option<TopupPolicy>,

    #[serde(default)]
    pub randomness: RandomnessConfig,

    #[serde(default)]
    pub scaling: Option<ScalingConfig>,

    #[serde(default)]
    pub sharding: Option<ShardingConfig>,

    #[serde(default)]
    pub directory: Option<DirectoryConfig>,

    #[serde(default)]
    pub auth: CanisterAuthConfig,

    #[serde(default)]
    pub standards: StandardsCanisterConfig,

    #[serde(default)]
    pub diagnostics: DiagnosticsCanisterConfig,

    #[serde(default)]
    pub metrics: MetricsCanisterConfig,
}

impl CanisterConfig {
    /// Resolve the effective metrics profile for a canister role.
    #[must_use]
    pub fn resolved_metrics_profile(&self, role: &CanisterRole) -> MetricsProfile {
        if let Some(profile) = self.metrics.profile {
            return profile;
        }

        if self.kind == CanisterKind::Root || role.is_root() {
            return MetricsProfile::Root;
        }

        if role.is_wasm_store() {
            return MetricsProfile::Storage;
        }

        if self.scaling.is_some() || self.sharding.is_some() || self.directory.is_some() {
            return MetricsProfile::Hub;
        }

        MetricsProfile::Leaf
    }

    /// Return child roles referenced by exact role-bearing placement fields.
    #[must_use]
    pub fn role_bearing_child_roles(&self) -> Vec<&CanisterRole> {
        let scaling_roles = self
            .scaling
            .iter()
            .flat_map(|scaling| scaling.pools.values().map(|pool| &pool.canister_role));
        let sharding_roles = self
            .sharding
            .iter()
            .flat_map(|sharding| sharding.pools.values().map(|pool| &pool.canister_role));
        let directory_roles = self
            .directory
            .iter()
            .flat_map(|directory| directory.pools.values().map(|pool| &pool.canister_role));

        scaling_roles
            .chain(sharding_roles)
            .chain(directory_roles)
            .collect()
    }
}

///
/// MetricsCanisterConfig
///
/// Canister-local metrics profile override.
/// Owned by config schema and consumed by metrics setup.
///

#[derive(Clone, Copy, Debug, Default, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct MetricsCanisterConfig {
    #[serde(default)]
    pub profile: Option<MetricsProfile>,
}

///
/// MetricsProfile
///
/// Metrics collection profile for a configured canister role.
/// Owned by config schema and consumed by metrics setup.
///

#[derive(Clone, Copy, Debug, Deserialize, Eq, PartialEq, Serialize)]
#[serde(rename_all = "snake_case")]
pub enum MetricsProfile {
    Leaf,
    Hub,
    Storage,
    Root,
    Full,
}

///
/// CanisterKind
///
/// Kind semantics for canister roles within the topology.
///
/// Do not encode parent relationships here; this is role-level intent only.
///

#[derive(Clone, Copy, Debug, Deserialize, Eq, PartialEq, Serialize)]
#[serde(rename_all = "snake_case")]
pub enum CanisterKind {
    Root,
    Service,
    Singleton,
    Replica,
    Shard,
    Instance,
}

impl fmt::Display for CanisterKind {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        let label = match self {
            Self::Root => "root",
            Self::Service => "service",
            Self::Singleton => "singleton",
            Self::Replica => "replica",
            Self::Shard => "shard",
            Self::Instance => "instance",
        };

        f.write_str(label)
    }
}

///
/// TopupPolicy
///
/// Cycle top-up policy for one configured canister role.
/// Owned by config schema and consumed by funding workflows.
///

#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct TopupPolicy {
    #[serde(
        default = "defaults::topup_threshold",
        deserialize_with = "Cycles::from_config"
    )]
    pub threshold: Cycles,

    #[serde(
        default = "defaults::topup_amount",
        deserialize_with = "Cycles::from_config"
    )]
    pub amount: Cycles,

    #[serde(default)]
    pub icp_refill: Option<IcpRefillPolicy>,
}

impl Default for TopupPolicy {
    fn default() -> Self {
        Self {
            threshold: defaults::topup_threshold(),
            amount: defaults::topup_amount(),
            icp_refill: None,
        }
    }
}

///
/// IcpRefillPolicy
///
/// ICP-funded cycle refill policy for one configured canister role.
/// Owned by config schema and consumed by ICP refill workflows.
///

#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct IcpRefillPolicy {
    #[serde(default = "default_enabled")]
    pub enabled: bool,

    #[serde(deserialize_with = "Cycles::from_config")]
    pub min_hub_cycles_before_refill: Cycles,

    pub max_refill_e8s_per_call: u64,

    #[serde(default)]
    pub min_xdr_permyriad_per_icp: Option<u64>,

    #[serde(default)]
    pub ledger_canister_id: Option<Principal>,

    #[serde(default)]
    pub cmc_canister_id: Option<Principal>,

    #[serde(default)]
    pub allow_ic_system_canister_overrides: bool,
}

const fn default_enabled() -> bool {
    true
}

///
/// RandomnessConfig
///
/// Randomness behavior configuration for one canister role.
/// Owned by config schema and consumed by runtime randomness setup.
///

#[derive(Clone, Copy, Debug, Deserialize, Serialize)]
#[serde(deny_unknown_fields, default)]
pub struct RandomnessConfig {
    pub enabled: bool,
    pub reseed_interval_secs: u64,
    pub source: RandomnessSource,
}

impl Default for RandomnessConfig {
    fn default() -> Self {
        Self {
            enabled: true,
            reseed_interval_secs: 3600,
            source: RandomnessSource::Ic,
        }
    }
}

///
/// RandomnessSource
///
/// Randomness source selected for one canister role.
/// Owned by config schema and consumed by runtime randomness setup.
///

#[derive(Clone, Copy, Debug, Default, Deserialize, Eq, PartialEq, Serialize)]
#[serde(rename_all = "snake_case")]
pub enum RandomnessSource {
    #[default]
    Ic,
    Time,
}

///
/// ScalingConfig
///
/// Stateless replica-group placement configuration.
/// Owned by config schema and consumed by scaling placement workflows.
///

#[derive(Clone, Debug, Default, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct ScalingConfig {
    #[serde(default)]
    pub pools: BTreeMap<String, ScalePool>,
}

///
/// ScalePool
///
/// One stateless replica group.
/// Owned by config schema and consumed by scaling placement workflows.
///

#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct ScalePool {
    pub canister_role: CanisterRole,

    #[serde(default)]
    pub policy: ScalePoolPolicy,
}

///
/// ScalePoolPolicy
///
/// Worker bounds for one stateless replica group.
/// Owned by config schema and consumed by scaling placement policy.
///

#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(deny_unknown_fields, default)]
pub struct ScalePoolPolicy {
    /// Number of replica canisters to create during startup warmup
    pub initial_workers: u32,

    /// Minimum number of replica canisters to keep alive
    pub min_workers: u32,

    /// Maximum number of replica canisters to allow
    pub max_workers: u32,
}

impl Default for ScalePoolPolicy {
    fn default() -> Self {
        Self {
            initial_workers: 1,
            min_workers: 1,
            max_workers: 32,
        }
    }
}

///
/// ShardingConfig
///
/// Stateful partitioned shard-pool configuration.
/// Owned by config schema and consumed by sharding placement workflows.
///

#[derive(Clone, Debug, Default, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct ShardingConfig {
    #[serde(default)]
    pub pools: BTreeMap<String, ShardPool>,
}

///
/// DirectoryConfig
///
/// Keyed instance placement configuration.
/// Owned by config schema and consumed by directory placement workflows.
///

#[derive(Clone, Debug, Default, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct DirectoryConfig {
    #[serde(default)]
    pub pools: BTreeMap<String, DirectoryPool>,
}

///
/// DirectoryPool
///
/// One keyed instance placement pool.
/// Owned by config schema and consumed by directory placement workflows.
///

#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct DirectoryPool {
    pub canister_role: CanisterRole,
    pub key_name: String,
}

///
/// ShardPool
///
/// One stateful shard placement pool.
/// Owned by config schema and consumed by sharding placement workflows.
///

#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(deny_unknown_fields)]
pub struct ShardPool {
    pub canister_role: CanisterRole,

    #[serde(default)]
    pub policy: ShardPoolPolicy,
}

///
/// ShardPoolPolicy
///
/// Capacity and shard-count bounds for one shard pool.
/// Owned by config schema and consumed by sharding placement policy.
///

#[derive(Clone, Debug, Deserialize, Serialize)]
#[serde(deny_unknown_fields, default)]
pub struct ShardPoolPolicy {
    pub capacity: u32,
    pub initial_shards: u32,
    pub max_shards: u32,
}

impl Default for ShardPoolPolicy {
    fn default() -> Self {
        Self {
            capacity: 1_000,
            initial_shards: 1,
            max_shards: 4,
        }
    }
}

// -----------------------------------------------------------------------------
// Tests
// -----------------------------------------------------------------------------

#[cfg(test)]
mod tests;