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
/*
 * Copyright (C) 2015-2019 Benjamin Fry <benjaminfry@me.com>
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

//! record data enum variants

use error::*;
use rr::rdata::DNSSECRecordType;
use rr::{Name, RData, RecordType};
use serialize::txt::rdata_parsers::*;

pub trait RDataParser: Sized {
    fn parse<'i, I: Iterator<Item = &'i str>>(
        record_type: RecordType,
        tokens: I,
        origin: Option<&Name>,
    ) -> ParseResult<Self>;
}

impl RDataParser for RData {
    /// Parse the RData from a set of Tokens
    fn parse<'i, I: Iterator<Item = &'i str>>(
        record_type: RecordType,
        tokens: I,
        origin: Option<&Name>,
    ) -> ParseResult<Self> {
        let rdata = match record_type {
            RecordType::A => RData::A(a::parse(tokens)?),
            RecordType::AAAA => RData::AAAA(aaaa::parse(tokens)?),
            RecordType::ANAME => RData::ANAME(name::parse(tokens, origin)?),
            // FIXME: these should be errors not panics...
            RecordType::ANY => panic!("parsing ANY doesn't make sense"), // valid panic, never should happen
            RecordType::AXFR => panic!("parsing AXFR doesn't make sense"), // valid panic, never should happen
            RecordType::CAA => caa::parse(tokens).map(RData::CAA)?,
            RecordType::CNAME => RData::CNAME(name::parse(tokens, origin)?),
            RecordType::IXFR => panic!("parsing IXFR doesn't make sense"), // valid panic, never should happen
            RecordType::MX => RData::MX(mx::parse(tokens, origin)?),
            RecordType::NAPTR => RData::NAPTR(naptr::parse(tokens, origin)?),
            RecordType::NULL => RData::NULL(null::parse(tokens)?),
            RecordType::NS => RData::NS(name::parse(tokens, origin)?),
            RecordType::OPENPGPKEY => RData::OPENPGPKEY(openpgpkey::parse(tokens)?),
            RecordType::OPT => panic!("parsing OPT doesn't make sense"), // valid panic, never should happen
            RecordType::PTR => RData::PTR(name::parse(tokens, origin)?),
            RecordType::SOA => RData::SOA(soa::parse(tokens, origin)?),
            RecordType::SRV => RData::SRV(srv::parse(tokens, origin)?),
            RecordType::SSHFP => RData::SSHFP(sshfp::parse(tokens)?),
            RecordType::TLSA => RData::TLSA(tlsa::parse(tokens)?),
            RecordType::TXT => RData::TXT(txt::parse(tokens)?),
            RecordType::DNSSEC(DNSSECRecordType::SIG) => panic!("parsing SIG doesn't make sense"), // valid panic, never should happen
            RecordType::DNSSEC(DNSSECRecordType::DNSKEY) => {
                panic!("DNSKEY should be dynamically generated")
            } // valid panic, never should happen
            RecordType::DNSSEC(DNSSECRecordType::KEY) => {
                panic!("KEY should be dynamically generated")
            } // valid panic, never should happen
            RecordType::DNSSEC(DNSSECRecordType::DS) => {
                panic!("DS should be dynamically generated")
            } // valid panic, never should happen
            RecordType::DNSSEC(DNSSECRecordType::NSEC) => {
                panic!("NSEC should be dynamically generated")
            } // valid panic, never should happen
            RecordType::DNSSEC(DNSSECRecordType::NSEC3) => {
                panic!("NSEC3 should be dynamically generated")
            } // valid panic, never should happen
            RecordType::DNSSEC(DNSSECRecordType::NSEC3PARAM) => {
                panic!("NSEC3PARAM should be dynamically generated")
            } // valid panic, never should happen
            RecordType::DNSSEC(DNSSECRecordType::RRSIG) => {
                panic!("RRSIG should be dynamically generated")
            } // valid panic, never should happen
            RecordType::DNSSEC(DNSSECRecordType::Unknown(code)) => {
                panic!("Unknown dnssec record type, if you want to support this type, please file an issue against Trust-DNS: {}", code)
            } // valid panic, never should happen
            RecordType::Unknown(code) => {
                // TODO: add a way to associate generic record types to the zone
                panic!("Unknown record type, if you want to support this type, please file an issue against Trust-DNS: {}", code)
            }
            RecordType::ZERO => RData::ZERO,
        };

        Ok(rdata)
    }
}