Skip to content
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

Update syscalls code in definitions #4196

Merged
merged 1 commit into from
Jan 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions programs/bpf_loader/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ edition = { workspace = true }
bincode = { workspace = true }
byteorder = { workspace = true }
libsecp256k1 = { workspace = true }
log = { workspace = true }
scopeguard = { workspace = true }
solana-bn254 = { workspace = true }
solana-compute-budget = { workspace = true }
solana-curve25519 = { workspace = true }
solana-define-syscall = { workspace = true }
solana-feature-set = { workspace = true }
solana-log-collector = { workspace = true }
solana-measure = { workspace = true }
Expand All @@ -32,7 +32,6 @@ thiserror = { workspace = true }

[dev-dependencies]
assert_matches = { workspace = true }
memoffset = { workspace = true }
rand = { workspace = true }
solana-sdk = { workspace = true, features = ["dev-context-only-utils"] }
test-case = { workspace = true }
Expand Down
129 changes: 89 additions & 40 deletions programs/bpf_loader/src/syscalls/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ use {
ALT_BN128_PAIRING_ELEMENT_LEN, ALT_BN128_PAIRING_OUTPUT_LEN,
},
solana_compute_budget::compute_budget::ComputeBudget,
solana_define_syscall::codes,
solana_feature_set::{
self as feature_set, abort_on_invalid_curve, blake3_syscall_enabled,
bpf_account_data_direct_mapping, curve25519_syscall_enabled,
Expand Down Expand Up @@ -328,44 +329,64 @@ pub fn create_program_runtime_environment_v1<'a>(
let mut result = BuiltinProgram::new_loader_with_dense_registration(config);

// Abort
result.register_function("abort", 1, SyscallAbort::vm)?;
result.register_function("abort", codes::ABORT, SyscallAbort::vm)?;

// Panic
result.register_function("sol_panic_", 2, SyscallPanic::vm)?;
result.register_function("sol_panic_", codes::SOL_PANIC, SyscallPanic::vm)?;

// Logging
result.register_function("sol_log_", 7, SyscallLog::vm)?;
result.register_function("sol_log_64_", 8, SyscallLogU64::vm)?;
result.register_function("sol_log_pubkey", 9, SyscallLogPubkey::vm)?;
result.register_function("sol_log_compute_units_", 10, SyscallLogBpfComputeUnits::vm)?;
result.register_function("sol_log_", codes::SOL_LOG_, SyscallLog::vm)?;
result.register_function("sol_log_64_", codes::SOL_LOG_64_, SyscallLogU64::vm)?;
result.register_function(
"sol_log_pubkey",
codes::SOL_LOG_PUBKEY,
SyscallLogPubkey::vm,
)?;
result.register_function(
"sol_log_compute_units_",
codes::SOL_LOG_COMPUTE_UNITS_,
SyscallLogBpfComputeUnits::vm,
)?;

// Program defined addresses (PDA)
result.register_function(
"sol_create_program_address",
32,
codes::SOL_CREATE_PROGRAM_ADDRESS,
SyscallCreateProgramAddress::vm,
)?;
result.register_function(
"sol_try_find_program_address",
33,
codes::SOL_TRY_FIND_PROGRAM_ADDRESS,
SyscallTryFindProgramAddress::vm,
)?;

// Sha256
result.register_function("sol_sha256", 17, SyscallHash::vm::<Sha256Hasher>)?;
result.register_function(
"sol_sha256",
codes::SOL_SHA256,
SyscallHash::vm::<Sha256Hasher>,
)?;

// Keccak256
result.register_function("sol_keccak256", 18, SyscallHash::vm::<Keccak256Hasher>)?;
result.register_function(
"sol_keccak256",
codes::SOL_KECCAK256,
SyscallHash::vm::<Keccak256Hasher>,
)?;

// Secp256k1 Recover
result.register_function("sol_secp256k1_recover", 19, SyscallSecp256k1Recover::vm)?;
result.register_function(
"sol_secp256k1_recover",
codes::SOL_SECP256K1_RECOVER,
SyscallSecp256k1Recover::vm,
)?;

// Blake3
register_feature_gated_function!(
result,
blake3_syscall_enabled,
"sol_blake3",
20,
codes::SOL_BLAKE3,
SyscallHash::vm::<Blake3Hasher>,
)?;

Expand All @@ -374,86 +395,114 @@ pub fn create_program_runtime_environment_v1<'a>(
result,
curve25519_syscall_enabled,
"sol_curve_validate_point",
24,
codes::SOL_CURVE_VALIDATE_POINT,
SyscallCurvePointValidation::vm,
)?;
register_feature_gated_function!(
result,
curve25519_syscall_enabled,
"sol_curve_group_op",
25,
codes::SOL_CURVE_GROUP_OP,
SyscallCurveGroupOps::vm,
)?;
register_feature_gated_function!(
result,
curve25519_syscall_enabled,
"sol_curve_multiscalar_mul",
26,
codes::SOL_CURVE_MULTISCALAR_MUL,
SyscallCurveMultiscalarMultiplication::vm,
)?;

