-
Notifications
You must be signed in to change notification settings - Fork 30
/
host-raw-gadget.cpp
377 lines (350 loc) · 9.36 KB
/
host-raw-gadget.cpp
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
#include <fcntl.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <linux/types.h>
#include "host-raw-gadget.h"
struct raw_gadget_device host_device_desc;
/*----------------------------------------------------------------------*/
int usb_raw_open() {
int fd = open("/dev/raw-gadget", O_RDWR);
if (fd < 0) {
perror("open() /dev/raw-gadget");
exit(EXIT_FAILURE);
}
return fd;
}
void usb_raw_init(int fd, enum usb_device_speed speed,
const char *driver, const char *device) {
struct usb_raw_init arg;
strcpy((char *)&arg.driver_name[0], driver);
strcpy((char *)&arg.device_name[0], device);
arg.speed = speed;
int rv = ioctl(fd, USB_RAW_IOCTL_INIT, &arg);
if (rv < 0) {
perror("ioctl(USB_RAW_IOCTL_INIT)");
exit(EXIT_FAILURE);
}
}
void usb_raw_run(int fd) {
int rv = ioctl(fd, USB_RAW_IOCTL_RUN, 0);
if (rv < 0) {
perror("ioctl(USB_RAW_IOCTL_RUN)");
exit(EXIT_FAILURE);
}
}
void usb_raw_event_fetch(int fd, struct usb_raw_event *event) {
int rv = ioctl(fd, USB_RAW_IOCTL_EVENT_FETCH, event);
if (rv < 0) {
if (errno == EINTR) {
event->length = 4294967295;
return;
}
perror("ioctl(USB_RAW_IOCTL_EVENT_FETCH)");
exit(EXIT_FAILURE);
}
}
int usb_raw_ep0_read(int fd, struct usb_raw_ep_io *io) {
int rv = ioctl(fd, USB_RAW_IOCTL_EP0_READ, io);
if (rv < 0) {
if (errno == EBUSY)
return rv;
perror("ioctl(USB_RAW_IOCTL_EP0_READ)");
exit(EXIT_FAILURE);
}
return rv;
}
int usb_raw_ep0_write(int fd, struct usb_raw_ep_io *io) {
int rv = ioctl(fd, USB_RAW_IOCTL_EP0_WRITE, io);
if (rv < 0) {
perror("ioctl(USB_RAW_IOCTL_EP0_WRITE)");
exit(EXIT_FAILURE);
}
return rv;
}
int usb_raw_ep_enable(int fd, struct usb_endpoint_descriptor *desc) {
int rv = ioctl(fd, USB_RAW_IOCTL_EP_ENABLE, desc);
if (rv < 0) {
perror("ioctl(USB_RAW_IOCTL_EP_ENABLE)");
exit(EXIT_FAILURE);
}
return rv;
}
int usb_raw_ep_disable(int fd, uint32_t num) {
int rv = ioctl(fd, USB_RAW_IOCTL_EP_DISABLE, num);
if (rv < 0) {
perror("ioctl(USB_RAW_IOCTL_EP_DISABLE)");
exit(EXIT_FAILURE);
}
return rv;
}
int usb_raw_ep_read(int fd, struct usb_raw_ep_io *io) {
int rv = ioctl(fd, USB_RAW_IOCTL_EP_READ, io);
if (rv < 0) {
if (errno == EINPROGRESS) {
// Ignore failures caused by the test that halts endpoints.
return rv;
}
else if (errno == ESHUTDOWN) {
// Ignore failures caused by device reset.
return rv;
}
else if (errno == EINTR) {
// Ignore failures caused by sending a signal to the
// endpoint threads when shutting them down.
return rv;
}
else if (errno == EBUSY)
return rv;
perror("ioctl(USB_RAW_IOCTL_EP_READ)");
exit(EXIT_FAILURE);
}
return rv;
}
int usb_raw_ep_write(int fd, struct usb_raw_ep_io *io) {
int rv = ioctl(fd, USB_RAW_IOCTL_EP_WRITE, io);
if (rv < 0) {
if (errno == EINPROGRESS) {
// Ignore failures caused by the test that halts endpoints.
return rv;
}
else if (errno == ESHUTDOWN) {
// Ignore failures caused by device reset.
return rv;
}
else if (errno == EINTR) {
// Ignore failures caused by sending a signal to the
// endpoint threads when shutting them down.
return rv;
}
else if (errno == EXDEV || errno == ENODATA) {
// Ignore failures caused by sending an isochronous transfer
// too late (dwc3 returns EXDEV, dwc2 returns ENODATA).
return rv;
}
else if (errno == EBUSY)
return rv;
perror("ioctl(USB_RAW_IOCTL_EP_WRITE)");
exit(EXIT_FAILURE);
}
return rv;
}
void usb_raw_configure(int fd) {
int rv = ioctl(fd, USB_RAW_IOCTL_CONFIGURE, 0);
if (rv < 0) {
perror("ioctl(USB_RAW_IOCTL_CONFIGURED)");
exit(EXIT_FAILURE);
}
}
void usb_raw_vbus_draw(int fd, uint32_t power) {
int rv = ioctl(fd, USB_RAW_IOCTL_VBUS_DRAW, power);
if (rv < 0) {
perror("ioctl(USB_RAW_IOCTL_VBUS_DRAW)");
exit(EXIT_FAILURE);
}
}
int usb_raw_eps_info(int fd, struct usb_raw_eps_info *info) {
int rv = ioctl(fd, USB_RAW_IOCTL_EPS_INFO, info);
if (rv < 0) {
perror("ioctl(USB_RAW_IOCTL_EPS_INFO)");
exit(EXIT_FAILURE);
}
return rv;
}
void usb_raw_ep0_stall(int fd) {
printf("ep0: stalling\n");
int rv = ioctl(fd, USB_RAW_IOCTL_EP0_STALL, 0);
if (rv < 0) {
if (errno == EBUSY)
return;
perror("ioctl(USB_RAW_IOCTL_EP0_STALL)");
exit(EXIT_FAILURE);
}
}
void usb_raw_ep_set_halt(int fd, int ep) {
int rv = ioctl(fd, USB_RAW_IOCTL_EP_SET_HALT, ep);
if (rv < 0) {
perror("ioctl(USB_RAW_IOCTL_EP_SET_HALT)");
exit(EXIT_FAILURE);
}
}
/*----------------------------------------------------------------------*/
void log_control_request(struct usb_ctrlrequest *ctrl) {
printf(" bRequestType: 0x%02x %5s, bRequest: 0x%02x, wValue: 0x%04x,"
" wIndex: 0x%04x, wLength: %d\n", ctrl->bRequestType,
(ctrl->bRequestType & USB_DIR_IN) ? "(IN)" : "(OUT)",
ctrl->bRequest, ctrl->wValue, ctrl->wIndex, ctrl->wLength);
switch (ctrl->bRequestType & USB_TYPE_MASK) {
case USB_TYPE_STANDARD:
printf(" type = USB_TYPE_STANDARD\n");
break;
case USB_TYPE_CLASS:
printf(" type = USB_TYPE_CLASS\n");
break;
case USB_TYPE_VENDOR:
printf(" type = USB_TYPE_VENDOR\n");
break;
default:
printf(" type = unknown = %d\n", (int)ctrl->bRequestType);
break;
}
switch (ctrl->bRequestType & USB_TYPE_MASK) {
case USB_TYPE_STANDARD:
switch (ctrl->bRequest) {
case USB_REQ_GET_DESCRIPTOR:
printf(" req = USB_REQ_GET_DESCRIPTOR\n");
switch (ctrl->wValue >> 8) {
case USB_DT_DEVICE:
printf(" desc = USB_DT_DEVICE\n");
break;
case USB_DT_CONFIG:
printf(" desc = USB_DT_CONFIG\n");
break;
case USB_DT_STRING:
printf(" desc = USB_DT_STRING\n");
break;
case USB_DT_INTERFACE:
printf(" desc = USB_DT_INTERFACE\n");
break;
case USB_DT_ENDPOINT:
printf(" desc = USB_DT_ENDPOINT\n");
break;
case USB_DT_DEVICE_QUALIFIER:
printf(" desc = USB_DT_DEVICE_QUALIFIER\n");
break;
case USB_DT_OTHER_SPEED_CONFIG:
printf(" desc = USB_DT_OTHER_SPEED_CONFIG\n");
break;
case USB_DT_INTERFACE_POWER:
printf(" desc = USB_DT_INTERFACE_POWER\n");
break;
case USB_DT_OTG:
printf(" desc = USB_DT_OTG\n");
break;
case USB_DT_DEBUG:
printf(" desc = USB_DT_DEBUG\n");
break;
case USB_DT_INTERFACE_ASSOCIATION:
printf(" desc = USB_DT_INTERFACE_ASSOCIATION\n");
break;
case USB_DT_SECURITY:
printf(" desc = USB_DT_SECURITY\n");
break;
case USB_DT_KEY:
printf(" desc = USB_DT_KEY\n");
break;
case USB_DT_ENCRYPTION_TYPE:
printf(" desc = USB_DT_ENCRYPTION_TYPE\n");
break;
case USB_DT_BOS:
printf(" desc = USB_DT_BOS\n");
break;
case USB_DT_DEVICE_CAPABILITY:
printf(" desc = USB_DT_DEVICE_CAPABILITY\n");
break;
case USB_DT_WIRELESS_ENDPOINT_COMP:
printf(" desc = USB_DT_WIRELESS_ENDPOINT_COMP\n");
break;
case USB_DT_PIPE_USAGE:
printf(" desc = USB_DT_PIPE_USAGE\n");
break;
case USB_DT_SS_ENDPOINT_COMP:
printf(" desc = USB_DT_SS_ENDPOINT_COMP\n");
break;
default:
printf(" desc = unknown = 0x%x\n",
ctrl->wValue >> 8);
break;
}
break;
case USB_REQ_SET_CONFIGURATION:
printf(" req = USB_REQ_SET_CONFIGURATION\n");
break;
case USB_REQ_GET_CONFIGURATION:
printf(" req = USB_REQ_GET_CONFIGURATION\n");
break;
case USB_REQ_SET_INTERFACE:
printf(" req = USB_REQ_SET_INTERFACE\n");
break;
case USB_REQ_GET_INTERFACE:
printf(" req = USB_REQ_GET_INTERFACE\n");
break;
case USB_REQ_GET_STATUS:
printf(" req = USB_REQ_GET_STATUS\n");
break;
case USB_REQ_CLEAR_FEATURE:
printf(" req = USB_REQ_CLEAR_FEATURE\n");
break;
case USB_REQ_SET_FEATURE:
printf(" req = USB_REQ_SET_FEATURE\n");
break;
default:
printf(" req = unknown = 0x%x\n", ctrl->bRequest);
break;
}
break;
case USB_TYPE_CLASS:
switch (ctrl->bRequest) {
default:
printf(" req = unknown = 0x%x\n", ctrl->bRequest);
break;
}
break;
default:
printf(" req = unknown = 0x%x\n", ctrl->bRequest);
break;
}
}
void log_event(struct usb_raw_event *event) {
switch (event->type) {
case USB_RAW_EVENT_CONNECT:
printf("event: connect, length: %u\n", event->length);
break;
case USB_RAW_EVENT_CONTROL:
printf("event: control, length: %u\n", event->length);
log_control_request((struct usb_ctrlrequest *)&event->data[0]);
break;
case USB_RAW_EVENT_SUSPEND:
printf("event: suspend\n");
break;
case USB_RAW_EVENT_RESUME:
printf("event: resume\n");
break;
case USB_RAW_EVENT_RESET:
printf("event: reset\n");
break;
case USB_RAW_EVENT_DISCONNECT:
printf("event: disconnect\n");
break;
default:
printf("event: %d (unknown), length: %u\n", event->type, event->length);
}
}
void print_eps_info(int fd) {
struct usb_raw_eps_info info;
memset(&info, 0, sizeof(info));
int num = usb_raw_eps_info(fd, &info);
for (int i = 0; i < num; i++) {
printf("ep #%d:\n", i);
printf(" name: %s\n", &info.eps[i].name[0]);
printf(" addr: %u\n", info.eps[i].addr);
printf(" type: %s %s %s\n",
info.eps[i].caps.type_iso ? "iso" : "___",
info.eps[i].caps.type_bulk ? "blk" : "___",
info.eps[i].caps.type_int ? "int" : "___");
printf(" dir : %s %s\n",
info.eps[i].caps.dir_in ? "in " : "___",
info.eps[i].caps.dir_out ? "out" : "___");
printf(" maxpacket_limit: %u\n",
info.eps[i].limits.maxpacket_limit);
printf(" max_streams: %u\n", info.eps[i].limits.max_streams);
}
}