forked from solana-labs/solana
-
Notifications
You must be signed in to change notification settings - Fork 1k
Fix - Invoke non program account owned by a builtin #5158
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Lichtso
merged 2 commits into
anza-xyz:master
from
Lichtso:fix/invoke_non_program_account_owned_by_a_builtin
Mar 10, 2025
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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
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 |
|---|---|---|
|
|
@@ -8392,6 +8392,46 @@ fn test_program_is_native_loader() { | |
| ); | ||
| } | ||
|
|
||
| #[test] | ||
| fn test_invoke_non_program_account_owned_by_a_builtin() { | ||
| let (genesis_config, mint_keypair) = create_genesis_config(10000000); | ||
| let mut bank = Bank::new_for_tests(&genesis_config); | ||
| bank.activate_feature(&feature_set::remove_accounts_executable_flag_checks::id()); | ||
| let (bank, _bank_forks) = bank.wrap_with_bank_forks_for_tests(); | ||
|
|
||
| let bogus_program = Pubkey::new_unique(); | ||
| bank.transfer( | ||
| genesis_config.rent.minimum_balance(0), | ||
| &mint_keypair, | ||
| &bogus_program, | ||
| ) | ||
| .unwrap(); | ||
|
|
||
| let created_account_keypair = Keypair::new(); | ||
| let mut ix = system_instruction::create_account( | ||
| &mint_keypair.pubkey(), | ||
| &created_account_keypair.pubkey(), | ||
| genesis_config.rent.minimum_balance(0), | ||
| 0, | ||
| &system_program::id(), | ||
| ); | ||
| // Calling an account owned by the system program, instead of calling the system program itself | ||
| ix.program_id = bogus_program; | ||
| let tx = Transaction::new_signed_with_payer( | ||
| &[ix], | ||
| Some(&mint_keypair.pubkey()), | ||
| &[&mint_keypair, &created_account_keypair], | ||
| bank.last_blockhash(), | ||
| ); | ||
| assert_eq!( | ||
| bank.process_transaction(&tx), | ||
| Err(TransactionError::InstructionError( | ||
| 0, | ||
| InstructionError::UnsupportedProgramId | ||
| )) | ||
| ); | ||
| } | ||
|
|
||
| #[test] | ||
| fn test_debug_bank() { | ||
| let (genesis_config, _mint_keypair) = create_genesis_config(50000); | ||
|
|
@@ -13556,15 +13596,15 @@ fn test_loader_v3_to_v4_migration() { | |
| finalized_migration_transaction.clone(), | ||
| Err(TransactionError::InstructionError( | ||
| 0, | ||
| InstructionError::InvalidInstructionData, | ||
| InstructionError::UnsupportedProgramId, | ||
|
Author
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. This is where I first noticed this issue. |
||
| )), | ||
| ), | ||
| ( | ||
| uninitialized_programdata_account, | ||
| finalized_migration_transaction.clone(), | ||
| Err(TransactionError::InstructionError( | ||
| 0, | ||
| InstructionError::InvalidInstructionData, | ||
| InstructionError::UnsupportedProgramId, | ||
| )), | ||
| ), | ||
| ( | ||
|
|
||
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.
Shouldn't we apply the same checks to account loading? We could get rid of all of the
validated_loaderslogic there.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 is why I added you as reviewer ;)
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.
Haha, great, follow up PR then? And these changes should be amended to the SIMD: solana-foundation/solana-improvement-documents#162