rust-dnsbox/lib/dnsbox-base/src/records/unknown.rs

84 lines
2.2 KiB
Rust
Raw Normal View History

2017-12-21 12:32:14 +00:00
use bytes::Bytes;
use common_types::*;
2017-12-26 16:30:08 +00:00
use common_types::binary::HEXLOWER_PERMISSIVE_ALLOW_WS;
use errors::*;
2017-12-21 12:32:14 +00:00
use failure::{ResultExt, Fail};
use ser::packet::remaining_bytes;
2017-12-27 11:41:54 +00:00
use ser::{RRData, RRDataPacket, RRDataText};
use ser::text::{DnsTextFormatter, DnsTextContext, next_field};
use std::borrow::Cow;
2017-12-21 12:32:14 +00:00
use std::fmt;
2017-12-26 16:30:08 +00:00
use std::io::Cursor;
2017-12-21 12:32:14 +00:00
#[derive(Clone, PartialEq, Eq, Debug)]
pub struct UnknownRecord {
rr_type: Type,
raw: Bytes,
}
impl UnknownRecord {
pub fn new(rr_type: Type, raw: Bytes) -> Self {
UnknownRecord {
rr_type: rr_type,
raw: raw,
}
}
pub fn deserialize(rr_type: Type, data: &mut ::std::io::Cursor<Bytes>) -> Result<Self> {
Ok(UnknownRecord::new(rr_type, remaining_bytes(data)))
}
pub fn dns_parse(rr_type: Type, data: &mut &str) -> Result<Self> {
let field = next_field(data)?;
ensure!(field == r"\#", "expect \\# token to mark generic encoding");
let field = next_field(data).context("generic record data length")?;
let len: usize = field.parse()?;
let result = HEXLOWER_PERMISSIVE_ALLOW_WS.decode(data.as_bytes())
.with_context(|e| e.context(format!("invalid hex: {:?}", data)))?;
ensure!(len == result.len(), "length {} doesn't match length of encoded data {}", len, result.len());
2017-12-27 11:41:54 +00:00
*data = ""; // read all data
2017-12-21 12:32:14 +00:00
Ok(UnknownRecord {
rr_type,
raw: result.into(),
})
}
}
2017-12-26 16:30:08 +00:00
impl RRDataPacket for UnknownRecord {
fn deserialize_rr_data(_ttl: u32, _rr_class: Class, rr_type: Type, data: &mut Cursor<Bytes>) -> Result<Self> {
UnknownRecord::deserialize(rr_type, data)
}
2017-12-26 21:23:47 +00:00
fn rr_type(&self) -> Type {
self.rr_type
}
2017-12-26 16:30:08 +00:00
}
2017-12-27 11:41:54 +00:00
impl RRDataText for UnknownRecord {
fn dns_parse_rr_data(context: &DnsTextContext, data: &mut &str) -> Result<Self>
where
Self: Sized,
{
let t = match context.record_type() {
Some(t) => t,
None => bail!("must parse DNS record with record type context"),
};
UnknownRecord::dns_parse(t, data)
}
// format might fail if there is no (known) text representation.
fn dns_format_rr_data(&self, f: &mut DnsTextFormatter) -> fmt::Result {
write!(f, "\\# {} {}", self.raw.len(), HEXLOWER_PERMISSIVE_ALLOW_WS.encode(&self.raw))
}
fn rr_type_txt(&self) -> Cow<'static, str> {
Cow::Owned(self.rr_type.generic_name())
}
}
impl RRData for UnknownRecord {
}