saddle-runtime 0.2.0-rc.1

Saddle managed asynchronous runtime and lifecycle
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
//! Controlled Runtime bridge from deployment attestation to Admission startup.
//!
//! This is a build-internal assembly protocol. It is not a business resource
//! configuration API and exposes no raw-value constructor.

use std::marker::PhantomData;

use saddle_admission::{
    PendingStartupPlan, StartupCreatorError, StartupInputAdapter,
    VerifiedDbTerminationServiceProofOwner, VerifiedFilesystemTerminationServiceProofOwner,
    VerifiedGeneratedStartupFactsOwner, VerifiedSchedulerTerminationServiceProofOwner,
    VerifiedStartupEnvelopeOwner, VerifiedSupervisorTerminationServiceProofOwner,
    create_pending_startup_plan,
};

const CPU_UNITS_PER_CORE: usize = 100;

#[doc(hidden)]
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum FiniteStartupPolicy {
    ExecutionProtected,
    Balanced,
    BurstProtected,
}

#[doc(hidden)]
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum ResourceEnvelopeVerificationError {
    InvalidCpu,
    InvalidMemory,
    InvalidCredits,
    InvalidTime,
    InvalidIdentity,
    SizeOverflow,
    AdmissionRejected,
}

/// Gate-owned observation protocol. Production Gate locks one implementation
/// and one assembly; Runtime deliberately provides no closure blanket.
#[doc(hidden)]
pub trait DeploymentResourceAttestation: Sized {
    fn cpu_quota_us(&self) -> u64;
    fn cpu_period_us(&self) -> u64;
    fn effective_cpuset(&self) -> &[usize];

    fn memory_max_bytes(&self) -> usize;
    fn memory_high_bytes(&self) -> usize;
    fn saddle_logical_memory_bytes(&self) -> usize;
    fn saddle_requested_memory_bytes(&self) -> usize;

    fn registration_credits(&self) -> usize;
    fn event_credits(&self) -> usize;
    fn db_connection_credits(&self) -> usize;
    fn db_operation_credits(&self) -> usize;

    /// Public request timeout and shutdown grace policy.
    fn public_time_policy_ms(&self) -> [u64; 2];

    fn resource_attestation(&self) -> [u8; 32];
    fn public_time_policy_attestation(&self) -> [u8; 32];
    fn environment_identity(&self) -> [u8; 32];
    fn supervisor_attestation(&self) -> [u8; 32];
    fn build_identity(&self) -> [u8; 32];
    fn gate_identity(&self) -> [u8; 32];
}

/// Consuming, non-Clone owner produced only by the synchronous verifier.
#[doc(hidden)]
#[derive(Debug)]
pub struct VerifiedResourceEnvelope {
    available: [usize; 7],
    public_time_policy: [u64; 2],
    pub(crate) resource_attestation: [u8; 32],
    public_time_policy_attestation: [u8; 32],
    pub(crate) environment_identity: [u8; 32],
    pub(crate) supervisor_attestation: [u8; 32],
    pub(crate) build_identity: [u8; 32],
    pub(crate) gate_identity: [u8; 32],
}

struct RuntimeStartupAdapter<G, D, F, S, U> {
    policy: FiniteStartupPolicy,
    provenance: [u8; 32],
    _owners: PhantomData<RuntimeStartupOwnerTypes<G, D, F, S, U>>,
}

type RuntimeStartupOwnerTypes<G, D, F, S, U> = fn() -> (G, D, F, S, U);
type RuntimeTerminationProofOwners<D, F, S, U> = (D, F, S, U);

