soroban_env_host/
budget.rs

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
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
mod dimension;
mod limits;
mod model;
mod util;
mod wasmi_helper;

pub(crate) use limits::DepthLimiter;
pub use limits::{DEFAULT_HOST_DEPTH_LIMIT, DEFAULT_XDR_RW_LIMITS};
pub use model::{MeteredCostComponent, ScaledU64};
pub(crate) use wasmi_helper::{get_wasmi_config, load_calibrated_fuel_costs};

use std::{
    cell::{RefCell, RefMut},
    fmt::{Debug, Display},
    rc::Rc,
};

use crate::{
    host::error::TryBorrowOrErr,
    xdr::{ContractCostParams, ContractCostType, ScErrorCode, ScErrorType},
    Error, Host, HostError,
};

use dimension::{BudgetDimension, IsCpu, IsShadowMode};

#[derive(Debug, Clone, Copy, Default, PartialEq, Eq, PartialOrd, Ord)]
pub struct CostTracker {
    pub iterations: u64,
    pub inputs: Option<u64>,
    pub cpu: u64,
    pub mem: u64,
}

#[derive(Clone)]
struct BudgetTracker {
    // Tracker for each `CostType`
    cost_trackers: [CostTracker; ContractCostType::variants().len()],
    // Total number of times the meter is called
    meter_count: u32,
    #[cfg(any(test, feature = "testutils", feature = "bench"))]
    wasm_memory: u64,
    // Tracks the real time (in nsecs) spent on various `CostType`
    time_tracker: [u64; ContractCostType::variants().len()],
}

impl Default for BudgetTracker {
    fn default() -> Self {
        let mut mt = Self {
            cost_trackers: [CostTracker::default(); ContractCostType::variants().len()],
            meter_count: 0,
            #[cfg(any(test, feature = "testutils", feature = "bench"))]
            wasm_memory: 0,
            time_tracker: [0; ContractCostType::variants().len()],
        };
        for (ct, tracker) in ContractCostType::variants()
            .iter()
            .zip(mt.cost_trackers.iter_mut())
        {
            // Define what inputs actually mean. For any constant-cost types --
            // whether it is a true constant unit cost type, or empirically
            // assigned (via measurement) constant type -- we leave the input as
            // `None`, otherwise, we initialize the input to `Some(0)``.
            let mut init_input = || tracker.inputs = Some(0);
            match ct {
                ContractCostType::WasmInsnExec => (),
                ContractCostType::MemAlloc => init_input(), // number of bytes in host memory to allocate
                ContractCostType::MemCpy => init_input(),   // number of bytes in host to copy
                ContractCostType::MemCmp => init_input(),   // number of bytes in host to compare
                ContractCostType::DispatchHostFunction => (),
                ContractCostType::VisitObject => (),
                // The inputs for `ValSer` and `ValDeser` are subtly different:
                // `ValSer` works recursively via `WriteXdr`, and each leaf call charges the budget,
                // and the input is the number of bytes of a leaf entity.
                // `ValDeser` charges the budget at the top level. Call to `read_xdr` works through
                // the bytes buffer recursively without worrying about budget charging. So the input
                // is the length of the total buffer.
                // This has implication on how their calibration should be set up.
                ContractCostType::ValSer => init_input(), // number of bytes in the result buffer
                ContractCostType::ValDeser => init_input(), // number of bytes in the input buffer
                ContractCostType::ComputeSha256Hash => init_input(), // number of bytes in the buffer
                ContractCostType::ComputeEd25519PubKey => (),
                ContractCostType::VerifyEd25519Sig => init_input(), // length of the signed message
                ContractCostType::VmInstantiation => init_input(),  // length of the wasm bytes,
                ContractCostType::VmCachedInstantiation => init_input(), // length of the wasm bytes,
                ContractCostType::InvokeVmFunction => (),
                ContractCostType::ComputeKeccak256Hash => init_input(), // number of bytes in the buffer
                ContractCostType::DecodeEcdsaCurve256Sig => (),
                ContractCostType::RecoverEcdsaSecp256k1Key => (),
                ContractCostType::Int256AddSub => (),
                ContractCostType::Int256Mul => (),
                ContractCostType::Int256Div => (),
                ContractCostType::Int256Pow => (),
                ContractCostType::Int256Shift => (),
                ContractCostType::ChaCha20DrawBytes => init_input(), // number of random bytes to draw

                ContractCostType::ParseWasmInstructions => init_input(),
                ContractCostType::ParseWasmFunctions => init_input(),
                ContractCostType::ParseWasmGlobals => init_input(),
                ContractCostType::ParseWasmTableEntries => init_input(),
                ContractCostType::ParseWasmTypes => init_input(),
                ContractCostType::ParseWasmDataSegments => init_input(),
                ContractCostType::ParseWasmElemSegments => init_input(),
                ContractCostType::ParseWasmImports => init_input(),
                ContractCostType::ParseWasmExports => init_input(),
                ContractCostType::ParseWasmDataSegmentBytes => init_input(),
                ContractCostType::InstantiateWasmInstructions => (),
                ContractCostType::InstantiateWasmFunctions => init_input(),
                ContractCostType::InstantiateWasmGlobals => init_input(),
                ContractCostType::InstantiateWasmTableEntries => init_input(),
                ContractCostType::InstantiateWasmTypes => (),
                ContractCostType::InstantiateWasmDataSegments => init_input(),
                ContractCostType::InstantiateWasmElemSegments => init_input(),
                ContractCostType::InstantiateWasmImports => init_input(),
                ContractCostType::InstantiateWasmExports => init_input(),
                ContractCostType::InstantiateWasmDataSegmentBytes => init_input(),
                ContractCostType::Sec1DecodePointUncompressed => (),
                ContractCostType::VerifyEcdsaSecp256r1Sig => (),
                ContractCostType::Bls12381EncodeFp => (),
                ContractCostType::Bls12381DecodeFp => (),
                ContractCostType::Bls12381G1CheckPointOnCurve => (),
                ContractCostType::Bls12381G1CheckPointInSubgroup => (),
                ContractCostType::Bls12381G2CheckPointOnCurve => (),
                ContractCostType::Bls12381G2CheckPointInSubgroup => (),
                ContractCostType::Bls12381G1ProjectiveToAffine => (),
                ContractCostType::Bls12381G2ProjectiveToAffine => (),
                ContractCostType::Bls12381G1Add => (),
                ContractCostType::Bls12381G1Mul => (),
                ContractCostType::Bls12381G1Msm => init_input(), // input is number of (G1,Fr) pairs
                ContractCostType::Bls12381MapFpToG1 => (),
                ContractCostType::Bls12381HashToG1 => init_input(),
                ContractCostType::Bls12381G2Add => (),
                ContractCostType::Bls12381G2Mul => (),
                ContractCostType::Bls12381G2Msm => init_input(), // input is number of (G2,Fr) pairs
                ContractCostType::Bls12381MapFp2ToG2 => (),
                ContractCostType::Bls12381HashToG2 => init_input(),
                ContractCostType::Bls12381Pairing => init_input(), // input is number of (G1,G2) pairs
                ContractCostType::Bls12381FrFromU256 => (),
                ContractCostType::Bls12381FrToU256 => (),
                ContractCostType::Bls12381FrAddSub => (),
                ContractCostType::Bls12381FrMul => (),
                ContractCostType::Bls12381FrPow => init_input(), // input is number of bits in the u64 exponent excluding leading zeros
                ContractCostType::Bls12381FrInv => (),
            }
        }
        mt
    }
}

