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
use std::collections::HashSet;
#[cfg(test)]
use std::time::Duration;
use futures::{
channel::{mpsc, oneshot},
FutureExt, SinkExt,
};
#[cfg(test)]
use futures_timer::Delay;
use polkadot_node_primitives::{ValidationResult, APPROVAL_EXECUTION_TIMEOUT};
use polkadot_node_subsystem::{
messages::{AvailabilityRecoveryMessage, CandidateValidationMessage},
overseer, ActiveLeavesUpdate, RecoveryError,
};
use polkadot_node_subsystem_util::runtime::get_validation_code_by_hash;
use polkadot_primitives::v2::{BlockNumber, CandidateHash, CandidateReceipt, Hash, SessionIndex};
use crate::LOG_TARGET;
use crate::error::{FatalError, FatalResult, Result};
#[cfg(test)]
mod tests;
#[cfg(test)]
pub use tests::{participation_full_happy_path, participation_missing_availability};
mod queues;
use queues::Queues;
pub use queues::{ParticipationPriority, ParticipationRequest, QueueError};
const MAX_PARALLEL_PARTICIPATIONS: usize = 3;
pub struct Participation {
running_participations: HashSet<CandidateHash>,
queue: Queues,
worker_sender: WorkerMessageSender,
recent_block: Option<(BlockNumber, Hash)>,
}
#[derive(Debug)]
pub struct WorkerMessage(ParticipationStatement);
pub type WorkerMessageSender = mpsc::Sender<WorkerMessage>;
pub type WorkerMessageReceiver = mpsc::Receiver<WorkerMessage>;
#[derive(Debug)]
pub struct ParticipationStatement {
pub session: SessionIndex,
pub candidate_hash: CandidateHash,
pub candidate_receipt: CandidateReceipt,
pub outcome: ParticipationOutcome,
}
#[derive(Copy, Clone, Debug)]
pub enum ParticipationOutcome {
Valid,
Invalid,
Unavailable,
Error,
}
impl ParticipationOutcome {
pub fn validity(self) -> Option<bool> {
match self {
Self::Valid => Some(true),
Self::Invalid => Some(false),
Self::Unavailable | Self::Error => None,
}
}
}
impl WorkerMessage {
fn from_request(req: ParticipationRequest, outcome: ParticipationOutcome) -> Self {
let session = req.session();
let (candidate_hash, candidate_receipt) = req.into_candidate_info();
Self(ParticipationStatement { session, candidate_hash, candidate_receipt, outcome })
}
}
#[overseer::contextbounds(DisputeCoordinator, prefix = self::overseer)]
impl Participation {
pub fn new(sender: WorkerMessageSender) -> Self {
Self {
running_participations: HashSet::new(),
queue: Queues::new(),
worker_sender: sender,
recent_block: None,
}
}
pub async fn queue_participation<Context>(
&mut self,
ctx: &mut Context,
priority: ParticipationPriority,
req: ParticipationRequest,
) -> Result<()> {
if self.running_participations.contains(req.candidate_hash()) {
return Ok(())
}
if let Some((_, h)) = self.recent_block {
if self.running_participations.len() < MAX_PARALLEL_PARTICIPATIONS {
self.fork_participation(ctx, req, h)?;
return Ok(())
}
}
self.queue.queue(ctx.sender(), priority, req).await
}
pub async fn get_participation_result<Context>(
&mut self,
ctx: &mut Context,
msg: WorkerMessage,
) -> FatalResult<ParticipationStatement> {
let WorkerMessage(statement) = msg;
self.running_participations.remove(&statement.candidate_hash);
let recent_block = self.recent_block.expect("We never ever reset recent_block to `None` and we already received a result, so it must have been set before. qed.");
self.dequeue_until_capacity(ctx, recent_block.1).await?;
Ok(statement)
}
pub async fn process_active_leaves_update<Context>(
&mut self,
ctx: &mut Context,
update: &ActiveLeavesUpdate,
) -> FatalResult<()> {
if let Some(activated) = &update.activated {
match self.recent_block {
None => {
self.recent_block = Some((activated.number, activated.hash));
self.dequeue_until_capacity(ctx, activated.hash).await?;
},
Some((number, _)) if activated.number > number => {
self.recent_block = Some((activated.number, activated.hash));
},
Some(_) => {},
}
}
Ok(())
}
async fn dequeue_until_capacity<Context>(
&mut self,
ctx: &mut Context,
recent_head: Hash,
) -> FatalResult<()> {
while self.running_participations.len() < MAX_PARALLEL_PARTICIPATIONS {
if let Some(req) = self.queue.dequeue() {
self.fork_participation(ctx, req, recent_head)?;
} else {
break
}
}
Ok(())
}
fn fork_participation<Context>(
&mut self,
ctx: &mut Context,
req: ParticipationRequest,
recent_head: Hash,
) -> FatalResult<()> {
if self.running_participations.insert(req.candidate_hash().clone()) {
let sender = ctx.sender().clone();
ctx.spawn(
"participation-worker",
participate(self.worker_sender.clone(), sender, recent_head, req).boxed(),
)
.map_err(FatalError::SpawnFailed)?;
}
Ok(())
}
}
async fn participate(
mut result_sender: WorkerMessageSender,
mut sender: impl overseer::DisputeCoordinatorSenderTrait,
block_hash: Hash,
req: ParticipationRequest,
) {
#[cfg(test)]
Delay::new(Duration::from_millis(100)).await;
let (recover_available_data_tx, recover_available_data_rx) = oneshot::channel();
sender
.send_message(AvailabilityRecoveryMessage::RecoverAvailableData(
req.candidate_receipt().clone(),
req.session(),
None,
recover_available_data_tx,
))
.await;
let available_data = match recover_available_data_rx.await {
Err(oneshot::Canceled) => {
gum::warn!(
target: LOG_TARGET,
"`Oneshot` got cancelled when recovering available data {:?}",
req.candidate_hash(),
);
send_result(&mut result_sender, req, ParticipationOutcome::Error).await;
return
},
Ok(Ok(data)) => data,
Ok(Err(RecoveryError::Invalid)) => {
send_result(&mut result_sender, req, ParticipationOutcome::Invalid).await;
return
},
Ok(Err(RecoveryError::Unavailable)) => {
send_result(&mut result_sender, req, ParticipationOutcome::Unavailable).await;
return
},
};
let validation_code = match get_validation_code_by_hash(
&mut sender,
block_hash,
req.candidate_receipt().descriptor.validation_code_hash,
)
.await
{
Ok(Some(code)) => code,
Ok(None) => {
gum::warn!(
target: LOG_TARGET,
"Validation code unavailable for code hash {:?} in the state of block {:?}",
req.candidate_receipt().descriptor.validation_code_hash,
block_hash,
);
send_result(&mut result_sender, req, ParticipationOutcome::Error).await;
return
},
Err(err) => {
gum::warn!(target: LOG_TARGET, ?err, "Error when fetching validation code.");
send_result(&mut result_sender, req, ParticipationOutcome::Error).await;
return
},
};
let (validation_tx, validation_rx) = oneshot::channel();
sender
.send_message(CandidateValidationMessage::ValidateFromExhaustive(
available_data.validation_data,
validation_code,
req.candidate_receipt().clone(),
available_data.pov,
APPROVAL_EXECUTION_TIMEOUT,
validation_tx,
))
.await;
match validation_rx.await {
Err(oneshot::Canceled) => {
gum::warn!(
target: LOG_TARGET,
"`Oneshot` got cancelled when validating candidate {:?}",
req.candidate_hash(),
);
send_result(&mut result_sender, req, ParticipationOutcome::Error).await;
return
},
Ok(Err(err)) => {
gum::warn!(
target: LOG_TARGET,
"Candidate {:?} validation failed with: {:?}",
req.candidate_hash(),
err,
);
send_result(&mut result_sender, req, ParticipationOutcome::Invalid).await;
},
Ok(Ok(ValidationResult::Invalid(invalid))) => {
gum::warn!(
target: LOG_TARGET,
"Candidate {:?} considered invalid: {:?}",
req.candidate_hash(),
invalid,
);
send_result(&mut result_sender, req, ParticipationOutcome::Invalid).await;
},
Ok(Ok(ValidationResult::Valid(_, _))) => {
send_result(&mut result_sender, req, ParticipationOutcome::Valid).await;
},
}
}
async fn send_result(
sender: &mut WorkerMessageSender,
req: ParticipationRequest,
outcome: ParticipationOutcome,
) {
if let Err(err) = sender.feed(WorkerMessage::from_request(req, outcome)).await {
gum::error!(
target: LOG_TARGET,
?err,
"Sending back participation result failed. Dispute coordinator not working properly!"
);
}
}