source: mainline/uspace/app/lsusb/main.c@ 511cfc8

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

lsusb prints attached devices as well

  • Property mode set to 100644
File size: 3.4 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 lsusb
30 * @{
31 */
32/**
33 * @file
34 * Listing of USB host controllers.
35 */
36
37#include <inttypes.h>
38#include <stdio.h>
39#include <stdlib.h>
40#include <errno.h>
41#include <str_error.h>
42#include <bool.h>
43#include <getopt.h>
44#include <devman.h>
45#include <devmap.h>
46#include <usb/hub.h>
47#include <usb/host.h>
48
49#define NAME "lsusb"
50
51#define MAX_FAILED_ATTEMPTS 10
52#define MAX_PATH_LENGTH 1024
53
54static void print_found_hc(size_t class_index, const char *path)
55{
56 // printf(NAME ": host controller %zu is `%s'.\n", class_index, path);
57 printf("Bus %02zu: %s\n", class_index, path);
58}
59static void print_found_dev(usb_address_t addr, const char *path)
60{
61 // printf(NAME ": device with address %d is `%s'.\n", addr, path);
62 printf(" Device %02d: %s\n", addr, path);
63}
64
65static void print_hc_devices(devman_handle_t hc_handle)
66{
67 int rc;
68 usb_hc_connection_t conn;
69
70 usb_hc_connection_initialize(&conn, hc_handle);
71 rc = usb_hc_connection_open(&conn);
72 if (rc != EOK) {
73 printf(NAME ": failed to connect to HC: %s.\n",
74 str_error(rc));
75 return;
76 }
77 usb_address_t addr;
78 for (addr = 1; addr < 5; addr++) {
79 devman_handle_t dev_handle;
80 rc = usb_hc_get_handle_by_address(&conn, addr, &dev_handle);
81 if (rc != EOK) {
82 continue;
83 }
84 char path[MAX_PATH_LENGTH];
85 rc = devman_get_device_path(dev_handle, path, MAX_PATH_LENGTH);
86 if (rc != EOK) {
87 continue;
88 }
89 print_found_dev(addr, path);
90 }
91 usb_hc_connection_close(&conn);
92}
93
94int main(int argc, char *argv[])
95{
96 size_t class_index = 0;
97 size_t failed_attempts = 0;
98
99 while (failed_attempts < MAX_FAILED_ATTEMPTS) {
100 class_index++;
101 devman_handle_t hc_handle = 0;
102 int rc = usb_ddf_get_hc_handle_by_class(class_index, &hc_handle);
103 if (rc != EOK) {
104 failed_attempts++;
105 continue;
106 }
107 char path[MAX_PATH_LENGTH];
108 rc = devman_get_device_path(hc_handle, path, MAX_PATH_LENGTH);
109 if (rc != EOK) {
110 continue;
111 }
112 print_found_hc(class_index, path);
113 print_hc_devices(hc_handle);
114 }
115
116 return 0;
117}
118
119
120/** @}
121 */
Note: See TracBrowser for help on using the repository browser.