impl BudgetTracker {
    #[cfg(any(test, feature = "testutils", feature = "bench"))]
    fn reset(&mut self) {
        self.meter_count = 0;
        for tracker in &mut self.cost_trackers {
            tracker.iterations = 0;
            tracker.inputs = tracker.inputs.map(|_| 0);
            tracker.cpu = 0;
            tracker.mem = 0;
        }
        self.wasm_memory = 0;
    }

    fn track_time(&mut self, ty: ContractCostType, duration: u64) -> Result<(), HostError> {
        let t = self.time_tracker.get_mut(ty as usize).ok_or_else(|| {
            HostError::from(Error::from_type_and_code(
                ScErrorType::Budget,
                ScErrorCode::InternalError,
            ))
        })?;
        *t += duration;
        Ok(())
    }

    fn get_time(&self, ty: ContractCostType) -> Result<u64, HostError> {
        self.time_tracker
            .get(ty as usize)
            .map(|t| *t)
            .ok_or_else(|| (ScErrorType::Budget, ScErrorCode::InternalError).into())
    }
}

#[derive(Clone)]
pub(crate) struct BudgetImpl {
    cpu_insns: BudgetDimension,
    mem_bytes: BudgetDimension,
    /// For the purpose of calibration and reporting; not used for budget-limiting nor does it affect consensus
    tracker: BudgetTracker,
    is_in_shadow_mode: bool,
    fuel_costs: wasmi::FuelCosts,
    depth_limit: u32,
}

impl BudgetImpl {
    /// Initializes the budget from network configuration settings.
    fn try_from_configs(
        cpu_limit: u64,
        mem_limit: u64,
        cpu_cost_params: ContractCostParams,
        mem_cost_params: ContractCostParams,
    ) -> Result<Self, HostError> {
        Ok(Self {
            cpu_insns: BudgetDimension::try_from_config(cpu_cost_params, cpu_limit)?,
            mem_bytes: BudgetDimension::try_from_config(mem_cost_params, mem_limit)?,
            tracker: BudgetTracker::default(),
            is_in_shadow_mode: false,
            fuel_costs: load_calibrated_fuel_costs(),
            depth_limit: DEFAULT_HOST_DEPTH_LIMIT,
        })
    }

