This repository was archived by the owner on Jan 22, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
CPI Account Reuse #19762
Merged
Lichtso
merged 8 commits into
solana-labs:master
from
Lichtso:refactor/cpi_syscall_account_reuse
Sep 18, 2021
Merged
CPI Account Reuse #19762
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
5671590
Moves construction of Account struct out of translate_accounts() into…
Lichtso c2d1097
Cleanup invoke_context borrowing chaos part 1.
Lichtso e1c6911
Cleanup invoke_context borrowing chaos part 2.
Lichtso f07fff8
Removes two account copy steps from InstructionProcessor::native_invo…
Lichtso 533e381
Moves gathering of keyed_accounts and caller_write_privileges into In…
Lichtso 96fada1
Moves gathering of program_indices into InstructionProcessor::create_…
Lichtso 7311988
Explicitly routes the serialized account lengths to enable sharing of…
Lichtso 81b3ba9
Recycles existing account structs in CPI syscall.
Lichtso 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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
Oops, something went wrong.
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.
This is neccessary because a CPI call will change the length of the account within this call?
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.
Yes, that was the missing puzzle piece I searched for the entire day.
The hidden purpose of the additional temporary account structs.
Because once the CPI calls recycle the existing account structs, it overwrites the length and so the deserialize of the caller program afterwards parses and writes back garbage.