saddle-runtime 0.3.0-alpha.2

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
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
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
//! 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::{
    CanonicalObservabilityQueueProfileWitness, ComposedGeneratedStartupFactsOwner,
    ObservabilityQueueNormalizationPermit, PendingStartupPlan, PreparedObservabilityQueueBinding,
    RecoverableStartupCreatorFailure, StartupCreatorError, StartupInputAdapter,
    VerifiedDbTerminationServiceProofOwner, VerifiedFilesystemTerminationServiceProofOwner,
    VerifiedSchedulerTerminationServiceProofOwner, VerifiedStartupEnvelopeOwner,
    VerifiedSupervisorTerminationServiceProofOwner, create_pending_startup_plan_recovering,
    prepare_observability_queue_binding,
};
use saddle_core::VerifiedRuntimeResourceParts;
use saddle_observability::file::{
    GenerationPairedFilesystemEvidence, NormalizedSignedProviderFilesystemRuntimeEvidence,
    SignedProviderFilesystemRuntimeEvidence, normalize_signed_provider_filesystem_evidence,
    production_observability_queue_profile_witness,
};

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,
}

/// Exact Runtime-owned resource half. It deliberately does not implement the
/// Admission startup-envelope contract: public time, supervisor and Gate
/// identities are paired by later startup stages rather than invented here.
///
/// ```compile_fail
/// use saddle_runtime::resource_envelope::VerifiedRuntimeResourceEnvelope;
/// fn requires_clone<T: Clone>() {}
/// requires_clone::<VerifiedRuntimeResourceEnvelope>();
/// ```
#[doc(hidden)]
#[allow(dead_code)]
pub struct VerifiedRuntimeResourceEnvelope {
    parts: VerifiedRuntimeResourceParts,
    available: [usize; 7],
}

#[allow(dead_code)]
impl VerifiedRuntimeResourceEnvelope {
    #[doc(hidden)]
    pub(crate) fn available_resources(&self) -> [usize; 7] {
        self.available
    }

    #[doc(hidden)]
    pub(crate) fn into_parts(self) -> VerifiedRuntimeResourceParts {
        self.parts
    }
}

/// Atomic outer result. Neither the resource owner nor the directory whole is
/// independently available after success.
#[doc(hidden)]
pub struct FinalPairedStartupAuthority {
    available: [usize; 7],
    paired: saddle_observability::file::FinalPairedFilesystemCoreOwners,
}

#[doc(hidden)]
pub struct FinalStartupAuthorityPairingFailure {
    resource: VerifiedRuntimeResourceEnvelope,
    directory: saddle_observability::file::VerifiedSignedProviderFilesystemBundle,
    generated: ComposedGeneratedStartupFactsOwner,
    seed: saddle_core::VerifiedDeploymentStartupAuthoritySeed,
    gate_seed: saddle_core::VerifiedDeploymentGateBuildAuthoritySeed,
    scheduler_seed: saddle_core::VerifiedDeploymentSchedulerObservationSeed,
    supervisor_seed: saddle_core::VerifiedDeploymentSupervisorStartupSeed,
}

impl FinalStartupAuthorityPairingFailure {
    fn recoverable(
        resource: VerifiedRuntimeResourceEnvelope,
        directory: saddle_observability::file::VerifiedSignedProviderFilesystemBundle,
        generated: ComposedGeneratedStartupFactsOwner,
        seed: saddle_core::VerifiedDeploymentStartupAuthoritySeed,
        gate_seed: saddle_core::VerifiedDeploymentGateBuildAuthoritySeed,
        scheduler_seed: saddle_core::VerifiedDeploymentSchedulerObservationSeed,
        supervisor_seed: saddle_core::VerifiedDeploymentSupervisorStartupSeed,
    ) -> Self {
        Self {
            resource,
            directory,
            generated,
            seed,
            gate_seed,
            scheduler_seed,
            supervisor_seed,
        }
    }

