xref: /freebsd/lib/libusb/libusb20.c (revision fb47a3769c514735bceb2822a64e5e70c3d2f7a4)
1 /* $FreeBSD$ */
2 /*-
3  * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
4  *
5  * Copyright (c) 2008-2009 Hans Petter Selasky. All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  */
28 
29 #ifdef LIBUSB_GLOBAL_INCLUDE_FILE
30 #include LIBUSB_GLOBAL_INCLUDE_FILE
31 #else
32 #include <ctype.h>
33 #include <poll.h>
34 #include <stdio.h>
35 #include <stdlib.h>
36 #include <string.h>
37 #include <time.h>
38 #include <sys/queue.h>
39 #endif
40 
41 #include "libusb20.h"
42 #include "libusb20_desc.h"
43 #include "libusb20_int.h"
44 
45 static int
46 dummy_int(void)
47 {
48 	return (LIBUSB20_ERROR_NOT_SUPPORTED);
49 }
50 
51 static void
52 dummy_void(void)
53 {
54 	return;
55 }
56 
57 static void
58 dummy_callback(struct libusb20_transfer *xfer)
59 {
60 	;				/* style fix */
61 	switch (libusb20_tr_get_status(xfer)) {
62 	case LIBUSB20_TRANSFER_START:
63 		libusb20_tr_submit(xfer);
64 		break;
65 	default:
66 		/* complete or error */
67 		break;
68 	}
69 	return;
70 }
71 
72 #define	dummy_get_config_desc_full (void *)dummy_int
73 #define	dummy_get_config_index (void *)dummy_int
74 #define	dummy_set_config_index (void *)dummy_int
75 #define	dummy_set_alt_index (void *)dummy_int
76 #define	dummy_reset_device (void *)dummy_int
77 #define	dummy_check_connected (void *)dummy_int
78 #define	dummy_set_power_mode (void *)dummy_int
79 #define	dummy_get_power_mode (void *)dummy_int
80 #define	dummy_get_power_usage (void *)dummy_int
81 #define	dummy_kernel_driver_active (void *)dummy_int
82 #define	dummy_detach_kernel_driver (void *)dummy_int
83 #define	dummy_do_request_sync (void *)dummy_int
84 #define	dummy_tr_open (void *)dummy_int
85 #define	dummy_tr_close (void *)dummy_int
86 #define	dummy_tr_clear_stall_sync (void *)dummy_int
87 #define	dummy_process (void *)dummy_int
88 #define	dummy_dev_info (void *)dummy_int
89 #define	dummy_dev_get_iface_driver (void *)dummy_int
90 
91 #define	dummy_tr_submit (void *)dummy_void
92 #define	dummy_tr_cancel_async (void *)dummy_void
93 
94 static const struct libusb20_device_methods libusb20_dummy_methods = {
95 	LIBUSB20_DEVICE(LIBUSB20_DECLARE, dummy)
96 };
97 
98 void
99 libusb20_tr_callback_wrapper(struct libusb20_transfer *xfer)
100 {
101 	;				/* style fix */
102 
103 repeat:
104 
105 	if (!xfer->is_pending) {
106 		xfer->status = LIBUSB20_TRANSFER_START;
107 	} else {
108 		xfer->is_pending = 0;
109 	}
110 
111 	xfer->callback(xfer);
112 
113 	if (xfer->is_restart) {
114 		xfer->is_restart = 0;
115 		goto repeat;
116 	}
117 	if (xfer->is_draining &&
118 	    (!xfer->is_pending)) {
119 		xfer->is_draining = 0;
120 		xfer->status = LIBUSB20_TRANSFER_DRAINED;
121 		xfer->callback(xfer);
122 	}
123 	return;
124 }
125 
126 int
127 libusb20_tr_close(struct libusb20_transfer *xfer)
128 {
129 	int error;
130 
131 	if (!xfer->is_opened) {
132 		return (LIBUSB20_ERROR_OTHER);
133 	}
134 	error = xfer->pdev->methods->tr_close(xfer);
135 
136 	if (xfer->pLength) {
137 		free(xfer->pLength);
138 	}
139 	if (xfer->ppBuffer) {
140 		free(xfer->ppBuffer);
141 	}
142 	/* reset variable fields in case the transfer is opened again */
143 	xfer->priv_sc0 = NULL;
144 	xfer->priv_sc1 = NULL;
145 	xfer->is_opened = 0;
146 	xfer->is_pending = 0;
147 	xfer->is_cancel = 0;
148 	xfer->is_draining = 0;
149 	xfer->is_restart = 0;
150 	xfer->status = 0;
151 	xfer->flags = 0;
152 	xfer->nFrames = 0;
153 	xfer->aFrames = 0;
154 	xfer->timeout = 0;
155 	xfer->maxFrames = 0;
156 	xfer->maxTotalLength = 0;
157 	xfer->maxPacketLen = 0;
158 	return (error);
159 }
160 
161 int
162 libusb20_tr_open(struct libusb20_transfer *xfer, uint32_t MaxBufSize,
163     uint32_t MaxFrameCount, uint8_t ep_no)
164 {
165 	return (libusb20_tr_open_stream(xfer, MaxBufSize, MaxFrameCount, ep_no, 0));
166 }
167 
168 int
169 libusb20_tr_open_stream(struct libusb20_transfer *xfer, uint32_t MaxBufSize,
170     uint32_t MaxFrameCount, uint8_t ep_no, uint16_t stream_id)
171 {
172 	uint32_t size;
173 	uint8_t pre_scale;
174 	int error;
175 
176 	if (xfer->is_opened)
177 		return (LIBUSB20_ERROR_BUSY);
178 	if (MaxFrameCount & LIBUSB20_MAX_FRAME_PRE_SCALE) {
179 		MaxFrameCount &= ~LIBUSB20_MAX_FRAME_PRE_SCALE;
180 		/*
181 		 * The kernel can setup 8 times more frames when
182 		 * pre-scaling ISOCHRONOUS transfers. Make sure the
183 		 * length and pointer buffers are big enough:
184 		 */
185 		MaxFrameCount *= 8;
186 		pre_scale = 1;
187 	} else {
188 		pre_scale = 0;
189 	}
190 	if (MaxFrameCount == 0)
191 		return (LIBUSB20_ERROR_INVALID_PARAM);
192 
193 	xfer->maxFrames = MaxFrameCount;
194 
195 	size = MaxFrameCount * sizeof(xfer->pLength[0]);
196 	xfer->pLength = malloc(size);
197 	if (xfer->pLength == NULL) {
198 		return (LIBUSB20_ERROR_NO_MEM);
199 	}
200 	memset(xfer->pLength, 0, size);
201 
202 	size = MaxFrameCount * sizeof(xfer->ppBuffer[0]);
203 	xfer->ppBuffer = malloc(size);
204 	if (xfer->ppBuffer == NULL) {
205 		free(xfer->pLength);
206 		return (LIBUSB20_ERROR_NO_MEM);
207 	}
208 	memset(xfer->ppBuffer, 0, size);
209 
210 	if (pre_scale) {
211 		error = xfer->pdev->methods->tr_open(xfer, MaxBufSize,
212 		    MaxFrameCount / 8, ep_no, stream_id, 1);
213 	} else {
214 		error = xfer->pdev->methods->tr_open(xfer, MaxBufSize,
215 		    MaxFrameCount, ep_no, stream_id, 0);
216 	}
217 
218 	if (error) {
219 		free(xfer->ppBuffer);
220 		free(xfer->pLength);
221 	} else {
222 		xfer->is_opened = 1;
223 	}
224 	return (error);
225 }
226 
227 struct libusb20_transfer *
228 libusb20_tr_get_pointer(struct libusb20_device *pdev, uint16_t trIndex)
229 {
230 	if (trIndex >= pdev->nTransfer) {
231 		return (NULL);
232 	}
233 	return (pdev->pTransfer + trIndex);
234 }
235 
236 uint32_t
237 libusb20_tr_get_actual_frames(struct libusb20_transfer *xfer)
238 {
239 	return (xfer->aFrames);
240 }
241 
242 uint16_t
243 libusb20_tr_get_time_complete(struct libusb20_transfer *xfer)
244 {
245 	return (xfer->timeComplete);
246 }
247 
248 uint32_t
249 libusb20_tr_get_actual_length(struct libusb20_transfer *xfer)
250 {
251 	uint32_t x;
252 	uint32_t actlen = 0;
253 
254 	for (x = 0; x != xfer->aFrames; x++) {
255 		actlen += xfer->pLength[x];
256 	}
257 	return (actlen);
258 }
259 
260 uint32_t
261 libusb20_tr_get_max_frames(struct libusb20_transfer *xfer)
262 {
263 	return (xfer->maxFrames);
264 }
265 
266 uint32_t
267 libusb20_tr_get_max_packet_length(struct libusb20_transfer *xfer)
268 {
269 	/*
270 	 * Special Case NOTE: If the packet multiplier is non-zero for
271 	 * High Speed USB, the value returned is equal to
272 	 * "wMaxPacketSize * multiplier" !
273 	 */
274 	return (xfer->maxPacketLen);
275 }
276 
277 uint32_t
278 libusb20_tr_get_max_total_length(struct libusb20_transfer *xfer)
279 {
280 	return (xfer->maxTotalLength);
281 }
282 
283 uint8_t
284 libusb20_tr_get_status(struct libusb20_transfer *xfer)
285 {
286 	return (xfer->status);
287 }
288 
289 uint8_t
290 libusb20_tr_pending(struct libusb20_transfer *xfer)
291 {
292 	return (xfer->is_pending);
293 }
294 
295 void   *
296 libusb20_tr_get_priv_sc0(struct libusb20_transfer *xfer)
297 {
298 	return (xfer->priv_sc0);
299 }
300 
301 void   *
302 libusb20_tr_get_priv_sc1(struct libusb20_transfer *xfer)
303 {
304 	return (xfer->priv_sc1);
305 }
306 
307 void
308 libusb20_tr_stop(struct libusb20_transfer *xfer)
309 {
310 	if (!xfer->is_opened) {
311 		/* transfer is not opened */
312 		return;
313 	}
314 	if (!xfer->is_pending) {
315 		/* transfer not pending */
316 		return;
317 	}
318 	if (xfer->is_cancel) {
319 		/* already cancelling */
320 		return;
321 	}
322 	xfer->is_cancel = 1;		/* we are cancelling */
323 
324 	xfer->pdev->methods->tr_cancel_async(xfer);
325 	return;
326 }
327 
328 void
329 libusb20_tr_drain(struct libusb20_transfer *xfer)
330 {
331 	if (!xfer->is_opened) {
332 		/* transfer is not opened */
333 		return;
334 	}
335 	/* make sure that we are cancelling */
336 	libusb20_tr_stop(xfer);
337 
338 	if (xfer->is_pending) {
339 		xfer->is_draining = 1;
340 	}
341 	return;
342 }
343 
344 void
345 libusb20_tr_clear_stall_sync(struct libusb20_transfer *xfer)
346 {
347 	xfer->pdev->methods->tr_clear_stall_sync(xfer);
348 	return;
349 }
350 
351 void
352 libusb20_tr_set_buffer(struct libusb20_transfer *xfer, void *buffer, uint16_t frIndex)
353 {
354 	xfer->ppBuffer[frIndex] = libusb20_pass_ptr(buffer);
355 	return;
356 }
357 
358 void
359 libusb20_tr_set_callback(struct libusb20_transfer *xfer, libusb20_tr_callback_t *cb)
360 {
361 	xfer->callback = cb;
362 	return;
363 }
364 
365 void
366 libusb20_tr_set_flags(struct libusb20_transfer *xfer, uint8_t flags)
367 {
368 	xfer->flags = flags;
369 	return;
370 }
371 
372 uint32_t
373 libusb20_tr_get_length(struct libusb20_transfer *xfer, uint16_t frIndex)
374 {
375 	return (xfer->pLength[frIndex]);
376 }
377 
378 void
379 libusb20_tr_set_length(struct libusb20_transfer *xfer, uint32_t length, uint16_t frIndex)
380 {
381 	xfer->pLength[frIndex] = length;
382 	return;
383 }
384 
385 void
386 libusb20_tr_set_priv_sc0(struct libusb20_transfer *xfer, void *sc0)
387 {
388 	xfer->priv_sc0 = sc0;
389 	return;
390 }
391 
392 void
393 libusb20_tr_set_priv_sc1(struct libusb20_transfer *xfer, void *sc1)
394 {
395 	xfer->priv_sc1 = sc1;
396 	return;
397 }
398 
399 void
400 libusb20_tr_set_timeout(struct libusb20_transfer *xfer, uint32_t timeout)
401 {
402 	xfer->timeout = timeout;
403 	return;
404 }
405 
406 void
407 libusb20_tr_set_total_frames(struct libusb20_transfer *xfer, uint32_t nFrames)
408 {
409 	if (nFrames > xfer->maxFrames) {
410 		/* should not happen */
411 		nFrames = xfer->maxFrames;
412 	}
413 	xfer->nFrames = nFrames;
414 	return;
415 }
416 
417 void
418 libusb20_tr_setup_bulk(struct libusb20_transfer *xfer, void *pBuf, uint32_t length, uint32_t timeout)
419 {
420 	xfer->ppBuffer[0] = libusb20_pass_ptr(pBuf);
421 	xfer->pLength[0] = length;
422 	xfer->timeout = timeout;
423 	xfer->nFrames = 1;
424 	return;
425 }
426 
427 void
428 libusb20_tr_setup_control(struct libusb20_transfer *xfer, void *psetup, void *pBuf, uint32_t timeout)
429 {
430 	uint16_t len;
431 
432 	xfer->ppBuffer[0] = libusb20_pass_ptr(psetup);
433 	xfer->pLength[0] = 8;		/* fixed */
434 	xfer->timeout = timeout;
435 
436 	len = ((uint8_t *)psetup)[6] | (((uint8_t *)psetup)[7] << 8);
437 
438 	if (len != 0) {
439 		xfer->nFrames = 2;
440 		xfer->ppBuffer[1] = libusb20_pass_ptr(pBuf);
441 		xfer->pLength[1] = len;
442 	} else {
443 		xfer->nFrames = 1;
444 	}
445 	return;
446 }
447 
448 void
449 libusb20_tr_setup_intr(struct libusb20_transfer *xfer, void *pBuf, uint32_t length, uint32_t timeout)
450 {
451 	xfer->ppBuffer[0] = libusb20_pass_ptr(pBuf);
452 	xfer->pLength[0] = length;
453 	xfer->timeout = timeout;
454 	xfer->nFrames = 1;
455 	return;
456 }
457 
458 void
459 libusb20_tr_setup_isoc(struct libusb20_transfer *xfer, void *pBuf, uint32_t length, uint16_t frIndex)
460 {
461 	if (frIndex >= xfer->maxFrames) {
462 		/* should not happen */
463 		return;
464 	}
465 	xfer->ppBuffer[frIndex] = libusb20_pass_ptr(pBuf);
466 	xfer->pLength[frIndex] = length;
467 	return;
468 }
469 
470 uint8_t
471 libusb20_tr_bulk_intr_sync(struct libusb20_transfer *xfer,
472     void *pbuf, uint32_t length, uint32_t *pactlen,
473     uint32_t timeout)
474 {
475 	struct libusb20_device *pdev = xfer->pdev;
476 	uint32_t transfer_max;
477 	uint32_t transfer_act;
478 	uint8_t retval;
479 
480 	/* set some sensible default value */
481 	if (pactlen != NULL)
482 		*pactlen = 0;
483 
484 	/* check for error condition */
485 	if (libusb20_tr_pending(xfer))
486 		return (LIBUSB20_ERROR_OTHER);
487 
488 	do {
489 		/* compute maximum transfer length */
490 		transfer_max =
491 		    libusb20_tr_get_max_total_length(xfer);
492 
493 		if (transfer_max > length)
494 			transfer_max = length;
495 
496 		/* setup bulk or interrupt transfer */
497 		libusb20_tr_setup_bulk(xfer, pbuf,
498 		    transfer_max, timeout);
499 
500 		/* start the transfer */
501 		libusb20_tr_start(xfer);
502 
503 		/* wait for transfer completion */
504 		while (libusb20_dev_process(pdev) == 0) {
505 
506 			if (libusb20_tr_pending(xfer) == 0)
507 				break;
508 
509 			libusb20_dev_wait_process(pdev, -1);
510 		}
511 
512 		transfer_act = libusb20_tr_get_actual_length(xfer);
513 
514 		/* update actual length, if any */
515 		if (pactlen != NULL)
516 			pactlen[0] += transfer_act;
517 
518 		/* check transfer status */
519 		retval = libusb20_tr_get_status(xfer);
520 		if (retval)
521 			break;
522 
523 		/* check for short transfer */
524 		if (transfer_act != transfer_max)
525 			break;
526 
527 		/* update buffer pointer and length */
528 		pbuf = ((uint8_t *)pbuf) + transfer_max;
529 		length = length - transfer_max;
530 
531 	} while (length != 0);
532 
533 	return (retval);
534 }
535 
536 void
537 libusb20_tr_submit(struct libusb20_transfer *xfer)
538 {
539 	if (!xfer->is_opened) {
540 		/* transfer is not opened */
541 		return;
542 	}
543 	if (xfer->is_pending) {
544 		/* should not happen */
545 		return;
546 	}
547 	xfer->is_pending = 1;		/* we are pending */
548 	xfer->is_cancel = 0;		/* not cancelling */
549 	xfer->is_restart = 0;		/* not restarting */
550 
551 	xfer->pdev->methods->tr_submit(xfer);
552 	return;
553 }
554 
555 void
556 libusb20_tr_start(struct libusb20_transfer *xfer)
557 {
558 	if (!xfer->is_opened) {
559 		/* transfer is not opened */
560 		return;
561 	}
562 	if (xfer->is_pending) {
563 		if (xfer->is_cancel) {
564 			/* cancelling - restart */
565 			xfer->is_restart = 1;
566 		}
567 		/* transfer not pending */
568 		return;
569 	}
570 	/* get into the callback */
571 	libusb20_tr_callback_wrapper(xfer);
572 	return;
573 }
574 
575 /* USB device operations */
576 
577 int
578 libusb20_dev_close(struct libusb20_device *pdev)
579 {
580 	struct libusb20_transfer *xfer;
581 	uint16_t x;
582 	int error = 0;
583 
584 	if (!pdev->is_opened) {
585 		return (LIBUSB20_ERROR_OTHER);
586 	}
587 	for (x = 0; x != pdev->nTransfer; x++) {
588 		xfer = pdev->pTransfer + x;
589 
590 		if (!xfer->is_opened) {
591 			/* transfer is not opened */
592 			continue;
593 		}
594 
595 		libusb20_tr_drain(xfer);
596 
597 		libusb20_tr_close(xfer);
598 	}
599 
600 	if (pdev->pTransfer != NULL) {
601 		free(pdev->pTransfer);
602 		pdev->pTransfer = NULL;
603 	}
604 	error = pdev->beMethods->close_device(pdev);
605 
606 	pdev->methods = &libusb20_dummy_methods;
607 
608 	pdev->is_opened = 0;
609 
610 	/*
611 	 * The following variable is only used by the libusb v0.1
612 	 * compat layer:
613 	 */
614 	pdev->claimed_interface = 0;
615 
616 	/*
617 	 * The following variable is only used by the libusb v1.0
618 	 * compat layer:
619 	 */
620 	pdev->auto_detach = 0;
621 
622 	return (error);
623 }
624 
625 int
626 libusb20_dev_detach_kernel_driver(struct libusb20_device *pdev, uint8_t ifaceIndex)
627 {
628 	int error;
629 
630 	error = pdev->methods->detach_kernel_driver(pdev, ifaceIndex);
631 	return (error);
632 }
633 
634 struct LIBUSB20_DEVICE_DESC_DECODED *
635 libusb20_dev_get_device_desc(struct libusb20_device *pdev)
636 {
637 	return (&(pdev->ddesc));
638 }
639 
640 int
641 libusb20_dev_get_fd(struct libusb20_device *pdev)
642 {
643 	return (pdev->file);
644 }
645 
646 int
647 libusb20_dev_kernel_driver_active(struct libusb20_device *pdev, uint8_t ifaceIndex)
648 {
649 	int error;
650 
651 	error = pdev->methods->kernel_driver_active(pdev, ifaceIndex);
652 	return (error);
653 }
654 
655 int
656 libusb20_dev_open(struct libusb20_device *pdev, uint16_t nTransferMax)
657 {
658 	struct libusb20_transfer *xfer;
659 	uint32_t size;
660 	uint16_t x;
661 	int error;
662 
663 	if (pdev->is_opened) {
664 		return (LIBUSB20_ERROR_BUSY);
665 	}
666 	if (nTransferMax >= 256) {
667 		return (LIBUSB20_ERROR_INVALID_PARAM);
668 	} else if (nTransferMax != 0) {
669 		size = sizeof(pdev->pTransfer[0]) * nTransferMax;
670 		pdev->pTransfer = malloc(size);
671 		if (pdev->pTransfer == NULL) {
672 			return (LIBUSB20_ERROR_NO_MEM);
673 		}
674 		memset(pdev->pTransfer, 0, size);
675 	}
676 	/* initialise all transfers */
677 	for (x = 0; x != nTransferMax; x++) {
678 
679 		xfer = pdev->pTransfer + x;
680 
681 		xfer->pdev = pdev;
682 		xfer->trIndex = x;
683 		xfer->callback = &dummy_callback;
684 	}
685 
686 	/* set "nTransfer" early */
687 	pdev->nTransfer = nTransferMax;
688 
689 	error = pdev->beMethods->open_device(pdev, nTransferMax);
690 
691 	if (error) {
692 		if (pdev->pTransfer != NULL) {
693 			free(pdev->pTransfer);
694 			pdev->pTransfer = NULL;
695 		}
696 		pdev->file = -1;
697 		pdev->file_ctrl = -1;
698 		pdev->nTransfer = 0;
699 	} else {
700 		pdev->is_opened = 1;
701 	}
702 	return (error);
703 }
704 
705 int
706 libusb20_dev_reset(struct libusb20_device *pdev)
707 {
708 	int error;
709 
710 	error = pdev->methods->reset_device(pdev);
711 	return (error);
712 }
713 
714 int
715 libusb20_dev_check_connected(struct libusb20_device *pdev)
716 {
717 	int error;
718 
719 	error = pdev->methods->check_connected(pdev);
720 	return (error);
721 }
722 
723 int
724 libusb20_dev_set_power_mode(struct libusb20_device *pdev, uint8_t power_mode)
725 {
726 	int error;
727 
728 	error = pdev->methods->set_power_mode(pdev, power_mode);
729 	return (error);
730 }
731 
732 uint8_t
733 libusb20_dev_get_power_mode(struct libusb20_device *pdev)
734 {
735 	int error;
736 	uint8_t power_mode;
737 
738 	error = pdev->methods->get_power_mode(pdev, &power_mode);
739 	if (error)
740 		power_mode = LIBUSB20_POWER_ON;	/* fake power mode */
741 	return (power_mode);
742 }
743 
744 int
745 libusb20_dev_get_port_path(struct libusb20_device *pdev, uint8_t *buf, uint8_t bufsize)
746 {
747 
748 	if (pdev->port_level == 0) {
749 		/*
750 		 * Fallback for backends without port path:
751 		 */
752 		if (bufsize < 2)
753 			return (LIBUSB20_ERROR_OVERFLOW);
754 		buf[0] = pdev->parent_address;
755 		buf[1] = pdev->parent_port;
756 		return (2);
757 	}
758 
759 	/* check if client buffer is too small */
760 	if (pdev->port_level > bufsize)
761 		return (LIBUSB20_ERROR_OVERFLOW);
762 
763 	/* copy port number information */
764 	memcpy(buf, pdev->port_path, pdev->port_level);
765 
766 	return (pdev->port_level);	/* success */
767 }
768 
769 uint16_t
770 libusb20_dev_get_power_usage(struct libusb20_device *pdev)
771 {
772 	int error;
773 	uint16_t power_usage;
774 
775 	error = pdev->methods->get_power_usage(pdev, &power_usage);
776 	if (error)
777 		power_usage = 0;
778 	return (power_usage);
779 }
780 
781 int
782 libusb20_dev_set_alt_index(struct libusb20_device *pdev, uint8_t ifaceIndex, uint8_t altIndex)
783 {
784 	int error;
785 
786 	error = pdev->methods->set_alt_index(pdev, ifaceIndex, altIndex);
787 	return (error);
788 }
789 
790 int
791 libusb20_dev_set_config_index(struct libusb20_device *pdev, uint8_t configIndex)
792 {
793 	int error;
794 
795 	error = pdev->methods->set_config_index(pdev, configIndex);
796 	return (error);
797 }
798 
799 int
800 libusb20_dev_request_sync(struct libusb20_device *pdev,
801     struct LIBUSB20_CONTROL_SETUP_DECODED *setup, void *data,
802     uint16_t *pactlen, uint32_t timeout, uint8_t flags)
803 {
804 	int error;
805 
806 	error = pdev->methods->do_request_sync(pdev,
807 	    setup, data, pactlen, timeout, flags);
808 	return (error);
809 }
810 
811 int
812 libusb20_dev_req_string_sync(struct libusb20_device *pdev,
813     uint8_t str_index, uint16_t langid, void *ptr, uint16_t len)
814 {
815 	struct LIBUSB20_CONTROL_SETUP_DECODED req;
816 	int error;
817 
818 	/* make sure memory is initialised */
819 	memset(ptr, 0, len);
820 
821 	if (len < 4) {
822 		/* invalid length */
823 		return (LIBUSB20_ERROR_INVALID_PARAM);
824 	}
825 	LIBUSB20_INIT(LIBUSB20_CONTROL_SETUP, &req);
826 
827 	/*
828 	 * We need to read the USB string in two steps else some USB
829 	 * devices will complain.
830 	 */
831 	req.bmRequestType =
832 	    LIBUSB20_REQUEST_TYPE_STANDARD |
833 	    LIBUSB20_RECIPIENT_DEVICE |
834 	    LIBUSB20_ENDPOINT_IN;
835 	req.bRequest = LIBUSB20_REQUEST_GET_DESCRIPTOR;
836 	req.wValue = (LIBUSB20_DT_STRING << 8) | str_index;
837 	req.wIndex = langid;
838 	req.wLength = 4;		/* bytes */
839 
840 	error = libusb20_dev_request_sync(pdev, &req,
841 	    ptr, NULL, 1000, LIBUSB20_TRANSFER_SINGLE_SHORT_NOT_OK);
842 	if (error) {
843 		return (error);
844 	}
845 	req.wLength = *(uint8_t *)ptr;	/* bytes */
846 	if (req.wLength > len) {
847 		/* partial string read */
848 		req.wLength = len;
849 	}
850 	error = libusb20_dev_request_sync(pdev, &req,
851 	    ptr, NULL, 1000, LIBUSB20_TRANSFER_SINGLE_SHORT_NOT_OK);
852 
853 	if (error) {
854 		return (error);
855 	}
856 	if (((uint8_t *)ptr)[1] != LIBUSB20_DT_STRING) {
857 		return (LIBUSB20_ERROR_OTHER);
858 	}
859 	return (0);			/* success */
860 }
861 
862 int
863 libusb20_dev_req_string_simple_sync(struct libusb20_device *pdev,
864     uint8_t str_index, void *ptr, uint16_t len)
865 {
866 	char *buf;
867 	int error;
868 	uint16_t langid;
869 	uint16_t n;
870 	uint16_t i;
871 	uint16_t c;
872 	uint8_t temp[255];
873 	uint8_t swap;
874 
875 	/* the following code derives from the FreeBSD USB kernel */
876 
877 	if ((len < 1) || (ptr == NULL)) {
878 		/* too short buffer */
879 		return (LIBUSB20_ERROR_INVALID_PARAM);
880 	}
881 	error = libusb20_dev_req_string_sync(pdev,
882 	    0, 0, temp, sizeof(temp));
883 	if (error < 0) {
884 		*(uint8_t *)ptr = 0;	/* zero terminate */
885 		return (error);
886 	}
887 	langid = temp[2] | (temp[3] << 8);
888 
889 	error = libusb20_dev_req_string_sync(pdev, str_index,
890 	    langid, temp, sizeof(temp));
891 	if (error < 0) {
892 		*(uint8_t *)ptr = 0;	/* zero terminate */
893 		return (error);
894 	}
895 	if (temp[0] < 2) {
896 		/* string length is too short */
897 		*(uint8_t *)ptr = 0;	/* zero terminate */
898 		return (LIBUSB20_ERROR_OTHER);
899 	}
900 	/* reserve one byte for terminating zero */
901 	len--;
902 
903 	/* find maximum length */
904 	n = (temp[0] / 2) - 1;
905 	if (n > len) {
906 		n = len;
907 	}
908 	/* reset swap state */
909 	swap = 3;
910 
911 	/* setup output buffer pointer */
912 	buf = ptr;
913 
914 	/* convert and filter */
915 	for (i = 0; (i != n); i++) {
916 		c = temp[(2 * i) + 2] | (temp[(2 * i) + 3] << 8);
917 
918 		/* convert from Unicode, handle buggy strings */
919 		if (((c & 0xff00) == 0) && (swap & 1)) {
920 			/* Little Endian, default */
921 			*buf = c;
922 			swap = 1;
923 		} else if (((c & 0x00ff) == 0) && (swap & 2)) {
924 			/* Big Endian */
925 			*buf = c >> 8;
926 			swap = 2;
927 		} else {
928 			/* skip invalid character */
929 			continue;
930 		}
931 		/*
932 		 * Filter by default - we don't allow greater and less than
933 		 * signs because they might confuse the dmesg printouts!
934 		 */
935 		if ((*buf == '<') || (*buf == '>') || (!isprint(*buf))) {
936 			/* skip invalid character */
937 			continue;
938 		}
939 		buf++;
940 	}
941 	*buf = 0;			/* zero terminate string */
942 
943 	return (0);
944 }
945 
946 struct libusb20_config *
947 libusb20_dev_alloc_config(struct libusb20_device *pdev, uint8_t configIndex)
948 {
949 	struct libusb20_config *retval = NULL;
950 	uint8_t *ptr;
951 	uint16_t len;
952 	uint8_t do_close;
953 	int error;
954 
955 	if (!pdev->is_opened) {
956 		error = libusb20_dev_open(pdev, 0);
957 		if (error) {
958 			return (NULL);
959 		}
960 		do_close = 1;
961 	} else {
962 		do_close = 0;
963 	}
964 	error = pdev->methods->get_config_desc_full(pdev,
965 	    &ptr, &len, configIndex);
966 
967 	if (error) {
968 		goto done;
969 	}
970 	/* parse new config descriptor */
971 	retval = libusb20_parse_config_desc(ptr);
972 
973 	/* free config descriptor */
974 	free(ptr);
975 
976 done:
977 	if (do_close) {
978 		error = libusb20_dev_close(pdev);
979 	}
980 	return (retval);
981 }
982 
983 struct libusb20_device *
984 libusb20_dev_alloc(void)
985 {
986 	struct libusb20_device *pdev;
987 
988 	pdev = malloc(sizeof(*pdev));
989 	if (pdev == NULL) {
990 		return (NULL);
991 	}
992 	memset(pdev, 0, sizeof(*pdev));
993 
994 	pdev->file = -1;
995 	pdev->file_ctrl = -1;
996 	pdev->methods = &libusb20_dummy_methods;
997 	return (pdev);
998 }
999 
1000 uint8_t
1001 libusb20_dev_get_config_index(struct libusb20_device *pdev)
1002 {
1003 	int error;
1004 	uint8_t cfg_index;
1005 	uint8_t do_close;
1006 
1007 	if (!pdev->is_opened) {
1008 		error = libusb20_dev_open(pdev, 0);
1009 		if (error == 0) {
1010 			do_close = 1;
1011 		} else {
1012 			do_close = 0;
1013 		}
1014 	} else {
1015 		do_close = 0;
1016 	}
1017 
1018 	error = pdev->methods->get_config_index(pdev, &cfg_index);
1019 	if (error)
1020 		cfg_index = 0xFF;	/* current config index */
1021 	if (do_close) {
1022 		if (libusb20_dev_close(pdev)) {
1023 			/* ignore */
1024 		}
1025 	}
1026 	return (cfg_index);
1027 }
1028 
1029 uint8_t
1030 libusb20_dev_get_mode(struct libusb20_device *pdev)
1031 {
1032 	return (pdev->usb_mode);
1033 }
1034 
1035 uint8_t
1036 libusb20_dev_get_speed(struct libusb20_device *pdev)
1037 {
1038 	return (pdev->usb_speed);
1039 }
1040 
1041 /* if this function returns an error, the device is gone */
1042 int
1043 libusb20_dev_process(struct libusb20_device *pdev)
1044 {
1045 	int error;
1046 
1047 	error = pdev->methods->process(pdev);
1048 	return (error);
1049 }
1050 
1051 void
1052 libusb20_dev_wait_process(struct libusb20_device *pdev, int timeout)
1053 {
1054 	struct pollfd pfd[1];
1055 
1056 	if (!pdev->is_opened) {
1057 		return;
1058 	}
1059 	pfd[0].fd = pdev->file;
1060 	pfd[0].events = (POLLIN | POLLOUT | POLLRDNORM | POLLWRNORM);
1061 	pfd[0].revents = 0;
1062 
1063 	if (poll(pfd, 1, timeout)) {
1064 		/* ignore any error */
1065 	}
1066 	return;
1067 }
1068 
1069 void
1070 libusb20_dev_free(struct libusb20_device *pdev)
1071 {
1072 	if (pdev == NULL) {
1073 		/* be NULL safe */
1074 		return;
1075 	}
1076 	if (pdev->is_opened) {
1077 		if (libusb20_dev_close(pdev)) {
1078 			/* ignore any errors */
1079 		}
1080 	}
1081 	free(pdev);
1082 	return;
1083 }
1084 
1085 int
1086 libusb20_dev_get_info(struct libusb20_device *pdev,
1087     struct usb_device_info *pinfo)
1088 {
1089 	if (pinfo == NULL)
1090 		return (LIBUSB20_ERROR_INVALID_PARAM);
1091 
1092 	return (pdev->beMethods->dev_get_info(pdev, pinfo));
1093 }
1094 
1095 const char *
1096 libusb20_dev_get_backend_name(struct libusb20_device *pdev)
1097 {
1098 	return (pdev->beMethods->get_backend_name());
1099 }
1100 
1101 const char *
1102 libusb20_dev_get_desc(struct libusb20_device *pdev)
1103 {
1104 	return (pdev->usb_desc);
1105 }
1106 
1107 void
1108 libusb20_dev_set_debug(struct libusb20_device *pdev, int debug)
1109 {
1110 	pdev->debug = debug;
1111 	return;
1112 }
1113 
1114 int
1115 libusb20_dev_get_debug(struct libusb20_device *pdev)
1116 {
1117 	return (pdev->debug);
1118 }
1119 
1120 uint8_t
1121 libusb20_dev_get_address(struct libusb20_device *pdev)
1122 {
1123 	return (pdev->device_address);
1124 }
1125 
1126 uint8_t
1127 libusb20_dev_get_parent_address(struct libusb20_device *pdev)
1128 {
1129 	return (pdev->parent_address);
1130 }
1131 
1132 uint8_t
1133 libusb20_dev_get_parent_port(struct libusb20_device *pdev)
1134 {
1135 	return (pdev->parent_port);
1136 }
1137 
1138 uint8_t
1139 libusb20_dev_get_bus_number(struct libusb20_device *pdev)
1140 {
1141 	return (pdev->bus_number);
1142 }
1143 
1144 int
1145 libusb20_dev_get_iface_desc(struct libusb20_device *pdev,
1146     uint8_t iface_index, char *buf, uint8_t len)
1147 {
1148 	if ((buf == NULL) || (len == 0))
1149 		return (LIBUSB20_ERROR_INVALID_PARAM);
1150 
1151 	buf[0] = 0;		/* set default string value */
1152 
1153 	return (pdev->beMethods->dev_get_iface_desc(
1154 	    pdev, iface_index, buf, len));
1155 }
1156 
1157 /* USB backend operations */
1158 
1159 int
1160 libusb20_be_get_dev_quirk(struct libusb20_backend *pbe,
1161     uint16_t quirk_index, struct libusb20_quirk *pq)
1162 {
1163 	return (pbe->methods->root_get_dev_quirk(pbe, quirk_index, pq));
1164 }
1165 
1166 int
1167 libusb20_be_get_quirk_name(struct libusb20_backend *pbe,
1168     uint16_t quirk_index, struct libusb20_quirk *pq)
1169 {
1170 	return (pbe->methods->root_get_quirk_name(pbe, quirk_index, pq));
1171 }
1172 
1173 int
1174 libusb20_be_add_dev_quirk(struct libusb20_backend *pbe,
1175     struct libusb20_quirk *pq)
1176 {
1177 	return (pbe->methods->root_add_dev_quirk(pbe, pq));
1178 }
1179 
1180 int
1181 libusb20_be_remove_dev_quirk(struct libusb20_backend *pbe,
1182     struct libusb20_quirk *pq)
1183 {
1184 	return (pbe->methods->root_remove_dev_quirk(pbe, pq));
1185 }
1186 
1187 int
1188 libusb20_be_set_template(struct libusb20_backend *pbe, int temp)
1189 {
1190 	return (pbe->methods->root_set_template(pbe, temp));
1191 }
1192 
1193 int
1194 libusb20_be_get_template(struct libusb20_backend *pbe, int *ptemp)
1195 {
1196 	int temp;
1197 
1198 	if (ptemp == NULL)
1199 		ptemp = &temp;
1200 
1201 	return (pbe->methods->root_get_template(pbe, ptemp));
1202 }
1203 
1204 struct libusb20_device *
1205 libusb20_be_device_foreach(struct libusb20_backend *pbe, struct libusb20_device *pdev)
1206 {
1207 	if (pbe == NULL) {
1208 		pdev = NULL;
1209 	} else if (pdev == NULL) {
1210 		pdev = TAILQ_FIRST(&(pbe->usb_devs));
1211 	} else {
1212 		pdev = TAILQ_NEXT(pdev, dev_entry);
1213 	}
1214 	return (pdev);
1215 }
1216 
1217 struct libusb20_backend *
1218 libusb20_be_alloc(const struct libusb20_backend_methods *methods)
1219 {
1220 	struct libusb20_backend *pbe;
1221 
1222 	pbe = malloc(sizeof(*pbe));
1223 	if (pbe == NULL) {
1224 		return (NULL);
1225 	}
1226 	memset(pbe, 0, sizeof(*pbe));
1227 
1228 	TAILQ_INIT(&(pbe->usb_devs));
1229 
1230 	pbe->methods = methods;		/* set backend methods */
1231 
1232 	/* do the initial device scan */
1233 	if (pbe->methods->init_backend) {
1234 		pbe->methods->init_backend(pbe);
1235 	}
1236 	return (pbe);
1237 }
1238 
1239 struct libusb20_backend *
1240 libusb20_be_alloc_linux(void)
1241 {
1242 	return (NULL);
1243 }
1244 
1245 struct libusb20_backend *
1246 libusb20_be_alloc_ugen20(void)
1247 {
1248 	return (libusb20_be_alloc(&libusb20_ugen20_backend));
1249 }
1250 
1251 struct libusb20_backend *
1252 libusb20_be_alloc_default(void)
1253 {
1254 	struct libusb20_backend *pbe;
1255 
1256 #ifdef __linux__
1257 	pbe = libusb20_be_alloc_linux();
1258 	if (pbe) {
1259 		return (pbe);
1260 	}
1261 #endif
1262 	pbe = libusb20_be_alloc_ugen20();
1263 	if (pbe) {
1264 		return (pbe);
1265 	}
1266 	return (NULL);			/* no backend found */
1267 }
1268 
1269 void
1270 libusb20_be_free(struct libusb20_backend *pbe)
1271 {
1272 	struct libusb20_device *pdev;
1273 
1274 	if (pbe == NULL) {
1275 		/* be NULL safe */
1276 		return;
1277 	}
1278 	while ((pdev = libusb20_be_device_foreach(pbe, NULL))) {
1279 		libusb20_be_dequeue_device(pbe, pdev);
1280 		libusb20_dev_free(pdev);
1281 	}
1282 	if (pbe->methods->exit_backend) {
1283 		pbe->methods->exit_backend(pbe);
1284 	}
1285 	/* free backend */
1286 	free(pbe);
1287 }
1288 
1289 void
1290 libusb20_be_enqueue_device(struct libusb20_backend *pbe, struct libusb20_device *pdev)
1291 {
1292 	pdev->beMethods = pbe->methods;	/* copy backend methods */
1293 	TAILQ_INSERT_TAIL(&(pbe->usb_devs), pdev, dev_entry);
1294 }
1295 
1296 void
1297 libusb20_be_dequeue_device(struct libusb20_backend *pbe,
1298     struct libusb20_device *pdev)
1299 {
1300 	TAILQ_REMOVE(&(pbe->usb_devs), pdev, dev_entry);
1301 }
1302 
1303 const char *
1304 libusb20_strerror(int code)
1305 {
1306 	switch (code) {
1307 	case LIBUSB20_SUCCESS:
1308 		return ("Success");
1309 	case LIBUSB20_ERROR_IO:
1310 		return ("I/O error");
1311 	case LIBUSB20_ERROR_INVALID_PARAM:
1312 		return ("Invalid parameter");
1313 	case LIBUSB20_ERROR_ACCESS:
1314 		return ("Permissions error");
1315 	case LIBUSB20_ERROR_NO_DEVICE:
1316 		return ("No device");
1317 	case LIBUSB20_ERROR_NOT_FOUND:
1318 		return ("Not found");
1319 	case LIBUSB20_ERROR_BUSY:
1320 		return ("Device busy");
1321 	case LIBUSB20_ERROR_TIMEOUT:
1322 		return ("Timeout");
1323 	case LIBUSB20_ERROR_OVERFLOW:
1324 		return ("Overflow");
1325 	case LIBUSB20_ERROR_PIPE:
1326 		return ("Pipe error");
1327 	case LIBUSB20_ERROR_INTERRUPTED:
1328 		return ("Interrupted");
1329 	case LIBUSB20_ERROR_NO_MEM:
1330 		return ("Out of memory");
1331 	case LIBUSB20_ERROR_NOT_SUPPORTED:
1332 		return ("Not supported");
1333 	case LIBUSB20_ERROR_OTHER:
1334 		return ("Other error");
1335 	default:
1336 		return ("Unknown error");
1337 	}
1338 }
1339 
1340 const char *
1341 libusb20_error_name(int code)
1342 {
1343 	switch (code) {
1344 	case LIBUSB20_SUCCESS:
1345 		return ("LIBUSB20_SUCCESS");
1346 	case LIBUSB20_ERROR_IO:
1347 		return ("LIBUSB20_ERROR_IO");
1348 	case LIBUSB20_ERROR_INVALID_PARAM:
1349 		return ("LIBUSB20_ERROR_INVALID_PARAM");
1350 	case LIBUSB20_ERROR_ACCESS:
1351 		return ("LIBUSB20_ERROR_ACCESS");
1352 	case LIBUSB20_ERROR_NO_DEVICE:
1353 		return ("LIBUSB20_ERROR_NO_DEVICE");
1354 	case LIBUSB20_ERROR_NOT_FOUND:
1355 		return ("LIBUSB20_ERROR_NOT_FOUND");
1356 	case LIBUSB20_ERROR_BUSY:
1357 		return ("LIBUSB20_ERROR_BUSY");
1358 	case LIBUSB20_ERROR_TIMEOUT:
1359 		return ("LIBUSB20_ERROR_TIMEOUT");
1360 	case LIBUSB20_ERROR_OVERFLOW:
1361 		return ("LIBUSB20_ERROR_OVERFLOW");
1362 	case LIBUSB20_ERROR_PIPE:
1363 		return ("LIBUSB20_ERROR_PIPE");
1364 	case LIBUSB20_ERROR_INTERRUPTED:
1365 		return ("LIBUSB20_ERROR_INTERRUPTED");
1366 	case LIBUSB20_ERROR_NO_MEM:
1367 		return ("LIBUSB20_ERROR_NO_MEM");
1368 	case LIBUSB20_ERROR_NOT_SUPPORTED:
1369 		return ("LIBUSB20_ERROR_NOT_SUPPORTED");
1370 	case LIBUSB20_ERROR_OTHER:
1371 		return ("LIBUSB20_ERROR_OTHER");
1372 	default:
1373 		return ("LIBUSB20_ERROR_UNKNOWN");
1374 	}
1375 }
1376