-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathheader.rs
200 lines (175 loc) · 5.38 KB
/
header.rs
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
/// Query or Response flag.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))]
pub(crate) enum Qr {
Query,
Response,
}
/// DNS response code.
///
/// # References
///
/// * [RFC 1035 Section 4.1.1](https://www.rfc-editor.org/rfc/rfc1035#section-4.1.1)
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))]
#[repr(u8)]
pub enum ResponseCode {
/// No Error.
///
/// No error condition.
NoError = 0,
/// Format Error.
///
/// The name server was unable to interpret the query.
FormatError = 1,
/// Server Failure.
///
/// The name server was unable to process this query due to a problem with
/// the name server.
ServerFailure = 2,
/// Name Error.
///
/// Meaningful only for responses from an authoritative name server,
/// this code signifies that the domain name referenced in the query does
/// not exist.
NameError = 3,
/// Not Implemented
///
/// The name server does not support the requested kind of query.
NotImplemented = 4,
/// Refused.
///
/// The name server refuses to perform the specified operation for policy
/// reasons.
/// For example, a name server may not wish to provide the information to
/// the particular requester, or a name server may not wish to perform
/// a particular operation (e.g., zone transfer) for particular data.
Refused = 5,
}
impl TryFrom<u8> for ResponseCode {
type Error = u8;
fn try_from(value: u8) -> Result<Self, Self::Error> {
match value {
x if x == ResponseCode::NoError as u8 => Ok(ResponseCode::NoError),
x if x == ResponseCode::FormatError as u8 => Ok(ResponseCode::FormatError),
x if x == ResponseCode::ServerFailure as u8 => Ok(ResponseCode::ServerFailure),
x if x == ResponseCode::NameError as u8 => Ok(ResponseCode::NameError),
x if x == ResponseCode::NotImplemented as u8 => Ok(ResponseCode::NotImplemented),
x if x == ResponseCode::Refused as u8 => Ok(ResponseCode::Refused),
x => Err(x),
}
}
}
/// DNS query header
///
/// # References
///
/// * [RFC 1035 Section 4.1.1](https://www.rfc-editor.org/rfc/rfc1035#section-4.1.1)
#[derive(Debug)]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[cfg_attr(feature = "ufmt", derive(ufmt::derive::uDebug))]
pub(crate) struct Header {
buf: [u8; Self::LEN_USIZE],
}
impl Header {
pub(crate) const LEN: u16 = 12;
pub(crate) const LEN_USIZE: usize = Self::LEN as usize;
pub(crate) fn new_query(id: u16) -> Self {
Self {
buf: Default::default(),
}
.set_id(id)
.set_qr(Qr::Query)
.set_rd(true)
}
#[inline]
pub(crate) fn new_buf() -> [u8; Self::LEN_USIZE] {
[0; Self::LEN_USIZE]
}
/// Set the 16-bit identifier.
#[must_use]
pub(crate) fn id(&self) -> u16 {
u16::from_be_bytes(self.buf[..2].try_into().unwrap())
}
/// Get the 16-bit identifier.
#[must_use = "set_id returns a modified Header"]
pub(crate) fn set_id(mut self, id: u16) -> Self {
self.buf[..2].copy_from_slice(id.to_be_bytes().as_slice());
self
}
#[must_use]
pub(crate) const fn qr(&self) -> Qr {
if self.buf[2] & 0x80 == 0x00 {
Qr::Query
} else {
Qr::Response
}
}
#[must_use]
pub(crate) const fn set_qr(mut self, qr: Qr) -> Self {
match qr {
Qr::Query => self.buf[2] &= !0x80,
Qr::Response => self.buf[2] |= 0x80,
};
self
}
#[must_use]
pub(crate) fn set_rd(mut self, rd: bool) -> Self {
if rd {
self.buf[2] |= 0x01;
} else {
self.buf[2] &= !0x1;
};
self
}
pub(crate) fn rcode(&self) -> Result<ResponseCode, u8> {
ResponseCode::try_from(self.buf[3] & 0xF)
}
#[must_use]
pub(crate) fn qdcount(&self) -> u16 {
u16::from_be_bytes(self.buf[4..6].try_into().unwrap())
}
pub(crate) fn set_qdcount(&mut self, qdcount: u16) {
self.buf[4..6].copy_from_slice(qdcount.to_be_bytes().as_slice());
}
pub(crate) fn increment_qdcount(&mut self) {
let qdcount: u16 = self.qdcount().saturating_add(1);
self.set_qdcount(qdcount)
}
#[must_use]
pub(crate) fn ancount(&self) -> u16 {
u16::from_be_bytes(self.buf[6..8].try_into().unwrap())
}
#[must_use]
pub(crate) fn nscount(&self) -> u16 {
u16::from_be_bytes(self.buf[8..10].try_into().unwrap())
}
#[must_use]
pub(crate) fn arcount(&self) -> u16 {
u16::from_be_bytes(self.buf[10..12].try_into().unwrap())
}
#[must_use]
pub(crate) fn as_bytes(&self) -> &[u8; Self::LEN_USIZE] {
&self.buf
}
}
impl From<[u8; Header::LEN_USIZE]> for Header {
#[inline]
fn from(buf: [u8; Self::LEN_USIZE]) -> Self {
Header { buf }
}
}
#[cfg(test)]
mod tests {
use super::Header;
#[test]
fn qdcount() {
let mut header: Header = Header { buf: [0; 12] };
header.set_qdcount(0xABCD);
assert_eq!(header.qdcount(), 0xABCD);
header.increment_qdcount();
assert_eq!(header.qdcount(), 0xABCE);
}
}