    #[doc(hidden)]
    #[allow(clippy::result_large_err)]
    pub fn into_recoverable(
        self,
    ) -> (
        VerifiedRuntimeResourceEnvelope,
        saddle_observability::file::VerifiedSignedProviderFilesystemBundle,
        ComposedGeneratedStartupFactsOwner,
        saddle_core::VerifiedDeploymentStartupAuthoritySeed,
        saddle_core::VerifiedDeploymentGateBuildAuthoritySeed,
        saddle_core::VerifiedDeploymentSchedulerObservationSeed,
        saddle_core::VerifiedDeploymentSupervisorStartupSeed,
    ) {
        (
            self.resource,
            self.directory,
            self.generated,
            self.seed,
            self.gate_seed,
            self.scheduler_seed,
            self.supervisor_seed,
        )
    }
}

#[doc(hidden)]
#[allow(clippy::result_large_err)]
pub fn pair_final_startup_authority(
    resource: VerifiedRuntimeResourceEnvelope,
    directory: saddle_observability::file::VerifiedSignedProviderFilesystemBundle,
    generated: ComposedGeneratedStartupFactsOwner,
    seed: saddle_core::VerifiedDeploymentStartupAuthoritySeed,
    gate_seed: saddle_core::VerifiedDeploymentGateBuildAuthoritySeed,
    scheduler_seed: saddle_core::VerifiedDeploymentSchedulerObservationSeed,
    supervisor_seed: saddle_core::VerifiedDeploymentSupervisorStartupSeed,
) -> Result<FinalPairedStartupAuthority, FinalStartupAuthorityPairingFailure> {
    let VerifiedRuntimeResourceEnvelope { parts, available } = resource;
    let paired = match saddle_observability::file::pair_signed_filesystem_bundle_final(
        parts,
        directory,
        generated,
        seed,
        gate_seed,
        scheduler_seed,
        supervisor_seed,
    ) {
        Ok(paired) => paired,
        Err((parts, directory, generated, seed, gate_seed, scheduler_seed, supervisor_seed)) => {
            return Err(FinalStartupAuthorityPairingFailure::recoverable(
                VerifiedRuntimeResourceEnvelope { parts, available },
                directory,
                generated,
                seed,
                gate_seed,
                scheduler_seed,
                supervisor_seed,
            ));
        }
    };
    Ok(FinalPairedStartupAuthority { available, paired })
}

/// The sole production resource-parts verifier. Failure returns the exact
/// same linear owner so the surrounding startup transaction can retry or
/// roll back without re-minting authority.
#[doc(hidden)]
#[allow(clippy::result_large_err)]
pub fn verify_runtime_resource_parts(
    parts: VerifiedRuntimeResourceParts,
) -> Result<
    VerifiedRuntimeResourceEnvelope,
    (
        ResourceEnvelopeVerificationError,
        VerifiedRuntimeResourceParts,
    ),
> {
    let available = match parts.resource_shape() {
        Ok(shape) => shape.into_capacity(),
        Err(_) => {
            return Err((ResourceEnvelopeVerificationError::SizeOverflow, parts));
        }
    };
    Ok(VerifiedRuntimeResourceEnvelope { parts, available })
}

#[doc(hidden)]
pub struct RecoverableRuntimeStartupFailure<G, D, F, S, U> {
    error: ResourceEnvelopeVerificationError,
    envelope: VerifiedResourceEnvelope,
    generated: G,
    db_service: D,
    filesystem_service: F,
    scheduler_service: S,
    supervisor_service: U,
}

impl<G, D, F, S, U> RecoverableRuntimeStartupFailure<G, D, F, S, U> {
    #[doc(hidden)]
    #[allow(clippy::type_complexity)]
    pub fn into_parts(
        self,
    ) -> (
        ResourceEnvelopeVerificationError,
        VerifiedResourceEnvelope,
        G,
        RuntimeTerminationProofOwners<D, F, S, U>,
    ) {
        (
            self.error,
            self.envelope,
            self.generated,
            (
                self.db_service,
                self.filesystem_service,
                self.scheduler_service,
                self.supervisor_service,
            ),
        )
    }
}

