Initial import from FreeBSD RELENG_4:
[dragonfly.git] / usr.sbin / usbdevs / usbdevs.c
1 /*      $NetBSD: usbdevs.c,v 1.17 2001/02/19 23:22:48 cgd Exp $ */
2 /*      $FreeBSD: src/usr.sbin/usbdevs/usbdevs.c,v 1.5.2.3 2002/11/13 15:15:21 joe Exp $        */
3
4 /*
5  * Copyright (c) 1998 The NetBSD Foundation, Inc.
6  * All rights reserved.
7  *
8  * This code is derived from software contributed to The NetBSD Foundation
9  * by Lennart Augustsson (augustss@netbsd.org).
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  * 3. All advertising materials mentioning features or use of this software
20  *    must display the following acknowledgement:
21  *        This product includes software developed by the NetBSD
22  *        Foundation, Inc. and its contributors.
23  * 4. Neither the name of The NetBSD Foundation nor the names of its
24  *    contributors may be used to endorse or promote products derived
25  *    from this software without specific prior written permission.
26  *
27  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37  * POSSIBILITY OF SUCH DAMAGE.
38  */
39
40 #include <stdio.h>
41 #include <stdlib.h>
42 #include <string.h>
43 #include <sys/types.h>
44 #include <fcntl.h>
45 #include <unistd.h>
46 #include <err.h>
47 #include <errno.h>
48 #include <dev/usb/usb.h>
49 #if defined(__FreeBSD__)
50 #include <sys/ioctl.h>
51 #endif
52
53 #define USBDEV "/dev/usb"
54
55 int verbose = 0;
56 int showdevs = 0;
57
58 void usage(void);
59 void usbdev(int f, int a, int rec);
60 void usbdump(int f);
61 void dumpone(char *name, int f, int addr);
62 int main(int, char **);
63
64 void
65 usage()
66 {
67         fprintf(stderr, "Usage: %s [-a addr] [-d] [-f dev] [-v]\n",
68             getprogname());
69         exit(1);
70 }
71
72 char done[USB_MAX_DEVICES];
73 int indent;
74
75 void
76 usbdev(int f, int a, int rec)
77 {
78         struct usb_device_info di;
79         int e, p, i;
80
81         di.udi_addr = a;
82         e = ioctl(f, USB_DEVICEINFO, &di);
83         if (e) {
84                 if (errno != ENXIO)
85                         printf("addr %d: I/O error\n", a);
86                 return;
87         }
88         printf("addr %d: ", a);
89         done[a] = 1;
90         if (verbose) {
91                 if (di.udi_lowspeed)
92                         printf("low speed, ");
93                 if (di.udi_power)
94                         printf("power %d mA, ", di.udi_power);
95                 else
96                         printf("self powered, ");
97                 if (di.udi_config)
98                         printf("config %d, ", di.udi_config);
99                 else
100                         printf("unconfigured, ");
101         }
102         if (verbose) {
103                 printf("%s(0x%04x), %s(0x%04x), rev %s",
104                        di.udi_product, di.udi_productNo,
105                        di.udi_vendor, di.udi_vendorNo, di.udi_release);
106         } else
107                 printf("%s, %s", di.udi_product, di.udi_vendor);
108         printf("\n");
109         if (showdevs) {
110                 for (i = 0; i < USB_MAX_DEVNAMES; i++)
111                         if (di.udi_devnames[i][0])
112                                 printf("%*s  %s\n", indent, "",
113                                        di.udi_devnames[i]);
114         }
115         if (!rec)
116                 return;
117         for (p = 0; p < di.udi_nports; p++) {
118                 int s = di.udi_ports[p];
119                 if (s >= USB_MAX_DEVICES) {
120                         if (verbose) {
121                                 printf("%*sport %d %s\n", indent+1, "", p+1,
122                                        s == USB_PORT_ENABLED ? "enabled" :
123                                        s == USB_PORT_SUSPENDED ? "suspended" : 
124                                        s == USB_PORT_POWERED ? "powered" :
125                                        s == USB_PORT_DISABLED ? "disabled" :
126                                        "???");
127                                 
128                         }
129                         continue;
130                 }
131                 indent++;
132                 printf("%*s", indent, "");
133                 if (verbose)
134                         printf("port %d ", p+1);
135                 if (s == 0)
136                         printf("addr 0 should never happen!\n");
137                 else
138                         usbdev(f, s, 1);
139                 indent--;
140         }
141 }
142
143 void
144 usbdump(int f)
145 {
146         int a;
147
148         for (a = 1; a < USB_MAX_DEVICES; a++) {
149                 if (!done[a])
150                         usbdev(f, a, 1);
151         }
152 }
153
154 void
155 dumpone(char *name, int f, int addr)
156 {
157         if (verbose)
158                 printf("Controller %s:\n", name);
159         indent = 0;
160         memset(done, 0, sizeof done);
161         if (addr)
162                 usbdev(f, addr, 0);
163         else
164                 usbdump(f);
165 }
166
167 int
168 main(int argc, char **argv)
169 {
170         int ch, i, f;
171         char buf[50];
172         char *dev = 0;
173         int addr = 0;
174         int ncont;
175
176         while ((ch = getopt(argc, argv, "a:df:v?")) != -1) {
177                 switch(ch) {
178                 case 'a':
179                         addr = atoi(optarg);
180                         break;
181                 case 'd':
182                         showdevs++;
183                         break;
184                 case 'f':
185                         dev = optarg;
186                         break;
187                 case 'v':
188                         verbose = 1;
189                         break;
190                 case '?':
191                 default:
192                         usage();
193                 }
194         }
195         argc -= optind;
196         argv += optind;
197
198         if (dev == 0) {
199                 for (ncont = 0, i = 0; i < 10; i++) {
200                         sprintf(buf, "%s%d", USBDEV, i);
201                         f = open(buf, O_RDONLY);
202                         if (f >= 0) {
203                                 dumpone(buf, f, addr);
204                                 close(f);
205                         } else {
206                                 if (errno == ENOENT || errno == ENXIO)
207                                         continue;
208                                 warn("%s", buf);
209                         }
210                         ncont++;
211                 }
212                 if (verbose && ncont == 0)
213                         printf("%s: no USB controllers found\n",
214                             getprogname());
215         } else {
216                 f = open(dev, O_RDONLY);
217                 if (f >= 0)
218                         dumpone(dev, f, addr);
219                 else
220                         err(1, "%s", dev);
221         }
222         exit(0);
223 }