This repository was archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Hard-cap the execution time of custom contract calls. #4226
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -39,7 +39,16 @@ const RUNTIME_ERROR: i64 = 1; | |
| const CONTRACT_DOESNT_EXIST: i64 = 2; | ||
| const CONTRACT_IS_A_TOMBSTONE: i64 = 3; | ||
|
|
||
| // A private newtype for converting `GetStorageError` into an RPC error. | ||
| /// A rough estimate of how much gas a decent hardware consumes per second, | ||
| /// using native execution. | ||
| /// This value is used to set the upper bound for maximal contract calls to | ||
| /// prevent blocking the RPC for too long. | ||
| /// | ||
| /// Based on W3F research spreadsheet: | ||
| /// https://docs.google.com/spreadsheets/d/1h0RqncdqiWI4KgxO0z9JIpZEJESXjX_ZCK6LFX6veDo/view | ||
| const GAS_PER_SECOND: u64 = 1_000_000_000; | ||
|
|
||
| /// A private newtype for converting `GetStorageError` into an RPC error. | ||
| struct GetStorageError(runtime_api::GetStorageError); | ||
| impl From<GetStorageError> for Error { | ||
| fn from(e: GetStorageError) -> Error { | ||
|
|
@@ -148,6 +157,19 @@ where | |
| data: None, | ||
| })?; | ||
|
|
||
| let max_gas_limit = 5 * GAS_PER_SECOND; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd add the "interpretation" you put in the PR description as a comment here |
||
| if gas_limit > max_gas_limit { | ||
| return Err(Error { | ||
| code: ErrorCode::InvalidParams, | ||
| message: format!( | ||
| "Requested gas limit is greater than maximum allowed: {} > {}", | ||
| gas_limit, | ||
| max_gas_limit | ||
| ), | ||
| data: None, | ||
| }); | ||
| } | ||
|
|
||
| let exec_result = api | ||
| .call(&at, origin, dest, value, gas_limit, input_data.to_vec()) | ||
| .map_err(|e| Error { | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't have permissions to view this, so I'm guessing others won't either. Who do we talk to about making this public?