-
Notifications
You must be signed in to change notification settings - Fork 4
/
usbmisc.c
155 lines (129 loc) · 3.82 KB
/
usbmisc.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/*****************************************************************************/
/*
* usbmisc.c -- Misc USB routines
*
* Copyright (C) 2003 Aurelien Jarno ([email protected])
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*
*/
/*****************************************************************************/
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "usbmisc.h"
/* ---------------------------------------------------------------------- */
static const char *devbususb = "/dev/bus/usb";
/* ---------------------------------------------------------------------- */
static int readlink_recursive(const char *path, char *buf, size_t bufsize)
{
char temp[PATH_MAX + 1];
char *ptemp;
int ret;
ret = readlink(path, buf, bufsize);
if (ret > 0) {
buf[ret] = 0;
if (*buf != '/') {
strncpy(temp, path, sizeof(temp));
ptemp = temp + strlen(temp);
while (*ptemp != '/' && ptemp != temp)
ptemp--;
ptemp++;
strncpy(ptemp, buf, bufsize + temp - ptemp);
} else
strncpy(temp, buf, sizeof(temp));
return readlink_recursive(temp, buf, bufsize);
} else {
strncpy(buf, path, bufsize);
return strlen(buf);
}
}
static char *get_absolute_path(const char *path, char *result,
size_t result_size)
{
const char *ppath; /* pointer on the input string */
char *presult; /* pointer on the output string */
ppath = path;
presult = result;
result[0] = 0;
if (path == NULL)
return result;
if (*ppath != '/') {
result = getcwd(result, result_size);
presult += strlen(result);
result_size -= strlen(result);
*presult++ = '/';
result_size--;
}
while (*ppath != 0 && result_size > 1) {
if (*ppath == '/') {
do
ppath++;
while (*ppath == '/');
*presult++ = '/';
result_size--;
} else if (*ppath == '.' && *(ppath + 1) == '.' &&
*(ppath + 2) == '/' && *(presult - 1) == '/') {
if ((presult - 1) != result) {
/* go one directory upper */
do {
presult--;
result_size++;
} while (*(presult - 1) != '/');
}
ppath += 3;
} else if (*ppath == '.' &&
*(ppath + 1) == '/' &&
*(presult - 1) == '/') {
ppath += 2;
} else {
*presult++ = *ppath++;
result_size--;
}
}
/* Don't forget to mark the end of the string! */
*presult = 0;
return result;
}
struct libusb_device *get_usb_device(const char *path)
{
struct libusb_device **list;
struct libusb_device *found = NULL;
ssize_t cnt = libusb_get_device_list(NULL, &list);
ssize_t i = 0;
int bus, dev;
char device_path[PATH_MAX + 1];
char absolute_path[PATH_MAX + 1];
if (cnt < 0)
perror ("Can't get device list\n");
readlink_recursive(path, device_path, sizeof(device_path));
get_absolute_path(device_path, absolute_path, sizeof(absolute_path));
for (i = 0; i < cnt; i++) {
libusb_device *device = list[i];
bus = libusb_get_bus_number(device);
dev = libusb_get_device_address(device);
snprintf(device_path, sizeof(device_path), "%s/%d/%d", devbususb, bus, dev);
if (!strcmp(device_path, absolute_path)) {
found = device;
break;
}
}
libusb_free_device_list(list, 1);
return found;
}