[c377bc50] | 1 | /*
|
---|
| 2 | * Copyright (c) 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 |
|
---|
[632ed68] | 29 | /** @addtogroup usbinfo
|
---|
[c377bc50] | 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /**
|
---|
| 33 | * @file
|
---|
[632ed68] | 34 | * Dumping of generic device properties.
|
---|
[c377bc50] | 35 | */
|
---|
| 36 | #include <stdio.h>
|
---|
| 37 | #include <str_error.h>
|
---|
| 38 | #include <errno.h>
|
---|
[a12917e] | 39 | #include <usb/pipes.h>
|
---|
[4e8e1f5] | 40 | #include <usb/recognise.h>
|
---|
[a12917e] | 41 | #include <usb/request.h>
|
---|
[c377bc50] | 42 | #include "usbinfo.h"
|
---|
| 43 |
|
---|
[a12917e] | 44 | int dump_device(devman_handle_t hc_handle, usb_address_t address)
|
---|
[c377bc50] | 45 | {
|
---|
[a12917e] | 46 | int rc;
|
---|
| 47 | usb_device_connection_t wire;
|
---|
| 48 | usb_endpoint_pipe_t ctrl_pipe;
|
---|
[c377bc50] | 49 |
|
---|
[a12917e] | 50 | /*
|
---|
| 51 | * Initialize pipes.
|
---|
| 52 | */
|
---|
| 53 | rc = usb_device_connection_initialize(&wire, hc_handle, address);
|
---|
| 54 | if (rc != EOK) {
|
---|
| 55 | fprintf(stderr,
|
---|
| 56 | NAME ": failed to create connection to the device: %s.\n",
|
---|
| 57 | str_error(rc));
|
---|
| 58 | goto leave;
|
---|
| 59 | }
|
---|
| 60 | rc = usb_endpoint_pipe_initialize_default_control(&ctrl_pipe, &wire);
|
---|
| 61 | if (rc != EOK) {
|
---|
| 62 | fprintf(stderr,
|
---|
| 63 | NAME ": failed to create default control pipe: %s.\n",
|
---|
| 64 | str_error(rc));
|
---|
| 65 | goto leave;
|
---|
| 66 | }
|
---|
| 67 | rc = usb_endpoint_pipe_start_session(&ctrl_pipe);
|
---|
| 68 | if (rc != EOK) {
|
---|
| 69 | fprintf(stderr,
|
---|
| 70 | NAME ": failed to start session on control pipe: %s.\n",
|
---|
| 71 | str_error(rc));
|
---|
| 72 | goto leave;
|
---|
| 73 | }
|
---|
| 74 |
|
---|
[4e8e1f5] | 75 | /*
|
---|
| 76 | * Dump information about possible match ids.
|
---|
| 77 | */
|
---|
| 78 | match_id_list_t match_id_list;
|
---|
| 79 | init_match_ids(&match_id_list);
|
---|
| 80 | rc = usb_device_create_match_ids(&ctrl_pipe, &match_id_list);
|
---|
| 81 | if (rc != EOK) {
|
---|
| 82 | fprintf(stderr,
|
---|
| 83 | NAME ": failed to fetch match ids of the device: %s.\n",
|
---|
| 84 | str_error(rc));
|
---|
| 85 | goto leave;
|
---|
| 86 | }
|
---|
| 87 | dump_match_ids(&match_id_list);
|
---|
| 88 |
|
---|
[c377bc50] | 89 | /*
|
---|
| 90 | * Get device descriptor and dump it.
|
---|
| 91 | */
|
---|
| 92 | usb_standard_device_descriptor_t device_descriptor;
|
---|
[a12917e] | 93 | rc = usb_request_get_device_descriptor(&ctrl_pipe, &device_descriptor);
|
---|
[c377bc50] | 94 | if (rc != EOK) {
|
---|
| 95 | fprintf(stderr,
|
---|
| 96 | NAME ": failed to fetch standard device descriptor: %s.\n",
|
---|
| 97 | str_error(rc));
|
---|
[a12917e] | 98 | goto leave;
|
---|
[c377bc50] | 99 | }
|
---|
[5f635ca] | 100 | dump_usb_descriptor((uint8_t *)&device_descriptor, sizeof(device_descriptor));
|
---|
[c377bc50] | 101 |
|
---|
| 102 | /*
|
---|
| 103 | * Get first configuration descriptor and dump it.
|
---|
| 104 | */
|
---|
| 105 | usb_standard_configuration_descriptor_t config_descriptor;
|
---|
| 106 | int config_index = 0;
|
---|
[a12917e] | 107 | rc = usb_request_get_bare_configuration_descriptor(&ctrl_pipe,
|
---|
| 108 | config_index, &config_descriptor);
|
---|
[c377bc50] | 109 | if (rc != EOK) {
|
---|
| 110 | fprintf(stderr,
|
---|
| 111 | NAME ": failed to fetch standard configuration descriptor: %s.\n",
|
---|
| 112 | str_error(rc));
|
---|
[a12917e] | 113 | goto leave;
|
---|
[c377bc50] | 114 | }
|
---|
[5f635ca] | 115 | //dump_standard_configuration_descriptor(config_index, &config_descriptor);
|
---|
[c377bc50] | 116 |
|
---|
| 117 | void *full_config_descriptor = malloc(config_descriptor.total_length);
|
---|
[a12917e] | 118 | rc = usb_request_get_full_configuration_descriptor(&ctrl_pipe,
|
---|
[c377bc50] | 119 | config_index,
|
---|
| 120 | full_config_descriptor, config_descriptor.total_length, NULL);
|
---|
| 121 | if (rc != EOK) {
|
---|
| 122 | fprintf(stderr,
|
---|
| 123 | NAME ": failed to fetch full configuration descriptor: %s.\n",
|
---|
| 124 | str_error(rc));
|
---|
[a12917e] | 125 | goto leave;
|
---|
[c377bc50] | 126 | }
|
---|
| 127 |
|
---|
[5ccb15c] | 128 | dump_descriptor_tree(full_config_descriptor,
|
---|
| 129 | config_descriptor.total_length);
|
---|
| 130 |
|
---|
[6dd929c] | 131 | /*
|
---|
[7eebe2a] | 132 | * Get supported languages of STRING descriptors.
|
---|
[6dd929c] | 133 | */
|
---|
[7eebe2a] | 134 | l18_win_locales_t *langs;
|
---|
| 135 | size_t langs_count;
|
---|
| 136 | rc = usb_request_get_supported_languages(&ctrl_pipe,
|
---|
| 137 | &langs, &langs_count);
|
---|
[6dd929c] | 138 | if (rc != EOK) {
|
---|
| 139 | fprintf(stderr,
|
---|
[7eebe2a] | 140 | NAME ": failed to get list of supported languages: %s.\n",
|
---|
[6dd929c] | 141 | str_error(rc));
|
---|
[7eebe2a] | 142 | goto skip_strings;
|
---|
[6dd929c] | 143 | }
|
---|
| 144 |
|
---|
[7eebe2a] | 145 | printf("String languages (%zu):", langs_count);
|
---|
[6dd929c] | 146 | size_t i;
|
---|
[7eebe2a] | 147 | for (i = 0; i < langs_count; i++) {
|
---|
| 148 | printf(" 0x%04x", (int) langs[i]);
|
---|
[6dd929c] | 149 | }
|
---|
| 150 | printf(".\n");
|
---|
| 151 |
|
---|
| 152 | /*
|
---|
[d0dcfa80] | 153 | * Dump all strings in all available langages;
|
---|
[6dd929c] | 154 | */
|
---|
[d0dcfa80] | 155 | for (i = 0; i < langs_count; i++) {
|
---|
| 156 | l18_win_locales_t lang = langs[i];
|
---|
| 157 |
|
---|
[b1c6e58] | 158 | printf("%sStrings for language 0x%04x:\n", get_indent(0),
|
---|
| 159 | (int) lang);
|
---|
[d0dcfa80] | 160 |
|
---|
[6dd929c] | 161 | /*
|
---|
[d0dcfa80] | 162 | * Try all indexes - we will see what pops-up ;-).
|
---|
| 163 | * However, to speed things up, we will stop after
|
---|
| 164 | * encountering several broken (or nonexistent ones)
|
---|
| 165 | * descriptors in line.
|
---|
| 166 | */
|
---|
| 167 | size_t idx;
|
---|
| 168 | size_t failed_count = 0;
|
---|
| 169 | for (idx = 1; idx < 0xFF; idx++) {
|
---|
| 170 | char *string;
|
---|
| 171 | rc = usb_request_get_string(&ctrl_pipe, idx, lang,
|
---|
| 172 | &string);
|
---|
| 173 | if (rc != EOK) {
|
---|
| 174 | failed_count++;
|
---|
| 175 | if (failed_count > 3) {
|
---|
| 176 | break;
|
---|
| 177 | }
|
---|
| 178 | continue;
|
---|
| 179 | }
|
---|
[b1c6e58] | 180 | printf("%sString #%zu: \"%s\"\n", get_indent(1),
|
---|
| 181 | idx, string);
|
---|
[6dd929c] | 182 | free(string);
|
---|
[d0dcfa80] | 183 | failed_count = 0; /* Reset failed counter. */
|
---|
[6dd929c] | 184 | }
|
---|
| 185 | }
|
---|
| 186 |
|
---|
[d0dcfa80] | 187 |
|
---|
[7eebe2a] | 188 | skip_strings:
|
---|
| 189 |
|
---|
[a12917e] | 190 | rc = EOK;
|
---|
[6dd929c] | 191 |
|
---|
[a12917e] | 192 | leave:
|
---|
| 193 | /* Ignoring errors here. */
|
---|
| 194 | usb_endpoint_pipe_end_session(&ctrl_pipe);
|
---|
| 195 |
|
---|
| 196 | return rc;
|
---|
[c377bc50] | 197 | }
|
---|
| 198 |
|
---|
| 199 | /** @}
|
---|
| 200 | */
|
---|