source: mainline/uspace/app/usbinfo/dump.c@ 5ccb15c

lfn serial ticket/834-toolchain-update topic/fix-logger-deadlock topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 5ccb15c was 5ccb15c, checked in by Vojtech Horky <vojtechhorky@…>, 15 years ago

Add simple descriptor parser

  • Property mode set to 100644
File size: 6.1 KB
Line 
1/*
2 * Copyright (c) 2010 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 usb
30 * @{
31 */
32/**
33 * @file
34 * @brief 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
43#include <usb/usb.h>
44#include <usb/descriptor.h>
45
46#include "usbinfo.h"
47#include <usb/dp.h>
48
49#define INDENT " "
50#define BYTES_PER_LINE 12
51
52#define BCD_INT(a) (((unsigned int)(a)) / 256)
53#define BCD_FRAC(a) (((unsigned int)(a)) % 256)
54
55#define BCD_FMT "%x.%x"
56#define BCD_ARGS(a) BCD_INT((a)), BCD_FRAC((a))
57
58void dump_buffer(const char *msg, const uint8_t *buffer, size_t length)
59{
60 printf("%s\n", msg);
61
62 size_t i;
63 for (i = 0; i < length; i++) {
64 printf(" 0x%02X", buffer[i]);
65 if (((i > 0) && (((i+1) % BYTES_PER_LINE) == 0))
66 || (i + 1 == length)) {
67 printf("\n");
68 }
69 }
70}
71
72void dump_match_ids(match_id_list_t *matches)
73{
74 printf("Match ids:\n");
75 link_t *link;
76 for (link = matches->ids.next;
77 link != &matches->ids;
78 link = link->next) {
79 match_id_t *match = list_get_instance(link, match_id_t, link);
80
81 printf(INDENT "%d %s\n", match->score, match->id);
82 }
83}
84
85void dump_standard_device_descriptor(usb_standard_device_descriptor_t *d)
86{
87 printf("Standard device descriptor:\n");
88
89 printf(INDENT "bLength = %d\n", d->length);
90 printf(INDENT "bDescriptorType = 0x%02x\n", d->descriptor_type);
91 printf(INDENT "bcdUSB = %d (" BCD_FMT ")\n", d->usb_spec_version,
92 BCD_ARGS(d->usb_spec_version));
93 printf(INDENT "bDeviceClass = 0x%02x\n", d->device_class);
94 printf(INDENT "bDeviceSubClass = 0x%02x\n", d->device_subclass);
95 printf(INDENT "bDeviceProtocol = 0x%02x\n", d->device_protocol);
96 printf(INDENT "bMaxPacketSize0 = %d\n", d->max_packet_size);
97 printf(INDENT "idVendor = %d\n", d->vendor_id);
98 printf(INDENT "idProduct = %d\n", d->product_id);
99 printf(INDENT "bcdDevice = %d\n", d->device_version);
100 printf(INDENT "iManufacturer = %d\n", d->str_manufacturer);
101 printf(INDENT "iProduct = %d\n", d->str_product);
102 printf(INDENT "iSerialNumber = %d\n", d->str_serial_number);
103 printf(INDENT "bNumConfigurations = %d\n", d->configuration_count);
104}
105
106void dump_standard_configuration_descriptor(
107 int index, usb_standard_configuration_descriptor_t *d)
108{
109 bool self_powered = d->attributes & 64;
110 bool remote_wakeup = d->attributes & 32;
111
112 printf("Standard configuration descriptor #%d\n", index);
113 printf(INDENT "bLength = %d\n", d->length);
114 printf(INDENT "bDescriptorType = 0x%02x\n", d->descriptor_type);
115 printf(INDENT "wTotalLength = %d\n", d->total_length);
116 printf(INDENT "bNumInterfaces = %d\n", d->interface_count);
117 printf(INDENT "bConfigurationValue = %d\n", d->configuration_number);
118 printf(INDENT "iConfiguration = %d\n", d->str_configuration);
119 printf(INDENT "bmAttributes = %d [%s%s%s]\n", d->attributes,
120 self_powered ? "self-powered" : "",
121 (self_powered & remote_wakeup) ? ", " : "",
122 remote_wakeup ? "remote-wakeup" : "");
123 printf(INDENT "MaxPower = %d (%dmA)\n", d->max_power,
124 2 * d->max_power);
125 // printf(INDENT " = %d\n", d->);
126}
127
128static void dump_tree_descriptor(uint8_t *descriptor, size_t depth)
129{
130 if (descriptor == NULL) {
131 return;
132 }
133 while (depth > 0) {
134 printf(" ");
135 depth--;
136 }
137 int type = (int) *(descriptor + 1);
138 const char *name = "unknown";
139 switch (type) {
140#define _TYPE(descriptor_type) \
141 case USB_DESCTYPE_##descriptor_type: name = #descriptor_type; break
142 _TYPE(DEVICE);
143 _TYPE(CONFIGURATION);
144 _TYPE(STRING);
145 _TYPE(INTERFACE);
146 _TYPE(ENDPOINT);
147 _TYPE(HID);
148 _TYPE(HID_REPORT);
149 _TYPE(HID_PHYSICAL);
150 _TYPE(HUB);
151#undef _TYPE
152 }
153 printf("0x%02x (%s)\n", type, name);
154}
155
156static void dump_tree_internal(usb_dp_parser_t *parser, usb_dp_parser_data_t *data,
157 uint8_t *root, size_t depth)
158{
159 if (root == NULL) {
160 return;
161 }
162 dump_tree_descriptor(root, depth);
163 uint8_t *child = usb_dp_get_nested_descriptor(parser, data, root);
164 do {
165 dump_tree_internal(parser, data, child, depth + 1);
166 child = usb_dp_get_sibling_descriptor(parser, data, root, child);
167 } while (child != NULL);
168}
169
170static void dump_tree(usb_dp_parser_t *parser, usb_dp_parser_data_t *data)
171{
172 uint8_t *ptr = data->data;
173 printf("Descriptor tree:\n");
174 dump_tree_internal(parser, data, ptr, 1);
175}
176
177#define NESTING(parentname, childname) \
178 { \
179 .child = USB_DESCTYPE_##childname, \
180 .parent = USB_DESCTYPE_##parentname, \
181 }
182#define LAST_NESTING { -1, -1 }
183
184static usb_dp_descriptor_nesting_t descriptor_nesting[] = {
185 NESTING(CONFIGURATION, INTERFACE),
186 NESTING(INTERFACE, ENDPOINT),
187 NESTING(INTERFACE, HUB),
188 NESTING(INTERFACE, HID),
189 NESTING(HID, HID_REPORT),
190 LAST_NESTING
191};
192
193static usb_dp_parser_t parser = {
194 .nesting = descriptor_nesting
195};
196
197void dump_descriptor_tree(uint8_t *descriptors, size_t length)
198{
199 usb_dp_parser_data_t data = {
200 .data = descriptors,
201 .size = length,
202 .arg = NULL
203 };
204
205 dump_tree(&parser, &data);
206}
207
208/** @}
209 */
Note: See TracBrowser for help on using the repository browser.