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
use crate::handlers::{wire, ACK_NAMESPACE};
use commonware_codec::{Decode, Encode};
use commonware_cryptography::{
bls12381::{
dkg::{
player::Output,
types::{Ack, Share},
Dealer, Player,
},
primitives::{group, variant::MinSig},
},
Signer,
};
use commonware_macros::select;
use commonware_p2p::{Receiver, Recipients, Sender};
use commonware_runtime::{spawn_cell, Clock, ContextCell, Spawner};
use commonware_utils::{quorum, set::Ordered};
use futures::{channel::mpsc, SinkExt};
use rand_core::CryptoRngCore;
use std::time::Duration;
use tracing::{debug, info, warn};
/// A DKG/Resharing contributor that can be configured to behave honestly
/// or deviate as a rogue, lazy, or forger.
pub struct Contributor<E: Clock + CryptoRngCore + Spawner, C: Signer> {
context: ContextCell<E>,
crypto: C,
dkg_phase_timeout: Duration,
arbiter: C::PublicKey,
t: u32,
contributors: Ordered<C::PublicKey>,
corrupt: bool,
lazy: bool,
forger: bool,
signatures: mpsc::Sender<(u64, Output<MinSig>)>,
}
impl<E: Clock + CryptoRngCore + Spawner, C: Signer> Contributor<E, C> {
#[allow(clippy::too_many_arguments)]
pub fn new(
context: E,
crypto: C,
dkg_phase_timeout: Duration,
arbiter: C::PublicKey,
contributors: Ordered<C::PublicKey>,
corrupt: bool,
lazy: bool,
forger: bool,
) -> (Self, mpsc::Receiver<(u64, Output<MinSig>)>) {
let (sender, receiver) = mpsc::channel(32);
(
Self {
context: ContextCell::new(context),
crypto,
dkg_phase_timeout,
arbiter,
t: quorum(contributors.len() as u32),
contributors,
corrupt,
lazy,
forger,
signatures: sender,
},
receiver,
)
}
async fn run_round(
&mut self,
previous: Option<&Output<MinSig>>,
sender: &mut impl Sender<PublicKey = C::PublicKey>,
receiver: &mut impl Receiver<PublicKey = C::PublicKey>,
) -> (u64, Option<Output<MinSig>>) {
// Configure me
let me = self.crypto.public_key();
let me_idx = self.contributors.position(&me).unwrap() as u32;
// Wait for start message from arbiter
let (public, round) = loop {
match receiver.recv().await {
Ok((sender, msg)) => {
if sender != self.arbiter {
debug!("dropping messages until receive start message from arbiter");
continue;
}
let msg = match wire::Dkg::<C::Signature>::decode_cfg(
msg,
&self.contributors.len(),
) {
Ok(msg) => msg,
Err(err) => {
warn!(?err, "received invalid message from arbiter");
continue;
}
};
let round = msg.round;
let wire::Payload::Start { group } = msg.payload else {
// This could happen if out-of-sync on phase.
return (round, None);
};
break (group, round);
}
Err(err) => {
debug!(?err, "did not receive start message");
continue;
}
}
};
// If don't have polynomial or there is a round mismatch, attempt to
// recover using round but don't deal.
let mut should_deal = true;
match (&previous, &public) {
(Some(previous), None) => {
warn!(
expected = ?previous.public,
"previous group polynomial but found none"
);
should_deal = false;
}
(Some(previous), Some(public)) => {
if previous.public != *public {
warn!(
expected = ?previous.public,
found = ?public,
"group polynomial does not match expected"
);
should_deal = false;
}
}
(None, Some(public)) => {
warn!(
found = ?public,
"found group polynomial but expected none"
);
should_deal = false;
}
_ => {}
}
info!(
round,
should_deal,
reshare = public.is_some(),
"starting round"
);
// Create dealer
let mut dealer_obj = if should_deal {
let previous = previous.map(|previous| previous.share.clone());
let (dealer, commitment, shares) =
Dealer::<_, MinSig>::new(&mut self.context, previous, self.contributors.clone());
Some((dealer, commitment, shares, Vec::new()))
} else {
None
};
// Create player
let mut player_obj = Player::new(
me.clone(),
public.clone(),
self.contributors.clone(),
self.contributors.clone(),
1,
);
// Distribute shares
if let Some((dealer, commitment, shares, acks)) = &mut dealer_obj {
let mut sent = 0;
for (idx, player) in self.contributors.iter().enumerate() {
// Send to self
let mut share = shares[idx].clone();
if idx == me_idx as usize {
player_obj
.share(me.clone(), commitment.clone(), share)
.unwrap();
dealer.ack(me.clone()).unwrap();
acks.push(Ack::new::<_, MinSig>(
ACK_NAMESPACE,
&self.crypto,
me_idx,
round,
&me,
commitment,
));
continue;
}
// Send to others
if self.forger {
// If we are a forger, don't send any shares and instead create fake signatures.
let _ = dealer.ack(player.clone());
let signature = self.crypto.sign(None, b"fake");
acks.push(Ack {
player: idx as u32,
signature,
});
warn!(round, ?player, "not sending share because forger");
continue;
}
if self.corrupt {
// If we are corrupt, randomly modify the share.
share = group::Share {
index: share.index,
private: group::Scalar::from_rand(&mut self.context),
};
warn!(round, ?player, "modified share");
}
if self.lazy && sent == self.t - 1 {
// This will still lead to the commitment being used (>= t acks) because
// the dealer has already acked.
warn!(round, ?player, "not sending share because lazy");
continue;
}
let success = sender
.send(
Recipients::One(player.clone()),
wire::Dkg::<C::Signature> {
round,
payload: wire::Payload::Share(Share::new(commitment.clone(), share)),
}
.encode()
.into(),
true,
)
.await
.expect("could not send share");
if success.is_empty() {
warn!(round, ?player, "failed to send share");
} else {
debug!(round, ?player, "sent share");
sent += 1;
}
}
}
// Respond to commitments and wait for acks
let t = self.context.current() + 2 * self.dkg_phase_timeout;
loop {
select! {
_ = self.context.sleep_until(t) => {
debug!(round, "ack timeout");
break;
},
result = receiver.recv() => {
match result {
Ok((peer, msg)) => {
let msg = match wire::Dkg::<C::Signature>::decode_cfg(msg, &self.contributors.len()) {
Ok(msg) => msg,
Err(_) => {
warn!("received invalid message from arbiter");
return (round, None);
}
};
if msg.round != round {
warn!(
round,
msg_round = msg.round,
"received commitments round does not match expected"
);
return (round, None);
}
match msg.payload {
wire::Payload::Ack(ack) => {
// Skip if not dealing
let Some((dealer, commitment, _, acks)) = &mut dealer_obj else {
continue;
};
// Skip if forger
if self.forger {
continue;
}
// Verify index matches
let Some(player) = self.contributors.get(ack.player as usize) else {
continue;
};
if player != &peer {
warn!(round, ?peer, "received ack with wrong index");
continue;
}
// Verify signature on incoming ack
if !ack.verify::<MinSig, _>(ACK_NAMESPACE, &peer, round, &me, commitment) {
warn!(round, ?peer, "received invalid ack signature");
continue;
}
// Store ack
if let Err(e) = dealer.ack(peer) {
warn!(round, error = ?e, "failed to record ack");
continue;
}
acks.push(ack);
},
wire::Payload::Share(Share { commitment, share }) => {
// Store share
if let Err(e) = player_obj.share(peer.clone(), commitment.clone(), share){
warn!(round, error = ?e, "failed to store share");
continue;
}
// Send ack
let ack = Ack::new::<C, MinSig>(
ACK_NAMESPACE,
&self.crypto,
me_idx,
round,
&peer,
&commitment
);
sender
.send(
Recipients::One(peer),
wire::Dkg {
round,
payload: wire::Payload::Ack(ack),
}
.encode()
.into(),
true,
)
.await
.expect("could not send ack");
},
_ => {
// Useless message
continue;
}
};
}
Err(e) => {
debug!(round, error = ?e, "unable to read message");
return (round, None);
}
}
}
}
}
// Send commitment to arbiter
if let Some((_, commitment, shares, acks)) = dealer_obj {
let mut reveals = Vec::new();
for idx in 0..self.contributors.len() as u32 {
if !acks.iter().any(|a| a.player == idx) {
reveals.push(shares[idx as usize].clone());
}
}
debug!(
round,
acks = acks.len(),
reveals = reveals.len(),
"sending commitment to arbiter"
);
sender
.send(
Recipients::One(self.arbiter.clone()),
wire::Dkg {
round,
payload: wire::Payload::Commitment {
commitment,
acks,
reveals,
},
}
.encode()
.into(),
true,
)
.await
.expect("could not send commitment");
}
// Wait for message from arbiter
loop {
match receiver.recv().await {
Ok((peer, msg)) => {
let msg = match wire::Dkg::<C::Signature>::decode_cfg(
msg,
&self.contributors.len(),
) {
Ok(msg) => msg,
Err(_) => {
warn!("received invalid message from arbiter");
return (round, None);
}
};
if round != msg.round {
warn!(
round,
msg.round, "received success message with wrong round"
);
return (round, None);
}
if peer != self.arbiter {
continue;
}
let (commitments, reveals) = match msg.payload {
wire::Payload::Success {
commitments,
reveals,
} => (commitments, reveals),
wire::Payload::Abort => {
warn!(round, "received abort message");
return (round, None);
}
_ => {
warn!(round, "received unexpected message");
return (round, None);
}
};
// Handle success
debug!(
round,
commitments = commitments.len(),
reveals = reveals.len(),
"finalizing round"
);
if should_deal && !commitments.contains_key(&me_idx) {
warn!(round, "commitment not included");
}
let Ok(output) = player_obj.finalize(commitments, reveals) else {
warn!(round, "failed to finalize round");
return (round, None);
};
return (round, Some(output));
}
Err(e) => {
debug!(error = ?e, "unable to read message");
return (round, None);
}
}
}
}
pub fn start(
mut self,
sender: impl Sender<PublicKey = C::PublicKey>,
receiver: impl Receiver<PublicKey = C::PublicKey>,
) {
spawn_cell!(self.context, self.run(sender, receiver).await);
}
async fn run(
mut self,
mut sender: impl Sender<PublicKey = C::PublicKey>,
mut receiver: impl Receiver<PublicKey = C::PublicKey>,
) {
if self.corrupt {
warn!("running as corrupt");
}
if self.lazy {
warn!("running as lazy");
}
if self.forger {
warn!("running as forger");
}
let mut previous = None;
loop {
let (round, output) = self
.run_round(previous.as_ref(), &mut sender, &mut receiver)
.await;
match output {
None => {
warn!(round, "round failed");
continue;
}
Some(output) => {
info!(round, public = ?output.public, "round success");
// Generate signature over round
self.signatures.send((round, output.clone())).await.unwrap();
// Update state
previous = Some(output);
}
}
}
}
}