]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/usbdevs/usbdevs.c
This commit was generated by cvs2svn to compensate for changes in r102780,
[FreeBSD/FreeBSD.git] / usr.sbin / usbdevs / usbdevs.c
1 /*      $NetBSD: usbdevs.c,v 1.17 2001/02/19 23:22:48 cgd Exp $ */
2 /*      $FreeBSD$       */
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                 switch (di.udi_speed) {
92                 case USB_SPEED_LOW:  printf("low speed, "); break;
93                 case USB_SPEED_FULL: printf("full speed, "); break;
94                 case USB_SPEED_HIGH: printf("high speed, "); break;
95                 default: break;
96                 }
97                 if (di.udi_power)
98                         printf("power %d mA, ", di.udi_power);
99                 else
100                         printf("self powered, ");
101                 if (di.udi_config)
102                         printf("config %d, ", di.udi_config);
103                 else
104                         printf("unconfigured, ");
105         }
106         if (verbose) {
107                 printf("%s(0x%04x), %s(0x%04x), rev %s",
108                        di.udi_product, di.udi_productNo,
109                        di.udi_vendor, di.udi_vendorNo, di.udi_release);
110         } else
111                 printf("%s, %s", di.udi_product, di.udi_vendor);
112         printf("\n");
113         if (showdevs) {
114                 for (i = 0; i < USB_MAX_DEVNAMES; i++)
115                         if (di.udi_devnames[i][0])
116                                 printf("%*s  %s\n", indent, "",
117                                        di.udi_devnames[i]);
118         }
119         if (!rec)
120                 return;
121         for (p = 0; p < di.udi_nports; p++) {
122                 int s = di.udi_ports[p];
123                 if (s >= USB_MAX_DEVICES) {
124                         if (verbose) {
125                                 printf("%*sport %d %s\n", indent+1, "", p+1,
126                                        s == USB_PORT_ENABLED ? "enabled" :
127                                        s == USB_PORT_SUSPENDED ? "suspended" : 
128                                        s == USB_PORT_POWERED ? "powered" :
129                                        s == USB_PORT_DISABLED ? "disabled" :
130                                        "???");
131                                 
132                         }
133                         continue;
134                 }
135                 indent++;
136                 printf("%*s", indent, "");
137                 if (verbose)
138                         printf("port %d ", p+1);
139                 if (s == 0)
140                         printf("addr 0 should never happen!\n");
141                 else
142                         usbdev(f, s, 1);
143                 indent--;
144         }
145 }
146
147 void
148 usbdump(int f)
149 {
150         int a;
151
152         for (a = 1; a < USB_MAX_DEVICES; a++) {
153                 if (!done[a])
154                         usbdev(f, a, 1);
155         }
156 }
157
158 void
159 dumpone(char *name, int f, int addr)
160 {
161         if (verbose)
162                 printf("Controller %s:\n", name);
163         indent = 0;
164         memset(done, 0, sizeof done);
165         if (addr)
166                 usbdev(f, addr, 0);
167         else
168                 usbdump(f);
169 }
170
171 int
172 main(int argc, char **argv)
173 {
174         int ch, i, f;
175         char buf[50];
176         char *dev = 0;
177         int addr = 0;
178         int ncont;
179
180         while ((ch = getopt(argc, argv, "a:df:v?")) != -1) {
181                 switch(ch) {
182                 case 'a':
183                         addr = atoi(optarg);
184                         break;
185                 case 'd':
186                         showdevs++;
187                         break;
188                 case 'f':
189                         dev = optarg;
190                         break;
191                 case 'v':
192                         verbose = 1;
193                         break;
194                 case '?':
195                 default:
196                         usage();
197                 }
198         }
199         argc -= optind;
200         argv += optind;
201
202         if (dev == 0) {
203                 for (ncont = 0, i = 0; i < 10; i++) {
204                         sprintf(buf, "%s%d", USBDEV, i);
205                         f = open(buf, O_RDONLY);
206                         if (f >= 0) {
207                                 dumpone(buf, f, addr);
208                                 close(f);
209                         } else {
210                                 if (errno == ENOENT || errno == ENXIO)
211                                         continue;
212                                 warn("%s", buf);
213                         }
214                         ncont++;
215                 }
216                 if (verbose && ncont == 0)
217                         printf("%s: no USB controllers found\n",
218                             getprogname());
219         } else {
220                 f = open(dev, O_RDONLY);
221                 if (f >= 0)
222                         dumpone(dev, f, addr);
223                 else
224                         err(1, "%s", dev);
225         }
226         exit(0);
227 }