impl<G, D, F, S, U> StartupInputAdapter for RuntimeStartupAdapter<G, D, F, S, U>
where
    G: VerifiedGeneratedStartupFactsOwner,
    D: VerifiedDbTerminationServiceProofOwner,
    F: VerifiedFilesystemTerminationServiceProofOwner,
    S: VerifiedSchedulerTerminationServiceProofOwner,
    U: VerifiedSupervisorTerminationServiceProofOwner,
{
    type VerifiedEnvelopeOwner = VerifiedResourceEnvelope;
    type GeneratedFactsOwner = G;
    type DbServiceProofOwner = D;
    type FilesystemServiceProofOwner = F;
    type SchedulerServiceProofOwner = S;
    type SupervisorServiceProofOwner = U;

    fn adapter_provenance(&self) -> [u8; 32] {
        self.provenance
    }

    fn finite_policy_version(&self) -> u8 {
        match self.policy {
            FiniteStartupPolicy::ExecutionProtected => 1,
            FiniteStartupPolicy::Balanced => 2,
            FiniteStartupPolicy::BurstProtected => 3,
        }
    }

    fn db_return_issuer_identity(&self) -> [u8; 32] {
        crate::db_return_budget::DB_RETURN_BUDGET_ISSUER_IDENTITY
    }
}

impl VerifiedStartupEnvelopeOwner for VerifiedResourceEnvelope {
    fn resource_attestation(&self) -> [u8; 32] {
        self.resource_attestation
    }

    fn available_resources(&self) -> [usize; 7] {
        self.available
    }

    fn public_time_policy_ms(&self) -> [u64; 2] {
        self.public_time_policy
    }

    fn public_time_policy_attestation(&self) -> [u8; 32] {
        self.public_time_policy_attestation
    }

    fn supervisor_attestation(&self) -> [u8; 32] {
        self.supervisor_attestation
    }

    fn build_identity(&self) -> [u8; 32] {
        self.build_identity
    }

    fn gate_identity(&self) -> [u8; 32] {
        self.gate_identity
    }
}

/// Synchronously verifies and consumes the deployment observation.
#[doc(hidden)]
pub fn verify_resource_envelope<A: DeploymentResourceAttestation>(
    attestation: A,
) -> Result<VerifiedResourceEnvelope, ResourceEnvelopeVerificationError> {
    let cpuset = attestation.effective_cpuset();
    if attestation.cpu_quota_us() == 0
        || attestation.cpu_period_us() == 0
        || cpuset.is_empty()
        || cpuset.windows(2).any(|pair| pair[0] >= pair[1])
    {
        return Err(ResourceEnvelopeVerificationError::InvalidCpu);
    }
    let quota_units = usize::try_from(attestation.cpu_quota_us())
        .ok()
        .and_then(|quota| quota.checked_mul(CPU_UNITS_PER_CORE))
        .ok_or(ResourceEnvelopeVerificationError::SizeOverflow)?
        / usize::try_from(attestation.cpu_period_us())
            .map_err(|_| ResourceEnvelopeVerificationError::SizeOverflow)?;
    let cpuset_units = cpuset
        .len()
        .checked_mul(CPU_UNITS_PER_CORE)
        .ok_or(ResourceEnvelopeVerificationError::SizeOverflow)?;
    let cpu_units = quota_units.min(cpuset_units);
    if cpu_units < CPU_UNITS_PER_CORE {
        return Err(ResourceEnvelopeVerificationError::InvalidCpu);
    }

    let memory_max = attestation.memory_max_bytes();
    let memory_high = attestation.memory_high_bytes();
    let logical = attestation.saddle_logical_memory_bytes();
    let requested = attestation.saddle_requested_memory_bytes();
    if memory_max == 0
        || memory_high == 0
        || logical == 0
        || requested == 0
        || memory_high > memory_max
        || logical > memory_high
        || requested > memory_high
    {
        return Err(ResourceEnvelopeVerificationError::InvalidMemory);
    }

    let registration = attestation.registration_credits();
    let events = attestation.event_credits();
    let db_connections = attestation.db_connection_credits();
    let db_operations = attestation.db_operation_credits();
    if registration == 0 || events == 0 || ((db_connections == 0) != (db_operations == 0)) {
        return Err(ResourceEnvelopeVerificationError::InvalidCredits);
    }

    let public_time_policy = attestation.public_time_policy_ms();
    if public_time_policy.contains(&0) {
        return Err(ResourceEnvelopeVerificationError::InvalidTime);
    }
    let environment = attestation.environment_identity();
    let resource_attestation = attestation.resource_attestation();
    let public_time_policy_attestation = attestation.public_time_policy_attestation();
    let supervisor_attestation = attestation.supervisor_attestation();
    let build_identity = attestation.build_identity();
    let gate_identity = attestation.gate_identity();
    if [
        environment,
        resource_attestation,
        public_time_policy_attestation,
        supervisor_attestation,
        build_identity,
        gate_identity,
    ]
    .contains(&[0; 32])
    {
        return Err(ResourceEnvelopeVerificationError::InvalidIdentity);
    }

    // Gate's resource attestation is the canonical digest that covers this
    // independently non-zero environment identity. Runtime does not create a
    // second identity or attempt to re-hash Gate's deployment manifest.

    Ok(VerifiedResourceEnvelope {
        available: [
            cpu_units,
            logical,
            requested,
            registration,
            events,
            db_connections,
            db_operations,
        ],
        public_time_policy,
        resource_attestation,
        public_time_policy_attestation,
        environment_identity: environment,
        supervisor_attestation,
        build_identity,
        gate_identity,
    })
}

