#![cfg_attr(docsrs, feature(doc_cfg))]
extern crate alloc;
use {
alloc::vec::Vec,
solana_account_info::AccountInfo,
solana_pubkey::Pubkey,
std::{
alloc::Layout,
mem::{size_of, MaybeUninit},
ptr::null_mut,
slice::{from_raw_parts, from_raw_parts_mut},
},
};
pub use {
solana_account_info::AccountInfo as __AccountInfo,
solana_account_info::MAX_PERMITTED_DATA_INCREASE,
solana_define_syscall::definitions::{sol_log_ as __log, sol_panic_ as __panic},
solana_program_error::ProgramResult,
solana_pubkey::Pubkey as __Pubkey,
};
pub type ProcessInstruction =
fn(program_id: &Pubkey, accounts: &[AccountInfo], instruction_data: &[u8]) -> ProgramResult;
pub const SUCCESS: u64 = 0;
pub const HEAP_START_ADDRESS: u64 = 0x300000000;
pub const HEAP_LENGTH: usize = 32 * 1024;
pub const NON_DUP_MARKER: u8 = u8::MAX;
#[macro_export]
macro_rules! entrypoint {
($process_instruction:ident) => {
#[no_mangle]
pub unsafe extern "C" fn entrypoint(input: *mut u8) -> u64 {
let (program_id, accounts, instruction_data) = unsafe { $crate::deserialize(input) };
match $process_instruction(program_id, &accounts, instruction_data) {
Ok(()) => $crate::SUCCESS,
Err(error) => error.into(),
}
}
$crate::custom_heap_default!();
$crate::custom_panic_default!();
};
}
#[macro_export]
macro_rules! entrypoint_no_alloc {
($process_instruction:ident) => {
#[no_mangle]
pub unsafe extern "C" fn entrypoint(input: *mut u8) -> u64 {
use std::mem::MaybeUninit;
#[allow(clippy::declare_interior_mutable_const)]
const UNINIT_ACCOUNT_INFO: MaybeUninit<$crate::__AccountInfo> =
MaybeUninit::<$crate::__AccountInfo>::uninit();
const MAX_ACCOUNT_INFOS: usize = 64;
let mut accounts = [UNINIT_ACCOUNT_INFO; MAX_ACCOUNT_INFOS];
let (program_id, num_accounts, instruction_data) =
unsafe { $crate::deserialize_into(input, &mut accounts) };
let accounts = &*(&accounts[..num_accounts]
as *const [MaybeUninit<$crate::__AccountInfo<'_>>]
as *const [$crate::__AccountInfo<'_>]);
#[inline(never)]
fn call_program(
program_id: &$crate::__Pubkey,
accounts: &[$crate::__AccountInfo],
data: &[u8],
) -> u64 {
match $process_instruction(program_id, accounts, data) {
Ok(()) => $crate::SUCCESS,
Err(error) => error.into(),
}
}
call_program(&program_id, accounts, &instruction_data)
}
$crate::custom_heap_default!();
$crate::custom_panic_default!();
};
}
#[macro_export]
macro_rules! custom_heap_default {
() => {
#[cfg(all(not(feature = "custom-heap"), target_os = "solana"))]
#[global_allocator]
static A: $crate::BumpAllocator = unsafe {
$crate::BumpAllocator::with_fixed_address_range(
$crate::HEAP_START_ADDRESS as usize,
$crate::HEAP_LENGTH,
)
};
};
}
#[macro_export]
macro_rules! custom_panic_default {
() => {
#[cfg(all(not(feature = "custom-panic"), target_os = "solana"))]
#[no_mangle]
fn custom_panic(info: &core::panic::PanicInfo<'_>) {
if let Some(mm) = info.message().as_str() {
unsafe {
$crate::__log(mm.as_ptr(), mm.len() as u64);
}
}
if let Some(loc) = info.location() {
unsafe {
$crate::__panic(
loc.file().as_ptr(),
loc.file().len() as u64,
loc.line() as u64,
loc.column() as u64,
)
}
}
}
};
}
pub struct BumpAllocator {
start: usize,
len: usize,
}
impl BumpAllocator {
#[inline]
#[allow(clippy::arithmetic_side_effects)]
pub unsafe fn new(arena: &mut [u8]) -> Self {
debug_assert!(
arena.len() > size_of::<usize>(),
"Arena should be larger than usize"
);
let pos_ptr = arena.as_mut_ptr() as *mut usize;
*pos_ptr = pos_ptr as usize + arena.len();
Self {
start: pos_ptr as usize,
len: arena.len(),
}
}
pub const unsafe fn with_fixed_address_range(start: usize, len: usize) -> Self {
Self { start, len }
}
}
#[allow(clippy::arithmetic_side_effects)]
unsafe impl std::alloc::GlobalAlloc for BumpAllocator {
#[inline]
unsafe fn alloc(&self, layout: Layout) -> *mut u8 {
let pos_ptr = self.start as *mut usize;
let mut pos = *pos_ptr;
if pos == 0 {
pos = self.start + self.len;
}
pos = pos.saturating_sub(layout.size());
pos &= !(layout.align().wrapping_sub(1));
if pos < self.start + size_of::<*mut u8>() {
return null_mut();
}
*pos_ptr = pos;
pos as *mut u8
}
#[inline]
unsafe fn dealloc(&self, _: *mut u8, _: Layout) {
}
}
pub const BPF_ALIGN_OF_U128: usize = 8;
#[allow(clippy::arithmetic_side_effects)]
#[inline(always)] unsafe fn deserialize_instruction_data<'a>(input: *mut u8, mut offset: usize) -> (&'a [u8], usize) {
#[allow(clippy::cast_ptr_alignment)]
let instruction_data_len = *(input.add(offset) as *const u64) as usize;
offset += size_of::<u64>();
let instruction_data = { from_raw_parts(input.add(offset), instruction_data_len) };
offset += instruction_data_len;
(instruction_data, offset)
}
#[allow(clippy::arithmetic_side_effects)]
#[inline(always)] unsafe fn deserialize_account_info<'a>(
input: *mut u8,
mut offset: usize,
) -> (AccountInfo<'a>, usize) {
#[allow(clippy::cast_ptr_alignment)]
let is_signer = *(input.add(offset) as *const u8) != 0;
offset += size_of::<u8>();
#[allow(clippy::cast_ptr_alignment)]
let is_writable = *(input.add(offset) as *const u8) != 0;
offset += size_of::<u8>();
#[allow(clippy::cast_ptr_alignment)]
let executable = *(input.add(offset) as *const u8) != 0;
offset += size_of::<u8>();
let original_data_len_offset = offset;
offset += size_of::<u32>();
let key: &Pubkey = &*(input.add(offset) as *const Pubkey);
offset += size_of::<Pubkey>();
let owner: &Pubkey = &*(input.add(offset) as *const Pubkey);
offset += size_of::<Pubkey>();
#[allow(clippy::cast_ptr_alignment)]
let lamports = &mut *(input.add(offset) as *mut u64);
offset += size_of::<u64>();
#[allow(clippy::cast_ptr_alignment)]
let data_len = *(input.add(offset) as *const u64) as usize;
offset += size_of::<u64>();
*(input.add(original_data_len_offset) as *mut u32) = data_len as u32;
let data = from_raw_parts_mut(input.add(offset), data_len);
offset += data_len + MAX_PERMITTED_DATA_INCREASE + size_of::<u64>();
offset += (offset as *const u8).align_offset(BPF_ALIGN_OF_U128);
(
AccountInfo::new(
key,
is_signer,
is_writable,
lamports,
data,
owner,
executable,
),
offset,
)
}
#[allow(clippy::arithmetic_side_effects)]
pub unsafe fn deserialize<'a>(input: *mut u8) -> (&'a Pubkey, Vec<AccountInfo<'a>>, &'a [u8]) {
let mut offset: usize = 0;
#[allow(clippy::cast_ptr_alignment)]
let num_accounts = *(input.add(offset) as *const u64) as usize;
offset += size_of::<u64>();
let mut accounts = Vec::with_capacity(num_accounts);
for _ in 0..num_accounts {
let dup_info = *(input.add(offset) as *const u8);
offset += size_of::<u8>();
if dup_info == NON_DUP_MARKER {
let (account_info, new_offset) = deserialize_account_info(input, offset);
offset = new_offset;
accounts.push(account_info);
} else {
offset += 7;
accounts.push(accounts[dup_info as usize].clone());
}
}
let (instruction_data, new_offset) = deserialize_instruction_data(input, offset);
offset = new_offset;
let program_id: &Pubkey = &*(input.add(offset) as *const Pubkey);
(program_id, accounts, instruction_data)
}
#[allow(clippy::arithmetic_side_effects)]
pub unsafe fn deserialize_into<'a>(
input: *mut u8,
accounts: &mut [MaybeUninit<AccountInfo<'a>>],
) -> (&'a Pubkey, usize, &'a [u8]) {
let mut offset: usize = 0;
#[allow(clippy::cast_ptr_alignment)]
let num_accounts = *(input.add(offset) as *const u64) as usize;
offset += size_of::<u64>();
if num_accounts > accounts.len() {
panic!(
"{} accounts provided, but only {} are supported",
num_accounts,
accounts.len()
);
}
for i in 0..num_accounts {
let dup_info = *(input.add(offset) as *const u8);
offset += size_of::<u8>();
if dup_info == NON_DUP_MARKER {
let (account_info, new_offset) = deserialize_account_info(input, offset);
offset = new_offset;
accounts[i].write(account_info);
} else {
offset += 7;
accounts[i].write(accounts[dup_info as usize].assume_init_ref().clone());
}
}
let (instruction_data, new_offset) = deserialize_instruction_data(input, offset);
offset = new_offset;
let program_id: &Pubkey = &*(input.add(offset) as *const Pubkey);
(program_id, num_accounts, instruction_data)
}
#[cfg(test)]
mod test {
use {super::*, std::alloc::GlobalAlloc};
#[test]
fn test_bump_allocator() {
{
let mut heap = [0u8; 128];
let allocator = unsafe { BumpAllocator::new(&mut heap) };
for i in 0..128 - size_of::<*mut u8>() {
let ptr = unsafe {
allocator.alloc(Layout::from_size_align(1, size_of::<u8>()).unwrap())
};
assert_eq!(ptr as usize, heap.as_ptr() as usize + heap.len() - 1 - i);
}
assert_eq!(null_mut(), unsafe {
allocator.alloc(Layout::from_size_align(1, 1).unwrap())
});
}
{
let mut heap = [0u8; 128];
let allocator = unsafe { BumpAllocator::new(&mut heap) };
let ptr =
unsafe { allocator.alloc(Layout::from_size_align(1, size_of::<u8>()).unwrap()) };
assert_eq!(0, ptr.align_offset(size_of::<u8>()));
let ptr =
unsafe { allocator.alloc(Layout::from_size_align(1, size_of::<u16>()).unwrap()) };
assert_eq!(0, ptr.align_offset(size_of::<u16>()));
let ptr =
unsafe { allocator.alloc(Layout::from_size_align(1, size_of::<u32>()).unwrap()) };
assert_eq!(0, ptr.align_offset(size_of::<u32>()));
let ptr =
unsafe { allocator.alloc(Layout::from_size_align(1, size_of::<u64>()).unwrap()) };
assert_eq!(0, ptr.align_offset(size_of::<u64>()));
let ptr =
unsafe { allocator.alloc(Layout::from_size_align(1, size_of::<u128>()).unwrap()) };
assert_eq!(0, ptr.align_offset(size_of::<u128>()));
let ptr = unsafe { allocator.alloc(Layout::from_size_align(1, 64).unwrap()) };
assert_eq!(0, ptr.align_offset(64));
}
{
let mut heap = [0u8; 128];
let allocator = unsafe { BumpAllocator::new(&mut heap) };
let ptr = unsafe {
allocator.alloc(
Layout::from_size_align(heap.len() - size_of::<usize>(), size_of::<u8>())
.unwrap(),
)
};
assert_ne!(ptr, null_mut());
assert_eq!(0, ptr.align_offset(size_of::<u64>()));
}
}
}