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
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
use std::borrow::Borrow;
use std::collections::hash_map::Entry;
use std::collections::HashMap;
use std::fmt::{self, Display};
use std::marker::Unpin;
use std::pin::Pin;
use std::sync::Arc;
use std::task::{Context, Poll};
use std::time::{Duration, SystemTime, UNIX_EPOCH};
use futures::channel::oneshot;
use futures::stream::{Stream, StreamExt};
use futures::{ready, Future, FutureExt};
use log::{debug, warn};
use rand;
use rand::distributions::{Distribution, Standard};
use smallvec::SmallVec;
use crate::error::*;
use crate::op::{Message, MessageFinalizer, OpCode};
use crate::xfer::{
ignore_send, DnsClientStream, DnsRequest, DnsRequestOptions, DnsRequestSender, DnsResponse,
SerialMessage,
};
use crate::DnsStreamHandle;
use crate::Time;
const QOS_MAX_RECEIVE_MSGS: usize = 100;
struct ActiveRequest {
completion: oneshot::Sender<Result<DnsResponse, ProtoError>>,
request_id: u16,
request_options: DnsRequestOptions,
responses: SmallVec<[Message; 1]>,
timeout: Box<dyn Future<Output = ()> + Send + Unpin>,
}
impl ActiveRequest {
fn new(
completion: oneshot::Sender<Result<DnsResponse, ProtoError>>,
request_id: u16,
request_options: DnsRequestOptions,
timeout: Box<dyn Future<Output = ()> + Send + Unpin>,
) -> Self {
ActiveRequest {
completion,
request_id,
request_options,
responses: SmallVec::new(),
timeout,
}
}
fn poll_timeout(&mut self, cx: &mut Context) -> Poll<()> {
self.timeout.poll_unpin(cx)
}
fn is_canceled(&self) -> bool {
self.completion.is_canceled()
}
fn add_response(&mut self, message: Message) {
self.responses.push(message);
}
fn request_id(&self) -> u16 {
self.request_id
}
fn request_options(&self) -> &DnsRequestOptions {
&self.request_options
}
fn complete_with_error(self, error: ProtoError) {
ignore_send(self.completion.send(Err(error)));
}
fn complete(self) {
if self.responses.is_empty() {
self.complete_with_error("no responses received, should have timedout".into());
} else {
ignore_send(self.completion.send(Ok(self.responses.into())));
}
}
}
#[must_use = "futures do nothing unless polled"]
pub struct DnsMultiplexer<S, MF, D = Box<dyn DnsStreamHandle>>
where
D: Send + 'static,
S: DnsClientStream + 'static,
MF: MessageFinalizer,
{
stream: S,
timeout_duration: Duration,
stream_handle: D,
active_requests: HashMap<u16, ActiveRequest>,
signer: Option<Arc<MF>>,
is_shutdown: bool,
}
impl<S, MF> DnsMultiplexer<S, MF, Box<dyn DnsStreamHandle>>
where
S: DnsClientStream + Unpin + 'static,
MF: MessageFinalizer,
{
#[allow(clippy::new_ret_no_self)]
pub fn new<F>(
stream: F,
stream_handle: Box<dyn DnsStreamHandle>,
signer: Option<Arc<MF>>,
) -> DnsMultiplexerConnect<F, S, MF>
where
F: Future<Output = Result<S, ProtoError>> + Send + Unpin + 'static,
{
Self::with_timeout(stream, stream_handle, Duration::from_secs(5), signer)
}
pub fn with_timeout<F>(
stream: F,
stream_handle: Box<dyn DnsStreamHandle>,
timeout_duration: Duration,
signer: Option<Arc<MF>>,
) -> DnsMultiplexerConnect<F, S, MF>
where
F: Future<Output = Result<S, ProtoError>> + Send + Unpin + 'static,
{
DnsMultiplexerConnect {
stream,
stream_handle: Some(stream_handle),
timeout_duration,
signer,
}
}
fn drop_cancelled(&mut self, cx: &mut Context) {
let mut canceled = HashMap::<u16, ProtoError>::new();
for (&id, ref mut active_req) in &mut self.active_requests {
if active_req.is_canceled() {
canceled.insert(id, ProtoError::from("requestor canceled"));
}
match active_req.poll_timeout(cx) {
Poll::Ready(()) => {
debug!("request timed out: {}", id);
canceled.insert(id, ProtoError::from(ProtoErrorKind::Timeout));
}
Poll::Pending => (),
}
}
for (id, error) in canceled {
if let Some(active_request) = self.active_requests.remove(&id) {
if active_request.responses.is_empty() {
active_request.complete_with_error(error);
} else {
active_request.complete();
}
}
}
}
fn next_random_query_id(&self, cx: &mut Context) -> Poll<u16> {
let mut rand = rand::thread_rng();
for _ in 0..100 {
let id: u16 = Standard.sample(&mut rand);
if !self.active_requests.contains_key(&id) {
return Poll::Ready(id);
}
}
cx.waker().wake_by_ref();
Poll::Pending
}
fn stream_closed_close_all(&mut self) {
if !self.active_requests.is_empty() {
warn!(
"stream closed before response received: {}",
self.stream.name_server_addr()
);
}
let error = ProtoError::from("stream closed before response received");
for (_, active_request) in self.active_requests.drain() {
if active_request.responses.is_empty() {
active_request.complete_with_error(error.clone());
} else {
active_request.complete();
}
}
}
}
#[must_use = "futures do nothing unless polled"]
pub struct DnsMultiplexerConnect<F, S, MF>
where
F: Future<Output = Result<S, ProtoError>> + Send + Unpin + 'static,
S: Stream<Item = Result<SerialMessage, ProtoError>> + Unpin,
MF: MessageFinalizer + Send + Sync + 'static,
{
stream: F,
stream_handle: Option<Box<dyn DnsStreamHandle>>,
timeout_duration: Duration,
signer: Option<Arc<MF>>,
}
impl<F, S, MF> Future for DnsMultiplexerConnect<F, S, MF>
where
F: Future<Output = Result<S, ProtoError>> + Send + Unpin + 'static,
S: DnsClientStream + Unpin + 'static,
MF: MessageFinalizer + Send + Sync + 'static,
{
type Output = Result<DnsMultiplexer<S, MF, Box<dyn DnsStreamHandle>>, ProtoError>;
fn poll(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<Self::Output> {
let stream: S = ready!(self.stream.poll_unpin(cx))?;
Poll::Ready(Ok(DnsMultiplexer {
stream,
timeout_duration: self.timeout_duration,
stream_handle: self
.stream_handle
.take()
.expect("must not poll after complete"),
active_requests: HashMap::new(),
signer: self.signer.clone(),
is_shutdown: false,
}))
}
}
impl<S, MF> Display for DnsMultiplexer<S, MF>
where
S: DnsClientStream + 'static,
MF: MessageFinalizer + Send + Sync + 'static,
{
fn fmt(&self, formatter: &mut fmt::Formatter) -> Result<(), fmt::Error> {
write!(formatter, "{}", self.stream)
}
}
impl<S, MF> DnsRequestSender for DnsMultiplexer<S, MF>
where
S: DnsClientStream + Unpin + 'static,
MF: MessageFinalizer + Send + Sync + 'static,
{
type DnsResponseFuture = DnsMultiplexerSerialResponse;
fn send_message<TE: Time>(
&mut self,
request: DnsRequest,
cx: &mut Context,
) -> Self::DnsResponseFuture {
if self.is_shutdown {
panic!("can not send messages after stream is shutdown")
}
let query_id: u16 = match self.next_random_query_id(cx) {
Poll::Ready(id) => id,
Poll::Pending => {
return DnsMultiplexerSerialResponseInner::Err(Some(ProtoError::from(
"id space exhausted, consider filing an issue",
)))
.into()
}
};
let (mut request, request_options) = request.unwrap();
request.set_id(query_id);
let now = match SystemTime::now()
.duration_since(UNIX_EPOCH)
.map_err(|_| ProtoErrorKind::Message("Current time is before the Unix epoch.").into())
{
Ok(now) => now.as_secs(),
Err(err) => return DnsMultiplexerSerialResponseInner::Err(Some(err)).into(),
};
let now = now as u32;
if let OpCode::Update = request.op_code() {
if let Some(ref signer) = self.signer {
if let Err(e) = request.finalize::<MF>(signer.borrow(), now) {
debug!("could not sign message: {}", e);
return DnsMultiplexerSerialResponseInner::Err(Some(e)).into();
}
}
}
let timeout = TE::delay_for(self.timeout_duration);
let (complete, receiver) = oneshot::channel();
let active_request =
ActiveRequest::new(complete, request.id(), request_options, Box::new(timeout));
match request.to_vec() {
Ok(buffer) => {
debug!("sending message id: {}", active_request.request_id());
let serial_message = SerialMessage::new(buffer, self.stream.name_server_addr());
match self.stream_handle.send(serial_message) {
Ok(()) => self
.active_requests
.insert(active_request.request_id(), active_request),
Err(err) => return DnsMultiplexerSerialResponseInner::Err(Some(err)).into(),
};
}
Err(e) => {
debug!(
"error message id: {} error: {}",
active_request.request_id(),
e
);
return DnsMultiplexerSerialResponseInner::Err(Some(e)).into();
}
}
DnsMultiplexerSerialResponseInner::Completion(receiver).into()
}
fn error_response<TE: Time>(error: ProtoError) -> Self::DnsResponseFuture {
DnsMultiplexerSerialResponseInner::Err(Some(error)).into()
}
fn shutdown(&mut self) {
self.is_shutdown = true;
}
fn is_shutdown(&self) -> bool {
self.is_shutdown
}
}
impl<S, MF> Stream for DnsMultiplexer<S, MF>
where
S: DnsClientStream + Unpin + 'static,
MF: MessageFinalizer + Send + Sync + 'static,
{
type Item = Result<(), ProtoError>;
fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<Option<Self::Item>> {
self.drop_cancelled(cx);
if self.is_shutdown && self.active_requests.is_empty() {
debug!("stream is done: {}", self);
return Poll::Ready(None);
}
let mut messages_received = 0;
for i in 0..QOS_MAX_RECEIVE_MSGS {
match self.stream.poll_next_unpin(cx)? {
Poll::Ready(Some(buffer)) => {
messages_received = i;
match buffer.to_message() {
Ok(message) => match self.active_requests.entry(message.id()) {
Entry::Occupied(mut request_entry) => {
let complete = {
let active_request = request_entry.get_mut();
active_request.add_response(message);
!active_request.request_options().expects_multiple_responses
};
if complete {
let active_request = request_entry.remove();
active_request.complete();
}
}
Entry::Vacant(..) => debug!("unexpected request_id: {}", message.id()),
},
Err(e) => debug!("error decoding message: {}", e),
}
}
Poll::Ready(None) => {
debug!("io_stream closed by other side: {}", self.stream);
self.stream_closed_close_all();
return Poll::Ready(None);
}
Poll::Pending => break,
}
}
if messages_received == QOS_MAX_RECEIVE_MSGS {
cx.waker().wake_by_ref();
}
Poll::Pending
}
}
#[must_use = "futures do nothing unless polled"]
pub struct DnsMultiplexerSerialResponse(DnsMultiplexerSerialResponseInner);
impl DnsMultiplexerSerialResponse {
pub fn completion(complete: oneshot::Receiver<ProtoResult<DnsResponse>>) -> Self {
DnsMultiplexerSerialResponseInner::Completion(complete).into()
}
}
impl Future for DnsMultiplexerSerialResponse {
type Output = Result<DnsResponse, ProtoError>;
fn poll(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<Self::Output> {
self.0.poll_unpin(cx)
}
}
impl From<DnsMultiplexerSerialResponseInner> for DnsMultiplexerSerialResponse {
fn from(inner: DnsMultiplexerSerialResponseInner) -> Self {
DnsMultiplexerSerialResponse(inner)
}
}
enum DnsMultiplexerSerialResponseInner {
Completion(oneshot::Receiver<ProtoResult<DnsResponse>>),
Err(Option<ProtoError>),
}
impl Future for DnsMultiplexerSerialResponseInner {
type Output = Result<DnsResponse, ProtoError>;
fn poll(mut self: Pin<&mut Self>, cx: &mut Context) -> Poll<Self::Output> {
match *self {
DnsMultiplexerSerialResponseInner::Completion(ref mut complete) => {
complete.poll_unpin(cx).map(|r| {
r.map_err(|_| ProtoError::from("the completion was canceled"))
.and_then(|r| r)
})
}
DnsMultiplexerSerialResponseInner::Err(ref mut err) => {
Poll::Ready(Err(err.take().expect("cannot poll after complete")))
}
}
}
}