1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- use log::*;
- use crate::strings::ReadLabels;
- use crate::wire::*;
- /// A **PTR** record, which holds a _pointer_ to a canonical name. This is
- /// most often used for reverse DNS lookups.
- ///
- /// # Encoding
- ///
- /// The text encoding is not specified, but this crate treats it as UTF-8.
- /// Invalid bytes are turned into the replacement character.
- ///
- /// # References
- ///
- /// - [RFC 1035 §3.3.14](https://tools.ietf.org/html/rfc1035) — Domain Names, Implementation and Specification (November 1987)
- #[derive(PartialEq, Debug, Clone)]
- pub struct PTR {
- /// The CNAME contained in the record.
- pub cname: String,
- }
- impl Wire for PTR {
- const NAME: &'static str = "PTR";
- const RR_TYPE: u16 = 12;
- #[cfg_attr(all(test, feature = "with_mutagen"), ::mutagen::mutate)]
- fn read(len: u16, c: &mut Cursor<&[u8]>) -> Result<Self, WireError> {
- let (cname, cname_len) = c.read_labels()?;
- trace!("Parsed cname -> {:?}", cname);
- if len == cname_len {
- trace!("Length is correct");
- Ok(Self { cname })
- }
- else {
- warn!("Length is incorrect (record length {:?}, cname length {:?}", len, cname_len);
- Err(WireError::WrongLabelLength { expected: len, got: cname_len })
- }
- }
- }
- #[cfg(test)]
- mod test {
- use super::*;
- #[test]
- fn parses() {
- let buf = &[
- 0x03, 0x64, 0x6e, 0x73, 0x06, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, // cname
- 0x00, // cname terminator
- ];
- assert_eq!(PTR::read(buf.len() as _, &mut Cursor::new(buf)).unwrap(),
- PTR {
- cname: String::from("dns.google."),
- });
- }
- #[test]
- fn empty() {
- assert_eq!(PTR::read(0, &mut Cursor::new(&[])),
- Err(WireError::IO));
- }
- }
|