summaryrefslogtreecommitdiffstats
path: root/lspcidrake.c
blob: 3e32c297a6ca2c81ff9de225166489c49d819b35 (plain)
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
#include <stdio.h>
#include <string.h>
#include "libldetect.h"
#include "libldetect-private.h"

static int verboze = 0;

static void printit(struct pciusb_entries entries, const char *(find_class)(unsigned long )) {
	unsigned int i;
	for (i = 0; i < entries.nb; i++) {
		struct pciusb_entry *e = &entries.entries[i];
		printf("%-16s: ", e->module ? e->module : "unknown");
		if (e->text)
			printf(e->text);
		else	printf("unknown (%04x/%04x/%04x/%04x)", e->vendor, e->device, e->subvendor, e->subdevice);
		if (e->class_) {
			const char *class_ = find_class(e->class_);
			if (strcmp(class_, "NOT_DEFINED") != 0) 
				printf(" [%s]", class_);
		}
		if (verboze && e->text) {
			printf(" (vendor:%04x device:%04x", e->vendor, e->device);
			if (e->subvendor != 0xffff || e->subdevice != 0xffff)
				printf(" subv:%04x subd:%04x", e->subvendor, e->subdevice);
			printf(")");
		}
		printf("\n");
	}
	pciusb_free(&entries);
}


int main(int argc, char **argv) {
	char ** ptr = argv;
	int full_probe = 0;

	while (ptr && *ptr) {
		if (!strcmp(*ptr, "-h") || !strcmp(*ptr, "--help")) {
			printf("usage: lspcidrake [-v|-f|-u]\n"
				"-f : full probe [aka look for pci subids & class]\n"
				"-p : pci devices source [/proc/bus/pci/devices by default\n"
				"-u : usb devices source [/proc/bus/usb/devices by default\n"
				"-v : verbose mode [print ids and sub-ids], implies full probe\n"
				);	
			return 0;	
		}
		if (!strcmp(*ptr, "-v")) {
			verboze = 1;
			full_probe = 1;
		}
		if (!strcmp(*ptr, "-f"))
			full_probe = 1;
		if (!strcmp(*ptr, "-u")) {
			proc_usb_path = *++ptr;
			continue;
		}
		if (!strcmp(*ptr, "-p"))
			proc_pci_path = *++ptr;
		ptr++;
	}

	printit(pci_probe(full_probe), pci_class2text);
	printit(usb_probe(), usb_class2text);
	return 0;
}