#[doc(hidden)]
pub enum RecoverableFilesystemStartupFailure<G, D, S, U> {
    Binding {
        envelope: VerifiedResourceEnvelope,
        generated: G,
        db_service: D,
        filesystem: GenerationPairedFilesystemEvidence,
        scheduler_service: S,
        supervisor_service: U,
    },
    Creator {
        failure: RecoverableRuntimeStartupFailure<
            G,
            D,
            saddle_observability::file::WriterTerminationProof,
            S,
            U,
        >,
        physical: SignedProviderFilesystemRuntimeEvidence,
    },
    Permit {
        pending: PendingStartupPlan,
        physical: SignedProviderFilesystemRuntimeEvidence,
    },
    Prepare {
        pending: PendingStartupPlan,
        permit: ObservabilityQueueNormalizationPermit,
        witness: CanonicalObservabilityQueueProfileWitness,
        physical: SignedProviderFilesystemRuntimeEvidence,
    },
    Normalize {
        pending: PendingStartupPlan,
        binding: PreparedObservabilityQueueBinding,
        physical: SignedProviderFilesystemRuntimeEvidence,
    },
}

impl<G, D, S, U> RecoverableFilesystemStartupFailure<G, D, S, U> {
    #[doc(hidden)]
    pub fn consume_for_application_error(self) -> ResourceEnvelopeVerificationError {
        match self {
            Self::Binding { .. } => ResourceEnvelopeVerificationError::InvalidIdentity,
            Self::Creator { failure, physical } => {
                let (error, envelope, generated, proofs) = failure.into_parts();
                let (_envelope, _generated, _proofs, _physical) =
                    (envelope, generated, proofs, physical);
                error
            }
            Self::Permit { .. } => ResourceEnvelopeVerificationError::AdmissionRejected,
            Self::Prepare { .. } => ResourceEnvelopeVerificationError::AdmissionRejected,
            Self::Normalize { .. } => ResourceEnvelopeVerificationError::AdmissionRejected,
        }
    }
}

/// Gate-owned observation protocol. Production Gate locks one implementation
/// and one assembly; Runtime deliberately provides no closure blanket.
#[doc(hidden)]
pub(crate) 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<D, F, S, U> {
    policy: FiniteStartupPolicy,
    provenance: [u8; 32],
    _owners: PhantomData<RuntimeStartupOwnerTypes<D, F, S, U>>,
}

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

impl<D, F, S, U> StartupInputAdapter for RuntimeStartupAdapter<D, F, S, U>
where
    D: VerifiedDbTerminationServiceProofOwner,
    F: VerifiedFilesystemTerminationServiceProofOwner,
    S: VerifiedSchedulerTerminationServiceProofOwner,
    U: VerifiedSupervisorTerminationServiceProofOwner,
{
    type VerifiedEnvelopeOwner = VerifiedResourceEnvelope;
    type GeneratedFactsOwner = ComposedGeneratedStartupFactsOwner;
    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 environment_identity(&self) -> [u8; 32] {
        self.environment_identity
    }

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

/// Synchronously verifies and consumes the deployment observation.
#[doc(hidden)]
pub(crate) 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)]
#[cfg(test)]
pub(crate) fn create_runtime_startup_plan<A, D, F, S, U>(
    policy: FiniteStartupPolicy,
    adapter_provenance: [u8; 32],
    attestation: A,
    generated: ComposedGeneratedStartupFactsOwner,
    termination_proofs: RuntimeTerminationProofOwners<D, F, S, U>,
) -> Result<PendingStartupPlan, ResourceEnvelopeVerificationError>
where
    A: DeploymentResourceAttestation,
    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<D, F, S, U>(
    policy: FiniteStartupPolicy,
    adapter_provenance: [u8; 32],
    envelope: VerifiedResourceEnvelope,
    generated: ComposedGeneratedStartupFactsOwner,
    termination_proofs: RuntimeTerminationProofOwners<D, F, S, U>,
) -> Result<PendingStartupPlan, ResourceEnvelopeVerificationError>
where
    D: VerifiedDbTerminationServiceProofOwner,
    F: VerifiedFilesystemTerminationServiceProofOwner,
    S: VerifiedSchedulerTerminationServiceProofOwner,
    U: VerifiedSupervisorTerminationServiceProofOwner,
{
    create_runtime_startup_plan_from_verified_recovering(
        policy,
        adapter_provenance,
        envelope,
        generated,
        termination_proofs,
    )
    .map_err(|failure| failure.into_parts().0)
}