    pub fn charge(
        &mut self,
        ty: ContractCostType,
        iterations: u64,
        input: Option<u64>,
    ) -> Result<(), HostError> {
        let tracker = self
            .tracker
            .cost_trackers
            .get_mut(ty as usize)
            .ok_or_else(|| HostError::from((ScErrorType::Budget, ScErrorCode::InternalError)))?;

        if !self.is_in_shadow_mode {
            // update tracker for reporting
            self.tracker.meter_count = self.tracker.meter_count.saturating_add(1);
            tracker.iterations = tracker.iterations.saturating_add(iterations);
            match (&mut tracker.inputs, input) {
                (None, None) => (),
                (Some(t), Some(i)) => *t = t.saturating_add(i.saturating_mul(iterations)),
                // internal logic error, a wrong cost type has been passed in
                _ => return Err((ScErrorType::Budget, ScErrorCode::InternalError).into()),
            };
        }

        let cpu_charged = self.cpu_insns.charge(
            ty,
            iterations,
            input,
            IsCpu(true),
            IsShadowMode(self.is_in_shadow_mode),
        )?;
        if !self.is_in_shadow_mode {
            tracker.cpu = tracker.cpu.saturating_add(cpu_charged);
        }
        self.cpu_insns
            .check_budget_limit(IsShadowMode(self.is_in_shadow_mode))?;

        let mem_charged = self.mem_bytes.charge(
            ty,
            iterations,
            input,
            IsCpu(false),
            IsShadowMode(self.is_in_shadow_mode),
        )?;
        if !self.is_in_shadow_mode {
            tracker.mem = tracker.mem.saturating_add(mem_charged);
        }
        self.mem_bytes
            .check_budget_limit(IsShadowMode(self.is_in_shadow_mode))
    }

    fn get_wasmi_fuel_remaining(&self) -> Result<u64, HostError> {
        let cpu_remaining = self.cpu_insns.get_remaining();
        let cost_model = self
            .cpu_insns
            .get_cost_model(ContractCostType::WasmInsnExec)?;
        let cpu_per_fuel = cost_model.const_term.max(1);
        // Due to rounding, the amount of cpu converted to fuel will be slightly
        // less than the total cpu available. This is okay because 1. that rounded-off
        // amount should be very small (less than the cpu_per_fuel) 2. it does
        // not cumulate over host function calls (each time the Vm returns back
        // to the host, the host gets back the unspent fuel amount converged
        // back to the cpu). The only way this rounding difference is observable
        // is if the Vm traps due to `OutOfFuel`, this tiny amount would still
        // be withheld from the host. And this may not be the only source of
        // unspendable residual budget (see the other comment in `vm::wrapped_func_call`).
        // So it should be okay.
        Ok(cpu_remaining.checked_div(cpu_per_fuel).unwrap_or(0))
    }
}

