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
// Copyright (c) 2021, Facebook, Inc. and its affiliates
// Copyright (c) Mysten Labs, Inc.
// Modifications Copyright (c) 2024 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0
pub use checked::*;
#[iota_macros::with_checked_arithmetic]
pub mod checked {
use enum_dispatch::enum_dispatch;
use iota_protocol_config::ProtocolConfig;
use itertools::MultiUnzip;
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};
use serde_with::serde_as;
use crate::{
ObjectID,
effects::{TransactionEffects, TransactionEffectsAPI},
error::{ExecutionError, IotaResult, UserInputError, UserInputResult},
gas_model::{gas_v1::IotaGasStatus as IotaGasStatusV1, tables::GasStatus},
iota_serde::{BigInt, Readable},
object::Object,
transaction::ObjectReadResult,
};
#[enum_dispatch]
pub trait IotaGasStatusAPI {
fn is_unmetered(&self) -> bool;
fn move_gas_status(&self) -> &GasStatus;
fn move_gas_status_mut(&mut self) -> &mut GasStatus;
fn bucketize_computation(&mut self) -> Result<(), ExecutionError>;
fn summary(&self) -> GasCostSummary;
fn gas_budget(&self) -> u64;
fn storage_gas_units(&self) -> u64;
fn storage_rebate(&self) -> u64;
fn unmetered_storage_rebate(&self) -> u64;
fn gas_used(&self) -> u64;
fn reset_storage_cost_and_rebate(&mut self);
fn charge_storage_read(&mut self, size: usize) -> Result<(), ExecutionError>;
fn charge_publish_package(&mut self, size: usize) -> Result<(), ExecutionError>;
fn track_storage_mutation(
&mut self,
object_id: ObjectID,
new_size: usize,
storage_rebate: u64,
) -> u64;
fn charge_storage_and_rebate(&mut self) -> Result<(), ExecutionError>;
fn adjust_computation_on_out_of_gas(&mut self);
}
/// Version aware enum for gas status.
#[enum_dispatch(IotaGasStatusAPI)]
#[derive(Debug)]
pub enum IotaGasStatus {
V1(IotaGasStatusV1),
}
impl IotaGasStatus {
pub fn new(
gas_budget: u64,
gas_price: u64,
reference_gas_price: u64,
config: &ProtocolConfig,
) -> IotaResult<Self> {
// Common checks. We may pull them into version specific status as needed, but
// they are unlikely to change.
// gas price must be bigger or equal to reference gas price
if gas_price < reference_gas_price {
return Err(UserInputError::GasPriceUnderRGP {
gas_price,
reference_gas_price,
}
.into());
}
if gas_price > config.max_gas_price() {
return Err(UserInputError::GasPriceTooHigh {
max_gas_price: config.max_gas_price(),
}
.into());
}
Ok(Self::V1(IotaGasStatusV1::new_with_budget(
gas_budget,
gas_price,
reference_gas_price,
config,
)))
}
pub fn new_unmetered() -> Self {
Self::V1(IotaGasStatusV1::new_unmetered())
}
// This is the only public API on IotaGasStatus, all other gas related
// operations should go through `GasCharger`
pub fn check_gas_balance(
&self,
gas_objs: &[&ObjectReadResult],
gas_budget: u64,
) -> UserInputResult {
match self {
Self::V1(status) => status.check_gas_balance(gas_objs, gas_budget),
}
}
}
/// Summary of the charges in a transaction.
/// Storage is charged independently of computation.
/// There are 3 parts to the storage charges:
/// `storage_cost`: it is the charge of storage at the time the transaction
/// is executed. The cost of storage is the number of
/// bytes of the objects being mutated multiplied by a
/// variable storage cost per byte `storage_rebate`: this is the amount
/// a user gets back when manipulating an object. The
/// `storage_rebate` is the `storage_cost` for an object minus fees.
/// `non_refundable_storage_fee`: not all the value of the object storage
/// cost is given back to user and there
/// is a small fraction that is kept by
/// the system. This value tracks that charge.
///
/// When looking at a gas cost summary the amount charged to the user is
/// `computation_cost + storage_cost - storage_rebate`
/// and that is the amount that is deducted from the gas coins.
/// `non_refundable_storage_fee` is collected from the objects being
/// mutated/deleted and it is tracked by the system in storage funds.
///
/// Objects deleted, including the older versions of objects mutated, have
/// the storage field on the objects added up to a pool of "potential
/// rebate". This rebate then is reduced by the "nonrefundable rate"
/// such that: `potential_rebate(storage cost of deleted/mutated
/// objects) = storage_rebate + non_refundable_storage_fee`
#[serde_as]
#[derive(Eq, PartialEq, Clone, Debug, Default, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "camelCase")]
pub struct GasCostSummary {
/// Cost of computation/execution
#[schemars(with = "BigInt<u64>")]
#[serde_as(as = "Readable<BigInt<u64>, _>")]
pub computation_cost: u64,
/// The burned component of the computation/execution costs
#[schemars(with = "BigInt<u64>")]
#[serde_as(as = "Readable<BigInt<u64>, _>")]
pub computation_cost_burned: u64,
/// Storage cost, it's the sum of all storage cost for all objects
/// created or mutated.
#[schemars(with = "BigInt<u64>")]
#[serde_as(as = "Readable<BigInt<u64>, _>")]
pub storage_cost: u64,
/// The amount of storage cost refunded to the user for all objects
/// deleted or mutated in the transaction.
#[schemars(with = "BigInt<u64>")]
#[serde_as(as = "Readable<BigInt<u64>, _>")]
pub storage_rebate: u64,
/// The fee for the rebate. The portion of the storage rebate kept by
/// the system.
#[schemars(with = "BigInt<u64>")]
#[serde_as(as = "Readable<BigInt<u64>, _>")]
pub non_refundable_storage_fee: u64,
}
impl GasCostSummary {
pub fn new(
computation_cost: u64,
computation_cost_burned: u64,
storage_cost: u64,
storage_rebate: u64,
non_refundable_storage_fee: u64,
) -> GasCostSummary {
GasCostSummary {
computation_cost,
computation_cost_burned,
storage_cost,
storage_rebate,
non_refundable_storage_fee,
}
}
pub fn gas_used(&self) -> u64 {
self.computation_cost + self.storage_cost
}
/// Portion of the storage rebate that gets passed on to the transaction
/// sender. The remainder will be burned, then re-minted + added
/// to the storage fund at the next epoch change
pub fn sender_rebate(&self, storage_rebate_rate: u64) -> u64 {
// we round storage rebate such that `>= x.5` goes to x+1 (rounds up) and
// `< x.5` goes to x (truncates). We replicate `f32/64::round()`
const BASIS_POINTS: u128 = 10000;
(((self.storage_rebate as u128 * storage_rebate_rate as u128)
+ (BASIS_POINTS / 2)) // integer rounding adds half of the BASIS_POINTS (denominator)
/ BASIS_POINTS) as u64
}
/// Get net gas usage, positive number means used gas; negative number
/// means refund.
pub fn net_gas_usage(&self) -> i64 {
self.gas_used() as i64 - self.storage_rebate as i64
}
#[allow(clippy::type_complexity)]
pub fn new_from_txn_effects<'a>(
transactions: impl Iterator<Item = &'a TransactionEffects>,
) -> GasCostSummary {
let (
storage_costs,
computation_costs,
computation_costs_burned,
storage_rebates,
non_refundable_storage_fee,
): (Vec<u64>, Vec<u64>, Vec<u64>, Vec<u64>, Vec<u64>) = transactions
.map(|e| {
(
e.gas_cost_summary().storage_cost,
e.gas_cost_summary().computation_cost,
e.gas_cost_summary().computation_cost_burned,
e.gas_cost_summary().storage_rebate,
e.gas_cost_summary().non_refundable_storage_fee,
)
})
.multiunzip();
GasCostSummary {
storage_cost: storage_costs.iter().sum(),
computation_cost: computation_costs.iter().sum(),
computation_cost_burned: computation_costs_burned.iter().sum(),
storage_rebate: storage_rebates.iter().sum(),
non_refundable_storage_fee: non_refundable_storage_fee.iter().sum(),
}
}
}
impl std::fmt::Display for GasCostSummary {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(
f,
"computation_cost: {}, computation_cost_burned: {}, storage_cost: {}, storage_rebate: {}, non_refundable_storage_fee: {}",
self.computation_cost,
self.computation_cost_burned,
self.storage_cost,
self.storage_rebate,
self.non_refundable_storage_fee,
)
}
}
impl std::ops::AddAssign<&Self> for GasCostSummary {
fn add_assign(&mut self, other: &Self) {
self.computation_cost += other.computation_cost;
self.computation_cost_burned += other.computation_cost_burned;
self.storage_cost += other.storage_cost;
self.storage_rebate += other.storage_rebate;
self.non_refundable_storage_fee += other.non_refundable_storage_fee;
}
}
impl std::ops::AddAssign<Self> for GasCostSummary {
fn add_assign(&mut self, other: Self) {
self.add_assign(&other)
}
}
// Helper functions to deal with gas coins operations.
//
pub fn deduct_gas(gas_object: &mut Object, charge_or_rebate: i64) {
// The object must be a gas coin as we have checked in transaction handle phase.
let gas_coin = gas_object.data.try_as_move_mut().unwrap();
let balance = gas_coin.get_coin_value_unsafe();
let new_balance = if charge_or_rebate < 0 {
balance + (-charge_or_rebate as u64)
} else {
assert!(balance >= charge_or_rebate as u64);
balance - charge_or_rebate as u64
};
gas_coin.set_coin_value_unsafe(new_balance)
}
pub fn get_gas_balance(gas_object: &Object) -> UserInputResult<u64> {
if let Some(move_obj) = gas_object.data.try_as_move() {
if !move_obj.type_().is_gas_coin() {
return Err(UserInputError::InvalidGasObject {
object_id: gas_object.id(),
});
}
Ok(move_obj.get_coin_value_unsafe())
} else {
Err(UserInputError::InvalidGasObject {
object_id: gas_object.id(),
})
}
}
}