source: mainline/uspace/app/usbinfo/main.c@ 75e0f15

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 75e0f15 was 15f3c3f, checked in by Jiri Svoboda <jiri@…>, 14 years ago

Rename devmap to loc, devfs to locfs.

  • Property mode set to 100644
File size: 5.8 KB
Line 
1/*
2 * Copyright (c) 2010-2011 Vojtech Horky
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup usbinfo
30 * @{
31 */
32/**
33 * @file
34 * USB querying.
35 */
36
37#include <stdio.h>
38#include <stdlib.h>
39#include <errno.h>
40#include <str_error.h>
41#include <bool.h>
42#include <getopt.h>
43#include <devman.h>
44#include <loc.h>
45#include <usb/hc.h>
46#include <usb/dev/pipes.h>
47#include "usbinfo.h"
48
49static void print_usage(char *app_name)
50{
51#define _INDENT " "
52#define _OPTION(opt, description) \
53 printf(_INDENT opt "\n" _INDENT _INDENT description "\n")
54
55 printf(NAME ": query USB devices for descriptors\n\n");
56 printf("Usage: %s [options] device [device [device [ ... ]]]\n",
57 app_name);
58 printf(_INDENT "The device can be specified in two ways.\n");
59 printf(_INDENT " o Using its devman path, e.g. /hw/pci0/.../usb00_a1.\n");
60 printf(_INDENT " o Or using BUS.ADDR numbers as printed by lsusb.\n");
61
62 _OPTION("-h --help", "Print this help and exit.");
63 _OPTION("-i --identification", "Brief device identification.");
64 _OPTION("-m --match-ids", "Print match ids generated for the device.");
65 _OPTION("-t --descriptor-tree", "Print descriptor tree.");
66 _OPTION("-T --descriptor-tree-full", "Print detailed descriptor tree");
67 _OPTION("-s --strings", "Try to print all string descriptors.");
68 _OPTION("-S --status", "Get status of the device.");
69 _OPTION("-r --hid-report", "Dump HID report descriptor.");
70 _OPTION("-r --hid-report-usages", "Dump usages of HID report.");
71
72 printf("\n");
73 printf("If no option is specified, `-i' is considered default.\n");
74 printf("\n");
75
76#undef _OPTION
77#undef _INDENT
78}
79
80static struct option long_options[] = {
81 {"help", no_argument, NULL, 'h'},
82 {"identification", no_argument, NULL, 'i'},
83 {"match-ids", no_argument, NULL, 'm'},
84 {"descriptor-tree", no_argument, NULL, 't'},
85 {"descriptor-tree-full", no_argument, NULL, 'T'},
86 {"strings", no_argument, NULL, 's'},
87 {"status", no_argument, NULL, 'S'},
88 {"hid-report", no_argument, NULL, 'r'},
89 {"hid-report-usages", no_argument, NULL, 'R'},
90 {0, 0, NULL, 0}
91};
92static const char *short_options = "himtTsSrR";
93
94static usbinfo_action_t actions[] = {
95 {
96 .opt = 'i',
97 .action = dump_short_device_identification,
98 .active = false
99 },
100 {
101 .opt = 'm',
102 .action = dump_device_match_ids,
103 .active = false
104 },
105 {
106 .opt = 't',
107 .action = dump_descriptor_tree_brief,
108 .active = false
109 },
110 {
111 .opt = 'T',
112 .action = dump_descriptor_tree_full,
113 .active = false
114 },
115 {
116 .opt = 's',
117 .action = dump_strings,
118 .active = false
119 },
120 {
121 .opt = 'S',
122 .action = dump_status,
123 .active = false
124 },
125 {
126 .opt = 'r',
127 .action = dump_hidreport_raw,
128 .active = false
129 },
130 {
131 .opt = 'R',
132 .action = dump_hidreport_usages,
133 .active = false
134 },
135 {
136 .opt = 0
137 }
138};
139
140int main(int argc, char *argv[])
141{
142 if (argc <= 1) {
143 print_usage(argv[0]);
144 return -1;
145 }
146
147 /*
148 * Process command-line options. They determine what shall be
149 * done with the device.
150 */
151 int opt;
152 do {
153 opt = getopt_long(argc, argv,
154 short_options, long_options, NULL);
155 switch (opt) {
156 case -1:
157 break;
158 case '?':
159 print_usage(argv[0]);
160 return 1;
161 case 'h':
162 print_usage(argv[0]);
163 return 0;
164 default: {
165 int idx = 0;
166 while (actions[idx].opt != 0) {
167 if (actions[idx].opt == opt) {
168 actions[idx].active = true;
169 break;
170 }
171 idx++;
172 }
173 break;
174 }
175 }
176 } while (opt > 0);
177
178 /* Set the default action. */
179 int idx = 0;
180 bool something_active = false;
181 while (actions[idx].opt != 0) {
182 if (actions[idx].active) {
183 something_active = true;
184 break;
185 }
186 idx++;
187 }
188 if (!something_active) {
189 actions[0].active = true;
190 }
191
192 /*
193 * Go through all devices given on the command line and run the
194 * specified actions.
195 */
196 int i;
197 for (i = optind; i < argc; i++) {
198 char *devpath = argv[i];
199
200 /* The initialization is here only to make compiler happy. */
201 devman_handle_t hc_handle = 0;
202 usb_address_t dev_addr = 0;
203 int rc = usb_resolve_device_handle(devpath,
204 &hc_handle, &dev_addr, NULL);
205 if (rc != EOK) {
206 fprintf(stderr, NAME ": device `%s' not found "
207 "or not of USB kind, skipping.\n",
208 devpath);
209 continue;
210 }
211
212 usbinfo_device_t *dev = prepare_device(devpath,
213 hc_handle, dev_addr);
214 if (dev == NULL) {
215 continue;
216 }
217
218 /* Run actions the user specified. */
219 printf("%s\n", devpath);
220
221 int action = 0;
222 while (actions[action].opt != 0) {
223 if (actions[action].active) {
224 actions[action].action(dev);
225 }
226 action++;
227 }
228
229 /* Destroy the control pipe (close the session etc.). */
230 destroy_device(dev);
231 }
232
233 return 0;
234}
235
236
237/** @}
238 */
Note: See TracBrowser for help on using the repository browser.