Update USB ID list straight from the sources

This commit is contained in:
Jaap Keuter 2022-01-08 17:59:40 +00:00 committed by A Wireshark GitLab Utility
parent d9023299e3
commit 7ad17154d4
3 changed files with 37 additions and 2194 deletions

View File

@ -2,10 +2,9 @@
#
# make-usb - Creates a file containing vendor and product ids.
# It use the databases from
# https://usb-ids.gowdy.us/
# - The USB ID Repository: https://usb-ids.gowdy.us (http://www.linux-usb.org), mirrored at Sourceforge
# - libgphoto2 from gPhoto: https://github.com/gphoto/libgphoto2 (http://gphoto.org), available at GitHub
# to create our file epan/dissectors/usb.c
#
# It also uses the values culled out of libgphoto2 using usb-ptp-extract-models.pl
import re
import sys
@ -18,9 +17,6 @@ MIN_PRODUCTS = 20000 # 20361 as of 2020-11-15
mode = MODE_IDLE
# The canonical location for the usb.ids file is http://www.linux-usb.org/usb.ids.
# As of November 2020 that site isn't available over HTTPS. Use what appears to
# be the source code repository for the site.
req_headers = { 'User-Agent': 'Wireshark make-usb' }
req = urllib.request.Request('https://sourceforge.net/p/linux-usb/repo/HEAD/tree/trunk/htdocs/usb.ids?format=raw', headers=req_headers)
response = urllib.request.urlopen(req)
@ -63,12 +59,42 @@ for utf8line in lines:
product = "%s%s"%(last_vendor, line[:4])
products[product] = line[4:].strip()
req = urllib.request.Request('https://raw.githubusercontent.com/gphoto/libgphoto2/master/camlibs/ptp2/library.c', headers=req_headers)
response = urllib.request.urlopen(req)
lines = response.read().decode('UTF-8', 'replace').splitlines()
mode = MODE_IDLE
for line in lines:
if mode == MODE_IDLE and re.match(r".*\bmodels\[\]", line):
mode = MODE_VENDOR_PRODUCT
continue
if mode == MODE_VENDOR_PRODUCT and re.match(r"};", line):
mode = MODE_IDLE
if mode == MODE_IDLE:
continue
m = re.match(r"\s*{\"(.*):(.*)\",\s*0x([0-9a-fA-F]{4}),\s*0x([0-9a-fA-F]{4}),.*},", line)
if m is not None:
manuf = m.group(1).strip()
model = re.sub(r"\(.*\)", "", m.group(2)).strip()
product = m.group(3) + m.group(4)
products[product] = ' '.join((manuf, model))
req = urllib.request.Request('https://raw.githubusercontent.com/gphoto/libgphoto2/master/camlibs/ptp2/music-players.h', headers=req_headers)
response = urllib.request.urlopen(req)
lines = response.read().decode('UTF-8', 'replace').splitlines()
for line in lines:
m = re.match(r"\s*{\s*\"(.*)\",\s*0x([0-9a-fA-F]{4}),\s*\"(.*)\",\s*0x([0-9a-fA-F]{4}),", line)
if m is not None:
manuf = m.group(1).strip()
model = m.group(3).strip()
product = m.group(2) + m.group(4)
products[product] = ' '.join((manuf, model))
# Grab from libgphoto (indirectly through tools/usb-ptp-extract-models.pl)
u = open('tools/usb-ptp-extract-models.txt','r')
for line in u.readlines():
fields=line.split()
products[fields[0]]= ' '.join(fields[1:])
if (len(vendors) < MIN_VENDORS):
sys.stderr.write("Not enough vendors: %d\n" % len(vendors))

View File

@ -1,105 +0,0 @@
#!/usr/bin/perl -w
#
# USAGE: $0 </path/to/libgphoto2/camlibs/ptp2>
#
# USB PTP Dissector
# Extracts USB devices from libgphoto2
# This is then parsed by make-usb.py to make epan/dissectors/usb.c
#
# (c)2013 Max Baker <max@warped.org>
#
# SPDX-License-Identifier: GPL-2.0-or-later
my $path = shift @ARGV || '.';
$re_hex = '0x[0-9a-f]+';
parse_file("$path/library.c",1);
parse_file("$path/music-players.h",0);
open (O,"> tools/usb-ptp-extract-models.txt") or die $!;
foreach my $vendor (sort {hex($a) <=> hex($b)} keys %devices) {
my $p = $devices{$vendor};
foreach my $product (sort {hex($a) <=> hex($b)} keys %$p) {
my $pd = $product; $pd =~ s/^0x//i;
my $v = $vendor; $v =~ s/^0x//i;
# { 0xeb1ae355, "KWorld DVB-T 355U Digital TV Dongle" },
#printf " { 0x%s%s, \"%s\" },\n",$v, $pd, $p->{$product};
printf O "%s%s %s\n", $v, $pd, $p->{$product};
}
}
close O or die $!;
exit;
sub parse_file {
my $file = shift;
my $detect = shift;
my $start = !$detect;
open (H,"<$file") or die "Could not find $file. $!";
while (<H>) {
chomp;
# Look for models[] line as start
if (/\bmodels\[\]/) {
$start = 1;
next;
}
# Look for }; as the end
$start = 0 if /^\s*};/;
next unless $start;
# Skip comment lines
# Remove comments
s,/\*.*\*/,,g;
s,^\s*,,;
s,\s*$,,;
# Skip blank lines
next if /^$/;
next if m,^\s*/?\*,;
my $line = $_;
my ($model, $vendor, $product, $manif);
# {"Nikon:DSC D90 (PTP mode)", 0x04b0, 0x0421, PTP_CAP|PTP_CAP_PREVIEW},
if($line =~ m/^\{
"([^"]+)",\s*
($re_hex),\s*
($re_hex),\s*
/xi) {
($model, $vendor, $product) = ($1,$2,$3);
$model =~ s/:/ /;
$model =~ s/\(.*\)//;
}
# { "Creative", 0x041e, "ZEN X-Fi 3", 0x4169,
# { "TrekStor", 0x0402, "i.Beat Sweez FM", 0x0611,
if($line=~ m/^\{\s*
"([^"]+)",\s*
($re_hex),\s*
"([^"]+)",\s*
($re_hex),\s*
/xi) {
($manif, $vendor, $model, $product) = ($1,$2,$3,$4);
$model = "$manif $model";
}
next unless defined $vendor;
$model =~ s/\s+/ /g;
$model =~ s/\s*$//;
#print "$vendor $product $model\n";
$devices{$vendor}->{$product}=$model;
}
}

File diff suppressed because it is too large Load Diff