#[doc(hidden)]
#[allow(clippy::result_large_err)]
pub fn create_runtime_startup_plan_from_verified_recovering<D, F, S, U>(
    policy: FiniteStartupPolicy,
    adapter_provenance: [u8; 32],
    envelope: VerifiedResourceEnvelope,
    generated: ComposedGeneratedStartupFactsOwner,
    termination_proofs: RuntimeTerminationProofOwners<D, F, S, U>,
) -> Result<
    PendingStartupPlan,
    RecoverableRuntimeStartupFailure<ComposedGeneratedStartupFactsOwner, D, F, S, U>,
>
where
    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(RecoverableRuntimeStartupFailure {
            error: ResourceEnvelopeVerificationError::InvalidIdentity,
            envelope,
            generated,
            db_service,
            filesystem_service,
            scheduler_service,
            supervisor_service,
        });
    }
    create_pending_startup_plan_recovering(
        RuntimeStartupAdapter::<D, F, S, U> {
            policy,
            provenance: adapter_provenance,
            _owners: PhantomData,
        },
        envelope,
        generated,
        db_service,
        filesystem_service,
        scheduler_service,
        supervisor_service,
    )
    .map_err(|failure| {
        let RecoverableStartupCreatorFailure {
            error,
            envelope,
            generated,
            db_service,
            filesystem_service,
            scheduler_service,
            supervisor_service,
            ..
        } = failure;
        RecoverableRuntimeStartupFailure {
            error: match error {
                StartupCreatorError::InvalidAdapterFacts => {
                    ResourceEnvelopeVerificationError::InvalidIdentity
                }
                StartupCreatorError::SolverRejected => {
                    ResourceEnvelopeVerificationError::AdmissionRejected
                }
            },
            envelope,
            generated,
            db_service,
            filesystem_service,
            scheduler_service,
            supervisor_service,
        }
    })
}

/// Sole production-shaped filesystem bridge. The provider bundle is checked,
/// split and consumed in this call; no standalone queue profile is accepted.
#[doc(hidden)]
#[allow(clippy::too_many_arguments)]
#[allow(clippy::result_large_err)]
pub fn create_runtime_startup_plan_with_filesystem_bundle<D, S, U>(
    policy: FiniteStartupPolicy,
    adapter_provenance: [u8; 32],
    envelope: VerifiedResourceEnvelope,
    generated: ComposedGeneratedStartupFactsOwner,
    db_service: D,
    filesystem: GenerationPairedFilesystemEvidence,
    scheduler_service: S,
    supervisor_service: U,
) -> Result<
    (
        PendingStartupPlan,
        NormalizedSignedProviderFilesystemRuntimeEvidence,
    ),
    RecoverableFilesystemStartupFailure<ComposedGeneratedStartupFactsOwner, D, S, U>,
