-
Notifications
You must be signed in to change notification settings - Fork 0
/
stun.py
180 lines (131 loc) · 6.76 KB
/
stun.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
import os, socket, untwisted
from untwisted import promise, udp
binding = 1
# Comprehension-required range (0x0000-0x7FFF)
MAPPED_ADDRESS = 0x1
USERNAME = 0x6
MESSAGE_INTEGRITY = 0x8
ERROR_CODE = 9
UNKNOWN_ATTRIBUTES = 0xa
REALM = 0x14
NONCE = 0x15
XOR_MAPPED_ADDRESS = 0x20
# Comprehension-optional range (0x8000-0xFFFF)
SOFTWARE = 0x8022
ALTERNATE_SERVER = 0x8023
FINGERPRINT = 0x8028
# The address family can take on the following values
IPv4 = 1
IPv6 = 2
# 0 1 2 3 4 5 6 7 8 9 A B C D E F 0 1 2 3 4 5 6 7 8 9 A B C D E F
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
# | Type | Length |
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
# | Value (variable) ...
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
class attribute:
__metaclass__ = type
def __init__(ctx, value):
ctx.value = value
__delitem__ = object.__delattr__
__getitem__ = object.__getattribute__
__setitem__ = object.__setattr__
class message:
def __init__(ctx):
ctx.attribute = untwisted.manyMap()
# 0 1 2 3 4 5 6 7 8 9 A B C D E F 0 1 2 3 4 5 6 7 8 9 A B C D E F
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
# |0 0| STUN Message Type | Message Length |
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
# | Magic Cookie |
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
# | |
# | Transaction ID (96 bits) |
# | |
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
# 2 3 4 5 6 7 8 9 A B C D E F
# +--+--+--+--+--+--+--+--+--+--+--+--+--+--+
# |MB|MA|M9|M8|M7|C1|M6|M5|M4|C0|M3|M2|M1|M0|
# +--+--+--+--+--+--+--+--+--+--+--+--+--+--+
def __str__(ctx):
message = ''.join(map(str, ctx.attribute))
return chr(ctx.messageMethod >> 6 & 0xfe | ctx.messageClass >> 8) + chr(ctx.messageMethod << 1 & 0xe0 | ctx.messageClass & 0xff | ctx.messageMethod & 0x0f) + chr(len(message) >> 8) + chr(len(message) & 0xff) + ctx.magicCookie + ctx.transactionId + message
@promise.resume
def request(server, messageMethod=binding):
try:
transport = yield udp.connect(server, 'stun')()
# Avoid error: service/proto not found
except socket.error:
transport = yield udp.connect(server, 3478)()
request = message()
request.messageMethod = messageMethod
request.messageClass = 0x0000
request.magicCookie = '\x21\x12\xa4\x42'
request.transactionId = os.urandom(12)
transport.write(str(request))
recv = yield transport.recv()
response = message()
response.messageMethod = ord(recv[0]) << 6 & 0xf800 | ord(recv[1]) >> 1 & 0xf0 | ord(recv[1]) & 0xf
response.messageClass = ord(recv[0]) << 8 & 0x100 | ord(recv[1]) & 0x10
response.magicCookie = recv[4:8]
response.transactionId = recv[8:20]
recv = recv[20:]
while recv:
type = ord(recv[0]) << 8 | ord(recv[1])
length = ord(recv[2]) << 8 | ord(recv[3])
itm = attribute(recv[4:4 + length])
# Each STUN attribute MUST end on a 32-bit boundary
recv = recv[4 + length - length % -4:]
if type in (MAPPED_ADDRESS, ALTERNATE_SERVER):
# 0 1 2 3 4 5 6 7 8 9 A B C D E F 0 1 2 3 4 5 6 7 8 9 A B C D E F
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
# |0 0 0 0 0 0 0 0| Family | Port |
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
# | |
# | Address (32 bits or 128 bits) |
# | |
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
itm.family = ord(itm.value[1])
itm.port = ord(itm.value[2]) << 8 | ord(itm.value[3])
if IPv4 == itm.family:
itm.address = socket.inet_ntop(socket.AF_INET, itm.value[4:])
elif IPv6 == itm.family:
itm.address = socket.inet_ntop(socket.AF_INET6, itm.value[4:])
elif ERROR_CODE == type:
# 0 1 2 3 4 5 6 7 8 9 A B C D E F 0 1 2 3 4 5 6 7 8 9 A B C D E F
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
# | Reserved, should be 0 |Class| Number |
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
# | Reason Phrase (variable) ...
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
itm['class'] = ord(itm.value[2])
itm.number = ord(itm.value[3])
itm.reasonPhrase = itm.value[4:]
elif UNKNOWN_ATTRIBUTES == type:
# 0 1 2 3 4 5 6 7 8 9 A B C D E F 0 1 2 3 4 5 6 7 8 9 A B C D E F
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
# | Attribute 1 Type | Attribute 2 Type |
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
# | Attribute 3 Type | Attribute 4 Type ...
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
itm.attributeType = untwisted.oneMany(*(ord(itm.value[offset]) << 8 | ord(itm.value[offset + 1]) for offset in range(0, len(itm.value), 2)))
elif XOR_MAPPED_ADDRESS == type:
# 0 1 2 3 4 5 6 7 8 9 A B C D E F 0 1 2 3 4 5 6 7 8 9 A B C D E F
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
# |0 0 0 0 0 0 0 0| Family | X-Port |
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
# | |
# | X-Address (32 bits or 128 bits) |
# | |
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
itm.family = ord(itm.value[1])
itm.port = (ord(itm.value[2]) ^ ord(response.magicCookie[0])) << 8 | ord(itm.value[3]) ^ ord(response.magicCookie[1])
if IPv4 == itm.family:
itm.address = socket.inet_ntop(socket.AF_INET, ''.join(chr(ord(address) ^ ord(magicCookie)) for address, magicCookie in zip(itm.value[4:], response.magicCookie)))
elif IPv6 == itm.family:
itm.address = socket.inet_ntop(socket.AF_INET6, ''.join(chr(ord(address) ^ ord(magicCookie)) for address, magicCookie in zip(itm.value[4:], response.magicCookie + response.transactionId)))
response.attribute.append(type, itm)
if 0x0100 != response.messageClass:
raise response
#return ...
raise StopIteration(response)