-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
multi.rs
542 lines (487 loc) · 19.9 KB
/
multi.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
//! Support for running multiple fork backends.
//!
//! The design is similar to the single `SharedBackend`, `BackendHandler` but supports multiple
//! concurrently active pairs at once.
use super::CreateFork;
use alloy_primitives::{map::HashMap, U256};
use alloy_provider::network::{BlockResponse, HeaderResponse};
use alloy_transport::layers::RetryBackoffService;
use foundry_common::provider::{
runtime_transport::RuntimeTransport, ProviderBuilder, RetryProvider,
};
use foundry_config::Config;
use foundry_fork_db::{cache::BlockchainDbMeta, BackendHandler, BlockchainDb, SharedBackend};
use futures::{
channel::mpsc::{channel, Receiver, Sender},
stream::{Fuse, Stream},
task::{Context, Poll},
Future, FutureExt, StreamExt,
};
use revm::primitives::Env;
use std::{
fmt::{self, Write},
pin::Pin,
sync::{
atomic::AtomicUsize,
mpsc::{channel as oneshot_channel, Sender as OneshotSender},
Arc,
},
time::Duration,
};
/// The _unique_ identifier for a specific fork, this could be the name of the network a custom
/// descriptive name.
#[derive(Clone, Debug, PartialEq, Eq, Hash)]
pub struct ForkId(pub String);
impl ForkId {
/// Returns the identifier for a Fork from a URL and block number.
pub fn new(url: &str, num: Option<u64>) -> Self {
let mut id = url.to_string();
id.push('@');
match num {
Some(n) => write!(id, "{n:#x}").unwrap(),
None => id.push_str("latest"),
}
Self(id)
}
/// Returns the identifier of the fork.
pub fn as_str(&self) -> &str {
&self.0
}
}
impl fmt::Display for ForkId {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
self.0.fmt(f)
}
}
impl<T: Into<String>> From<T> for ForkId {
fn from(id: T) -> Self {
Self(id.into())
}
}
/// The Sender half of multi fork pair.
/// Can send requests to the `MultiForkHandler` to create forks.
#[derive(Clone, Debug)]
#[must_use]
pub struct MultiFork {
/// Channel to send `Request`s to the handler.
handler: Sender<Request>,
/// Ensures that all rpc resources get flushed properly.
_shutdown: Arc<ShutDownMultiFork>,
}
impl MultiFork {
/// Creates a new pair and spawns the `MultiForkHandler` on a background thread.
pub fn spawn() -> Self {
trace!(target: "fork::multi", "spawning multifork");
let (fork, mut handler) = Self::new();
// Spawn a light-weight thread with a thread-local async runtime just for
// sending and receiving data from the remote client(s).
std::thread::Builder::new()
.name("multi-fork-backend".into())
.spawn(move || {
let rt = tokio::runtime::Builder::new_current_thread()
.enable_all()
.build()
.expect("failed to build tokio runtime");
rt.block_on(async move {
// Flush cache every 60s, this ensures that long-running fork tests get their
// cache flushed from time to time.
// NOTE: we install the interval here because the `tokio::timer::Interval`
// requires a rt.
handler.set_flush_cache_interval(Duration::from_secs(60));
handler.await
});
})
.expect("failed to spawn thread");
trace!(target: "fork::multi", "spawned MultiForkHandler thread");
fork
}
/// Creates a new pair multi fork pair.
///
/// Use [`spawn`](Self::spawn) instead.
#[doc(hidden)]
pub fn new() -> (Self, MultiForkHandler) {
let (handler, handler_rx) = channel(1);
let _shutdown = Arc::new(ShutDownMultiFork { handler: Some(handler.clone()) });
(Self { handler, _shutdown }, MultiForkHandler::new(handler_rx))
}
/// Returns a fork backend.
///
/// If no matching fork backend exists it will be created.
pub fn create_fork(&self, fork: CreateFork) -> eyre::Result<(ForkId, SharedBackend, Env)> {
trace!("Creating new fork, url={}, block={:?}", fork.url, fork.evm_opts.fork_block_number);
let (sender, rx) = oneshot_channel();
let req = Request::CreateFork(Box::new(fork), sender);
self.handler.clone().try_send(req).map_err(|e| eyre::eyre!("{:?}", e))?;
rx.recv()?
}
/// Rolls the block of the fork.
///
/// If no matching fork backend exists it will be created.
pub fn roll_fork(
&self,
fork: ForkId,
block: u64,
) -> eyre::Result<(ForkId, SharedBackend, Env)> {
trace!(?fork, ?block, "rolling fork");
let (sender, rx) = oneshot_channel();
let req = Request::RollFork(fork, block, sender);
self.handler.clone().try_send(req).map_err(|e| eyre::eyre!("{:?}", e))?;
rx.recv()?
}
/// Returns the `Env` of the given fork, if any.
pub fn get_env(&self, fork: ForkId) -> eyre::Result<Option<Env>> {
trace!(?fork, "getting env config");
let (sender, rx) = oneshot_channel();
let req = Request::GetEnv(fork, sender);
self.handler.clone().try_send(req).map_err(|e| eyre::eyre!("{:?}", e))?;
Ok(rx.recv()?)
}
/// Updates block number and timestamp of given fork with new values.
pub fn update_block(&self, fork: ForkId, number: U256, timestamp: U256) -> eyre::Result<()> {
trace!(?fork, ?number, ?timestamp, "update fork block");
self.handler
.clone()
.try_send(Request::UpdateBlock(fork, number, timestamp))
.map_err(|e| eyre::eyre!("{:?}", e))
}
/// Returns the corresponding fork if it exists.
///
/// Returns `None` if no matching fork backend is available.
pub fn get_fork(&self, id: impl Into<ForkId>) -> eyre::Result<Option<SharedBackend>> {
let id = id.into();
trace!(?id, "get fork backend");
let (sender, rx) = oneshot_channel();
let req = Request::GetFork(id, sender);
self.handler.clone().try_send(req).map_err(|e| eyre::eyre!("{:?}", e))?;
Ok(rx.recv()?)
}
/// Returns the corresponding fork url if it exists.
///
/// Returns `None` if no matching fork is available.
pub fn get_fork_url(&self, id: impl Into<ForkId>) -> eyre::Result<Option<String>> {
let (sender, rx) = oneshot_channel();
let req = Request::GetForkUrl(id.into(), sender);
self.handler.clone().try_send(req).map_err(|e| eyre::eyre!("{:?}", e))?;
Ok(rx.recv()?)
}
}
type Handler = BackendHandler<RetryBackoffService<RuntimeTransport>, Arc<RetryProvider>>;
type CreateFuture =
Pin<Box<dyn Future<Output = eyre::Result<(ForkId, CreatedFork, Handler)>> + Send>>;
type CreateSender = OneshotSender<eyre::Result<(ForkId, SharedBackend, Env)>>;
type GetEnvSender = OneshotSender<Option<Env>>;
/// Request that's send to the handler.
#[derive(Debug)]
enum Request {
/// Creates a new ForkBackend.
CreateFork(Box<CreateFork>, CreateSender),
/// Returns the Fork backend for the `ForkId` if it exists.
GetFork(ForkId, OneshotSender<Option<SharedBackend>>),
/// Adjusts the block that's being forked, by creating a new fork at the new block.
RollFork(ForkId, u64, CreateSender),
/// Returns the environment of the fork.
GetEnv(ForkId, GetEnvSender),
/// Updates the block number and timestamp of the fork.
UpdateBlock(ForkId, U256, U256),
/// Shutdowns the entire `MultiForkHandler`, see `ShutDownMultiFork`
ShutDown(OneshotSender<()>),
/// Returns the Fork Url for the `ForkId` if it exists.
GetForkUrl(ForkId, OneshotSender<Option<String>>),
}
enum ForkTask {
/// Contains the future that will establish a new fork.
Create(CreateFuture, ForkId, CreateSender, Vec<CreateSender>),
}
/// The type that manages connections in the background.
#[must_use = "futures do nothing unless polled"]
pub struct MultiForkHandler {
/// Incoming requests from the `MultiFork`.
incoming: Fuse<Receiver<Request>>,
/// All active handlers.
///
/// It's expected that this list will be rather small (<10).
handlers: Vec<(ForkId, Handler)>,
// tasks currently in progress
pending_tasks: Vec<ForkTask>,
/// All _unique_ forkids mapped to their corresponding backend.
///
/// Note: The backend can be shared by multiple ForkIds if the target the same provider and
/// block number.
forks: HashMap<ForkId, CreatedFork>,
/// Optional periodic interval to flush rpc cache.
flush_cache_interval: Option<tokio::time::Interval>,
}
impl MultiForkHandler {
fn new(incoming: Receiver<Request>) -> Self {
Self {
incoming: incoming.fuse(),
handlers: Default::default(),
pending_tasks: Default::default(),
forks: Default::default(),
flush_cache_interval: None,
}
}
/// Sets the interval after which all rpc caches should be flushed periodically.
pub fn set_flush_cache_interval(&mut self, period: Duration) -> &mut Self {
self.flush_cache_interval =
Some(tokio::time::interval_at(tokio::time::Instant::now() + period, period));
self
}
/// Returns the list of additional senders of a matching task for the given id, if any.
fn find_in_progress_task(&mut self, id: &ForkId) -> Option<&mut Vec<CreateSender>> {
for task in self.pending_tasks.iter_mut() {
#[allow(irrefutable_let_patterns)]
if let ForkTask::Create(_, in_progress, _, additional) = task {
if in_progress == id {
return Some(additional);
}
}
}
None
}
fn create_fork(&mut self, fork: CreateFork, sender: CreateSender) {
let fork_id = ForkId::new(&fork.url, fork.evm_opts.fork_block_number);
trace!(?fork_id, "created new forkId");
// There could already be a task for the requested fork in progress.
if let Some(in_progress) = self.find_in_progress_task(&fork_id) {
in_progress.push(sender);
return;
}
// Need to create a new fork.
let task = Box::pin(create_fork(fork));
self.pending_tasks.push(ForkTask::Create(task, fork_id, sender, Vec::new()));
}
fn insert_new_fork(
&mut self,
fork_id: ForkId,
fork: CreatedFork,
sender: CreateSender,
additional_senders: Vec<CreateSender>,
) {
self.forks.insert(fork_id.clone(), fork.clone());
let _ = sender.send(Ok((fork_id.clone(), fork.backend.clone(), fork.opts.env.clone())));
// Notify all additional senders and track unique forkIds.
for sender in additional_senders {
let next_fork_id = fork.inc_senders(fork_id.clone());
self.forks.insert(next_fork_id.clone(), fork.clone());
let _ = sender.send(Ok((next_fork_id, fork.backend.clone(), fork.opts.env.clone())));
}
}
/// Update fork block number and timestamp. Used to preserve values set by `roll` and `warp`
/// cheatcodes when new fork selected.
fn update_block(&mut self, fork_id: ForkId, block_number: U256, block_timestamp: U256) {
if let Some(fork) = self.forks.get_mut(&fork_id) {
fork.opts.env.block.number = block_number;
fork.opts.env.block.timestamp = block_timestamp;
}
}
fn on_request(&mut self, req: Request) {
match req {
Request::CreateFork(fork, sender) => self.create_fork(*fork, sender),
Request::GetFork(fork_id, sender) => {
let fork = self.forks.get(&fork_id).map(|f| f.backend.clone());
let _ = sender.send(fork);
}
Request::RollFork(fork_id, block, sender) => {
if let Some(fork) = self.forks.get(&fork_id) {
trace!(target: "fork::multi", "rolling {} to {}", fork_id, block);
let mut opts = fork.opts.clone();
opts.evm_opts.fork_block_number = Some(block);
self.create_fork(opts, sender)
} else {
let _ = sender.send(Err(eyre::eyre!("No matching fork exits for {}", fork_id)));
}
}
Request::GetEnv(fork_id, sender) => {
let _ = sender.send(self.forks.get(&fork_id).map(|fork| fork.opts.env.clone()));
}
Request::UpdateBlock(fork_id, block_number, block_timestamp) => {
self.update_block(fork_id, block_number, block_timestamp);
}
Request::ShutDown(sender) => {
trace!(target: "fork::multi", "received shutdown signal");
// We're emptying all fork backends, this way we ensure all caches get flushed.
self.forks.clear();
self.handlers.clear();
let _ = sender.send(());
}
Request::GetForkUrl(fork_id, sender) => {
let fork = self.forks.get(&fork_id).map(|f| f.opts.url.clone());
let _ = sender.send(fork);
}
}
}
}
// Drives all handler to completion.
// This future will finish once all underlying BackendHandler are completed.
impl Future for MultiForkHandler {
type Output = ();
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
let pin = self.get_mut();
// Receive new requests.
loop {
match Pin::new(&mut pin.incoming).poll_next(cx) {
Poll::Ready(Some(req)) => {
pin.on_request(req);
}
Poll::Ready(None) => {
// Channel closed, but we still need to drive the fork handlers to completion.
trace!(target: "fork::multi", "request channel closed");
break;
}
Poll::Pending => break,
}
}
// Advance all tasks.
for n in (0..pin.pending_tasks.len()).rev() {
let task = pin.pending_tasks.swap_remove(n);
match task {
ForkTask::Create(mut fut, id, sender, additional_senders) => {
if let Poll::Ready(resp) = fut.poll_unpin(cx) {
match resp {
Ok((fork_id, fork, handler)) => {
if let Some(fork) = pin.forks.get(&fork_id).cloned() {
pin.insert_new_fork(
fork.inc_senders(fork_id),
fork,
sender,
additional_senders,
);
} else {
pin.handlers.push((fork_id.clone(), handler));
pin.insert_new_fork(fork_id, fork, sender, additional_senders);
}
}
Err(err) => {
let _ = sender.send(Err(eyre::eyre!("{err}")));
for sender in additional_senders {
let _ = sender.send(Err(eyre::eyre!("{err}")));
}
}
}
} else {
pin.pending_tasks.push(ForkTask::Create(
fut,
id,
sender,
additional_senders,
));
}
}
}
}
// Advance all handlers.
for n in (0..pin.handlers.len()).rev() {
let (id, mut handler) = pin.handlers.swap_remove(n);
match handler.poll_unpin(cx) {
Poll::Ready(_) => {
trace!(target: "fork::multi", "fork {:?} completed", id);
}
Poll::Pending => {
pin.handlers.push((id, handler));
}
}
}
if pin.handlers.is_empty() && pin.incoming.is_done() {
trace!(target: "fork::multi", "completed");
return Poll::Ready(());
}
// Periodically flush cached RPC state.
if pin
.flush_cache_interval
.as_mut()
.map(|interval| interval.poll_tick(cx).is_ready())
.unwrap_or_default() &&
!pin.forks.is_empty()
{
trace!(target: "fork::multi", "tick flushing caches");
let forks = pin.forks.values().map(|f| f.backend.clone()).collect::<Vec<_>>();
// Flush this on new thread to not block here.
std::thread::Builder::new()
.name("flusher".into())
.spawn(move || {
forks.into_iter().for_each(|fork| fork.flush_cache());
})
.expect("failed to spawn thread");
}
Poll::Pending
}
}
/// Tracks the created Fork
#[derive(Debug, Clone)]
struct CreatedFork {
/// How the fork was initially created.
opts: CreateFork,
/// Copy of the sender.
backend: SharedBackend,
/// How many consumers there are, since a `SharedBacked` can be used by multiple
/// consumers.
num_senders: Arc<AtomicUsize>,
}
impl CreatedFork {
pub fn new(opts: CreateFork, backend: SharedBackend) -> Self {
Self { opts, backend, num_senders: Arc::new(AtomicUsize::new(1)) }
}
/// Increment senders and return unique identifier of the fork.
fn inc_senders(&self, fork_id: ForkId) -> ForkId {
format!(
"{}-{}",
fork_id.as_str(),
self.num_senders.fetch_add(1, std::sync::atomic::Ordering::Relaxed)
)
.into()
}
}
/// A type that's used to signaling the `MultiForkHandler` when it's time to shut down.
///
/// This is essentially a sync on drop, so that the `MultiForkHandler` can flush all rpc cashes.
///
/// This type intentionally does not implement `Clone` since it's intended that there's only once
/// instance.
#[derive(Debug)]
struct ShutDownMultiFork {
handler: Option<Sender<Request>>,
}
impl Drop for ShutDownMultiFork {
fn drop(&mut self) {
trace!(target: "fork::multi", "initiating shutdown");
let (sender, rx) = oneshot_channel();
let req = Request::ShutDown(sender);
if let Some(mut handler) = self.handler.take() {
if handler.try_send(req).is_ok() {
let _ = rx.recv();
trace!(target: "fork::cache", "multifork backend shutdown");
}
}
}
}
/// Creates a new fork.
///
/// This will establish a new `Provider` to the endpoint and return the Fork Backend.
async fn create_fork(mut fork: CreateFork) -> eyre::Result<(ForkId, CreatedFork, Handler)> {
let provider = Arc::new(
ProviderBuilder::new(fork.url.as_str())
.maybe_max_retry(fork.evm_opts.fork_retries)
.maybe_initial_backoff(fork.evm_opts.fork_retry_backoff)
.compute_units_per_second(fork.evm_opts.get_compute_units_per_second())
.build()?,
);
// Initialise the fork environment.
let (env, block) = fork.evm_opts.fork_evm_env(&fork.url).await?;
fork.env = env;
let meta = BlockchainDbMeta::new(fork.env.clone(), fork.url.clone());
// We need to use the block number from the block because the env's number can be different on
// some L2s (e.g. Arbitrum).
let number = block.header().number();
// Determine the cache path if caching is enabled.
let cache_path = if fork.enable_caching {
Config::foundry_block_cache_dir(meta.cfg_env.chain_id, number)
} else {
None
};
let db = BlockchainDb::new(meta, cache_path);
let (backend, handler) = SharedBackend::new(provider, db, Some(number.into()));
let fork = CreatedFork::new(fork, backend);
let fork_id = ForkId::new(&fork.opts.url, number.into());
Ok((fork_id, fork, handler))
}