-
Notifications
You must be signed in to change notification settings - Fork 217
Expand file tree
/
Copy pathusbmisc.c
More file actions
262 lines (215 loc) · 5.85 KB
/
Copy pathusbmisc.c
File metadata and controls
262 lines (215 loc) · 5.85 KB
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
// SPDX-License-Identifier: GPL-2.0-or-later
/*
* Misc USB routines
*
* Copyright (C) 2003 Aurelien Jarno (aurelien@aurel32.net)
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <limits.h>
#include <iconv.h>
#include <langinfo.h>
#include "usbmisc.h"
/* ---------------------------------------------------------------------- */
static const char *devbususb = "/dev/bus/usb";
/* ---------------------------------------------------------------------- */
/* SYMLOOP_MAX is typically 40 on Linux (MAXSYMLINKS) */
#define MAX_READLINK_DEPTH 40
static int readlink_recursive_depth(const char *path, char *buf,
size_t bufsize, int depth)
{
char temp[PATH_MAX + 1];
char *ptemp;
int ret;
size_t remaining;
if (depth > MAX_READLINK_DEPTH) {
strncpy(buf, path, bufsize);
buf[bufsize - 1] = '\0';
return strlen(buf);
}
ret = readlink(path, buf, bufsize-1);
if (ret > 0) {
buf[ret] = 0;
if (*buf != '/') {
strncpy(temp, path, sizeof(temp) - 1);
temp[sizeof(temp) - 1] = '\0';
ptemp = temp + strlen(temp);
while (*ptemp != '/' && ptemp != temp)
ptemp--;
ptemp++;
remaining = sizeof(temp) - (ptemp - temp) - 1;
strncpy(ptemp, buf, remaining);
ptemp[remaining] = '\0';
} else {
strncpy(temp, buf, sizeof(temp) - 1);
temp[sizeof(temp) - 1] = '\0';
}
return readlink_recursive_depth(temp, buf, bufsize, depth + 1);
} else {
strncpy(buf, path, bufsize);
buf[bufsize - 1] = '\0';
return strlen(buf);
}
}
static int readlink_recursive(const char *path, char *buf, size_t bufsize)
{
return readlink_recursive_depth(path, buf, bufsize, 0);
}
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);
if (!result)
return NULL;
presult += strlen(result);
result_size -= strlen(result);
if (result_size > 1) {
*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;
}
libusb_device *get_usb_device(libusb_context *ctx, const char *path)
{
libusb_device **list;
libusb_device *dev;
ssize_t num_devs, i;
char device_path[PATH_MAX + 1];
char absolute_path[PATH_MAX + 1];
readlink_recursive(path, device_path, sizeof(device_path));
get_absolute_path(device_path, absolute_path, sizeof(absolute_path));
dev = NULL;
num_devs = libusb_get_device_list(ctx, &list);
if (num_devs < 0)
return NULL;
for (i = 0; i < num_devs; ++i) {
uint8_t bnum = libusb_get_bus_number(list[i]);
uint8_t dnum = libusb_get_device_address(list[i]);
snprintf(device_path, sizeof(device_path), "%s/%03u/%03u",
devbususb, bnum, dnum);
if (!strcmp(device_path, absolute_path)) {
dev = list[i];
break;
}
}
libusb_free_device_list(list, 1);
return dev;
}
static char *get_dev_string_ascii(libusb_device_handle *dev, size_t size,
uint8_t id)
{
char *buf = calloc(1, size);
if (!buf)
return strdup("(error)");
int ret = libusb_get_string_descriptor_ascii(dev, id,
(unsigned char *) buf,
size);
if (ret < 0) {
free(buf);
return strdup("(error)");
}
return buf;
}
static uint16_t get_any_langid(libusb_device_handle *dev)
{
unsigned char buf[4] = {0};
int ret = libusb_get_string_descriptor(dev, 0, 0, buf, sizeof buf);
if (ret != sizeof buf)
return 0;
return buf[2] | (buf[3] << 8);
}
static char *usb_string_to_native(char * str, size_t len)
{
size_t num_converted;
iconv_t conv;
char *result, *result_end;
size_t in_bytes_left, out_bytes_left;
conv = iconv_open(nl_langinfo(CODESET), "UTF-16LE");
if (conv == (iconv_t) -1)
return NULL;
in_bytes_left = len * 2;
out_bytes_left = len * MB_CUR_MAX;
result = result_end = malloc(out_bytes_left + 1);
if (!result) {
iconv_close(conv);
return NULL;
}
num_converted = iconv(conv, &str, &in_bytes_left,
&result_end, &out_bytes_left);
iconv_close(conv);
if (num_converted == (size_t) -1) {
free(result);
return NULL;
}
*result_end = 0;
return result;
}
char *get_dev_string(libusb_device_handle *dev, uint8_t id)
{
int ret;
char *buf, unicode_buf[254];
uint16_t langid;
if (!dev || !id)
return strdup("");
langid = get_any_langid(dev);
if (!langid)
return strdup("(error)");
/*
* Some devices lie about their string size, so initialize
* the buffer with all 0 to account for that.
*/
memset(unicode_buf, 0x00, sizeof(unicode_buf));
ret = libusb_get_string_descriptor(dev, id, langid,
(unsigned char *) unicode_buf,
sizeof unicode_buf);
if (ret < 2) return strdup("(error)");
if ((unsigned char)unicode_buf[0] < 2 || unicode_buf[1] != LIBUSB_DT_STRING)
return strdup("(error)");
buf = usb_string_to_native(unicode_buf + 2,
((unsigned char) unicode_buf[0] - 2) / 2);
if (!buf)
buf = get_dev_string_ascii(dev, 127, id);
for (char *p = buf; *p; p++)
if ((unsigned char)*p < 0x20 || *p == 0x7f)
*p = '?';
return buf;
}