blob: 52dbd1afaeaf00667890b3cd4933776702cb3697 [file] [log] [blame]
// Copyright 2015-2018 Benjamin Fry <benjaminfry@me.com>
//
// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
// http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
// http://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.
//! `DnsHandle` types perform conversions of the raw DNS messages before sending the messages on the specified streams.
use std::error::Error;
use futures_util::stream::Stream;
use rand;
use tracing::debug;
use crate::op::{Message, MessageType, OpCode, Query};
use crate::xfer::{DnsRequest, DnsRequestOptions, DnsResponse, SerialMessage};
use crate::{error::*, op::Edns};
// TODO: this should be configurable
// > An EDNS buffer size of 1232 bytes will avoid fragmentation on nearly all current networks.
// https://dnsflagday.net/2020/
const MAX_PAYLOAD_LEN: u16 = 1232;
/// Implementations of Sinks for sending DNS messages
pub trait DnsStreamHandle: 'static + Send {
/// Sends a message to the Handle for delivery to the server.
fn send(&mut self, buffer: SerialMessage) -> Result<(), ProtoError>;
}
/// A trait for implementing high level functions of DNS.
pub trait DnsHandle: 'static + Clone + Send + Sync + Unpin {
/// The associated response from the response stream, this should resolve to the Response messages
type Response: Stream<Item = Result<DnsResponse, Self::Error>> + Send + Unpin + 'static;
/// Error of the response, generally this will be `ProtoError`
type Error: From<ProtoError> + Error + Clone + Send + Unpin + 'static;
/// Only returns true if and only if this DNS handle is validating DNSSec.
///
/// If the DnsHandle impl is wrapping other clients, then the correct option is to delegate the question to the wrapped client.
fn is_verifying_dnssec(&self) -> bool {
false
}
/// Allow for disabling EDNS
fn is_using_edns(&self) -> bool {
true
}
/// Send a message via the channel in the client
///
/// # Arguments
///
/// * `request` - the fully constructed Message to send, note that most implementations of
/// will most likely be required to rewrite the QueryId, do no rely on that as
/// being stable.
fn send<R: Into<DnsRequest> + Unpin + Send + 'static>(&mut self, request: R) -> Self::Response;
/// A *classic* DNS query
///
/// This is identical to `query`, but instead takes a `Query` object.
///
/// # Arguments
///
/// * `query` - the query to lookup
/// * `options` - options to use when constructing the message
fn lookup(&mut self, query: Query, options: DnsRequestOptions) -> Self::Response {
debug!("querying: {} {:?}", query.name(), query.query_type());
self.send(DnsRequest::new(build_message(query, options), options))
}
}
fn build_message(query: Query, options: DnsRequestOptions) -> Message {
// build the message
let mut message: Message = Message::new();
// TODO: This is not the final ID, it's actually set in the poll method of DNS future
// should we just remove this?
let id: u16 = rand::random();
message
.add_query(query)
.set_id(id)
.set_message_type(MessageType::Query)
.set_op_code(OpCode::Query)
.set_recursion_desired(options.recursion_desired);
// Extended dns
if options.use_edns {
message
.extensions_mut()
.get_or_insert_with(Edns::new)
.set_max_payload(MAX_PAYLOAD_LEN)
.set_version(0);
}
message
}