// Sysvars
result.register_function("sol_get_clock_sysvar", 36, SyscallGetClockSysvar::vm)?;
result.register_function(
"sol_get_clock_sysvar",
codes::SOL_GET_CLOCK_SYSVAR,
SyscallGetClockSysvar::vm,
)?;
result.register_function(
"sol_get_epoch_schedule_sysvar",
37,
codes::SOL_GET_EPOCH_SCHEDULE_SYSVAR,
SyscallGetEpochScheduleSysvar::vm,
)?;
register_feature_gated_function!(
result,
!disable_fees_sysvar,
"sol_get_fees_sysvar",
40,
codes::SOL_GET_FEES_SYSVAR,
SyscallGetFeesSysvar::vm,
)?;
result.register_function("sol_get_rent_sysvar", 41, SyscallGetRentSysvar::vm)?;
result.register_function(
"sol_get_rent_sysvar",
codes::SOL_GET_RENT_SYSVAR,
SyscallGetRentSysvar::vm,
)?;

register_feature_gated_function!(
result,
last_restart_slot_syscall_enabled,
"sol_get_last_restart_slot",
38,
codes::SOL_GET_LAST_RESTART_SLOT,
SyscallGetLastRestartSlotSysvar::vm,
)?;

register_feature_gated_function!(
result,
epoch_rewards_syscall_enabled,
"sol_get_epoch_rewards_sysvar",
39,
codes::SOL_GET_EPOCH_REWARDS_SYSVAR,
SyscallGetEpochRewardsSysvar::vm,
)?;

// Memory ops
result.register_function("sol_memcpy_", 3, SyscallMemcpy::vm)?;
result.register_function("sol_memmove_", 4, SyscallMemmove::vm)?;
result.register_function("sol_memset_", 5, SyscallMemset::vm)?;
result.register_function("sol_memcmp_", 6, SyscallMemcmp::vm)?;
result.register_function("sol_memcpy_", codes::SOL_MEMCPY_, SyscallMemcpy::vm)?;
result.register_function("sol_memmove_", codes::SOL_MEMMOVE_, SyscallMemmove::vm)?;
result.register_function("sol_memset_", codes::SOL_MEMSET_, SyscallMemset::vm)?;
result.register_function("sol_memcmp_", codes::SOL_MEMCMP_, SyscallMemcmp::vm)?;

// Processed sibling instructions
result.register_function(
"sol_get_processed_sibling_instruction",
22,
codes::SOL_GET_PROCESSED_SIBLING_INSTRUCTION,
SyscallGetProcessedSiblingInstruction::vm,
)?;

// Stack height
result.register_function("sol_get_stack_height", 23, SyscallGetStackHeight::vm)?;
result.register_function(
"sol_get_stack_height",
codes::SOL_GET_STACK_HEIGHT,
SyscallGetStackHeight::vm,
)?;

// Return data
result.register_function("sol_set_return_data", 14, SyscallSetReturnData::vm)?;
result.register_function("sol_get_return_data", 15, SyscallGetReturnData::vm)?;
result.register_function(
"sol_set_return_data",
codes::SOL_SET_RETURN_DATA,
SyscallSetReturnData::vm,
)?;
result.register_function(
"sol_get_return_data",
codes::SOL_GET_RETURN_DATA,
SyscallGetReturnData::vm,
)?;