/// The sole Runtime bridge into Admission's crate-private solver.
#[doc(hidden)]
pub fn create_runtime_startup_plan<A, G, D, F, S, U>(
    policy: FiniteStartupPolicy,
    adapter_provenance: [u8; 32],
    attestation: A,
    generated: G,
    termination_proofs: RuntimeTerminationProofOwners<D, F, S, U>,
) -> Result<PendingStartupPlan, ResourceEnvelopeVerificationError>
where
    A: DeploymentResourceAttestation,
    G: VerifiedGeneratedStartupFactsOwner,
    D: VerifiedDbTerminationServiceProofOwner,
    F: VerifiedFilesystemTerminationServiceProofOwner,
    S: VerifiedSchedulerTerminationServiceProofOwner,
    U: VerifiedSupervisorTerminationServiceProofOwner,
{
    let (db_service, filesystem_service, scheduler_service, supervisor_service) =
        termination_proofs;
    if adapter_provenance == [0; 32] {
        return Err(ResourceEnvelopeVerificationError::InvalidIdentity);
    }
    let envelope = verify_resource_envelope(attestation)?;
    create_runtime_startup_plan_from_verified(
        policy,
        adapter_provenance,
        envelope,
        generated,
        (
            db_service,
            filesystem_service,
            scheduler_service,
            supervisor_service,
        ),
    )
}

/// The facade-only successor used after Gate has synchronously verified and
/// consumed the deployment attestation. No raw resource observation crosses
/// this boundary.
#[doc(hidden)]
pub fn create_runtime_startup_plan_from_verified<G, D, F, S, U>(
    policy: FiniteStartupPolicy,
    adapter_provenance: [u8; 32],
    envelope: VerifiedResourceEnvelope,
    generated: G,
    termination_proofs: RuntimeTerminationProofOwners<D, F, S, U>,
) -> Result<PendingStartupPlan, ResourceEnvelopeVerificationError>
where
    G: VerifiedGeneratedStartupFactsOwner,
    D: VerifiedDbTerminationServiceProofOwner,
    F: VerifiedFilesystemTerminationServiceProofOwner,
    S: VerifiedSchedulerTerminationServiceProofOwner,
    U: VerifiedSupervisorTerminationServiceProofOwner,
{
    let (db_service, filesystem_service, scheduler_service, supervisor_service) =
        termination_proofs;
    if adapter_provenance == [0; 32] {
        return Err(ResourceEnvelopeVerificationError::InvalidIdentity);
    }
    create_pending_startup_plan(
        RuntimeStartupAdapter::<G, D, F, S, U> {
            policy,
            provenance: adapter_provenance,
            _owners: PhantomData,
        },
        envelope,
        generated,
        db_service,
        filesystem_service,
        scheduler_service,
        supervisor_service,
    )
    .map_err(|error| match error {
        StartupCreatorError::InvalidAdapterFacts => {
            ResourceEnvelopeVerificationError::InvalidIdentity
        }
        StartupCreatorError::SolverRejected => ResourceEnvelopeVerificationError::AdmissionRejected,
    })
}

