-
Notifications
You must be signed in to change notification settings - Fork 219
/
mod.rs
245 lines (209 loc) · 8.63 KB
/
mod.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
// Copyright 2020, The Tari Project
//
// Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
// following conditions are met:
//
// 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
// disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
// following disclaimer in the documentation and/or other materials provided with the distribution.
//
// 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
// products derived from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
// USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//! # Dedup Cache
//!
//! Keeps track of messages seen before by this node and discards duplicates.
mod dedup_cache;
use std::task::Poll;
use blake2::Blake2b;
pub use dedup_cache::DedupCacheDatabase;
use digest::{consts::U32, Digest};
use futures::{future::BoxFuture, task::Context};
use log::*;
use tari_comms::pipeline::PipelineError;
use tari_crypto::{
hash_domain,
hashing::{DomainSeparatedHasher, LengthExtensionAttackResistant},
};
use tari_utilities::hex::Hex;
use tower::{layer::Layer, Service, ServiceExt};
use crate::{
actor::DhtRequester,
inbound::{DecryptedDhtMessage, DhtInboundMessage},
};
const LOG_TARGET: &str = "comms::dht::dedup";
const DEDUP_MESSAGE_HASH_LABEL: &str = "dedup.meesage_hash";
hash_domain!(CommsDhtDedupDomain, "com.tari.comms.dht", 1);
fn comms_dht_dedup_message_hash<D: Digest + LengthExtensionAttackResistant>(
label: &'static str,
) -> DomainSeparatedHasher<D, CommsDhtDedupDomain> {
DomainSeparatedHasher::<D, CommsDhtDedupDomain>::new_with_label(label)
}
pub fn hash_inbound_message(msg: &DhtInboundMessage) -> [u8; 32] {
create_message_hash(&msg.dht_header.message_signature, &msg.body)
}
pub fn create_message_hash(message_signature: &[u8], body: &[u8]) -> [u8; 32] {
let result = comms_dht_dedup_message_hash::<Blake2b<U32>>(DEDUP_MESSAGE_HASH_LABEL)
.chain(message_signature)
.chain(body)
.finalize();
let mut out = [0u8; 32];
out.copy_from_slice(result.as_ref());
out
}
/// # DHT Deduplication middleware
///
/// Takes in a `DecryptedDhtMessage` and checks the message signature cache for duplicates.
/// If a duplicate message is detected, it is discarded.
#[derive(Clone)]
pub struct DedupMiddleware<S> {
next_service: S,
dht_requester: DhtRequester,
allowed_message_occurrences: usize,
}
impl<S> DedupMiddleware<S> {
pub fn new(service: S, dht_requester: DhtRequester, allowed_message_occurrences: usize) -> Self {
Self {
next_service: service,
dht_requester,
allowed_message_occurrences,
}
}
}
impl<S> Service<DecryptedDhtMessage> for DedupMiddleware<S>
where
S: Service<DecryptedDhtMessage, Response = (), Error = PipelineError> + Clone + Send + 'static,
S::Future: Send,
{
type Error = PipelineError;
type Future = BoxFuture<'static, Result<Self::Response, Self::Error>>;
type Response = ();
fn poll_ready(&mut self, _: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
Poll::Ready(Ok(()))
}
fn call(&mut self, mut message: DecryptedDhtMessage) -> Self::Future {
let next_service = self.next_service.clone();
let mut dht_requester = self.dht_requester.clone();
let allowed_message_occurrences = self.allowed_message_occurrences;
Box::pin(async move {
trace!(
target: LOG_TARGET,
"Inserting message hash {} for message {} (Trace: {})",
message.dedup_hash.to_hex(),
message.tag,
message.dht_header.message_tag
);
message.dedup_hit_count = dht_requester
.add_message_to_dedup_cache(message.dedup_hash.clone(), message.source_peer.public_key.clone())
.await?;
if message.dedup_hit_count as usize > allowed_message_occurrences {
trace!(
target: LOG_TARGET,
"Received duplicate message {} (hit_count = {}) from peer '{}' (Trace: {}). Message discarded.",
message.tag,
message.dedup_hit_count,
message.source_peer.node_id.short_str(),
message.dht_header.message_tag,
);
return Ok(());
}
trace!(
target: LOG_TARGET,
"Passing message {} (hit_count = {}) onto next service (Trace: {})",
message.tag,
message.dedup_hit_count,
message.dht_header.message_tag
);
next_service.oneshot(message).await
})
}
}
pub struct DedupLayer {
dht_requester: DhtRequester,
allowed_message_occurrences: usize,
}
impl DedupLayer {
pub fn new(dht_requester: DhtRequester, allowed_message_occurrences: usize) -> Self {
Self {
dht_requester,
allowed_message_occurrences,
}
}
}
impl<S> Layer<S> for DedupLayer {
type Service = DedupMiddleware<S>;
fn layer(&self, service: S) -> Self::Service {
DedupMiddleware::new(service, self.dht_requester.clone(), self.allowed_message_occurrences)
}
}
#[cfg(test)]
mod test {
use tari_comms::wrap_in_envelope_body;
use tari_test_utils::panic_context;
use tokio::runtime::Runtime;
use super::*;
use crate::{
envelope::DhtMessageFlags,
test_utils::{create_dht_actor_mock, make_dht_inbound_message, make_node_identity, service_spy},
};
#[test]
fn process_message() {
let rt = Runtime::new().unwrap();
let spy = service_spy();
let (dht_requester, mock) = create_dht_actor_mock(1);
let mock_state = mock.get_shared_state();
mock_state.set_number_of_message_hits(1);
rt.spawn(mock.run());
let mut dedup = DedupLayer::new(dht_requester, 3).layer(spy.to_service::<PipelineError>());
panic_context!(cx);
assert!(dedup.poll_ready(&mut cx).is_ready());
let node_identity = make_node_identity();
let inbound_message =
make_dht_inbound_message(&node_identity, &vec![], DhtMessageFlags::empty(), false, false).unwrap();
let decrypted_msg = DecryptedDhtMessage::succeeded(wrap_in_envelope_body!(vec![]), None, inbound_message);
rt.block_on(dedup.call(decrypted_msg.clone())).unwrap();
assert_eq!(spy.call_count(), 1);
mock_state.set_number_of_message_hits(4);
rt.block_on(dedup.call(decrypted_msg)).unwrap();
assert_eq!(spy.call_count(), 1);
// Drop dedup so that the DhtMock will stop running
drop(dedup);
}
#[test]
fn deterministic_hash() {
const TEST_MSG: &[u8] = b"test123";
const EXPECTED_HASH: &str = "64f1db1039353cf2ff7e09889d14ffd9885766c3dc494a59823a499edfe6997c";
let node_identity = make_node_identity();
let dht_message = make_dht_inbound_message(
&node_identity,
&TEST_MSG.to_vec(),
DhtMessageFlags::empty(),
false,
false,
)
.unwrap();
let decrypted1 = DecryptedDhtMessage::succeeded(wrap_in_envelope_body!(vec![]), None, dht_message);
let node_identity = make_node_identity();
let dht_message = make_dht_inbound_message(
&node_identity,
&TEST_MSG.to_vec(),
DhtMessageFlags::empty(),
false,
false,
)
.unwrap();
let decrypted2 = DecryptedDhtMessage::succeeded(wrap_in_envelope_body!(vec![]), None, dht_message);
assert_eq!(decrypted1.dedup_hash, decrypted2.dedup_hash);
let subjects = &[decrypted1.dedup_hash, decrypted2.dedup_hash];
assert!(subjects.iter().all(|h| h.to_hex() == EXPECTED_HASH));
}
}