// Cross-program invocation
result.register_function("sol_invoke_signed_c", 12, SyscallInvokeSignedC::vm)?;
result.register_function("sol_invoke_signed_rust", 13, SyscallInvokeSignedRust::vm)?;
result.register_function(
"sol_invoke_signed_c",
codes::SOL_INVOKE_SIGNED_C,
SyscallInvokeSignedC::vm,
)?;
result.register_function(
"sol_invoke_signed_rust",
codes::SOL_INVOKE_SIGNED_RUST,
SyscallInvokeSignedRust::vm,
)?;

// Memory allocator
register_feature_gated_function!(
result,
!disable_deploy_of_alloc_free_syscall,
"sol_alloc_free_",
11,
codes::SOL_ALLOC_FREE_,
SyscallAllocFree::vm,
)?;

Expand All @@ -462,7 +511,7 @@ pub fn create_program_runtime_environment_v1<'a>(
result,
enable_alt_bn128_syscall,
"sol_alt_bn128_group_op",
28,
codes::SOL_ALT_BN128_GROUP_OP,
SyscallAltBn128::vm,
)?;

Expand All @@ -471,7 +520,7 @@ pub fn create_program_runtime_environment_v1<'a>(
result,
enable_big_mod_exp_syscall,
"sol_big_mod_exp",
30,
codes::SOL_BIG_MOD_EXP,
SyscallBigModExp::vm,
)?;

Expand All @@ -480,7 +529,7 @@ pub fn create_program_runtime_environment_v1<'a>(
result,
enable_poseidon_syscall,
"sol_poseidon",
21,
codes::SOL_POSEIDON,
SyscallPoseidon::vm,
)?;

Expand All @@ -489,7 +538,7 @@ pub fn create_program_runtime_environment_v1<'a>(
result,
remaining_compute_units_syscall_enabled,
"sol_remaining_compute_units",
31,
codes::SOL_REMAINING_COMPUTE_UNITS,
SyscallRemainingComputeUnits::vm
)?;

Expand All @@ -498,7 +547,7 @@ pub fn create_program_runtime_environment_v1<'a>(
result,
enable_alt_bn128_compression_syscall,
"sol_alt_bn128_compression",
29,
codes::SOL_ALT_BN128_COMPRESSION,
SyscallAltBn128Compression::vm,
)?;

Expand All @@ -507,7 +556,7 @@ pub fn create_program_runtime_environment_v1<'a>(
result,
get_sysvar_syscall_enabled,
"sol_get_sysvar",
34,
codes::SOL_GET_SYSVAR,
SyscallGetSysvar::vm,
)?;

Expand All @@ -516,12 +565,12 @@ pub fn create_program_runtime_environment_v1<'a>(
result,
enable_get_epoch_stake_syscall,
"sol_get_epoch_stake",
35,
codes::SOL_GET_EPOCH_STAKE,
SyscallGetEpochStake::vm,
)?;

// Log data
result.register_function("sol_log_data", 16, SyscallLogData::vm)?;
result.register_function("sol_log_data", codes::SOL_LOG_DATA, SyscallLogData::vm)?;

Ok(result)
}
Expand Down
2 changes: 1 addition & 1 deletion programs/sbf/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion sdk/cpi/src/syscalls.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#[allow(unused)]
use solana_define_syscall::codes::SOL_GET_RETURN_DATA;
/// Syscall definitions used by `solana_cpi`.
pub use solana_define_syscall::definitions::{
sol_invoke_signed_c, sol_invoke_signed_rust, sol_set_return_data,
};
use {solana_define_syscall::define_syscall, solana_pubkey::Pubkey};

define_syscall!(fn sol_get_return_data(data: *mut u8, length: u64, program_id: *mut Pubkey) -> u64);
define_syscall!(fn sol_get_return_data(data: *mut u8, length: u64, program_id: *mut Pubkey) -> u64, SOL_GET_RETURN_DATA);
Loading
Loading