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
//! Speculative async call registry.
use crate::active_history::ActiveHistory;
use massa_deferred_calls::{
config::DeferredCallsConfig, registry_changes::DeferredCallRegistryChanges, DeferredCall,
DeferredSlotCalls,
};
use massa_execution_exports::ExecutionError;
use massa_final_state::FinalStateController;
use massa_models::{
address::Address, amount::Amount, config::MAX_ASYNC_GAS, deferred_calls::DeferredCallId,
slot::Slot,
};
use parking_lot::RwLock;
use std::{
cmp::{max, min},
sync::Arc,
};
const TARGET_BOOKING: u128 = (MAX_ASYNC_GAS / 2) as u128;
pub(crate) struct SpeculativeDeferredCallRegistry {
final_state: Arc<RwLock<dyn FinalStateController>>,
active_history: Arc<RwLock<ActiveHistory>>,
// current speculative registry changes
deferred_calls_changes: DeferredCallRegistryChanges,
config: DeferredCallsConfig,
}
impl SpeculativeDeferredCallRegistry {
/// Creates a new `SpeculativeDeferredCallRegistry`
///
/// # Arguments
pub fn new(
final_state: Arc<RwLock<dyn FinalStateController>>,
active_history: Arc<RwLock<ActiveHistory>>,
config: DeferredCallsConfig,
) -> Self {
SpeculativeDeferredCallRegistry {
final_state,
active_history,
deferred_calls_changes: Default::default(),
config,
}
}
/// Takes a snapshot (clone) of the message states
pub fn get_snapshot(&self) -> DeferredCallRegistryChanges {
self.deferred_calls_changes.clone()
}
/// Resets the `SpeculativeDeferredCallRegistry` to a snapshot (see `get_snapshot` method)
pub fn reset_to_snapshot(&mut self, snapshot: DeferredCallRegistryChanges) {
self.deferred_calls_changes = snapshot;
}
/// Add a new call to the list of changes of this `SpeculativeDeferredCallRegistry`
pub fn push_new_call(&mut self, id: DeferredCallId, call: DeferredCall) {
self.deferred_calls_changes.set_call(id, call);
}
pub fn get_effective_total_gas(&self) -> u128 {
// get total gas from current changes
if let Some(v) = self.deferred_calls_changes.get_effective_total_gas() {
return v;
}
// check in history backwards
{
let history = self.active_history.read();
for history_item in history.0.iter().rev() {
if let Some(v) = history_item
.state_changes
.deferred_call_changes
.get_effective_total_gas()
{
return v;
}
}
}
// check in final state
return self
.final_state
.read()
.get_deferred_call_registry()
.get_total_gas();
}
pub fn get_effective_slot_gas(&self, slot: &Slot) -> u64 {
// get slot gas from current changes
if let Some(v) = self.deferred_calls_changes.get_effective_slot_gas(slot) {
return v;
}
// check in history backwards
{
let history = self.active_history.read();
for history_item in history.0.iter().rev() {
if let Some(v) = history_item
.state_changes
.deferred_call_changes
.get_effective_slot_gas(slot)
{
return v;
}
}
}
// check in final state
return self
.final_state
.read()
.get_deferred_call_registry()
.get_slot_gas(slot);
}
pub fn get_slot_base_fee(&self, slot: &Slot) -> Amount {
// get slot base fee from current changes
if let Some(v) = self.deferred_calls_changes.get_slot_base_fee(slot) {
return v;
}
// check in history backwards
{
let history = self.active_history.read();
for history_item in history.0.iter().rev() {
if let Some(v) = history_item
.state_changes
.deferred_call_changes
.get_slot_base_fee(slot)
{
return v;
}
}
}
// check in final state
return self
.final_state
.read()
.get_deferred_call_registry()
.get_slot_base_fee(slot);
}
/// Consumes and deletes the current slot, prepares a new slot in the future
/// and returns the calls that need to be executed in the current slot
pub fn advance_slot(&mut self, current_slot: Slot) -> DeferredSlotCalls {
// get the state of the current slot
let mut slot_calls = self.get_calls_by_slot(current_slot);
let total_booked_gas_before = self.get_effective_total_gas();
// get the previous average booking rate per slot
let avg_booked_gas =
total_booked_gas_before.saturating_div(self.config.max_future_slots as u128);
// select the slot that is newly made available and set its base fee
let new_slot = current_slot
.skip(self.config.max_future_slots, self.config.thread_count)
.expect("could not skip enough slots");
let prev_slot = new_slot
.get_prev_slot(self.config.thread_count)
.expect("cannot get prev slot");
let prev_slot_base_fee = {
let temp_slot_fee = self.get_slot_base_fee(&prev_slot);
if temp_slot_fee.eq(&Amount::zero()) {
Amount::from_raw(self.config.min_gas_cost)
} else {
temp_slot_fee
}
};
let new_slot_base_fee = match avg_booked_gas.cmp(&TARGET_BOOKING) {
// the previous booking rate was exactly the expected one: do not adjust the base fee
std::cmp::Ordering::Equal => prev_slot_base_fee,
// more gas was booked than expected: increase the base fee
std::cmp::Ordering::Greater => {
let gas_used_delta = avg_booked_gas.saturating_sub(TARGET_BOOKING) as u64;
let raw_v = prev_slot_base_fee.to_raw().saturating_add(max(
gas_used_delta
.saturating_div(self.config.base_fee_max_max_change_denominator as u64),
self.config.min_gas_increment,
));
Amount::from_raw(min(1_000_000_000, raw_v))
}
// less gas was booked than expected: decrease the base fee
std::cmp::Ordering::Less => {
let gas_used_delta = TARGET_BOOKING.saturating_sub(avg_booked_gas) as u64;
let raw_v = max(
prev_slot_base_fee
.to_raw()
.saturating_sub(gas_used_delta.saturating_div(
self.config.base_fee_max_max_change_denominator as u64,
)),
self.config.min_gas_cost,
);
Amount::from_raw(min(1_000_000_000, raw_v))
}
};
self.deferred_calls_changes
.set_slot_base_fee(new_slot, new_slot_base_fee);
// subtract the current slot gas from the total gas
// cancelled call gas is already decremented from the effective slot gas
let total_gas_after =
total_booked_gas_before.saturating_sub(slot_calls.effective_slot_gas.into());
if !total_gas_after.eq(&total_booked_gas_before) {
self.deferred_calls_changes
.set_effective_total_gas(total_gas_after);
}
slot_calls.effective_total_gas = total_gas_after;
// delete call in the current slot
for id in slot_calls.slot_calls.keys() {
self.delete_call(id, current_slot);
}
slot_calls
}
pub fn get_calls_by_slot(&self, slot: Slot) -> DeferredSlotCalls {
let mut slot_calls: DeferredSlotCalls = self
.final_state
.read()
.get_deferred_call_registry()
.get_slot_calls(slot);
for hist_item in self.active_history.read().0.iter() {
slot_calls.apply_changes(&hist_item.state_changes.deferred_call_changes);
}
slot_calls.apply_changes(&self.deferred_calls_changes);
slot_calls
}
pub fn get_call(&self, id: &DeferredCallId) -> Option<DeferredCall> {
let slot = match id.get_slot() {
Ok(slot) => slot,
Err(_) => return None,
};
// check from latest to earliest changes
// check in current changes
if let Some(v) = self.deferred_calls_changes.get_call(&slot, id) {
return Some(v.clone());
}
// check history from the most recent to the oldest item
{
let history = self.active_history.read();
for history_item in history.0.iter().rev() {
if let Some(v) = history_item
.state_changes
.deferred_call_changes
.get_call(&slot, id)
{
return Some(v.clone());
}
}
}
// check final state
{
let final_state = self.final_state.read();
// if let Some(v) = final_state.get_deferred_call_registry().get_call(&slot, id) {
if let Some(v) = final_state.get_deferred_call_registry().get_call(&slot, id) {
return Some(v.clone());
}
}
None
}
pub fn delete_call(&mut self, id: &DeferredCallId, slot: Slot) {
self.deferred_calls_changes.delete_call(slot, id)
}
/// Cancel a call
/// Returns the sender address and the amount of coins to reimburse them
pub fn cancel_call(
&mut self,
id: &DeferredCallId,
) -> Result<(Address, Amount), ExecutionError> {
// get call, fail if it does not exist
let Some(mut call) = self.get_call(id) else {
return Err(ExecutionError::DeferredCallsError(
"Call ID does not exist.".into(),
));
};
// check if the call is already cancelled
if call.cancelled {
return Err(ExecutionError::DeferredCallsError(
"Call ID is already cancelled.".into(),
));
}
// set call as cancelled
call.cancelled = true;
// we need to reimburse coins to the sender
let res: (Address, Amount) = (call.sender_address, call.coins);
// Add a cancellation to the current changes
self.deferred_calls_changes
.set_call(id.clone(), call.clone());
Ok(res)
}
// This function assumes that we have a resource with a total supply `resource_supply`.
// Below a certain target occupancy `target_occupancy` of that resource, the overbooking penalty for using a unit of the resource is zero.
// Above the target, the resource unit cost grows linearly with occupancy.
// The linear fee growth is chosen so that if someone occupies all the resource, they incur a `max_penalty` cost.
fn overbooking_fee(
resource_supply: u128,
target_occupancy: u128,
current_occupancy: u128,
resource_request: u128,
max_penalty: Amount,
) -> Result<Amount, ExecutionError> {
// linear part of the occupancy before booking the requested amount
let relu_occupancy_before = current_occupancy.saturating_sub(target_occupancy);
// linear part of the occupancy after booking the requested amount
let relu_occupancy_after = std::cmp::max(
current_occupancy.saturating_add(resource_request),
target_occupancy,
)
.saturating_sub(target_occupancy);
// denominator for the linear fee
let denominator = resource_supply.checked_sub(target_occupancy).ok_or(
ExecutionError::DeferredCallsError("Error with denominator on overbooking fee".into()),
)?;
if denominator.eq(&0) {
// TODO : check if this is correct
return Err(ExecutionError::DeferredCallsError(
"Denominator is zero on overbooking fee".into(),
));
}
// compute using the raw fee and u128 to avoid u64 overflows
let raw_max_penalty = max_penalty.to_raw() as u128;
let raw_fee = (raw_max_penalty.saturating_mul(
(relu_occupancy_after.saturating_mul(relu_occupancy_after))
.saturating_sub(relu_occupancy_before.saturating_mul(relu_occupancy_before)),
))
.saturating_div(denominator.saturating_mul(denominator));
Ok(Amount::from_raw(min(raw_fee, u64::MAX as u128) as u64))
}
/// Compute call fee
pub fn compute_call_fee(
&self,
target_slot: Slot,
max_gas_request: u64,
current_slot: Slot,
params_size: u64,
) -> Result<Amount, ExecutionError> {
// Check that the slot is not in the past
if target_slot <= current_slot {
return Err(ExecutionError::DeferredCallsError(
"Target slot is in the past.".into(),
));
}
// Check that the slot is not in the future
if target_slot
.slots_since(¤t_slot, self.config.thread_count)
.unwrap_or(u64::MAX)
> self.config.max_future_slots
{
// note: the current slot is not counted
return Err(ExecutionError::DeferredCallsError(
"Target slot is too far in the future.".into(),
));
}
// Check that the gas is not too high for the target slot
let slot_occupancy = self.get_effective_slot_gas(&target_slot);
if slot_occupancy.saturating_add(max_gas_request) > self.config.max_gas {
return Err(ExecutionError::DeferredCallsError(
"Not enough gas available in the target slot.".into(),
));
}
if params_size > self.config.max_parameter_size.into() {
return Err(ExecutionError::DeferredCallsError(
"Parameters size is too big.".into(),
));
}
// We perform Dynamic Pricing of slot gas booking using a Proportional-Integral controller (https://en.wikipedia.org/wiki/Proportional–integral–derivative_controller).
// It regulates the average slot async gas usage towards `target_async_gas` by adjusting fees.
// Constant part of the fee: directly depends on the base async gas cost for the target slot.
// This is the "Integral" part of the Proportional-Integral controller.
// When a new slot `S` is made available for booking, the `S.base_async_gas_cost` is increased or decreased compared to `(S-1).base_async_gas_cost` depending on the average gas usage over the `deferred_call_max_future_slots` slots before `S`.
// Integral fee
let integral_fee = self
.get_slot_base_fee(&target_slot)
.saturating_mul_u64(max_gas_request);
// The integral fee is not enough to respond to quick demand surges within the long booking period `deferred_call_max_future_slots`. Proportional regulation is also necessary.
// A fee that linearly depends on the total load over `deferred_call_max_future_slots` slots but only when the average load is above `target_async_gas` to not penalize normal use. Booking all the gas from all slots within the booking period requires using the whole initial coin supply.
// Global overbooking fee
let global_occupancy = self.get_effective_total_gas();
let global_overbooking_fee = Self::overbooking_fee(
(self.config.max_gas as u128).saturating_mul(self.config.max_future_slots as u128), // total available async gas during the booking period
(self.config.max_future_slots as u128).saturating_mul(TARGET_BOOKING), // target a 50% async gas usage over the booking period
global_occupancy, // total amount of async gas currently booked in the booking period
max_gas_request as u128, // amount of gas to book
self.config.global_overbooking_penalty, // fully booking all slots of the booking period requires spending the whole initial supply of coins
)?;
// Finally, a per-slot proportional fee is also added to prevent attackers from denying significant ranges of consecutive slots within the long booking period.
// Slot overbooking fee
let slot_overbooking_fee = Self::overbooking_fee(
self.config.max_gas as u128, // total available async gas during the target slot
TARGET_BOOKING, // target a 50% async gas usage during the target slot
slot_occupancy as u128, // total amount of async gas currently booked in the target slot
max_gas_request as u128, // amount of gas to book in the target slot
self.config.slot_overbooking_penalty, // total_initial_coin_supply/10000
)?;
// Storage cost for the parameters
let storage_cost = DeferredCall::get_storage_cost(
self.config.ledger_cost_per_byte,
params_size,
self.config.max_function_name_length,
);
// return the fee
Ok(integral_fee
.saturating_add(global_overbooking_fee)
.saturating_add(slot_overbooking_fee)
.saturating_add(storage_cost))
}
/// Register a new call
/// Returns the call id
/// # Arguments
/// * `call` - The call to register
/// * `trail_hash` - The hash of the execution trail hash
pub fn register_call(
&mut self,
call: DeferredCall,
trail_hash: massa_hash::Hash,
) -> Result<DeferredCallId, ExecutionError> {
let mut index = 0;
if let Some(val) = self
.deferred_calls_changes
.slots_change
.get(&call.target_slot)
{
index += val.calls_len();
}
{
// final state
let slots_call = self
.final_state
.read()
.get_deferred_call_registry()
.get_slot_calls(call.target_slot);
index += slots_call.slot_calls.len();
}
let id = DeferredCallId::new(0, call.target_slot, index as u64, trail_hash.to_bytes())?;
self.push_new_call(id.clone(), call.clone());
let current_gas = self.get_effective_slot_gas(&call.target_slot);
// set slot gas for the target slot
// effective_slot_gas = current_gas + (call_gas + call_cst_gas_cost (vm allocation cost))
self.deferred_calls_changes.set_effective_slot_gas(
call.target_slot,
current_gas.saturating_add(call.get_effective_gas(self.config.call_cst_gas_cost)),
);
// set total effective gas
let effective_total_gas = self.get_effective_total_gas();
let call_effective_gas = call.get_effective_gas(self.config.call_cst_gas_cost) as u128;
self.deferred_calls_changes
.set_effective_total_gas(effective_total_gas.saturating_add(call_effective_gas));
Ok(id)
}
/// Take the deferred registry slot changes
pub(crate) fn take(&mut self) -> DeferredCallRegistryChanges {
std::mem::take(&mut self.deferred_calls_changes)
}
}
#[cfg(test)]
mod tests {
use std::{str::FromStr, sync::Arc};
use massa_db_exports::{MassaDBConfig, MassaDBController};
use massa_db_worker::MassaDB;
use massa_deferred_calls::{config::DeferredCallsConfig, DeferredCallRegistry};
use massa_final_state::MockFinalStateController;
use massa_models::{amount::Amount, config::THREAD_COUNT, slot::Slot};
use parking_lot::RwLock;
use tempfile::TempDir;
use super::SpeculativeDeferredCallRegistry;
#[test]
fn test_compute_call_fee() {
let disk_ledger = TempDir::new().expect("cannot create temp directory");
let db_config = MassaDBConfig {
path: disk_ledger.path().to_path_buf(),
max_history_length: 10,
max_final_state_elements_size: 100_000,
max_versioning_elements_size: 100_000,
thread_count: THREAD_COUNT,
max_ledger_backups: 10,
enable_metrics: false,
};
let db = Arc::new(RwLock::new(
Box::new(MassaDB::new(db_config)) as Box<(dyn MassaDBController + 'static)>
));
let mock_final_state = Arc::new(RwLock::new(MockFinalStateController::new()));
let deferred_call_registry =
DeferredCallRegistry::new(db.clone(), DeferredCallsConfig::default());
mock_final_state
.write()
.expect_get_deferred_call_registry()
.return_const(deferred_call_registry);
let config = DeferredCallsConfig::default();
let mut speculative = SpeculativeDeferredCallRegistry::new(
mock_final_state,
Arc::new(Default::default()),
config,
);
let max_period = config.max_future_slots / THREAD_COUNT as u64;
let slot_too_far = Slot {
period: max_period + 2,
thread: 1,
};
let good_slot = Slot {
period: 10,
thread: 1,
};
// slot to far in the future
assert!(speculative
.compute_call_fee(
slot_too_far,
1_000_000,
Slot {
period: 1,
thread: 1,
},
1_000
)
.is_err());
// slot is in the past
assert!(speculative
.compute_call_fee(
Slot {
period: 2,
thread: 1,
},
1_000_000,
Slot {
period: 5,
thread: 1,
},
1000
)
.is_err());
// gas too high
speculative
.deferred_calls_changes
.set_effective_slot_gas(good_slot, 999_000_000);
assert!(speculative
.compute_call_fee(
good_slot,
1_100_000,
Slot {
period: 1,
thread: 1,
},
1000
)
.is_err());
// params too big
assert!(speculative
.compute_call_fee(
good_slot,
1_000_000,
Slot {
period: 1,
thread: 1,
},
50_000_000
)
.is_err());
// no params
assert_eq!(
speculative
.compute_call_fee(
good_slot,
200_000,
Slot {
period: 1,
thread: 1,
},
0,
)
.unwrap(),
Amount::from_str("0.036600079").unwrap()
);
// 10Ko params size
assert_eq!(
speculative
.compute_call_fee(
good_slot,
200_000,
Slot {
period: 1,
thread: 1,
},
10_000,
)
.unwrap(),
Amount::from_str("1.036600079").unwrap()
);
}
}