mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-10 23:57:23 +00:00
10cec3b591
* upgrade primitives to allow changing validation function * set up storage schema for old parachains code * fix compilation errors * fix test compilation * add some tests for past code meta * most of the runtime logic for code upgrades * implement old-code pruning * add a couple tests * clean up remaining TODOs * add a whole bunch of tests for runtime functionality * remove unused function * fix runtime compilation * extract some primitives to parachain crate * add validation-code upgrades to validation params and result * extend validation params with code upgrade fields * provide maximums to validation params * port test-parachains * add a code-upgrader test-parachain and tests * fix collator tests * move test-parachains to own folder to work around compilation errors * fix test compilation * update the Cargo.lock * fix parachains tests * remove dbg! invocation * use new pool in code-upgrader * bump lockfile * link TODO to issue
351 lines
11 KiB
Rust
351 lines
11 KiB
Rust
// Copyright 2019-2020 Parity Technologies (UK) Ltd.
|
|
// This file is part of Polkadot.
|
|
|
|
// Polkadot is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Polkadot is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Polkadot. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#![cfg(not(target_os = "unknown"))]
|
|
|
|
use std::{process, env, sync::Arc, sync::atomic, mem};
|
|
use codec::{Decode, Encode, EncodeAppend};
|
|
use crate::primitives::{ValidationParams, ValidationResult, UpwardMessage};
|
|
use super::{validate_candidate_internal, Error, Externalities};
|
|
use super::{MAX_CODE_MEM, MAX_RUNTIME_MEM};
|
|
use shared_memory::{SharedMem, SharedMemConf, EventState, WriteLockable, EventWait, EventSet};
|
|
use parking_lot::Mutex;
|
|
use log::{debug, trace};
|
|
|
|
// Message data limit
|
|
const MAX_MESSAGE_MEM: usize = 16 * 1024 * 1024; // 16 MiB
|
|
|
|
const WORKER_ARGS_TEST: &[&'static str] = &["--nocapture", "validation_worker"];
|
|
/// CLI Argument to start in validation worker mode.
|
|
const WORKER_ARG: &'static str = "validation-worker";
|
|
const WORKER_ARGS: &[&'static str] = &[WORKER_ARG];
|
|
|
|
/// Execution timeout in seconds;
|
|
#[cfg(debug_assertions)]
|
|
pub const EXECUTION_TIMEOUT_SEC: u64 = 30;
|
|
|
|
#[cfg(not(debug_assertions))]
|
|
pub const EXECUTION_TIMEOUT_SEC: u64 = 5;
|
|
|
|
#[derive(Default)]
|
|
struct WorkerExternalitiesInner {
|
|
up_data: Vec<u8>,
|
|
}
|
|
|
|
#[derive(Default, Clone)]
|
|
struct WorkerExternalities {
|
|
inner: Arc<Mutex<WorkerExternalitiesInner>>,
|
|
}
|
|
|
|
impl Externalities for WorkerExternalities {
|
|
fn post_upward_message(&mut self, message: UpwardMessage) -> Result<(), String> {
|
|
let mut inner = self.inner.lock();
|
|
inner.up_data = <Vec::<UpwardMessage> as EncodeAppend>::append_or_new(
|
|
mem::replace(&mut inner.up_data, Vec::new()),
|
|
std::iter::once(message),
|
|
).map_err(|e| e.what())?;
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
enum Event {
|
|
CandidateReady = 0,
|
|
ResultReady = 1,
|
|
WorkerReady = 2,
|
|
}
|
|
|
|
/// A pool of hosts.
|
|
#[derive(Clone)]
|
|
pub struct ValidationPool {
|
|
hosts: Arc<Vec<Mutex<ValidationHost>>>,
|
|
}
|
|
|
|
const DEFAULT_NUM_HOSTS: usize = 8;
|
|
|
|
impl ValidationPool {
|
|
/// Creates a validation pool with the default configuration.
|
|
pub fn new() -> ValidationPool {
|
|
ValidationPool {
|
|
hosts: Arc::new((0..DEFAULT_NUM_HOSTS).map(|_| Default::default()).collect()),
|
|
}
|
|
}
|
|
|
|
/// Validate a candidate under the given validation code using the next
|
|
/// free validation host.
|
|
///
|
|
/// This will fail if the validation code is not a proper parachain validation module.
|
|
pub fn validate_candidate<E: Externalities>(
|
|
&self,
|
|
validation_code: &[u8],
|
|
params: ValidationParams,
|
|
externalities: E,
|
|
test_mode: bool,
|
|
) -> Result<ValidationResult, Error> {
|
|
for host in self.hosts.iter() {
|
|
if let Some(mut host) = host.try_lock() {
|
|
return host.validate_candidate(validation_code, params, externalities, test_mode);
|
|
}
|
|
}
|
|
|
|
// all workers are busy, just wait for the first one
|
|
self.hosts[0].lock().validate_candidate(validation_code, params, externalities, test_mode)
|
|
}
|
|
}
|
|
|
|
/// Validation worker process entry point. Runs a loop waiting for candidates to validate
|
|
/// and sends back results via shared memory.
|
|
pub fn run_worker(mem_id: &str) -> Result<(), String> {
|
|
let mut memory = match SharedMem::open(mem_id) {
|
|
Ok(memory) => memory,
|
|
Err(e) => {
|
|
debug!("{} Error opening shared memory: {:?}", process::id(), e);
|
|
return Err(format!("Error opening shared memory: {:?}", e));
|
|
}
|
|
};
|
|
|
|
let worker_ext = WorkerExternalities::default();
|
|
|
|
let exit = Arc::new(atomic::AtomicBool::new(false));
|
|
// spawn parent monitor thread
|
|
let watch_exit = exit.clone();
|
|
std::thread::spawn(move || {
|
|
use std::io::Read;
|
|
let mut in_data = Vec::new();
|
|
// pipe terminates when parent process exits
|
|
std::io::stdin().read_to_end(&mut in_data).ok();
|
|
debug!("{} Parent process is dead. Exiting", process::id());
|
|
exit.store(true, atomic::Ordering::Relaxed);
|
|
});
|
|
|
|
memory.set(Event::WorkerReady as usize, EventState::Signaled)
|
|
.map_err(|e| format!("{} Error setting shared event: {:?}", process::id(), e))?;
|
|
|
|
loop {
|
|
if watch_exit.load(atomic::Ordering::Relaxed) {
|
|
break;
|
|
}
|
|
|
|
debug!("{} Waiting for candidate", process::id());
|
|
match memory.wait(Event::CandidateReady as usize, shared_memory::Timeout::Sec(3)) {
|
|
Err(e) => {
|
|
// Timeout
|
|
trace!("{} Timeout waiting for candidate: {:?}", process::id(), e);
|
|
continue;
|
|
}
|
|
Ok(()) => {}
|
|
}
|
|
|
|
{
|
|
debug!("{} Processing candidate", process::id());
|
|
// we have candidate data
|
|
let mut slice = memory.wlock_as_slice(0)
|
|
.map_err(|e| format!("Error locking shared memory: {:?}", e))?;
|
|
|
|
let result = {
|
|
let data: &mut[u8] = &mut **slice;
|
|
let (header_buf, rest) = data.split_at_mut(1024);
|
|
let mut header_buf: &[u8] = header_buf;
|
|
let header = ValidationHeader::decode(&mut header_buf)
|
|
.map_err(|_| format!("Error decoding validation request."))?;
|
|
debug!("{} Candidate header: {:?}", process::id(), header);
|
|
let (code, rest) = rest.split_at_mut(MAX_CODE_MEM);
|
|
let (code, _) = code.split_at_mut(header.code_size as usize);
|
|
let (call_data, _) = rest.split_at_mut(MAX_RUNTIME_MEM);
|
|
let (call_data, _) = call_data.split_at_mut(header.params_size as usize);
|
|
|
|
let result = validate_candidate_internal(code, call_data, worker_ext.clone());
|
|
debug!("{} Candidate validated: {:?}", process::id(), result);
|
|
|
|
match result {
|
|
Ok(r) => {
|
|
let inner = worker_ext.inner.lock();
|
|
let up_data = &inner.up_data;
|
|
let up_len = up_data.len();
|
|
|
|
if up_len > MAX_MESSAGE_MEM {
|
|
ValidationResultHeader::Error("Message data is too large".into())
|
|
} else {
|
|
ValidationResultHeader::Ok(r)
|
|
}
|
|
},
|
|
Err(e) => ValidationResultHeader::Error(e.to_string()),
|
|
}
|
|
};
|
|
let mut data: &mut[u8] = &mut **slice;
|
|
result.encode_to(&mut data);
|
|
}
|
|
debug!("{} Signaling result", process::id());
|
|
memory.set(Event::ResultReady as usize, EventState::Signaled)
|
|
.map_err(|e| format!("Error setting shared event: {:?}", e))?;
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
/// Params header in shared memory. All offsets should be aligned to WASM page size.
|
|
#[derive(Encode, Decode, Debug)]
|
|
struct ValidationHeader {
|
|
code_size: u64,
|
|
params_size: u64,
|
|
}
|
|
|
|
#[derive(Encode, Decode, Debug)]
|
|
pub enum ValidationResultHeader {
|
|
Ok(ValidationResult),
|
|
Error(String),
|
|
}
|
|
|
|
unsafe impl Send for ValidationHost {}
|
|
|
|
#[derive(Default)]
|
|
struct ValidationHost {
|
|
worker: Option<process::Child>,
|
|
memory: Option<SharedMem>,
|
|
id: u32,
|
|
}
|
|
|
|
impl Drop for ValidationHost {
|
|
fn drop(&mut self) {
|
|
if let Some(ref mut worker) = &mut self.worker {
|
|
worker.kill().ok();
|
|
}
|
|
}
|
|
}
|
|
|
|
impl ValidationHost {
|
|
fn create_memory() -> Result<SharedMem, Error> {
|
|
let mem_size = MAX_RUNTIME_MEM + MAX_CODE_MEM + MAX_MESSAGE_MEM + 1024;
|
|
let mem_config = SharedMemConf::default()
|
|
.set_size(mem_size)
|
|
.add_lock(shared_memory::LockType::Mutex, 0, mem_size)?
|
|
.add_event(shared_memory::EventType::Auto)? // Event::CandidateReady
|
|
.add_event(shared_memory::EventType::Auto)? // Event::ResultReady
|
|
.add_event(shared_memory::EventType::Auto)?; // Event::WorkerReady
|
|
|
|
Ok(mem_config.create()?)
|
|
}
|
|
|
|
fn start_worker(&mut self, test_mode: bool) -> Result<(), Error> {
|
|
if let Some(ref mut worker) = self.worker {
|
|
// Check if still alive
|
|
if let Ok(None) = worker.try_wait() {
|
|
// Still running
|
|
return Ok(());
|
|
}
|
|
}
|
|
let memory = Self::create_memory()?;
|
|
let self_path = env::current_exe()?;
|
|
debug!("Starting worker at {:?}", self_path);
|
|
let mut args = if test_mode { WORKER_ARGS_TEST.to_vec() } else { WORKER_ARGS.to_vec() };
|
|
args.push(memory.get_os_path());
|
|
let worker = process::Command::new(self_path)
|
|
.args(args)
|
|
.stdin(process::Stdio::piped())
|
|
.spawn()?;
|
|
self.id = worker.id();
|
|
self.worker = Some(worker);
|
|
|
|
memory.wait(
|
|
Event::WorkerReady as usize,
|
|
shared_memory::Timeout::Sec(EXECUTION_TIMEOUT_SEC as usize),
|
|
)?;
|
|
self.memory = Some(memory);
|
|
Ok(())
|
|
}
|
|
|
|
/// Validate a candidate under the given validation code.
|
|
///
|
|
/// This will fail if the validation code is not a proper parachain validation module.
|
|
pub fn validate_candidate<E: Externalities>(
|
|
&mut self,
|
|
validation_code: &[u8],
|
|
params: ValidationParams,
|
|
mut externalities: E,
|
|
test_mode: bool,
|
|
) -> Result<ValidationResult, Error> {
|
|
if validation_code.len() > MAX_CODE_MEM {
|
|
return Err(Error::CodeTooLarge(validation_code.len()));
|
|
}
|
|
// First, check if need to spawn the child process
|
|
self.start_worker(test_mode)?;
|
|
let memory = self.memory.as_mut()
|
|
.expect("memory is always `Some` after `start_worker` completes successfully");
|
|
{
|
|
// Put data in shared mem
|
|
let data: &mut[u8] = &mut **memory.wlock_as_slice(0)?;
|
|
let (mut header_buf, rest) = data.split_at_mut(1024);
|
|
let (code, rest) = rest.split_at_mut(MAX_CODE_MEM);
|
|
let (code, _) = code.split_at_mut(validation_code.len());
|
|
let (call_data, _) = rest.split_at_mut(MAX_RUNTIME_MEM);
|
|
code[..validation_code.len()].copy_from_slice(validation_code);
|
|
let encoded_params = params.encode();
|
|
if encoded_params.len() >= MAX_RUNTIME_MEM {
|
|
return Err(Error::ParamsTooLarge(MAX_RUNTIME_MEM));
|
|
}
|
|
call_data[..encoded_params.len()].copy_from_slice(&encoded_params);
|
|
|
|
let header = ValidationHeader {
|
|
code_size: validation_code.len() as u64,
|
|
params_size: encoded_params.len() as u64,
|
|
};
|
|
|
|
header.encode_to(&mut header_buf);
|
|
}
|
|
|
|
debug!("{} Signaling candidate", self.id);
|
|
memory.set(Event::CandidateReady as usize, EventState::Signaled)?;
|
|
|
|
debug!("{} Waiting for results", self.id);
|
|
match memory.wait(Event::ResultReady as usize, shared_memory::Timeout::Sec(EXECUTION_TIMEOUT_SEC as usize)) {
|
|
Err(e) => {
|
|
debug!("Worker timeout: {:?}", e);
|
|
if let Some(mut worker) = self.worker.take() {
|
|
worker.kill().ok();
|
|
}
|
|
return Err(Error::Timeout.into());
|
|
}
|
|
Ok(()) => {}
|
|
}
|
|
|
|
{
|
|
debug!("{} Reading results", self.id);
|
|
let data: &[u8] = &**memory.wlock_as_slice(0)?;
|
|
let (header_buf, rest) = data.split_at(1024);
|
|
let (_, rest) = rest.split_at(MAX_CODE_MEM);
|
|
let (_, message_data) = rest.split_at(MAX_RUNTIME_MEM);
|
|
let mut header_buf: &[u8] = header_buf;
|
|
let mut message_data: &[u8] = message_data;
|
|
let header = ValidationResultHeader::decode(&mut header_buf).unwrap();
|
|
match header {
|
|
ValidationResultHeader::Ok(result) => {
|
|
let upwards = Vec::<UpwardMessage>::decode(&mut message_data)
|
|
.map_err(|e|
|
|
Error::External(
|
|
format!("Could not decode upward messages: {}", e.what())
|
|
)
|
|
)?;
|
|
upwards.into_iter().try_for_each(|msg| externalities.post_upward_message(msg))?;
|
|
|
|
Ok(result)
|
|
}
|
|
ValidationResultHeader::Error(message) => {
|
|
debug!("{} Validation error: {}", self.id, message);
|
|
Err(Error::External(message).into())
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|