extern crate alloc;
use {
alloc::vec::Vec,
clone_solana_account_info::AccountInfo,
clone_solana_pubkey::Pubkey,
std::{
alloc::Layout,
cell::RefCell,
mem::{size_of, MaybeUninit},
ptr::null_mut,
rc::Rc,
slice::{from_raw_parts, from_raw_parts_mut},
},
};
pub use {
clone_solana_account_info::MAX_PERMITTED_DATA_INCREASE, clone_solana_msg::msg as __msg,
clone_solana_program_error::ProgramResult,
};
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<AccountInfo> =
MaybeUninit::<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<AccountInfo<'_>>]
as *const [AccountInfo<'_>]);
#[inline(never)]
fn call_program(program_id: &Pubkey, accounts: &[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 = $crate::BumpAllocator {
start: $crate::HEAP_START_ADDRESS as usize,
len: $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<'_>) {
$crate::__msg!("{}", info);
}
};
}
pub struct BumpAllocator {
#[deprecated(
since = "2.2.2",
note = "This field should not be accessed directly. It will become private in future versions"
)]
pub start: usize,
#[deprecated(
since = "2.2.2",
note = "This field should not be accessed directly. It will become private in future versions"
)]
pub 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();
#[allow(deprecated)] Self {
start: pos_ptr as usize,
len: arena.len(),
}
}
}
#[allow(clippy::arithmetic_side_effects)]
unsafe impl std::alloc::GlobalAlloc for BumpAllocator {
#[inline]
#[allow(deprecated)] 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 = Rc::new(RefCell::new(&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 = Rc::new(RefCell::new({
from_raw_parts_mut(input.add(offset), data_len)
}));
offset += data_len + MAX_PERMITTED_DATA_INCREASE;
offset += (offset as *const u8).align_offset(BPF_ALIGN_OF_U128);
#[allow(clippy::cast_ptr_alignment)]
let rent_epoch = *(input.add(offset) as *const u64);
offset += size_of::<u64>();
(
AccountInfo {
key,
is_signer,
is_writable,
lamports,
data,
owner,
executable,
rent_epoch,
},
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>()));
}
}
}