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 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
// Copyright 2015-2017 Benjamin Fry <benjaminfry@me.com>
//
// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
// https://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
// https://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.
//! class of DNS operations, in general always IN for internet
#![allow(clippy::use_self)]
use std::cmp::Ordering;
use std::fmt::{self, Display, Formatter};
use std::str::FromStr;
#[cfg(feature = "serde-config")]
use serde::{Deserialize, Serialize};
use crate::error::*;
use crate::serialize::binary::*;
/// The DNS Record class
#[cfg_attr(feature = "serde-config", derive(Deserialize, Serialize))]
#[derive(Debug, PartialEq, Eq, Hash, Copy, Clone)]
#[allow(dead_code)]
pub enum DNSClass {
/// Internet
IN,
/// Chaos
CH,
/// Hesiod
HS,
/// QCLASS NONE
NONE,
/// QCLASS * (ANY)
ANY,
/// Special class for OPT Version, it was overloaded for EDNS - RFC 6891
/// From the RFC: `Values lower than 512 MUST be treated as equal to 512`
OPT(u16),
/// Unknown DNSClass was parsed
Unknown(u16),
}
impl FromStr for DNSClass {
type Err = ProtoError;
/// Convert from `&str` to `DNSClass`
///
/// ```
/// use std::str::FromStr;
/// use hickory_proto::rr::dns_class::DNSClass;
///
/// let var: DNSClass = DNSClass::from_str("IN").unwrap();
/// assert_eq!(DNSClass::IN, var);
/// ```
fn from_str(str: &str) -> ProtoResult<Self> {
debug_assert!(str.chars().all(|x| !char::is_ascii_lowercase(&x)));
match str {
"IN" => Ok(Self::IN),
"CH" => Ok(Self::CH),
"HS" => Ok(Self::HS),
"NONE" => Ok(Self::NONE),
"ANY" | "*" => Ok(Self::ANY),
_ => Err(ProtoErrorKind::UnknownDnsClassStr(str.to_string()).into()),
}
}
}
impl DNSClass {
/// Convert from `u16` to `DNSClass`
///
/// ```
/// use hickory_proto::rr::dns_class::DNSClass;
///
/// let var = DNSClass::from_u16(1).unwrap();
/// assert_eq!(DNSClass::IN, var);
/// ```
#[deprecated(note = "use u16::into instead, this is now infallible")]
pub fn from_u16(value: u16) -> ProtoResult<Self> {
match value {
1 => Ok(Self::IN),
3 => Ok(Self::CH),
4 => Ok(Self::HS),
254 => Ok(Self::NONE),
255 => Ok(Self::ANY),
_ => Ok(Self::Unknown(value)),
}
}
/// Return the OPT version from value
pub fn for_opt(value: u16) -> Self {
// From RFC 6891: `Values lower than 512 MUST be treated as equal to 512`
let value = value.max(512);
Self::OPT(value)
}
}
impl BinEncodable for DNSClass {
fn emit(&self, encoder: &mut BinEncoder<'_>) -> ProtoResult<()> {
encoder.emit_u16((*self).into())
}
}
impl<'r> BinDecodable<'r> for DNSClass {
fn read(decoder: &mut BinDecoder<'_>) -> ProtoResult<Self> {
let this = Self::from(
decoder.read_u16()?.unverified(/*DNSClass is verified as safe in processing this*/),
);
Ok(this)
}
}
// TODO make these a macro or annotation
/// Convert from `DNSClass` to `&str`
///
/// ```
/// use hickory_proto::rr::dns_class::DNSClass;
///
/// let var: &'static str = DNSClass::IN.into();
/// assert_eq!("IN", var);
/// ```
impl From<DNSClass> for &'static str {
fn from(rt: DNSClass) -> &'static str {
match rt {
DNSClass::IN => "IN",
DNSClass::CH => "CH",
DNSClass::HS => "HS",
DNSClass::NONE => "NONE",
DNSClass::ANY => "ANY",
DNSClass::OPT(_) => "OPT",
DNSClass::Unknown(_) => "UNKNOWN",
}
}
}
/// Convert from `u16` to `DNSClass`
///
/// ```
/// use hickory_proto::rr::dns_class::DNSClass;
///
/// let var: DNSClass = 1u16.into();
/// assert_eq!(DNSClass::IN, var);
/// ```
impl From<u16> for DNSClass {
fn from(value: u16) -> Self {
match value {
1 => Self::IN,
3 => Self::CH,
4 => Self::HS,
254 => Self::NONE,
255 => Self::ANY,
_ => Self::Unknown(value),
}
}
}
/// Convert from `DNSClass` to `u16`
///
/// ```
/// use hickory_proto::rr::dns_class::DNSClass;
///
/// let var: u16 = DNSClass::IN.into();
/// assert_eq!(1, var);
/// ```
impl From<DNSClass> for u16 {
fn from(rt: DNSClass) -> Self {
match rt {
DNSClass::IN => 1,
DNSClass::CH => 3,
DNSClass::HS => 4,
DNSClass::NONE => 254,
DNSClass::ANY => 255,
// see https://tools.ietf.org/html/rfc6891#section-6.1.2
DNSClass::OPT(max_payload_len) => max_payload_len.max(512),
DNSClass::Unknown(unknown) => unknown,
}
}
}
impl PartialOrd<Self> for DNSClass {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
Some(self.cmp(other))
}
}
impl Ord for DNSClass {
fn cmp(&self, other: &Self) -> Ordering {
u16::from(*self).cmp(&u16::from(*other))
}
}
impl Display for DNSClass {
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), fmt::Error> {
f.write_str(Into::<&str>::into(*self))
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_order() {
let ordered = vec![
DNSClass::IN,
DNSClass::CH,
DNSClass::HS,
DNSClass::NONE,
DNSClass::ANY,
];
let mut unordered = vec![
DNSClass::NONE,
DNSClass::HS,
DNSClass::CH,
DNSClass::IN,
DNSClass::ANY,
];
unordered.sort();
assert_eq!(unordered, ordered);
}
#[test]
fn check_dns_class_parse_wont_panic_with_symbols() {
let dns_class = "a-b-c".to_ascii_uppercase().parse::<DNSClass>();
assert!(matches!(&dns_class, Err(ProtoError { .. })));
}
}