123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492 |
- pub(crate) use std::io::{Cursor, Read};
- pub(crate) use byteorder::{BigEndian, ReadBytesExt, WriteBytesExt};
- use std::io;
- use log::*;
- use crate::record::{Record, OPT};
- use crate::strings::{Labels, ReadLabels, WriteLabels};
- use crate::types::*;
- impl Request {
-
- pub fn to_bytes(&self) -> io::Result<Vec<u8>> {
- let mut bytes = Vec::with_capacity(32);
- bytes.write_u16::<BigEndian>(self.transaction_id)?;
- bytes.write_u16::<BigEndian>(self.flags.to_u16())?;
- bytes.write_u16::<BigEndian>(1)?;
- bytes.write_u16::<BigEndian>(0)?;
- bytes.write_u16::<BigEndian>(0)?;
- bytes.write_u16::<BigEndian>(if self.additional.is_some() { 1 } else { 0 })?;
- bytes.write_labels(&self.query.qname)?;
- bytes.write_u16::<BigEndian>(self.query.qtype)?;
- bytes.write_u16::<BigEndian>(self.query.qclass.to_u16())?;
- if let Some(opt) = &self.additional {
- bytes.write_u8(0)?;
- bytes.write_u16::<BigEndian>(OPT::RR_TYPE)?;
- bytes.extend(opt.to_bytes()?);
- }
- Ok(bytes)
- }
-
- pub fn additional_record() -> OPT {
- OPT {
- udp_payload_size: 512,
- higher_bits: 0,
- edns0_version: 0,
- flags: 0,
- data: Vec::new(),
- }
- }
- }
- impl Response {
-
- #[cfg_attr(feature = "with_mutagen", ::mutagen::mutate)]
- pub fn from_bytes(bytes: &[u8]) -> Result<Self, WireError> {
- info!("Parsing response");
- trace!("Bytes -> {:?}", bytes);
- let mut c = Cursor::new(bytes);
- let transaction_id = c.read_u16::<BigEndian>()?;
- trace!("Read txid -> {:?}", transaction_id);
- let flags = Flags::from_u16(c.read_u16::<BigEndian>()?);
- trace!("Read flags -> {:#?}", flags);
- let query_count = c.read_u16::<BigEndian>()?;
- let answer_count = c.read_u16::<BigEndian>()?;
- let authority_count = c.read_u16::<BigEndian>()?;
- let additional_count = c.read_u16::<BigEndian>()?;
- let mut queries = Vec::new();
- debug!("Reading {}x query from response", query_count);
- for _ in 0 .. query_count {
- let (qname, _) = c.read_labels()?;
- queries.push(Query::from_bytes(qname, &mut c)?);
- }
- let mut answers = Vec::new();
- debug!("Reading {}x answer from response", answer_count);
- for _ in 0 .. answer_count {
- let (qname, _) = c.read_labels()?;
- answers.push(Answer::from_bytes(qname, &mut c)?);
- }
- let mut authorities = Vec::new();
- debug!("Reading {}x authority from response", authority_count);
- for _ in 0 .. authority_count {
- let (qname, _) = c.read_labels()?;
- authorities.push(Answer::from_bytes(qname, &mut c)?);
- }
- let mut additionals = Vec::new();
- debug!("Reading {}x additional answer from response", additional_count);
- for _ in 0 .. additional_count {
- let (qname, _) = c.read_labels()?;
- additionals.push(Answer::from_bytes(qname, &mut c)?);
- }
- Ok(Self { transaction_id, flags, queries, answers, authorities, additionals })
- }
- }
- impl Query {
-
-
- #[cfg_attr(feature = "with_mutagen", ::mutagen::mutate)]
- fn from_bytes(qname: Labels, c: &mut Cursor<&[u8]>) -> Result<Self, WireError> {
- let qtype = c.read_u16::<BigEndian>()?;
- trace!("Read qtype -> {:?}", qtype);
- let qclass = QClass::from_u16(c.read_u16::<BigEndian>()?);
- trace!("Read qclass -> {:?}", qtype);
- Ok(Self { qtype, qclass, qname })
- }
- }
- impl Answer {
-
-
- #[cfg_attr(feature = "with_mutagen", ::mutagen::mutate)]
- fn from_bytes(qname: Labels, c: &mut Cursor<&[u8]>) -> Result<Self, WireError> {
- let qtype = c.read_u16::<BigEndian>()?;
- trace!("Read qtype -> {:?}", qtype);
- if qtype == OPT::RR_TYPE {
- let opt = OPT::read(c)?;
- Ok(Self::Pseudo { qname, opt })
- }
- else {
- let qclass = QClass::from_u16(c.read_u16::<BigEndian>()?);
- trace!("Read qclass -> {:?}", qtype);
- let ttl = c.read_u32::<BigEndian>()?;
- trace!("Read TTL -> {:?}", ttl);
- let record_length = c.read_u16::<BigEndian>()?;
- trace!("Read record length -> {:?}", record_length);
- let record = Record::from_bytes(qtype, record_length, c)?;
- Ok(Self::Standard { qclass, qname, record, ttl })
- }
- }
- }
- impl Record {
-
-
- #[cfg_attr(feature = "with_mutagen", ::mutagen::mutate)]
- fn from_bytes(qtype: TypeInt, len: u16, c: &mut Cursor<&[u8]>) -> Result<Self, WireError> {
- use crate::record::*;
- if cfg!(feature = "with_mutagen") {
- warn!("Mutation is enabled!");
- }
- macro_rules! try_record {
- ($record:tt) => {
- if $record::RR_TYPE == qtype {
- info!("Parsing {} record (type {}, len {})", $record::NAME, qtype, len);
- return Wire::read(len, c).map(Self::$record)
- }
- }
- }
-
-
- try_record!(A);
- try_record!(AAAA);
- try_record!(CAA);
- try_record!(CNAME);
- try_record!(EUI48);
- try_record!(HINFO);
- try_record!(LOC);
- try_record!(MX);
- try_record!(NAPTR);
- try_record!(NS);
- try_record!(OPENPGPKEY);
-
- try_record!(PTR);
- try_record!(SSHFP);
- try_record!(SOA);
- try_record!(SRV);
- try_record!(TLSA);
- try_record!(TXT);
- try_record!(URI);
-
-
- let mut bytes = Vec::new();
- for _ in 0 .. len {
- bytes.push(c.read_u8()?);
- }
- let type_number = UnknownQtype::from(qtype);
- Ok(Self::Other { type_number, bytes })
- }
- }
- impl QClass {
- fn from_u16(uu: u16) -> Self {
- match uu {
- 0x0001 => Self::IN,
- 0x0003 => Self::CH,
- 0x0004 => Self::HS,
- _ => Self::Other(uu),
- }
- }
- fn to_u16(self) -> u16 {
- match self {
- Self::IN => 0x0001,
- Self::CH => 0x0003,
- Self::HS => 0x0004,
- Self::Other(uu) => uu,
- }
- }
- }
- pub fn find_qtype_number(record_type: &str) -> Option<TypeInt> {
- use crate::record::*;
- macro_rules! try_record {
- ($record:tt) => {
- if $record::NAME == record_type {
- return Some($record::RR_TYPE);
- }
- }
- }
- try_record!(A);
- try_record!(AAAA);
- try_record!(CAA);
- try_record!(CNAME);
- try_record!(EUI48);
- try_record!(HINFO);
- try_record!(LOC);
- try_record!(MX);
- try_record!(NAPTR);
- try_record!(NS);
- try_record!(OPENPGPKEY);
-
- try_record!(PTR);
- try_record!(SSHFP);
- try_record!(SOA);
- try_record!(SRV);
- try_record!(TLSA);
- try_record!(TXT);
- try_record!(URI);
- None
- }
- impl Flags {
-
- pub fn query() -> Self {
- Self::from_u16(0b_0000_0001_0000_0000)
- }
-
- pub fn standard_response() -> Self {
- Self::from_u16(0b_1000_0001_1000_0000)
- }
-
- pub fn to_u16(self) -> u16 {
- let mut bits = 0b_0000_0000_0000_0000;
- if self.response { bits |= 0b_1000_0000_0000_0000; }
- match self.opcode {
- Opcode::Query => { bits |= 0b_0000_0000_0000_0000; }
- Opcode::Other(_) => { unimplemented!(); }
- }
- if self.authoritative { bits |= 0b_0000_0100_0000_0000; }
- if self.truncated { bits |= 0b_0000_0010_0000_0000; }
- if self.recursion_desired { bits |= 0b_0000_0001_0000_0000; }
- if self.recursion_available { bits |= 0b_0000_0000_1000_0000; }
- // (the Z bit is reserved) 0b_0000_0000_0100_0000
- if self.authentic_data { bits |= 0b_0000_0000_0010_0000; }
- if self.checking_disabled { bits |= 0b_0000_0000_0001_0000; }
- bits
- }
- /// Extracts the flags from the given two-byte number.
- pub fn from_u16(bits: u16) -> Self {
- let has_bit = |bit| { bits & bit == bit };
- Self {
- response: has_bit(0b_1000_0000_0000_0000),
- opcode: Opcode::from_bits((bits.to_be_bytes()[0] & 0b_0111_1000) >> 3),
- authoritative: has_bit(0b_0000_0100_0000_0000),
- truncated: has_bit(0b_0000_0010_0000_0000),
- recursion_desired: has_bit(0b_0000_0001_0000_0000),
- recursion_available: has_bit(0b_0000_0000_1000_0000),
- authentic_data: has_bit(0b_0000_0000_0010_0000),
- checking_disabled: has_bit(0b_0000_0000_0001_0000),
- error_code: ErrorCode::from_bits(bits & 0b_1111),
- }
- }
- }
- impl Opcode {
- /// Extracts the opcode from this four-bit number, which should have been
- /// extracted from the packet and shifted to be in the range 0–15.
- fn from_bits(bits: u8) -> Self {
- if bits == 0 {
- Self::Query
- }
- else {
- assert!(bits <= 15, "bits {:#08b} out of range", bits);
- Self::Other(bits)
- }
- }
- }
- impl ErrorCode {
- /// Extracts the rcode from the last four bits of the flags field.
- fn from_bits(bits: u16) -> Option<Self> {
- if (0x0F01 .. 0x0FFF).contains(&bits) {
- return Some(Self::Private(bits));
- }
- match bits {
- 0 => None,
- 1 => Some(Self::FormatError),
- 2 => Some(Self::ServerFailure),
- 3 => Some(Self::NXDomain),
- 4 => Some(Self::NotImplemented),
- 5 => Some(Self::QueryRefused),
- 16 => Some(Self::BadVersion),
- n => Some(Self::Other(n)),
- }
- }
- }
- pub trait Wire: Sized {
-
- const NAME: &'static str;
-
-
- const RR_TYPE: u16;
-
-
-
- fn read(len: u16, c: &mut Cursor<&[u8]>) -> Result<Self, WireError>;
- }
- #[macro_export]
- macro_rules! qtype {
- ($type:ty) => {
- <$type as $crate::Wire>::RR_TYPE
- }
- }
- #[derive(PartialEq, Debug)]
- pub enum WireError {
-
-
- IO,
-
-
-
-
-
-
- WrongRecordLength {
-
- stated_length: u16,
-
- mandated_length: MandatedLength,
- },
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- WrongLabelLength {
-
- stated_length: u16,
-
-
- length_after_labels: u16,
- },
-
-
- TooMuchRecursion(Vec<u16>),
-
-
- OutOfBounds(u16),
-
-
-
- WrongVersion {
-
- stated_version: u8,
-
- maximum_supported_version: u8,
- }
- }
- #[derive(PartialEq, Debug, Copy, Clone)]
- pub enum MandatedLength {
-
- Exactly(u16),
-
- AtLeast(u16),
- }
- impl From<io::Error> for WireError {
- fn from(ioe: io::Error) -> Self {
- error!("IO error -> {:?}", ioe);
- Self::IO
- }
- }
|