-
Notifications
You must be signed in to change notification settings - Fork 219
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: address domain separation regarding challenge generation for mac origin (see issue #4333) #4338
fix: address domain separation regarding challenge generation for mac origin (see issue #4333) #4338
Changes from all commits
0b17607
da661f8
b6e29d5
95a9948
20b9323
58c5e5a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -28,10 +28,10 @@ use chacha20::{ | |||||||||||||||||||||||
Key, | ||||||||||||||||||||||||
Nonce, | ||||||||||||||||||||||||
}; | ||||||||||||||||||||||||
use digest::{Digest, FixedOutput}; | ||||||||||||||||||||||||
use rand::{rngs::OsRng, RngCore}; | ||||||||||||||||||||||||
use tari_comms::types::{Challenge, CommsPublicKey}; | ||||||||||||||||||||||||
use tari_crypto::{ | ||||||||||||||||||||||||
hashing::{DomainSeparatedHasher, GenericHashDomain}, | ||||||||||||||||||||||||
keys::{DiffieHellmanSharedSecret, PublicKey}, | ||||||||||||||||||||||||
tari_utilities::{epoch_time::EpochTime, ByteArray}, | ||||||||||||||||||||||||
}; | ||||||||||||||||||||||||
|
@@ -43,6 +43,8 @@ use crate::{ | |||||||||||||||||||||||
version::DhtProtocolVersion, | ||||||||||||||||||||||||
}; | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
const DOMAIN_SEPARATION_CHALLENGE_LABEL: &str = "com.tari.comms.dht.crypt.message_parts"; | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
#[derive(Debug, Clone, Zeroize)] | ||||||||||||||||||||||||
#[zeroize(drop)] | ||||||||||||||||||||||||
pub struct CipherKey(chacha20::Key); | ||||||||||||||||||||||||
|
@@ -89,8 +91,8 @@ pub fn encrypt(cipher_key: &CipherKey, plain_text: &[u8]) -> Vec<u8> { | |||||||||||||||||||||||
} | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
/// Generates a 32-byte hashed challenge that commits to the message header and body | ||||||||||||||||||||||||
pub fn create_message_challenge(header: &DhtMessageHeader, body: &[u8]) -> [u8; 32] { | ||||||||||||||||||||||||
create_message_challenge_parts( | ||||||||||||||||||||||||
pub fn create_message_domain_separated_hash(header: &DhtMessageHeader, body: &[u8]) -> [u8; 32] { | ||||||||||||||||||||||||
create_message_domain_separated_hash_parts( | ||||||||||||||||||||||||
header.version, | ||||||||||||||||||||||||
&header.destination, | ||||||||||||||||||||||||
header.message_type, | ||||||||||||||||||||||||
|
@@ -102,7 +104,7 @@ pub fn create_message_challenge(header: &DhtMessageHeader, body: &[u8]) -> [u8; | |||||||||||||||||||||||
} | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
/// Generates a 32-byte hashed challenge that commits to all message parts | ||||||||||||||||||||||||
pub fn create_message_challenge_parts( | ||||||||||||||||||||||||
pub fn create_message_domain_separated_hash_parts( | ||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
The previous name conveys the intent well enough, but the addition of |
||||||||||||||||||||||||
protocol_version: DhtProtocolVersion, | ||||||||||||||||||||||||
destination: &NodeDestination, | ||||||||||||||||||||||||
message_type: DhtMessageType, | ||||||||||||||||||||||||
|
@@ -111,14 +113,10 @@ pub fn create_message_challenge_parts( | |||||||||||||||||||||||
ephemeral_public_key: Option<&CommsPublicKey>, | ||||||||||||||||||||||||
body: &[u8], | ||||||||||||||||||||||||
) -> [u8; 32] { | ||||||||||||||||||||||||
let mut mac_challenge = Challenge::new(); | ||||||||||||||||||||||||
mac_challenge.update(&protocol_version.as_bytes()); | ||||||||||||||||||||||||
mac_challenge.update(destination.to_inner_bytes()); | ||||||||||||||||||||||||
mac_challenge.update(&(message_type as i32).to_le_bytes()); | ||||||||||||||||||||||||
mac_challenge.update(&flags.bits().to_le_bytes()); | ||||||||||||||||||||||||
// get byte representation of `expires` input | ||||||||||||||||||||||||
let expires = expires.map(|t| t.as_u64().to_le_bytes()).unwrap_or_default(); | ||||||||||||||||||||||||
mac_challenge.update(&expires); | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
// get byte representation of `ephemeral_public_key` | ||||||||||||||||||||||||
let e_pk = ephemeral_public_key | ||||||||||||||||||||||||
.map(|e_pk| { | ||||||||||||||||||||||||
let mut buf = [0u8; 32]; | ||||||||||||||||||||||||
|
@@ -127,10 +125,25 @@ pub fn create_message_challenge_parts( | |||||||||||||||||||||||
buf | ||||||||||||||||||||||||
}) | ||||||||||||||||||||||||
.unwrap_or_default(); | ||||||||||||||||||||||||
mac_challenge.update(&e_pk); | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
mac_challenge.update(&body); | ||||||||||||||||||||||||
mac_challenge.finalize_fixed().into() | ||||||||||||||||||||||||
// we digest the given data into a domain independent hash function to produce a signature | ||||||||||||||||||||||||
// use of the hashing API for domain separation and deal with variable length input | ||||||||||||||||||||||||
let domain_separated_hash = | ||||||||||||||||||||||||
DomainSeparatedHasher::<Challenge, GenericHashDomain>::new(DOMAIN_SEPARATION_CHALLENGE_LABEL) | ||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Note that |
||||||||||||||||||||||||
.chain(&protocol_version.as_bytes()) | ||||||||||||||||||||||||
.chain(destination.to_inner_bytes()) | ||||||||||||||||||||||||
.chain(&(message_type as i32).to_le_bytes()) | ||||||||||||||||||||||||
.chain(&flags.bits().to_le_bytes()) | ||||||||||||||||||||||||
.chain(&expires) | ||||||||||||||||||||||||
.chain(&e_pk) | ||||||||||||||||||||||||
.chain(&body) | ||||||||||||||||||||||||
.finalize() | ||||||||||||||||||||||||
.into_vec(); | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
let mut output = [0u8; 32]; | ||||||||||||||||||||||||
// the use of Challenge bind to Blake256, should always produce a 32-byte length output data | ||||||||||||||||||||||||
output.copy_from_slice(domain_separated_hash.as_slice()); | ||||||||||||||||||||||||
output | ||||||||||||||||||||||||
Comment on lines
+140
to
+146
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
This way the runtime panic is not hidden in |
||||||||||||||||||||||||
} | ||||||||||||||||||||||||
|
||||||||||||||||||||||||
#[cfg(test)] | ||||||||||||||||||||||||
|
Original file line number | Diff line number | Diff line change | ||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -44,11 +44,11 @@ use crate::{ | |||||||||||||||||
const LOG_TARGET: &str = "comms::dht::dedup"; | ||||||||||||||||||
|
||||||||||||||||||
pub fn hash_inbound_message(msg: &DhtInboundMessage) -> [u8; 32] { | ||||||||||||||||||
create_message_hash(&msg.dht_header.origin_mac, &msg.body) | ||||||||||||||||||
create_message_hash(&msg.dht_header.message_signature, &msg.body) | ||||||||||||||||||
} | ||||||||||||||||||
|
||||||||||||||||||
pub fn create_message_hash(origin_mac: &[u8], body: &[u8]) -> [u8; 32] { | ||||||||||||||||||
Challenge::new().chain(origin_mac).chain(&body).finalize().into() | ||||||||||||||||||
pub fn create_message_hash(message_signature: &[u8], body: &[u8]) -> [u8; 32] { | ||||||||||||||||||
Challenge::new().chain(message_signature).chain(&body).finalize().into() | ||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||
} | ||||||||||||||||||
|
||||||||||||||||||
/// # DHT Deduplication middleware | ||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please use
comms_dht_hash_domain()