calimero-node 0.10.1-rc.17

Core Calimero infrastructure and tools
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
//! Key sharing protocol.
//!
//! **Single Responsibility**: Exchanges cryptographic keys between peers.
//!
//! ## Security Note
//!
//! This protocol relies on libp2p's transport encryption (Noise/TLS) rather than
//! implementing additional application-layer encryption. All streams are already:
//! - Encrypted with ChaCha20-Poly1305 (Noise) or AES-GCM (TLS 1.3)
//! - Authenticated (mutual peer verification)
//! - Forward secret (ephemeral DH keys per connection)
//!
//! See `crates/network/src/behaviour.rs` for transport configuration.

use calimero_crypto::Nonce;
use calimero_network_primitives::stream::Stream;
use calimero_node_primitives::sync::{InitPayload, MessagePayload, StreamMessage};
use calimero_primitives::context::Context;
use calimero_primitives::identity::PublicKey;
use ed25519_dalek::Signature;
use eyre::{bail, OptionExt};
use rand::{thread_rng, Rng};
use tracing::{debug, info};

use super::manager::SyncManager;
use super::tracking::Sequencer;

pub const CHALLENGE_DOMAIN: [u8; 38] = *b"CALIMERO_KEY_SHARE_CHALLENGE_HANDSHAKE";

impl SyncManager {
    pub(super) async fn initiate_key_share_process(
        &self,
        context: &mut Context,
        our_identity: PublicKey,
        stream: &mut Stream,
    ) -> eyre::Result<()> {
        info!(
            context_id=%context.id,
            our_identity=%our_identity,
            "Initiating key share",
        );

        let our_nonce = thread_rng().gen::<Nonce>();

        self.send(
            stream,
            &StreamMessage::Init {
                context_id: context.id,
                party_id: our_identity,
                payload: InitPayload::KeyShare,
                next_nonce: our_nonce,
            },
            None,
        )
        .await?;

        let Some(ack) = self.recv(stream, None).await? else {
            bail!("connection closed while awaiting state sync handshake");
        };

        let their_identity = match ack {
            StreamMessage::Init {
                party_id,
                payload: InitPayload::KeyShare,
                ..
            } => party_id,
            unexpected @ (StreamMessage::Init { .. }
            | StreamMessage::Message { .. }
            | StreamMessage::OpaqueError) => {
                bail!("unexpected message: {:?}", unexpected)
            }
        };

        // Deterministic tie-breaker: use lexicographic comparison to prevent deadlock
        // when both peers initiate simultaneously. Both will agree on who is initiator.
        let is_initiator = <PublicKey as AsRef<[u8; 32]>>::as_ref(&our_identity)
            > <PublicKey as AsRef<[u8; 32]>>::as_ref(&their_identity);

        debug!(
            context_id=%context.id,
            our_identity=%our_identity,
            their_identity=%their_identity,
            is_initiator=%is_initiator,
            "Determined role via deterministic comparison (prevents deadlock)"
        );

        self.bidirectional_key_share(context, our_identity, their_identity, stream, is_initiator)
            .await
    }

    pub(super) async fn handle_key_share_request(
        &self,
        context: &Context,
        our_identity: PublicKey,
        their_identity: PublicKey,
        stream: &mut Stream,
        _their_nonce: Nonce,
    ) -> eyre::Result<()> {
        debug!(
            context_id=%context.id,
            their_identity=%their_identity,
            "Received key share request",
        );

        let our_nonce = thread_rng().gen::<Nonce>();

        self.send(
            stream,
            &StreamMessage::Init {
                context_id: context.id,
                party_id: our_identity,
                payload: InitPayload::KeyShare,
                next_nonce: our_nonce,
            },
            None,
        )
        .await?;

        // Use same deterministic tie-breaker as initiate_key_share_process
        // Both peers must agree on roles to prevent deadlock
        let is_initiator = <PublicKey as AsRef<[u8; 32]>>::as_ref(&our_identity)
            > <PublicKey as AsRef<[u8; 32]>>::as_ref(&their_identity);

        debug!(
            context_id=%context.id,
            is_initiator=%is_initiator,
            "Determined role via deterministic comparison (consistent with peer)"
        );

        self.bidirectional_key_share(context, our_identity, their_identity, stream, is_initiator)
            .await
    }

