From 976372331be2f1b37cab532420cb6c55e0d54473 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sosth=C3=A8ne=20Gu=C3=A9don?= Date: Thu, 9 Nov 2023 15:11:26 +0100 Subject: [PATCH] virt: Add possiblity to run with multiple clients --- src/virt.rs | 93 ++++++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 85 insertions(+), 8 deletions(-) diff --git a/src/virt.rs b/src/virt.rs index f81fc1ba12a..aca130fbef2 100644 --- a/src/virt.rs +++ b/src/virt.rs @@ -6,7 +6,10 @@ mod store; mod ui; -use std::{path::PathBuf, sync::Mutex}; +use std::{ + path::PathBuf, + sync::{Arc, Mutex}, +}; use rand_chacha::ChaCha8Rng; use rand_core::SeedableRng as _; @@ -14,7 +17,7 @@ use rand_core::SeedableRng as _; use crate::{ backend::{BackendId, CoreOnly, Dispatch}, client::ClientBuilder, - platform, + platform::{self, Syscall}, service::Service, ClientImplementation, }; @@ -23,6 +26,9 @@ pub use store::{Filesystem, Ram, StoreProvider}; pub use ui::UserInterface; pub type Client = ClientImplementation, D>, D>; +/// Virtual client that can coexist with other clients +pub type MultiClient = + ClientImplementation, D>>>, D>; // We need this mutex to make sure that: // - TrussedInterchange is not used concurrently (panics if violated) @@ -71,18 +77,59 @@ where with_client(Ram::default(), client_id, f) } +pub fn with_clients(store: S, client_ids: [&str; N], f: F) -> R +where + S: StoreProvider, + F: FnOnce([MultiClient; N]) -> R, +{ + with_platform(store, |platform| platform.run_clients(client_ids, f)) +} + +pub fn with_fs_clients(internal: P, client_ids: [&str; N], f: F) -> R +where + P: Into, + F: FnOnce([MultiClient; N]) -> R, +{ + with_clients(Filesystem::new(internal), client_ids, f) +} + +/// Run a function with multiple clients using the RAM for the filesystem. +/// +/// +/// Const generics are used to allow easy deconstruction in the callback arguments +/// +/// ```rust +///# use trussed::client::{Ed255, CryptoClient}; +///# use trussed::types::{Location, Mechanism}; +///# use trussed::syscall; +///# use trussed::virt::with_ram_clients; +/// with_ram_clients(["client1", "client2"], |[mut client1, mut client2]| { +/// let key = syscall!(client1.generate_ed255_private_key(Location::Internal)).key; +/// // The clients are distinct +/// assert!(!syscall!(client2.exists(Mechanism::Ed255, key)).exists); +/// }) +/// ``` +pub fn with_ram_clients(client_ids: [&str; N], f: F) -> R +where + F: FnOnce([MultiClient; N]) -> R, +{ + with_clients(Ram::default(), client_ids, f) +} + pub struct Platform { rng: ChaCha8Rng, _store: S, ui: UserInterface, } +impl Syscall for Arc> { + fn syscall(&mut self) { + self.lock().unwrap().syscall() + } +} + impl Platform { - pub fn run_client( - self, - client_id: &str, - test: impl FnOnce(ClientImplementation>) -> R, - ) -> R { + pub fn run_client(self, client_id: &str, test: impl FnOnce(Client) -> R) -> R { let service = Service::new(self); let client = service.try_into_new_client(client_id, None).unwrap(); test(client) @@ -93,7 +140,7 @@ impl Platform { client_id: &str, dispatch: D, backends: &'static [BackendId], - test: impl FnOnce(ClientImplementation, D>) -> R, + test: impl FnOnce(Client) -> R, ) -> R { let mut service = Service::with_dispatch(self, dispatch); let client = ClientBuilder::new(client_id) @@ -103,6 +150,36 @@ impl Platform { .build(service); test(client) } + + pub fn run_clients( + self, + client_ids: [&str; N], + test: impl FnOnce([MultiClient; N]) -> R, + ) -> R { + let mut service = Service::new(self); + let prepared_clients = + client_ids.map(|id| ClientBuilder::new(id).prepare(&mut service).unwrap()); + let service = Arc::new(Mutex::new(service)); + test(prepared_clients.map(|builder| builder.build(service.clone()))) + } + + /// Using const generics rather than a `Vec` to allow destructuring in the method + pub fn run_clients_with_backends( + self, + client_ids: [(&str, &'static [BackendId]); N], + dispatch: D, + test: impl FnOnce([MultiClient; N]) -> R, + ) -> R { + let mut service = Service::with_dispatch(self, dispatch); + let prepared_clients = client_ids.map(|(id, backends)| { + ClientBuilder::new(id) + .backends(backends) + .prepare(&mut service) + .unwrap() + }); + let service = Arc::new(Mutex::new(service)); + test(prepared_clients.map(|builder| builder.build(service.clone()))) + } } unsafe impl platform::Platform for Platform {