/// Default settings for local/sandbox testing only. The actual operations will use parameters
/// read on-chain from network configuration via [`from_configs`] above.
impl Default for BudgetImpl {
    fn default() -> Self {
        let mut b = Self {
            cpu_insns: BudgetDimension::default(),
            mem_bytes: BudgetDimension::default(),
            tracker: Default::default(),
            is_in_shadow_mode: false,
            fuel_costs: load_calibrated_fuel_costs(),
            depth_limit: DEFAULT_HOST_DEPTH_LIMIT,
        };

        for ct in ContractCostType::variants() {
            // define the cpu cost model parameters
            let Ok(cpu) = b.cpu_insns.get_cost_model_mut(ct) else {
                continue;
            };
            match ct {
                // This is the host cpu insn cost per wasm "fuel". Every "base" wasm
                // instruction costs 1 fuel (by default), and some particular types of
                // instructions may cost additional amount of fuel based on
                // wasmi's config setting.
                ContractCostType::WasmInsnExec => {
                    cpu.const_term = 4;
                    cpu.lin_term = ScaledU64(0);
                }
                // We don't have a clear way of modeling the linear term of
                // memalloc cost thus we choose a reasonable upperbound which is
                // same as other mem ops.
                ContractCostType::MemAlloc => {
                    cpu.const_term = 434;
                    cpu.lin_term = ScaledU64::from_unscaled_u64(1).safe_div(8);
                }
                // We don't use a calibrated number for this because sending a
                // large calibration-buffer to memcpy hits an optimized
                // large-memcpy path in the stdlib, which has both a large
                // overhead and a small per-byte cost. But large buffers aren't
                // really how byte-copies usually get used in metered code. Most
                // calls have to do with small copies of a few tens or hundreds
                // of bytes. So instead we just "reason it out": we can probably
                // copy 8 bytes per instruction on a 64-bit machine, and that
                // therefore a 1-byte copy is considered 1/8th of an
                // instruction. We also add in a nonzero constant overhead, to
                // avoid having anything that can be zero cost and approximate
                // whatever function call, arg-shuffling, spills, reloads or
                // other flotsam accumulates around a typical memory copy.
                ContractCostType::MemCpy => {
                    cpu.const_term = 42;
                    cpu.lin_term = ScaledU64::from_unscaled_u64(1).safe_div(8);
                }
                ContractCostType::MemCmp => {
                    cpu.const_term = 44;
                    cpu.lin_term = ScaledU64::from_unscaled_u64(1).safe_div(8);
                }
                ContractCostType::DispatchHostFunction => {
                    cpu.const_term = 310;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::VisitObject => {
                    cpu.const_term = 61;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::ValSer => {
                    cpu.const_term = 230;
                    cpu.lin_term = ScaledU64(29);
                }
                ContractCostType::ValDeser => {
                    cpu.const_term = 59052;
                    cpu.lin_term = ScaledU64(4001);
                }
                ContractCostType::ComputeSha256Hash => {
                    cpu.const_term = 3738;
                    cpu.lin_term = ScaledU64(7012);
                }
                ContractCostType::ComputeEd25519PubKey => {
                    cpu.const_term = 40253;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::VerifyEd25519Sig => {
                    cpu.const_term = 377524;
                    cpu.lin_term = ScaledU64(4068);
                }
                ContractCostType::VmInstantiation => {
                    cpu.const_term = 451626;
                    cpu.lin_term = ScaledU64(45405);
                }
                ContractCostType::VmCachedInstantiation => {
                    cpu.const_term = 41142;
                    cpu.lin_term = ScaledU64(634);
                }
                ContractCostType::InvokeVmFunction => {
                    cpu.const_term = 1948;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::ComputeKeccak256Hash => {
                    cpu.const_term = 3766;
                    cpu.lin_term = ScaledU64(5969);
                }
                ContractCostType::DecodeEcdsaCurve256Sig => {
                    cpu.const_term = 710;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::RecoverEcdsaSecp256k1Key => {
                    cpu.const_term = 2315295;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::Int256AddSub => {
                    cpu.const_term = 4404;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::Int256Mul => {
                    cpu.const_term = 4947;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::Int256Div => {
                    cpu.const_term = 4911;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::Int256Pow => {
                    cpu.const_term = 4286;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::Int256Shift => {
                    cpu.const_term = 913;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::ChaCha20DrawBytes => {
                    cpu.const_term = 1058;
                    cpu.lin_term = ScaledU64(501);
                }

                ContractCostType::ParseWasmInstructions => {
                    cpu.const_term = 73077;
                    cpu.lin_term = ScaledU64(25410);
                }
                ContractCostType::ParseWasmFunctions => {
                    cpu.const_term = 0;
                    cpu.lin_term = ScaledU64(540752);
                }
                ContractCostType::ParseWasmGlobals => {
                    cpu.const_term = 0;
                    cpu.lin_term = ScaledU64(176363);
                }
                ContractCostType::ParseWasmTableEntries => {
                    cpu.const_term = 0;
                    cpu.lin_term = ScaledU64(29989);
                }
                ContractCostType::ParseWasmTypes => {
                    cpu.const_term = 0;
                    cpu.lin_term = ScaledU64(1061449);
                }
                ContractCostType::ParseWasmDataSegments => {
                    cpu.const_term = 0;
                    cpu.lin_term = ScaledU64(237336);
                }
                ContractCostType::ParseWasmElemSegments => {
                    cpu.const_term = 0;
                    cpu.lin_term = ScaledU64(328476);
                }
                ContractCostType::ParseWasmImports => {
                    cpu.const_term = 0;
                    cpu.lin_term = ScaledU64(701845);
                }
                ContractCostType::ParseWasmExports => {
                    cpu.const_term = 0;
                    cpu.lin_term = ScaledU64(429383);
                }
                ContractCostType::ParseWasmDataSegmentBytes => {
                    cpu.const_term = 0;
                    cpu.lin_term = ScaledU64(28);
                }
                ContractCostType::InstantiateWasmInstructions => {
                    cpu.const_term = 43030;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::InstantiateWasmFunctions => {
                    cpu.const_term = 0;
                    cpu.lin_term = ScaledU64(7556);
                }
                ContractCostType::InstantiateWasmGlobals => {
                    cpu.const_term = 0;
                    cpu.lin_term = ScaledU64(10711);
                }
                ContractCostType::InstantiateWasmTableEntries => {
                    cpu.const_term = 0;
                    cpu.lin_term = ScaledU64(3300);
                }
                ContractCostType::InstantiateWasmTypes => {
                    cpu.const_term = 0;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::InstantiateWasmDataSegments => {
                    cpu.const_term = 0;
                    cpu.lin_term = ScaledU64(23038);
                }
                ContractCostType::InstantiateWasmElemSegments => {
                    cpu.const_term = 0;
                    cpu.lin_term = ScaledU64(42488);
                }
                ContractCostType::InstantiateWasmImports => {
                    cpu.const_term = 0;
                    cpu.lin_term = ScaledU64(828974);
                }
                ContractCostType::InstantiateWasmExports => {
                    cpu.const_term = 0;
                    cpu.lin_term = ScaledU64(297100);
                }
                ContractCostType::InstantiateWasmDataSegmentBytes => {
                    cpu.const_term = 0;
                    cpu.lin_term = ScaledU64(14);
                }
                ContractCostType::Sec1DecodePointUncompressed => {
                    cpu.const_term = 1882;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::VerifyEcdsaSecp256r1Sig => {
                    cpu.const_term = 3000906;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381EncodeFp => {
                    cpu.const_term = 661;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381DecodeFp => {
                    cpu.const_term = 985;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381G1CheckPointOnCurve => {
                    cpu.const_term = 1934;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381G1CheckPointInSubgroup => {
                    cpu.const_term = 730510;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381G2CheckPointOnCurve => {
                    cpu.const_term = 5921;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381G2CheckPointInSubgroup => {
                    cpu.const_term = 1057822;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381G1ProjectiveToAffine => {
                    cpu.const_term = 92642;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381G2ProjectiveToAffine => {
                    cpu.const_term = 100742;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381G1Add => {
                    cpu.const_term = 7689;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381G1Mul => {
                    cpu.const_term = 2458985;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381G1Msm => {
                    cpu.const_term = 2426722;
                    cpu.lin_term = ScaledU64(96397671);
                }
                ContractCostType::Bls12381MapFpToG1 => {
                    cpu.const_term = 1541554;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381HashToG1 => {
                    cpu.const_term = 3211191;
                    cpu.lin_term = ScaledU64(6713);
                }
                ContractCostType::Bls12381G2Add => {
                    cpu.const_term = 25207;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381G2Mul => {
                    cpu.const_term = 7873219;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381G2Msm => {
                    cpu.const_term = 8035968;
                    cpu.lin_term = ScaledU64(309667335);
                }
                ContractCostType::Bls12381MapFp2ToG2 => {
                    cpu.const_term = 2420202;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381HashToG2 => {
                    cpu.const_term = 7050564;
                    cpu.lin_term = ScaledU64(6797);
                }
                ContractCostType::Bls12381Pairing => {
                    cpu.const_term = 10558948;
                    cpu.lin_term = ScaledU64(632860943);
                }
                ContractCostType::Bls12381FrFromU256 => {
                    cpu.const_term = 1994;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381FrToU256 => {
                    cpu.const_term = 1155;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381FrAddSub => {
                    cpu.const_term = 74;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381FrMul => {
                    cpu.const_term = 332;
                    cpu.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381FrPow => {
                    cpu.const_term = 691;
                    cpu.lin_term = ScaledU64(74558);
                }
                ContractCostType::Bls12381FrInv => {
                    cpu.const_term = 35421;
                    cpu.lin_term = ScaledU64(0);
                }
            }

            // define the memory cost model parameters
            let Ok(mem) = b.mem_bytes.get_cost_model_mut(ct) else {
                continue;
            };
            match ct {
                // This type is designated to the cpu cost. By definition, the memory cost
                // of a (cpu) fuel is zero.
                ContractCostType::WasmInsnExec => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::MemAlloc => {
                    mem.const_term = 16;
                    mem.lin_term = ScaledU64::from_unscaled_u64(1);
                }
                ContractCostType::MemCpy => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::MemCmp => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::DispatchHostFunction => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::VisitObject => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(0);
                }
                // These are derived analytically but based on calibration on
                // highly nested xdr structures
                ContractCostType::ValSer => {
                    mem.const_term = 242;
                    mem.lin_term = ScaledU64::from_unscaled_u64(3);
                }
                ContractCostType::ValDeser => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64::from_unscaled_u64(3);
                }
                ContractCostType::ComputeSha256Hash => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::ComputeEd25519PubKey => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::VerifyEd25519Sig => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::VmInstantiation => {
                    mem.const_term = 130065;
                    mem.lin_term = ScaledU64(5064);
                }
                ContractCostType::VmCachedInstantiation => {
                    mem.const_term = 69472;
                    mem.lin_term = ScaledU64(1217);
                }
                ContractCostType::InvokeVmFunction => {
                    mem.const_term = 14;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::ComputeKeccak256Hash => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::DecodeEcdsaCurve256Sig => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::RecoverEcdsaSecp256k1Key => {
                    mem.const_term = 181;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::Int256AddSub => {
                    mem.const_term = 99;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::Int256Mul => {
                    mem.const_term = 99;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::Int256Div => {
                    mem.const_term = 99;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::Int256Pow => {
                    mem.const_term = 99;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::Int256Shift => {
                    mem.const_term = 99;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::ChaCha20DrawBytes => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(0);
                }

                ContractCostType::ParseWasmInstructions => {
                    mem.const_term = 17564;
                    mem.lin_term = ScaledU64(6457);
                }
                ContractCostType::ParseWasmFunctions => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(47464);
                }
                ContractCostType::ParseWasmGlobals => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(13420);
                }
                ContractCostType::ParseWasmTableEntries => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(6285);
                }
                ContractCostType::ParseWasmTypes => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(64670);
                }
                ContractCostType::ParseWasmDataSegments => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(29074);
                }
                ContractCostType::ParseWasmElemSegments => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(48095);
                }
                ContractCostType::ParseWasmImports => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(103229);
                }
                ContractCostType::ParseWasmExports => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(36394);
                }
                ContractCostType::ParseWasmDataSegmentBytes => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(257);
                }
                ContractCostType::InstantiateWasmInstructions => {
                    mem.const_term = 70704;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::InstantiateWasmFunctions => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(14613);
                }
                ContractCostType::InstantiateWasmGlobals => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(6833);
                }
                ContractCostType::InstantiateWasmTableEntries => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(1025);
                }
                ContractCostType::InstantiateWasmTypes => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::InstantiateWasmDataSegments => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(129632);
                }
                ContractCostType::InstantiateWasmElemSegments => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(13665);
                }
                ContractCostType::InstantiateWasmImports => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(97637);
                }
                ContractCostType::InstantiateWasmExports => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(9176);
                }
                ContractCostType::InstantiateWasmDataSegmentBytes => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(126);
                }
                ContractCostType::Sec1DecodePointUncompressed => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::VerifyEcdsaSecp256r1Sig => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381EncodeFp => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381DecodeFp => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381G1CheckPointOnCurve => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381G1CheckPointInSubgroup => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381G2CheckPointOnCurve => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381G2CheckPointInSubgroup => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381G1ProjectiveToAffine => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381G2ProjectiveToAffine => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381G1Add => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381G1Mul => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381G1Msm => {
                    mem.const_term = 109494;
                    mem.lin_term = ScaledU64(354667);
                }
                ContractCostType::Bls12381MapFpToG1 => {
                    mem.const_term = 5552;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381HashToG1 => {
                    mem.const_term = 9424;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381G2Add => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381G2Mul => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381G2Msm => {
                    mem.const_term = 219654;
                    mem.lin_term = ScaledU64(354667);
                }
                ContractCostType::Bls12381MapFp2ToG2 => {
                    mem.const_term = 3344;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381HashToG2 => {
                    mem.const_term = 6816;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381Pairing => {
                    mem.const_term = 2204;
                    mem.lin_term = ScaledU64(9340474);
                }
                ContractCostType::Bls12381FrFromU256 => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381FrToU256 => {
                    mem.const_term = 248;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381FrAddSub => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381FrMul => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(0);
                }
                ContractCostType::Bls12381FrPow => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(128);
                }
                ContractCostType::Bls12381FrInv => {
                    mem.const_term = 0;
                    mem.lin_term = ScaledU64(0);
                }
            }
        }

        // define the limits
        b.cpu_insns.reset(limits::DEFAULT_CPU_INSN_LIMIT);
        b.mem_bytes.reset(limits::DEFAULT_MEM_BYTES_LIMIT);
        b
    }
}

impl Debug for BudgetImpl {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        writeln!(f, "{:=<175}", "")?;
        writeln!(
            f,
            "Cpu limit: {}; used: {}",
            self.cpu_insns.limit, self.cpu_insns.total_count
        )?;
        writeln!(
            f,
            "Mem limit: {}; used: {}",
            self.mem_bytes.limit, self.mem_bytes.total_count
        )?;
        writeln!(f, "{:=<175}", "")?;
        writeln!(
            f,
            "{:<35}{:<15}{:<15}{:<15}{:<15}{:<20}{:<20}{:<20}{:<20}",
            "CostType",
            "iterations",
            "input",
            "cpu_insns",
            "mem_bytes",
            "const_term_cpu",
            "lin_term_cpu",
            "const_term_mem",
            "lin_term_mem",
        )?;
        for ct in ContractCostType::variants() {
            let i = ct as usize;
            writeln!(
                f,
                "{:<35}{:<15}{:<15}{:<15}{:<15}{:<20}{:<20}{:<20}{:<20}",
                format!("{:?}", ct),
                self.tracker.cost_trackers[i].iterations,
                format!("{:?}", self.tracker.cost_trackers[i].inputs),
                self.tracker.cost_trackers[i].cpu,
                self.tracker.cost_trackers[i].mem,
                self.cpu_insns.cost_models[i].const_term,
                format!("{}", self.cpu_insns.cost_models[i].lin_term),
                self.mem_bytes.cost_models[i].const_term,
                format!("{}", self.mem_bytes.cost_models[i].lin_term),
            )?;
        }
        writeln!(f, "{:=<175}", "")?;
        writeln!(
            f,
            "Internal details (diagnostics info, does not affect fees) "
        )?;
        writeln!(
            f,
            "Total # times meter was called: {}",
            self.tracker.meter_count,
        )?;
        writeln!(
            f,
            "Shadow cpu limit: {}; used: {}",
            self.cpu_insns.shadow_limit, self.cpu_insns.shadow_total_count
        )?;
        writeln!(
            f,
            "Shadow mem limit: {}; used: {}",
            self.mem_bytes.shadow_limit, self.mem_bytes.shadow_total_count
        )?;
        writeln!(f, "{:=<175}", "")?;
        Ok(())
    }
}

impl Display for BudgetImpl {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        writeln!(f, "{:=<65}", "")?;
        writeln!(
            f,
            "Cpu limit: {}; used: {}",
            self.cpu_insns.limit, self.cpu_insns.total_count
        )?;
        writeln!(
            f,
            "Mem limit: {}; used: {}",
            self.mem_bytes.limit, self.mem_bytes.total_count
        )?;
        writeln!(f, "{:=<65}", "")?;
        writeln!(
            f,
            "{:<35}{:<15}{:<15}",
            "CostType", "cpu_insns", "mem_bytes",
        )?;
        for ct in ContractCostType::variants() {
            let i = ct as usize;
            writeln!(
                f,
                "{:<35}{:<15}{:<15}",
                format!("{:?}", ct),
                self.tracker.cost_trackers[i].cpu,
                self.tracker.cost_trackers[i].mem,
            )?;
        }
        writeln!(f, "{:=<65}", "")?;
        Ok(())
    }
}

#[allow(unused)]
#[cfg(test)]
impl BudgetImpl {
    // Utility function for printing default budget cost parameters in cpp format
    // so that it can be ported into stellar-core.
    // When needing it, copy and run the following test
    // ```
    // #[test]
    // fn test() {
    //     let bi = BudgetImpl::default();
    //     bi.print_default_params_in_cpp();
    // }
    // ```
    // and copy the screen output.
    fn print_default_params_in_cpp(&self) {
        // cpu
        println!();
        println!();
        println!();
        for ct in ContractCostType::variants() {
            let Ok(cpu) = self.cpu_insns.get_cost_model(ct) else {
                continue;
            };
            println!("case {}:", ct.name());
            println!(
                "params[val] = ContractCostParamEntry{{ExtensionPoint{{0}}, {}, {}}};",
                cpu.const_term, cpu.lin_term.0
            );
            println!("break;");
        }
        // mem
        println!();
        println!();
        println!();
        for ct in ContractCostType::variants() {
            let Ok(mem) = self.mem_bytes.get_cost_model(ct) else {
                continue;
            };
            println!("case {}:", ct.name());
            println!(
                "params[val] = ContractCostParamEntry{{ExtensionPoint{{0}}, {}, {}}};",
                mem.const_term, mem.lin_term.0
            );
            println!("break;");
        }
        println!();
        println!();
        println!();
    }
}

#[derive(Clone)]
pub struct Budget(pub(crate) Rc<RefCell<BudgetImpl>>);

#[allow(clippy::derivable_impls)]
impl Default for Budget {
    fn default() -> Self {
        #[cfg(all(not(target_family = "wasm"), feature = "tracy"))]
        let _client = tracy_client::Client::start();
        Self(Default::default())
    }
}

impl Debug for Budget {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        writeln!(f, "{:?}", self.0.try_borrow().map_err(|_| std::fmt::Error)?)
    }
}

impl Display for Budget {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        writeln!(f, "{}", self.0.try_borrow().map_err(|_| std::fmt::Error)?)
    }
}

pub trait AsBudget: Clone {
    fn as_budget(&self) -> &Budget;
}

impl AsBudget for Budget {
    fn as_budget(&self) -> &Budget {
        self
    }
}

impl AsBudget for &Budget {
    fn as_budget(&self) -> &Budget {
        self
    }
}

impl AsBudget for Host {
    fn as_budget(&self) -> &Budget {
        self.budget_ref()
    }
}

impl AsBudget for &Host {
    fn as_budget(&self) -> &Budget {
        self.budget_ref()
    }
}

impl Budget {
    /// Initializes the budget from network configuration settings.
    pub fn try_from_configs(
        cpu_limit: u64,
        mem_limit: u64,
        cpu_cost_params: ContractCostParams,
        mem_cost_params: ContractCostParams,
    ) -> Result<Self, HostError> {
        Ok(Self(Rc::new(RefCell::new(BudgetImpl::try_from_configs(
            cpu_limit,
            mem_limit,
            cpu_cost_params,
            mem_cost_params,
        )?))))
    }

    // Helper function to avoid panics from multiple borrow_muts
    fn with_mut_budget<T, F>(&self, f: F) -> Result<T, HostError>
    where
        F: FnOnce(RefMut<BudgetImpl>) -> Result<T, HostError>,
    {
        f(self.0.try_borrow_mut_or_err()?)
    }

    /// Performs a bulk charge to the budget under the specified [`CostType`].
    /// The `iterations` is the batch size. The caller needs to ensure:
    /// 1. the batched charges have identical costs (having the same
    /// [`CostType`] and `input`)
    /// 2. The input passed in (Some/None) is consistent with the [`CostModel`]
    /// underneath the [`CostType`] (linear/constant).
    pub fn bulk_charge(
        &self,
        ty: ContractCostType,
        iterations: u64,
        input: Option<u64>,
    ) -> Result<(), HostError> {
        self.0
            .try_borrow_mut_or_err()?
            .charge(ty, iterations, input)
    }

    /// Charges the budget under the specified [`CostType`]. The actual amount
    /// charged is determined by the underlying [`CostModel`] and may depend on
    /// the input. If the input is `None`, the model is assumed to be constant.
    /// Otherwise it is a linear model.  The caller needs to ensure the input
    /// passed is consistent with the inherent model underneath.
    pub fn charge(&self, ty: ContractCostType, input: Option<u64>) -> Result<(), HostError> {
        self.0.try_borrow_mut_or_err()?.charge(ty, 1, input)
    }

    /// Runs a user provided closure in shadow mode -- all metering is done
    /// through the shadow budget.
    ///
    /// Because shadow mode is _designed not to be observed_ (indeed it exists
    /// primarily to count actions against the shadow budget that are _optional_
    /// on a given host, such as debug logging, and that therefore must strictly
    /// must not be observed), any error that occurs during execution is
    /// swallowed.
    pub(crate) fn with_shadow_mode<T, F>(&self, f: F)
    where
        F: FnOnce() -> Result<T, HostError>,
    {
        let mut prev = false;

        if self
            .with_mut_budget(|mut b| {
                prev = b.is_in_shadow_mode;
                b.is_in_shadow_mode = true;
                b.cpu_insns.check_budget_limit(IsShadowMode(true))?;
                b.mem_bytes.check_budget_limit(IsShadowMode(true))
            })
            .is_ok()
        {
            let _ = f();
        }

        let _ = self.with_mut_budget(|mut b| {
            b.is_in_shadow_mode = prev;
            Ok(())
        });
    }

    pub(crate) fn is_in_shadow_mode(&self) -> Result<bool, HostError> {
        Ok(self.0.try_borrow_or_err()?.is_in_shadow_mode)
    }

    pub(crate) fn set_shadow_limits(&self, cpu: u64, mem: u64) -> Result<(), HostError> {
        self.0.try_borrow_mut_or_err()?.cpu_insns.shadow_limit = cpu;
        self.0.try_borrow_mut_or_err()?.mem_bytes.shadow_limit = mem;
        Ok(())
    }

    pub(crate) fn ensure_shadow_cpu_limit_factor(&self, factor: u64) -> Result<(), HostError> {
        let mut b = self.0.try_borrow_mut_or_err()?;
        b.cpu_insns.shadow_limit = b.cpu_insns.limit.saturating_mul(factor);
        Ok(())
    }

    pub(crate) fn ensure_shadow_mem_limit_factor(&self, factor: u64) -> Result<(), HostError> {
        let mut b = self.0.try_borrow_mut_or_err()?;
        b.mem_bytes.shadow_limit = b.mem_bytes.limit.saturating_mul(factor);
        Ok(())
    }

    pub fn get_tracker(&self, ty: ContractCostType) -> Result<CostTracker, HostError> {
        self.0
            .try_borrow_or_err()?
            .tracker
            .cost_trackers
            .get(ty as usize)
            .map(|x| *x)
            .ok_or_else(|| (ScErrorType::Budget, ScErrorCode::InternalError).into())
    }

    pub fn get_time(&self, ty: ContractCostType) -> Result<u64, HostError> {
        self.0.try_borrow_or_err()?.tracker.get_time(ty)
    }

    pub fn track_time(&self, ty: ContractCostType, duration: u64) -> Result<(), HostError> {
        self.0
            .try_borrow_mut_or_err()?
            .tracker
            .track_time(ty, duration)
    }

    pub fn get_cpu_insns_consumed(&self) -> Result<u64, HostError> {
        Ok(self.0.try_borrow_or_err()?.cpu_insns.get_total_count())
    }

    pub fn get_mem_bytes_consumed(&self) -> Result<u64, HostError> {
        Ok(self.0.try_borrow_or_err()?.mem_bytes.get_total_count())
    }

    pub fn get_cpu_insns_remaining(&self) -> Result<u64, HostError> {
        Ok(self.0.try_borrow_or_err()?.cpu_insns.get_remaining())
    }

    pub fn get_mem_bytes_remaining(&self) -> Result<u64, HostError> {
        Ok(self.0.try_borrow_or_err()?.mem_bytes.get_remaining())
    }

    pub(crate) fn get_wasmi_fuel_remaining(&self) -> Result<u64, HostError> {
        self.0.try_borrow_mut_or_err()?.get_wasmi_fuel_remaining()
    }

    pub fn reset_default(&self) -> Result<(), HostError> {
        *self.0.try_borrow_mut_or_err()? = BudgetImpl::default();
        Ok(())
    }
}

#[test]
fn test_budget_initialization() -> Result<(), HostError> {
    use crate::xdr::{ContractCostParamEntry, ExtensionPoint};
    let cpu_cost_params = ContractCostParams(
        vec![
            ContractCostParamEntry {
                ext: ExtensionPoint::V0,
                const_term: 35,
                linear_term: 36,
            },
            ContractCostParamEntry {
                ext: ExtensionPoint::V0,
                const_term: 37,
                linear_term: 38,
            },
        ]
        .try_into()
        .unwrap(),
    );
    let mem_cost_params = ContractCostParams(
        vec![
            ContractCostParamEntry {
                ext: ExtensionPoint::V0,
                const_term: 39,
                linear_term: 40,
            },
            ContractCostParamEntry {
                ext: ExtensionPoint::V0,
                const_term: 41,
                linear_term: 42,
            },
            ContractCostParamEntry {
                ext: ExtensionPoint::V0,
                const_term: 43,
                linear_term: 44,
            },
        ]
        .try_into()
        .unwrap(),
    );

    let budget = Budget::try_from_configs(100, 100, cpu_cost_params, mem_cost_params)?;
    assert_eq!(
        budget.0.try_borrow_or_err()?.cpu_insns.cost_models.len(),
        ContractCostType::variants().len()
    );
    assert_eq!(
        budget.0.try_borrow_or_err()?.mem_bytes.cost_models.len(),
        ContractCostType::variants().len()
    );
    assert_eq!(
        budget.0.try_borrow_or_err()?.tracker.cost_trackers.len(),
        ContractCostType::variants().len()
    );
    assert_eq!(
        budget.0.try_borrow_or_err()?.tracker.time_tracker.len(),
        ContractCostType::variants().len()
    );

    Ok(())
}