>
where
    D: VerifiedDbTerminationServiceProofOwner,
    S: VerifiedSchedulerTerminationServiceProofOwner,
    U: VerifiedSupervisorTerminationServiceProofOwner,
{
    let filesystem = match filesystem
        .consume_runtime_binding(VerifiedStartupEnvelopeOwner::build_identity(&envelope))
    {
        Ok(filesystem) => filesystem,
        Err(filesystem) => {
            return Err(RecoverableFilesystemStartupFailure::Binding {
                envelope,
                generated,
                db_service,
                filesystem,
                scheduler_service,
                supervisor_service,
            });
        }
    };
    let (filesystem_service, physical) = filesystem.into_runtime_evidence();
    let mut pending = match create_runtime_startup_plan_from_verified_recovering(
        policy,
        adapter_provenance,
        envelope,
        generated,
        (
            db_service,
            filesystem_service,
            scheduler_service,
            supervisor_service,
        ),
    ) {
        Ok(pending) => pending,
        Err(failure) => {
            return Err(RecoverableFilesystemStartupFailure::Creator { failure, physical });
        }
    };
    let permit = match pending.issue_observability_queue_normalization_permit() {
        Ok(permit) => permit,
        Err(_) => return Err(RecoverableFilesystemStartupFailure::Permit { pending, physical }),
    };
    let witness = production_observability_queue_profile_witness();
    let (pending, binding) = match prepare_observability_queue_binding(pending, permit, witness) {
        Ok(parts) => parts,
        Err((_, pending, permit, witness)) => {
            return Err(RecoverableFilesystemStartupFailure::Prepare {
                pending,
                permit,
                witness,
                physical,
            });
        }
    };
    let physical = match normalize_signed_provider_filesystem_evidence(binding, physical) {
        Ok(physical) => physical,
        Err((binding, physical)) => {
            return Err(RecoverableFilesystemStartupFailure::Normalize {
                pending,
                binding,
                physical,
            });
        }
    };
    Ok((pending, physical))
}