    async fn bidirectional_key_share(
        &self,
        context: &Context,
        our_identity: PublicKey,
        their_identity: PublicKey,
        stream: &mut Stream,
        is_initiator: bool,
    ) -> eyre::Result<()> {
        debug!(
            context_id=%context.id,
            our_identity=%our_identity,
            their_identity=%their_identity,
            is_initiator=%is_initiator,
            "Starting bidirectional key share with challenge-response authentication",
        );

        let mut their_identity_record = match self
            .context_client
            .get_identity(&context.id, &their_identity)?
        {
            Some(record) => record,
            None => {
                // Peer is a group member but doesn't have a ContextIdentity
                // entry yet. Write a placeholder to the store so that
                // update_identity (called after key exchange) can find it.
                if !self
                    .context_client
                    .has_member(&context.id, &their_identity)?
                {
                    eyre::bail!("peer is not a member of context {}", context.id);
                }
                let mut handle = self.context_client.datastore().handle();
                handle.put(
                    &calimero_store::key::ContextIdentity::new(context.id, their_identity),
                    &calimero_store::types::ContextIdentity {
                        private_key: None,
                        sender_key: None,
                    },
                )?;
                drop(handle);
                calimero_context_primitives::client::crypto::ContextIdentity {
                    public_key: their_identity,
                    private_key: None,
                    sender_key: None,
                }
            }
        };

        let (our_private_key, sender_key) = self
            .context_client
            .get_identity(&context.id, &our_identity)?
            .and_then(|i| Some((i.private_key?, i.sender_key?)))
            .ok_or_eyre("expected own identity to have private & sender keys")?;

        let our_nonce = thread_rng().gen::<Nonce>();
        let mut sqx_out = Sequencer::default();
        let mut sqx_in = Sequencer::default();

        // Asymmetric protocol to avoid deadlock:
        // Initiator: send challenge → recv response → recv challenge → send response → exchange keys
        // Responder: recv challenge → send response → send challenge → recv response → exchange keys

        if is_initiator {
            // INITIATOR: Challenge them first
            let challenge: [u8; 32] = thread_rng().gen();

            debug!(
                context_id=%context.id,
                their_identity=%their_identity,
                "Sending authentication challenge to peer (initiator)"
            );

            self.send(
                stream,
                &StreamMessage::Message {
                    sequence_id: sqx_out.next(),
                    payload: MessagePayload::Challenge { challenge },
                    next_nonce: our_nonce,
                },
                None,
            )
            .await?;

            // Receive their signature
            let Some(msg) = self.recv(stream, None).await? else {
                bail!("connection closed while awaiting challenge response");
            };

            let (sequence_id, their_signature_bytes) = match msg {
                StreamMessage::Message {
                    sequence_id,
                    payload: MessagePayload::ChallengeResponse { signature },
                    ..
                } => (sequence_id, signature),
                unexpected => {
                    bail!("expected ChallengeResponse, got {:?}", unexpected)
                }
            };

            sqx_in.expect(sequence_id)?;

            // Verify their signature
            let mut peer_payload = CHALLENGE_DOMAIN.to_vec();
            peer_payload.extend_from_slice(&challenge);

            let their_signature = Signature::from_bytes(&their_signature_bytes);
            their_identity
                .verify(&peer_payload, &their_signature)
                .map_err(|e| eyre::eyre!("Peer failed to prove identity ownership: {}", e))?;

            info!(
                context_id=%context.id,
                their_identity=%their_identity,
                "Peer successfully authenticated via challenge-response"
            );

            // Now receive their challenge for us
            let Some(msg) = self.recv(stream, None).await? else {
                bail!("connection closed while awaiting challenge");
            };

            let (sequence_id, their_challenge) = match msg {
                StreamMessage::Message {
                    sequence_id,
                    payload: MessagePayload::Challenge { challenge },
                    ..
                } => (sequence_id, challenge),
                unexpected => {
                    bail!("expected Challenge, got {:?}", unexpected)
                }
            };

            sqx_in.expect(sequence_id)?;

            let mut payload = CHALLENGE_DOMAIN.to_vec();
            payload.extend_from_slice(&their_challenge);

            // Sign their challenge with a payload
            let our_signature = our_private_key.sign(&payload)?;

            debug!(
                context_id=%context.id,
                our_identity=%our_identity,
                "Sending authentication response to peer (initiator)"
            );

            self.send(
                stream,
                &StreamMessage::Message {
                    sequence_id: sqx_out.next(),
                    payload: MessagePayload::ChallengeResponse {
                        signature: our_signature.to_bytes(),
                    },
                    next_nonce: our_nonce,
                },
                None,
            )
            .await?;
        } else {
            // RESPONDER: Receive challenge first, then send ours
            let Some(msg) = self.recv(stream, None).await? else {
                bail!("connection closed while awaiting challenge");
            };

            let (sequence_id, their_challenge) = match msg {
                StreamMessage::Message {
                    sequence_id,
                    payload: MessagePayload::Challenge { challenge },
                    ..
                } => (sequence_id, challenge),
                unexpected => {
                    bail!("expected Challenge, got {:?}", unexpected)
                }
            };

            sqx_in.expect(sequence_id)?;

            let mut payload = CHALLENGE_DOMAIN.to_vec();
            payload.extend_from_slice(&their_challenge);

            // Sign their challenge with a payload
            let our_signature = our_private_key.sign(&payload)?;

            debug!(
                context_id=%context.id,
                our_identity=%our_identity,
                "Sending authentication response to peer (responder)"
            );

            self.send(
                stream,
                &StreamMessage::Message {
                    sequence_id: sqx_out.next(),
                    payload: MessagePayload::ChallengeResponse {
                        signature: our_signature.to_bytes(),
                    },
                    next_nonce: our_nonce,
                },
                None,
            )
            .await?;

            // Now send our challenge
            let challenge: [u8; 32] = thread_rng().gen();

            debug!(
                context_id=%context.id,
                their_identity=%their_identity,
                "Sending authentication challenge to peer (responder)"
            );

            self.send(
                stream,
                &StreamMessage::Message {
                    sequence_id: sqx_out.next(),
                    payload: MessagePayload::Challenge { challenge },
                    next_nonce: our_nonce,
                },
                None,
            )
            .await?;

            // Receive their signature
            let Some(msg) = self.recv(stream, None).await? else {
                bail!("connection closed while awaiting challenge response");
            };

            let (sequence_id, their_signature_bytes) = match msg {
                StreamMessage::Message {
                    sequence_id,
                    payload: MessagePayload::ChallengeResponse { signature },
                    ..
                } => (sequence_id, signature),
                unexpected => {
                    bail!("expected ChallengeResponse, got {:?}", unexpected)
                }
            };

            sqx_in.expect(sequence_id)?;

            // Verify their signature
            let mut peer_payload = CHALLENGE_DOMAIN.to_vec();
            peer_payload.extend_from_slice(&challenge);

            let their_signature = Signature::from_bytes(&their_signature_bytes);
            their_identity
                .verify(&peer_payload, &their_signature)
                .map_err(|e| eyre::eyre!("Peer failed to prove identity ownership: {}", e))?;

            info!(
                context_id=%context.id,
                their_identity=%their_identity,
                "Peer successfully authenticated via challenge-response"
            );
        }

        // Now exchange sender_keys (both parties authenticated)
        // Asymmetric to avoid deadlock: initiator sends first, responder sends first
        if is_initiator {
            // Initiator sends their sender_key first
            self.send(
                stream,
                &StreamMessage::Message {
                    sequence_id: sqx_out.next(),
                    payload: MessagePayload::KeyShare { sender_key },
                    next_nonce: our_nonce,
                },
                None,
            )
            .await?;

            // Then receives peer's sender_key
            let Some(msg) = self.recv(stream, None).await? else {
                bail!("connection closed while awaiting key share");
            };

            let (sequence_id, peer_sender_key) = match msg {
                StreamMessage::Message {
                    sequence_id,
                    payload: MessagePayload::KeyShare { sender_key },
                    ..
                } => (sequence_id, sender_key),
                unexpected => {
                    bail!("expected KeyShare, got {:?}", unexpected)
                }
            };

            sqx_in.expect(sequence_id)?;
            their_identity_record.sender_key = Some(peer_sender_key);
        } else {
            // Responder receives sender_key first
            let Some(msg) = self.recv(stream, None).await? else {
                bail!("connection closed while awaiting key share");
            };

            let (sequence_id, peer_sender_key) = match msg {
                StreamMessage::Message {
                    sequence_id,
                    payload: MessagePayload::KeyShare { sender_key },
                    ..
                } => (sequence_id, sender_key),
                unexpected => {
                    bail!("expected KeyShare, got {:?}", unexpected)
                }
            };

            sqx_in.expect(sequence_id)?;
            their_identity_record.sender_key = Some(peer_sender_key);

            // Then sends their sender_key
            self.send(
                stream,
                &StreamMessage::Message {
                    sequence_id: sqx_out.next(),
                    payload: MessagePayload::KeyShare { sender_key },
                    next_nonce: our_nonce,
                },
                None,
            )
            .await?;
        }

        // Update their identity with received sender_key (already set in branches above)
        self.context_client
            .update_identity(&context.id, &their_identity_record)?;

        info!(
            context_id=%context.id,
            our_identity=%our_identity,
            their_identity=%their_identity_record.public_key,
            "Key share completed with mutual authentication",
        );

        Ok(())
    }
}