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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
pub mod a;
pub mod aaaa;
pub mod cname;
pub mod mx;
pub mod ns;
pub mod opt;
pub mod ptr;
pub mod soa;
pub mod srv;
pub mod txt;
use super::name::*;
use super::packer::*;
use super::*;
use crate::error::*;
use a::*;
use aaaa::*;
use cname::*;
use mx::*;
use ns::*;
use opt::*;
use ptr::*;
use soa::*;
use srv::*;
use txt::*;
use std::collections::HashMap;
use std::fmt;
const EDNS0_VERSION: u32 = 0;
const EDNS0_DNSSEC_OK: u32 = 0x00008000;
const EDNS_VERSION_MASK: u32 = 0x00ff0000;
const EDNS0_DNSSEC_OK_MASK: u32 = 0x00ff8000;
#[derive(Default, Debug)]
pub struct Resource {
pub header: ResourceHeader,
pub body: Option<Box<dyn ResourceBody>>,
}
impl fmt::Display for Resource {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(
f,
"dnsmessage.Resource{{Header: {}, Body: {}}}",
self.header,
if let Some(body) = &self.body {
body.to_string()
} else {
"None".to_owned()
}
)
}
}
impl Resource {
pub fn pack(
&mut self,
msg: Vec<u8>,
compression: &mut Option<HashMap<String, usize>>,
compression_off: usize,
) -> Result<Vec<u8>> {
if let Some(body) = &self.body {
self.header.typ = body.real_type();
} else {
return Err(Error::ErrNilResourceBody);
}
let (mut msg, len_off) = self.header.pack(msg, compression, compression_off)?;
let pre_len = msg.len();
if let Some(body) = &self.body {
msg = body.pack(msg, compression, compression_off)?;
self.header.fix_len(&mut msg, len_off, pre_len)?;
}
Ok(msg)
}
pub fn unpack(&mut self, msg: &[u8], mut off: usize) -> Result<usize> {
off = self.header.unpack(msg, off, 0)?;
let (rb, off) =
unpack_resource_body(self.header.typ, msg, off, self.header.length as usize)?;
self.body = Some(rb);
Ok(off)
}
pub(crate) fn skip(msg: &[u8], off: usize) -> Result<usize> {
let mut new_off = Name::skip(msg, off)?;
new_off = DnsType::skip(msg, new_off)?;
new_off = DnsClass::skip(msg, new_off)?;
new_off = skip_uint32(msg, new_off)?;
let (length, mut new_off) = unpack_uint16(msg, new_off)?;
new_off += length as usize;
if new_off > msg.len() {
return Err(Error::ErrResourceLen);
}
Ok(new_off)
}
}
#[derive(Clone, Default, PartialEq, Eq, Debug)]
pub struct ResourceHeader {
pub name: Name,
pub typ: DnsType,
pub class: DnsClass,
pub ttl: u32,
pub length: u16,
}
impl fmt::Display for ResourceHeader {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(
f,
"dnsmessage.ResourceHeader{{Name: {}, Type: {}, Class: {}, TTL: {}, Length: {}}}",
self.name, self.typ, self.class, self.ttl, self.length,
)
}
}
impl ResourceHeader {
pub fn pack(
&self,
mut msg: Vec<u8>,
compression: &mut Option<HashMap<String, usize>>,
compression_off: usize,
) -> Result<(Vec<u8>, usize)> {
msg = self.name.pack(msg, compression, compression_off)?;
msg = self.typ.pack(msg);
msg = self.class.pack(msg);
msg = pack_uint32(msg, self.ttl);
let len_off = msg.len();
msg = pack_uint16(msg, self.length);
Ok((msg, len_off))
}
pub fn unpack(&mut self, msg: &[u8], off: usize, _length: usize) -> Result<usize> {
let mut new_off = off;
new_off = self.name.unpack(msg, new_off)?;
new_off = self.typ.unpack(msg, new_off)?;
new_off = self.class.unpack(msg, new_off)?;
let (ttl, new_off) = unpack_uint32(msg, new_off)?;
self.ttl = ttl;
let (l, new_off) = unpack_uint16(msg, new_off)?;
self.length = l;
Ok(new_off)
}
pub fn fix_len(&mut self, msg: &mut [u8], len_off: usize, pre_len: usize) -> Result<()> {
if msg.len() < pre_len || msg.len() > pre_len + u16::MAX as usize {
return Err(Error::ErrResTooLong);
}
let con_len = msg.len() - pre_len;
msg[len_off] = ((con_len >> 8) & 0xFF) as u8;
msg[len_off + 1] = (con_len & 0xFF) as u8;
self.length = con_len as u16;
Ok(())
}
pub fn set_edns0(
&mut self,
udp_payload_len: u16,
ext_rcode: u32,
dnssec_ok: bool,
) -> Result<()> {
self.name = Name {
data: ".".to_owned(),
}; self.typ = DnsType::Opt;
self.class = DnsClass(udp_payload_len);
self.ttl = (ext_rcode >> 4) << 24;
if dnssec_ok {
self.ttl |= EDNS0_DNSSEC_OK;
}
Ok(())
}
pub fn dnssec_allowed(&self) -> bool {
self.ttl & EDNS0_DNSSEC_OK_MASK == EDNS0_DNSSEC_OK }
pub fn extended_rcode(&self, rcode: RCode) -> RCode {
if self.ttl & EDNS_VERSION_MASK == EDNS0_VERSION {
let ttl = ((self.ttl >> 24) << 4) as u8 | rcode as u8;
return RCode::from(ttl);
}
rcode
}
}
pub trait ResourceBody: fmt::Display + fmt::Debug {
fn real_type(&self) -> DnsType;
fn pack(
&self,
msg: Vec<u8>,
compression: &mut Option<HashMap<String, usize>>,
compression_off: usize,
) -> Result<Vec<u8>>;
fn unpack(&mut self, msg: &[u8], off: usize, length: usize) -> Result<usize>;
}
pub fn unpack_resource_body(
typ: DnsType,
msg: &[u8],
mut off: usize,
length: usize,
) -> Result<(Box<dyn ResourceBody>, usize)> {
let mut rb: Box<dyn ResourceBody> = match typ {
DnsType::A => Box::new(AResource::default()),
DnsType::Ns => Box::new(NsResource::default()),
DnsType::Cname => Box::new(CnameResource::default()),
DnsType::Soa => Box::new(SoaResource::default()),
DnsType::Ptr => Box::new(PtrResource::default()),
DnsType::Mx => Box::new(MxResource::default()),
DnsType::Txt => Box::new(TxtResource::default()),
DnsType::Aaaa => Box::new(AaaaResource::default()),
DnsType::Srv => Box::new(SrvResource::default()),
DnsType::Opt => Box::new(OptResource::default()),
_ => return Err(Error::ErrNilResourceBody),
};
off = rb.unpack(msg, off, length)?;
Ok((rb, off))
}