#[cfg(test)]
pub(crate) mod tests {
    use saddle_admission::{
        GeneratedAllocatorCost, GeneratedBuildCostClass, GeneratedBuildTopologyConstant,
        GeneratedCalibrationConstant, GeneratedResourceDimension, GeneratedSupportLimit,
        GeneratedTerminationTopologyWorkOwner, RuntimeBuildCapacitySourceLeaf,
        RuntimeCapacityCalibrationSourceLeaf, ServiceCapacitySourceLeaf, StartupActualFacts,
        StartupClaimKind, compose_generated_startup_facts_test_fixture,
    };

    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 {
            128_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 {
            1_024
        }
        fn event_credits(&self) -> usize {
            1_024
        }
        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: 64_000_000,
            db: 64,
            public_time_policy: [2_000, 8_000],
            identity: [1; 32],
        }
    }

    const COMMON: [[u8; 32]; 3] = [[0x41; 32], [0x42; 32], [0x43; 32]];
    const PROVENANCE: [[u8; 32]; 9] = [
        [0x61; 32], [0x62; 32], [0x63; 32], [0x64; 32], [0x65; 32], [0x66; 32], [0x67; 32],
        [0x68; 32], [0x69; 32],
    ];

    struct GeneratedLeaf;
    impl ServiceCapacitySourceLeaf for GeneratedLeaf {
        fn leaf_identity(&self) -> [u8; 32] {
            [0x11; 32]
        }
        fn common_identities(&self) -> [[u8; 32]; 3] {
            COMMON
        }
        fn owner_generation(&self) -> u64 {
            7
        }
        fn route_type_closure_identity(&self) -> [u8; 32] {
            [0x51; 32]
        }
        fn route_count(&self) -> usize {
            1
        }
        fn route_identity(&self, index: usize) -> Option<u64> {
            (index == 0).then_some(1)
        }
        fn managed_commitment_bytes(&self, index: usize) -> Option<usize> {
            (index == 0).then_some(1_024)
        }
        fn managed_objects_peak(&self, index: usize) -> Option<usize> {
            (index == 0).then_some(2)
        }
        fn db_connections(&self, index: usize) -> Option<usize> {
            (index == 0).then_some(1)
        }
        fn db_operations(&self, index: usize) -> Option<usize> {
            (index == 0).then_some(1)
        }
    }
    impl RuntimeBuildCapacitySourceLeaf for GeneratedLeaf {
        fn leaf_identity(&self) -> [u8; 32] {
            [0x22; 32]
        }
        fn common_identities(&self) -> [[u8; 32]; 3] {
            COMMON
        }
        fn owner_generation(&self) -> u64 {
            7
        }
        fn component_proof_identity(&self) -> [u8; 32] {
            [0x52; 32]
        }
        fn expected_calibration_provenance(&self) -> [[u8; 32]; 9] {
            PROVENANCE
        }
        fn solver_schema_identity(&self) -> [u8; 32] {
            [0x92; 32]
        }
        fn admission_layout_identity(&self) -> [u8; 32] {
            [0x94; 32]
        }
        fn cost(
            &self,
            class: GeneratedBuildCostClass,
            dimension: GeneratedResourceDimension,
        ) -> Option<usize> {
            Some(
                [
                    [0, 10_000, 10_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],
                ][class as usize][dimension as usize],
            )
        }
        fn support_limit(&self, limit: GeneratedSupportLimit) -> Option<usize> {
            Some([8, 128, 128, 64][limit as usize])
        }
        fn topology_constant(&self, value: GeneratedBuildTopologyConstant) -> Option<usize> {
            Some([1, 2, 3][value as usize])
        }
        fn route_count(&self) -> usize {
            1
        }
        fn route_identity(&self, index: usize) -> Option<u64> {
            (index == 0).then_some(1)
        }
        fn framework_bytes(&self, index: usize) -> Option<usize> {
            (index == 0).then_some(512)
        }
        fn task_storage_bytes(&self, index: usize) -> Option<usize> {
            (index == 0).then_some(4_096)
        }
        fn response_carrier_bytes(&self, index: usize) -> Option<usize> {
            (index == 0).then_some(512)
        }
    }
    impl RuntimeCapacityCalibrationSourceLeaf for GeneratedLeaf {
        fn leaf_identity(&self) -> [u8; 32] {
            [0x69; 32]
        }
        fn common_identities(&self) -> [[u8; 32]; 3] {
            COMMON
        }
        fn owner_generation(&self) -> u64 {
            7
        }
        fn calibration_provenance(&self) -> [[u8; 32]; 9] {
            PROVENANCE
        }
        fn fixed_cost(&self, dimension: GeneratedResourceDimension) -> Option<usize> {
            Some([0, 16_000, 16_000, 3, 3, 0, 0][dimension as usize])
        }
        fn allocator_cost(&self, _cost: GeneratedAllocatorCost) -> Option<usize> {
            Some(1_000)
        }
        fn calibrated_constant(&self, value: GeneratedCalibrationConstant) -> Option<usize> {
            Some([64, 1_024, 512][value as usize])
        }
    }
    impl GeneratedTerminationTopologyWorkOwner for GeneratedLeaf {
        fn leaf_identity(&self) -> [u8; 32] {
            [0x71; 32]
        }
        fn common_identities(&self) -> [[u8; 32]; 3] {
            COMMON
        }
        fn owner_generation(&self) -> u64 {
            7
        }
        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]
        }
    }

    fn generated() -> ComposedGeneratedStartupFactsOwner {
        compose_generated_startup_facts_test_fixture(
            GeneratedLeaf,
            GeneratedLeaf,
            GeneratedLeaf,
            GeneratedLeaf,
        )
        .unwrap()
    }

    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 production_creator_failure_returns_every_owner_for_an_uncharged_retry() {
        let envelope = verify_resource_envelope(attestation()).unwrap();
        let failure = match create_runtime_startup_plan_from_verified_recovering(
            FiniteStartupPolicy::Balanced,
            [0; 32],
            envelope,
            generated(),
            (
                DbService,
                FilesystemService,
                SchedulerService,
                SupervisorService,
            ),
        ) {
            Ok(_) => panic!("zero provenance must fail before a plan can charge resources"),
            Err(failure) => failure,
        };
        let (error, envelope, generated, proofs) = failure.into_parts();
        assert_eq!(error, ResourceEnvelopeVerificationError::InvalidIdentity);

        let mut retried = match create_runtime_startup_plan_from_verified_recovering(
            FiniteStartupPolicy::Balanced,
            [9; 32],
            envelope,
            generated,
            proofs,
        ) {
            Ok(plan) => plan,
            Err(_) => panic!("returned owners must support one clean retry"),
        };
        assert!(retried.claim(StartupClaimKind::Runtime).is_ok());
    }

    #[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
        );
    }
}