-
Notifications
You must be signed in to change notification settings - Fork 192
/
tcpdns.py
executable file
·443 lines (345 loc) · 11.5 KB
/
tcpdns.py
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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# cody by [email protected]
#
# Change log:
#
# 2011-10-23 use SocketServer to run a multithread udp server
# 2012-04-16 add more public dns servers support tcp dns query
# 2013-05-14 merge code from @linkerlin, add gevent support
# 2013-06-24 add lru cache support
# 2013-08-14 add option to disable cache
# 2014-01-04 add option "servers", "timeout" @jinxingxing
# 2014-04-04 support daemon process on unix like platform
# 2014-05-27 support udp dns server on non-standard port
# 2014-07-08 use json config file
# 2014-07-09 support private host
# 2015-01-14 support dns server auto switch
# 8.8.8.8 google
# 8.8.4.4 google
# 156.154.70.1 Dnsadvantage
# 156.154.71.1 Dnsadvantage
# 208.67.222.222 OpenDNS
# 208.67.220.220 OpenDNS
# 198.153.192.1 Norton
# 198.153.194.1 Norton
import gevent
import os
import socket
import struct
try:
import SocketServer
except:
import socketserver as SocketServer
import argparse
import json
import time
from fnmatch import fnmatch
import logging
from pylru import lrucache
import ctypes
import sys
import binascii
import daemon
cfg = {}
LRUCACHE = None
DNS_SERVERS = None
FAST_SERVERS = None
SPEED = {}
DATA = {'err_counter': 0, 'speed_test': False}
UDPMODE = False
def cfg_logging(dbg_level):
""" logging format
"""
logging.basicConfig(format='[%(asctime)s][%(levelname)s] %(message)s',
level=dbg_level)
def hexdump(src, length=16, sep='.'):
""" hexdump, default width 16
"""
FILTER = ''.join([(len(repr(chr(x))) == 3) and chr(x) or sep for x in range(256)])
lines = []
for c in range(0, len(src), length):
chars = src[c: c + length]
hex_ = ' '.join(['{:02x}'.format(x) for x in chars])
if len(hex_) > 24:
hex_ = '{} {}'.format(hex_[:24], hex_[24:])
printable = ''.join(['{}'.format((x <= 127 and FILTER[x]) or sep) for x in chars])
lines.append('{0:08x} {1:{2}s} |{3:{4}s}|'.format(c, hex_, length * 3, printable, length))
return '\n'.join(lines)
def bytetodomain(s):
"""bytetodomain
03www06google02cn00 => www.google.cn
"""
domain = b''
i = 0
length = struct.unpack('!B', s[0:1])[0]
while length != 0:
i += 1
domain += s[i:i + length]
i += length
length = struct.unpack('!B', s[i:i + 1])[0]
if length != 0:
domain += b'.'
return domain
def dnsping(ip, port):
#buff = b"\x00\x1d\xb2\x5f\x01\x00\x00\x01"
#buff += b"\x00\x00\x00\x00\x00\x00\x07\x74"
#buff += b"\x77\x69\x74\x74\x65\x72\x03\x63"
#buff += b"\x6f\x6d\x00\x00\x01\x00\x01"
cost = 100
begin = time.time()
try:
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.settimeout(cfg['socket_timeout'])
s.connect((ip, int(port)))
#s.send(buff)
#s.recv(2048)
except Exception as e:
logging.error('%s:%s, %s' % (ip, port, str(e)))
else:
cost = time.time() - begin
finally:
if s:
s.close()
key = '%s:%d' % (ip, int(port))
if key not in SPEED:
SPEED[key] = []
SPEED[key].append(cost)
def TestSpeed():
global DNS_SERVERS
global FAST_SERVERS
global DATA
DATA['speed_test'] = True
if cfg['udp_mode']:
servers = cfg['udp_dns_server']
else:
servers = cfg['tcp_dns_server']
logging.info('Testing dns server speed ...')
jobs = []
for i in range(0, 10):
for s in servers:
ip, port = s.split(':')
jobs.append(gevent.spawn(dnsping, ip, port))
gevent.joinall(jobs)
cost = {}
for k, v in SPEED.items():
cost[k] = sum(v)
logging.info('TestSpeed result:\n%s' % cost)
d = sorted(cost, key=cost.get)
FAST_SERVERS = d[:3]
DNS_SERVERS = FAST_SERVERS
logging.info('DNS SERVER:\n%s' % DNS_SERVERS)
DATA['err_counter'] = 0
DATA['speed_test'] = False
def QueryDNS(server, port, querydata):
"""tcp dns request
Args:
server: remote tcp dns server
port: remote tcp dns port
querydata: udp dns request packet data
Returns:
tcp dns response data
"""
global DATA
if DATA['err_counter'] >= 10 and not DATA['speed_test']:
TestSpeed()
# length
Buflen = struct.pack('!h', len(querydata))
sendbuf = UDPMODE and querydata or Buflen + querydata
data = None
try:
protocol = UDPMODE and socket.SOCK_DGRAM or socket.SOCK_STREAM
s = socket.socket(socket.AF_INET, protocol)
# set socket timeout
s.settimeout(cfg['socket_timeout'])
s.connect((server, int(port)))
s.send(sendbuf)
data = s.recv(2048)
except Exception as e:
DATA['err_counter'] += 1
logging.error('Server %s: %s' % (server, str(e)))
finally:
if s:
s.close()
return data
def private_dns_response(data):
ret = b''
TID = data[0:2]
Questions = data[4:6]
AnswerRRs = data[6:8]
AuthorityRRs = data[8:10]
AdditionalRRs = data[10:12]
q_domain = bytetodomain(data[12:-4])
q_type = struct.unpack('!h', data[-4:-2])[0]
logging.debug('domain:%s, qtype:%x' % (q_domain, q_type))
try:
if q_type != 0x0001:
return
if Questions != b'\x00\x01' or AnswerRRs != b'\x00\x00' or \
AuthorityRRs != b'\x00\x00' or AdditionalRRs != b'\x00\x00':
return
items = cfg['private_host'].items()
for domain, ip in items:
if fnmatch(q_domain, domain.encode('utf-8')):
logging.debug('match private host')
ret = TID
ret += b'\x81\x80'
ret += b'\x00\x01'
ret += b'\x00\x01'
ret += b'\x00\x00'
ret += b'\x00\x00'
ret += data[12:]
ret += b'\xc0\x0c'
ret += b'\x00\x01'
ret += b'\x00\x01'
ret += b'\x00\x00\xff\xff'
ret += b'\x00\x04'
ret += socket.inet_aton(ip)
else:
logging.debug('private host not match')
finally:
return (q_type, q_domain, ret)
def check_dns_packet(data, q_type):
global UDPMODE
test_ipv4 = False
test_ipv6 = False
if len(data) < 12:
return False
Flags = UDPMODE and data[2:4] or data[4:6]
Reply_code = struct.unpack('>h', Flags)[0] & 0x000F
# TODO: need more check
if Reply_code == 3:
return True
if q_type == 0x0001:
ipv4_len = data[-6:-4]
ipv4_answer_class = data[-12:-10]
ipv4_answer_type = data[-14:-12]
test_ipv4 = (ipv4_len == b'\x00\x04' and \
ipv4_answer_class == b'\x00\x01' and \
ipv4_answer_type == b'\x00\x01')
if not test_ipv4:
ipv6_len = data[-18:-16]
ipv6_answer_class = data[-24:-22]
ipv6_answer_type =data[-26:-24]
test_ipv6 = (ipv6_len == b'\x00\x10' and \
ipv6_answer_class == b'\x00\x01' and \
ipv6_answer_type == b'\x00\x1c')
if not (test_ipv4 or test_ipv6):
return False
return Reply_code == 0
def transfer(querydata, addr, server):
"""send udp dns respones back to client program
Args:
querydata: udp dns request data
addr: udp dns client address
server: udp dns server socket
Returns:
None
"""
global UDPMODE
if len(querydata) < 12:
return
response = None
t_id = querydata[:2]
key = binascii.hexlify(querydata[2:])
q_type, q_domain, response = private_dns_response(querydata)
if response:
server.sendto(response, addr)
return
UDPMODE = cfg['udp_mode']
if FAST_SERVERS:
DNS_SERVERS = FAST_SERVERS
else:
DNS_SERVERS = \
UDPMODE and cfg['udp_dns_server'] or cfg['tcp_dns_server']
if cfg['internal_dns_server'] and cfg['internal_domain']:
for item in cfg['internal_domain']:
if fnmatch(q_domain, item.encode('utf-8')):
UDPMODE = True
DNS_SERVERS = cfg['internal_dns_server']
if LRUCACHE and key in LRUCACHE:
logging.debug('Hit LRU cache, Speed up ...')
response = LRUCACHE[key]
sendbuf = UDPMODE and response[2:] or response[4:]
server.sendto(t_id + sendbuf, addr)
return
for item in DNS_SERVERS:
ip, port = item.split(':')
logging.debug("query server: %s port:%s" % (ip, port))
response = QueryDNS(ip, port, querydata)
if response is None or not check_dns_packet(response, q_type):
logging.error('QueryDNS error, retry next server ...')
continue
if LRUCACHE is not None:
LRUCACHE[key] = response
sendbuf = UDPMODE and response or response[2:]
server.sendto(sendbuf, addr)
break
if response is None:
logging.error('Tried many times and failed to resolve %s' % q_domain)
def HideCMD():
whnd = ctypes.windll.kernel32.GetConsoleWindow()
if whnd != 0:
ctypes.windll.user32.ShowWindow(whnd, 0)
ctypes.windll.kernel32.CloseHandle(whnd)
class ThreadedUDPServer(SocketServer.ThreadingMixIn, SocketServer.UDPServer):
def __init__(self, s, t):
SocketServer.UDPServer.__init__(self, s, t)
class ThreadedUDPRequestHandler(SocketServer.BaseRequestHandler):
# Ctrl-C will cleanly kill all spawned threads
daemon_threads = True
# much faster rebinding
allow_reuse_address = True
def handle(self):
data = self.request[0]
socket = self.request[1]
addr = self.client_address
transfer(data, addr, socket)
def thread_main(cfg):
server = ThreadedUDPServer((cfg["host"], cfg["port"]), ThreadedUDPRequestHandler)
server.serve_forever()
server.shutdown()
if __name__ == "__main__":
parser = argparse.ArgumentParser(description='TCP DNS Proxy')
parser.add_argument('-f', dest='config_json', type=argparse.FileType('r'),
required=False, help='Json config file')
parser.add_argument('-d', dest='dbg_level', action='store_true',
required=False, default=False, help='Print debug message')
args = parser.parse_args()
if args.dbg_level:
cfg_logging(logging.DEBUG)
else:
cfg_logging(logging.INFO)
try:
cfg = json.load(args.config_json)
except:
logging.error('Loading json config file error [!!]')
sys.exit(1)
if 'host' not in cfg:
cfg["host"] = "0.0.0.0"
if 'port' not in cfg:
cfg["port"] = 53
if cfg['udp_mode']:
DNS_SERVERS = cfg['udp_dns_server']
else:
DNS_SERVERS = cfg['tcp_dns_server']
if cfg['enable_lru_cache']:
LRUCACHE = lrucache(cfg['lru_cache_size'])
logging.info('TCP DNS Proxy, https://github.com/henices/Tcp-DNS-proxy')
logging.info('DNS Servers:\n%s' % DNS_SERVERS)
logging.info('Query Timeout: %f' % (cfg['socket_timeout']))
logging.info('Enable Cache: %r' % (cfg['enable_lru_cache']))
logging.info('Enable Switch: %r' % (cfg['enable_server_switch']))
if cfg['speed_test']:
TestSpeed()
logging.info(
'Now you can set dns server to %s:%s' % (cfg["host"], cfg["port"]))
if cfg['daemon_process']:
if os.name == 'nt':
HideCMD()
thread_main(cfg)
else:
with daemon.DaemonContext():
thread_main(cfg)
else:
thread_main(cfg)