-
Notifications
You must be signed in to change notification settings - Fork 16
/
manuf.py
274 lines (212 loc) · 8.4 KB
/
manuf.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
#!/usr/bin/env python
# manuf.py: Parser library for Wireshark's OUI database.
# Copyright (c) 2016 Michael Huang
#
# This library is free software. It is dual licensed under the terms of the GNU Lesser General
# Public License version 3.0 (or any later version) and the Apache License version 2.0.
#
# For more information, see:
#
# <http://www.gnu.org/licenses/>
# <http://www.apache.org/licenses/>
"""Parser library for Wireshark's OUI database.
Converts MAC addresses into a manufacturer using Wireshark's OUI database.
See README.md.
"""
from __future__ import print_function
from collections import namedtuple
import argparse
import re
import sys
import io
try:
from urllib2 import urlopen
from urllib2 import URLError
except ImportError:
from urllib.request import urlopen
from urllib.error import URLError
try:
from StringIO import StringIO
except ImportError:
from io import StringIO
# Vendor tuple
Vendor = namedtuple('Vendor', ['manuf', 'comment'])
class MacParser(object):
"""Class that contains a parser for Wireshark's OUI database.
Optimized for quick lookup performance by reading the entire file into memory on
initialization. Maps ranges of MAC addresses to manufacturers and comments (descriptions).
Contains full support for netmasks and other strange things in the database.
See https://www.wireshark.org/tools/oui-lookup.html
Args:
manuf_name (str): Location of the manuf database file. Defaults to "manuf" in the same
directory.
update (bool): Whether to update the manuf file automatically. Defaults to False.
Raises:
IOError: If manuf file could not be found.
"""
MANUF_URL = "https://code.wireshark.org/review/gitweb?p=wireshark.git;a=blob_plain;f=manuf"
def __init__(self, manuf_name="manuf", update=False):
self._manuf_name = manuf_name
if update:
self.update()
else:
self.refresh()
def refresh(self, manuf_name=None):
"""Refresh/reload manuf database. Call this when manuf file is updated.
Args:
manuf_name (str): Location of the manuf data base file. Defaults to "manuf" in the
same directory.
Raises:
IOError: If manuf file could not be found.
"""
if not manuf_name:
manuf_name = self._manuf_name
with io.open(manuf_name, "r", encoding="utf-8") as read_file:
manuf_file = StringIO(read_file.read())
self._masks = {}
# Build mask -> result dict
for line in manuf_file:
com = line.split("#", 1)
arr = com[0].split()
if len(arr) < 1:
continue
parts = arr[0].split("/")
mac_str = self._strip_mac(parts[0])
mac_int = self._get_mac_int(mac_str)
mask = self._bits_left(mac_str)
# Specification includes mask
if len(parts) > 1:
mask_spec = 48 - int(parts[1])
if mask_spec > mask:
mask = mask_spec
if len(com) > 1:
result = Vendor(manuf=arr[1], comment=com[1].strip())
else:
result = Vendor(manuf=arr[1], comment=None)
self._masks[(mask, mac_int >> mask)] = result
manuf_file.close()
def update(self, manuf_url=None, manuf_name=None, refresh=True):
"""Update the Wireshark OUI database to the latest version.
Args:
manuf_url (str): URL pointing to OUI database. Defaults to database located at
code.wireshark.org.
manuf_name (str): Location to store the new OUI database. Defaults to "manuf" in the
same directory.
refresh (bool): Refresh the database once updated. Defaults to True. Uses database
stored at manuf_name.
Raises:
URLError: If the download fails
"""
if not manuf_url:
manuf_url = self.MANUF_URL
if not manuf_name:
manuf_name = self._manuf_name
# Retrieve the new database
try:
response = urlopen(manuf_url)
except URLError:
raise URLError("Failed downloading OUI database")
# Parse the response
if response.code is 200:
with open(manuf_name, "wb") as write_file:
write_file.write(response.read())
if refresh:
self.refresh(manuf_name)
else:
err = "{0} {1}".format(response.code, response.msg)
raise URLError("Failed downloading database: {0}".format(err))
response.close()
def search(self, mac, maximum=1):
"""Search for multiple Vendor tuples possibly matching a MAC address.
Args:
mac (str): MAC address in standard format.
maximum (int): Maximum results to return. Defaults to 1.
Returns:
List of Vendor namedtuples containing (manuf, comment), with closest result first. May
be empty if no results found.
Raises:
ValueError: If the MAC could not be parsed.
"""
vendors = []
if maximum <= 0:
return vendors
mac_str = self._strip_mac(mac)
mac_int = self._get_mac_int(mac_str)
# If the user only gave us X bits, check X bits. No partial matching!
for mask in range(self._bits_left(mac_str), 48):
result = self._masks.get((mask, mac_int >> mask))
if result:
vendors.append(result)
if len(vendors) >= maximum:
break
return vendors
def get_all(self, mac):
"""Get a Vendor tuple containing (manuf, comment) from a MAC address.
Args:
mac (str): MAC address in standard format.
Returns:
Vendor: Vendor namedtuple containing (manuf, comment). Either or both may be None if
not found.
Raises:
ValueError: If the MAC could not be parsed.
"""
vendors = self.search(mac)
if len(vendors) == 0:
return Vendor(manuf=None, comment=None)
return vendors[0]
def get_manuf(self, mac):
"""Returns manufacturer from a MAC address.
Args:
mac (str): MAC address in standard format.
Returns:
string: String containing manufacturer, or None if not found.
Raises:
ValueError: If the MAC could not be parsed.
"""
return self.get_all(mac).manuf
def get_comment(self, mac):
"""Returns comment from a MAC address.
Args:
mac (str): MAC address in standard format.
Returns:
string: String containing comment, or None if not found.
Raises:
ValueError: If the MAC could not be parsed.
"""
return self.get_all(mac).comment
# Gets the integer representation of a stripped mac string
def _get_mac_int(self, mac_str):
try:
# Fill in missing bits with zeroes
return int(mac_str, 16) << self._bits_left(mac_str)
except ValueError:
raise ValueError("Could not parse MAC: {0}".format(mac_str))
# Regular expression that matches '-', ':', and '.' characters
_pattern = re.compile(r"[-:\.]")
# Strips the MAC address of '-', ':', and '.' characters
def _strip_mac(self, mac):
return self._pattern.sub("", mac)
# Gets the number of bits left in a mac string
@staticmethod
def _bits_left(mac_str):
return 48 - 4 * len(mac_str)
def main():
"""Simple command line wrapping for MacParser."""
argparser = argparse.ArgumentParser(description="Parser utility for Wireshark's OUI database.")
argparser.add_argument('-m', "--manuf",
help="manuf file path. Defaults to manuf in same directory",
action="store")
argparser.add_argument("-u", "--update",
help="update manuf file from the internet",
action="store_true")
argparser.add_argument("mac_address", nargs='?', help="MAC address to check")
args = argparser.parse_args()
if args.manuf:
parser = MacParser(manuf_name=args.manuf, update=args.update)
else:
parser = MacParser(update=args.update)
if args.mac_address:
print(parser.get_all(args.mac_address))
sys.exit(0)
if __name__ == "__main__":
main()