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 274 275
|
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Test dnslib packet encoding/decoding
Reads test files from dnslib/test (by default) containing
dump of DNS exchange (packet dump & parse output) and test
round-trip parsing - specifically:
- Parse packet data and zone format data and compare
- Repack parsed packet data and compare with original
This should test the 'parse', 'fromZone' and 'pack' methods of the
associated record types.
The original parsed output is created using dnslib by default so systematic
encode/decode errors will not be found. By default the test data is
checked against 'dig' to ensure that it is correct when generated
using the --new option.
By default the module runs in 'unittest' mode (and supports unittest
--verbose/--failfast options)
The module can also be run in interactive mode (--interactive) and inspect
failed tests (--debug)
New test data files can be automatically created using the:
--new <domain> <type>
option. The data is checked against dig output and an error raised if
this does not match. This is effectively the same as running:
python -m dnslib.client --query --hex --dig <domain> <type>
It is possible to manually generate test data files using dnslib.client
even if the dig data doesn't match (this is usually due to an unsupported
RDATA type which dnslib will output in hex rather then parsing contents).
The roundtrip tests will still work in this case (the unknown RDATA is
handled as an opaque blob).
In some cases the tests will fail as a result of the zone file parser
being more fragile than the packet parser (especially with broken data)
Note - unittests are dynamically generated from the test directory contents
(matched against the --glob parameter)
"""
from __future__ import print_function
from dnslib.dns import DNSRecord
from dnslib.digparser import DigParser
import argparse,binascii,code,glob,os,os.path,sys,unittest
try:
from subprocess import getoutput
except ImportError:
from commands import getoutput
try:
input = raw_input
except NameError:
pass
class TestContainer(unittest.TestCase):
pass
def new_test(domain,qtype,address="8.8.8.8",port=53,nodig=False):
tcp = False
q = DNSRecord.question(domain,qtype)
a_pkt = q.send(address,port)
a = DNSRecord.parse(a_pkt)
if a.header.tc:
tcp = True
a_pkt = q.send(address,port,tcp)
a = DNSRecord.parse(a_pkt)
if not nodig:
dig = getoutput("dig +qr -p %d %s %s @%s" % (
port, domain, qtype, address))
dig_reply = list(iter(DigParser(dig)))
# DiG might have retried in TCP mode so get last q/a
q_dig = dig_reply[-2]
a_dig = dig_reply[-1]
if q != q_dig or a != a_dig:
if q != q_dig:
print(";;; ERROR: Diff Question differs")
for (d1,d2) in q.diff(q_dig):
if d1:
print(";; - %s" % d1)
if d2:
print(";; + %s" % d2)
if a != a_dig:
print(";;; ERROR: Diff Response differs")
for (d1,d2) in a.diff(a_dig):
if d1:
print(";; - %s" % d1)
if d2:
print(";; + %s" % d2)
return
print("Writing test file: %s-%s" % (domain,qtype))
with open("%s-%s" % (domain,qtype),"w") as f:
print(";; Sending:",file=f)
print(";; QUERY:",binascii.hexlify(q.pack()).decode(),file=f)
print(q,file=f)
print(file=f)
print(";; Got answer:",file=f)
print(";; RESPONSE:",binascii.hexlify(a_pkt).decode(),file=f)
print(a,file=f)
print(file=f)
def check_decode(f,debug=False):
errors = []
# Parse the q/a records
with open(f) as x:
q,r = DigParser(x)
# Grab the hex data
with open(f,'rb') as x:
for l in x.readlines():
if l.startswith(b';; QUERY:'):
qdata = binascii.unhexlify(l.split()[-1])
elif l.startswith(b';; RESPONSE:'):
rdata = binascii.unhexlify(l.split()[-1])
# Parse the hex data
qparse = DNSRecord.parse(qdata)
rparse = DNSRecord.parse(rdata)
# Check records generated from DiG input matches
# records parsed from packet data
if q != qparse:
errors.append(('Question',q.diff(qparse)))
if r != rparse:
errors.append(('Reply',r.diff(rparse)))
# Repack the data
qpack = qparse.pack()
rpack = rparse.pack()
# Check if repacked question data matches original
# We occasionally get issues where original packet did not
# compress all labels - in this case we reparse packed
# record, repack this and compare with the packed data
if qpack != qdata:
if len(qpack) < len(qdata):
# Shorter - possibly compression difference
if DNSRecord.parse(qpack).pack() != qpack:
errors.append(('Question Pack',(qdata,qpack)))
else:
errors.append(('Question Pack',(qdata,qpack)))
if rpack != rdata:
if len(rpack) < len(rdata):
if DNSRecord.parse(rpack).pack() != rpack:
errors.append(('Reply Pack',(rdata,rpack)))
else:
errors.append(('Reply Pack',(rdata,rpack)))
if debug:
if errors:
print("ERROR\n")
print_errors(errors)
print()
if input(">>> Inspect [y/n]? ").lower().startswith('y'):
code.interact(local=locals())
print()
else:
print("OK")
return errors
def print_errors(errors):
for err,err_data in errors:
if err == 'Question':
print("Question error:")
for (d1,d2) in err_data:
if d1:
print(";; - %s" % d1)
if d2:
print(";; + %s" % d2)
elif err == 'Reply':
print("Reply error:")
for (d1,d2) in err_data:
if d1:
print(";; - %s" % d1)
if d2:
print(";; + %s" % d2)
elif err == 'Question Pack':
print("Question pack error")
print("QDATA:",binascii.hexlify(err_data[0]))
print(DNSRecord.parse(err_data[0]))
print("QPACK:",binascii.hexlify(err_data[1]))
print(DNSRecord.parse(err_data[1]))
elif err == 'Reply Pack':
print("Response pack error")
print("RDATA:",binascii.hexlify(err_data[0]))
print(DNSRecord.parse(err_data[0]))
print("RPACK:",binascii.hexlify(err_data[1]))
print(DNSRecord.parse(err_data[1]))
def test_generator(f):
def test(self):
self.assertEqual(check_decode(f),[])
return test
if __name__ == '__main__':
testdir = os.path.join(os.path.dirname(__file__),"test")
p = argparse.ArgumentParser(description="Test Decode")
p.add_argument("--new","-n",nargs=2,
metavar="<domain/type>",
help="Create new test case (args: <domain> <type>)")
p.add_argument("--nodig",action='store_true',default=False,
help="Don't test new data against DiG")
p.add_argument("--unittest",action='store_true',default=True,
help="Run unit tests")
p.add_argument("--verbose",action='store_true',default=False,
help="Verbose unit test output")
p.add_argument("--failfast",action='store_true',default=False,
help="Stop unit tests on first failure")
p.add_argument("--interactive",action='store_true',default=False,
help="Run in interactive mode")
p.add_argument("--debug",action='store_true',default=False,
help="Debug errors (interactive mode)")
p.add_argument("--glob","-g",default="*",
help="Glob pattern")
p.add_argument("--testdir","-t",default=testdir,
help="Test dir (%s)" % testdir)
p.add_argument("--testfile","-f",default=None,
help="Test single file")
args = p.parse_args()
if args.testfile:
e = check_decode(args.testfile,args.debug)
if not args.debug:
if e:
print("ERROR\n")
print_errors(e)
print()
else:
print("OK")
else:
os.chdir(args.testdir)
if args.new:
new_test(*args.new,nodig=args.nodig)
elif args.interactive:
for f in glob.iglob(args.glob):
if os.path.isfile(f):
print("-- %s: " % f,end='')
e = check_decode(f,args.debug)
if not args.debug:
if e:
print("ERROR\n")
print_errors(e)
print()
else:
print("OK")
elif args.unittest:
for f in glob.iglob(args.glob):
if os.path.isfile(f):
test_name = 'test_%s' % f
test = test_generator(f)
setattr(TestContainer,test_name,test)
unittest.main(argv=[__name__],
verbosity=2 if args.verbose else 1,
failfast=args.failfast)
|