#[cfg(test)]
pub(crate) mod tests {
    use saddle_admission::{RouteCapacityFact, StartupActualFacts, StartupClaimKind};

    use super::*;

    struct Attestation {
        cpu_quota: u64,
        cpuset: Vec<usize>,
        memory_high: usize,
        db: usize,
        public_time_policy: [u64; 2],
        identity: [u8; 32],
    }

    impl DeploymentResourceAttestation for Attestation {
        fn cpu_quota_us(&self) -> u64 {
            self.cpu_quota
        }
        fn cpu_period_us(&self) -> u64 {
            100_000
        }
        fn effective_cpuset(&self) -> &[usize] {
            &self.cpuset
        }
        fn memory_max_bytes(&self) -> usize {
            16_000_000
        }
        fn memory_high_bytes(&self) -> usize {
            self.memory_high
        }
        fn saddle_logical_memory_bytes(&self) -> usize {
            self.memory_high / 2
        }
        fn saddle_requested_memory_bytes(&self) -> usize {
            self.memory_high / 2
        }
        fn registration_credits(&self) -> usize {
            260
        }
        fn event_credits(&self) -> usize {
            260
        }
        fn db_connection_credits(&self) -> usize {
            self.db
        }
        fn db_operation_credits(&self) -> usize {
            self.db
        }
        fn public_time_policy_ms(&self) -> [u64; 2] {
            self.public_time_policy
        }
        fn resource_attestation(&self) -> [u8; 32] {
            self.identity
        }
        fn public_time_policy_attestation(&self) -> [u8; 32] {
            [2; 32]
        }
        fn environment_identity(&self) -> [u8; 32] {
            self.identity
        }
        fn supervisor_attestation(&self) -> [u8; 32] {
            [3; 32]
        }
        fn build_identity(&self) -> [u8; 32] {
            [4; 32]
        }
        fn gate_identity(&self) -> [u8; 32] {
            [5; 32]
        }
    }

    fn attestation() -> Attestation {
        Attestation {
            cpu_quota: 800_000,
            cpuset: (0..8).collect(),
            memory_high: 8_000_000,
            db: 64,
            public_time_policy: [2_000, 8_000],
            identity: [1; 32],
        }
    }

    struct Generated;
    const ROUTES: [RouteCapacityFact; 1] = [RouteCapacityFact {
        route_id: 1,
        managed_commitment_bytes: 1_024,
        managed_objects_peak: 2,
        framework_bytes: 512,
        task_storage_bytes: 4_096,
        response_carrier_bytes: 512,
        db_connections: 1,
        db_operations: 1,
    }];

    impl VerifiedGeneratedStartupFactsOwner for Generated {
        fn costs_attestation(&self) -> [u8; 32] {
            [6; 32]
        }
        fn cost_vectors(&self) -> [[usize; 7]; 5] {
            [
                [0, 16_000, 16_000, 3, 3, 0, 0],
                [100, 100, 100, 0, 0, 0, 0],
                [0, 20_000, 20_000, 1, 1, 0, 0],
                [0, 1_000, 1_000, 1, 1, 0, 0],
                [0, 1_000, 1_000, 0, 0, 1, 1],
            ]
        }
        fn allocator_costs(&self) -> [usize; 2] {
            [4_000, 4_000]
        }
        fn support_attestation(&self) -> [u8; 32] {
            [7; 32]
        }
        fn support_limits(&self) -> [usize; 4] {
            [8, 128, 128, 64]
        }
        fn route_set_attestation(&self) -> [u8; 32] {
            [8; 32]
        }
        fn routes(&self) -> &'static [RouteCapacityFact] {
            &ROUTES
        }
        fn closure_constants(&self) -> [usize; 6] {
            [1, 2, 3, 64, 1_024, 512]
        }
        fn termination_topology(&self) -> [u64; 4] {
            [1, 1, 1, 2]
        }
        fn termination_topology_identity(&self) -> [u8; 32] {
            [9; 32]
        }
        fn db_return_work_identity(&self) -> [u8; 32] {
            [10; 32]
        }
        fn writer_work_identity(&self) -> [u8; 32] {
            [11; 32]
        }
        fn runtime_work_identity(&self) -> [u8; 32] {
            [12; 32]
        }
    }

    struct DbService;
    struct FilesystemService;
    struct SchedulerService;
    struct SupervisorService;
    impl VerifiedDbTerminationServiceProofOwner for DbService {
        fn work_identity(&self) -> [u8; 32] {
            [10; 32]
        }
        fn service_attestation(&self) -> [u8; 32] {
            [13; 32]
        }
        fn max_service_nanos(&self) -> u64 {
            2_000_000
        }
    }
    impl VerifiedFilesystemTerminationServiceProofOwner for FilesystemService {
        fn work_identity(&self) -> [u8; 32] {
            [11; 32]
        }
        fn service_attestation(&self) -> [u8; 32] {
            [14; 32]
        }
        fn max_service_nanos(&self) -> u64 {
            1_000_000
        }
    }
    impl VerifiedSchedulerTerminationServiceProofOwner for SchedulerService {
        fn runtime_work_identity(&self) -> [u8; 32] {
            [12; 32]
        }
        fn service_attestation(&self) -> [u8; 32] {
            [15; 32]
        }
        fn max_delivery_nanos(&self) -> u64 {
            1_000_000
        }
    }
    impl VerifiedSupervisorTerminationServiceProofOwner for SupervisorService {
        fn service_attestation(&self) -> [u8; 32] {
            [16; 32]
        }
        fn shutdown_delivery_nanos(&self) -> u64 {
            1_000_000
        }
        fn delivery_headroom_nanos(&self) -> u64 {
            1_000_000
        }
    }

    pub(crate) fn pending_plan() -> PendingStartupPlan {
        create_runtime_startup_plan(
            FiniteStartupPolicy::Balanced,
            [9; 32],
            attestation(),
            Generated,
            (
                DbService,
                FilesystemService,
                SchedulerService,
                SupervisorService,
            ),
        )
        .unwrap()
    }

    #[test]
    fn verified_owner_enters_the_only_controlled_creator() {
        let mut plan = pending_plan();
        assert_ne!(
            plan.claim(StartupClaimKind::Runtime).unwrap().expected(),
            StartupActualFacts::Runtime {
                worker_threads: 0,
                event_credits: 0,
            }
        );
    }

    #[test]
    fn invalid_resource_and_identity_inputs_fail_before_creator() {
        let mut invalid_cpu = attestation();
        invalid_cpu.cpuset = vec![1, 1];
        assert_eq!(
            verify_resource_envelope(invalid_cpu).unwrap_err(),
            ResourceEnvelopeVerificationError::InvalidCpu
        );
        let mut invalid_memory = attestation();
        invalid_memory.memory_high = 0;
        assert_eq!(
            verify_resource_envelope(invalid_memory).unwrap_err(),
            ResourceEnvelopeVerificationError::InvalidMemory
        );
        let mut invalid_time = attestation();
        invalid_time.public_time_policy[1] = 0;
        assert_eq!(
            verify_resource_envelope(invalid_time).unwrap_err(),
            ResourceEnvelopeVerificationError::InvalidTime
        );
        let mut invalid_identity = attestation();
        invalid_identity.identity = [0; 32];
        assert_eq!(
            verify_resource_envelope(invalid_identity).unwrap_err(),
            ResourceEnvelopeVerificationError::InvalidIdentity
        );
    }
}