blob: a609f65f44f41d4b289bf8adcaa3271fae801fae [file] [log] [blame]
Daniel Drake1ac0a7d2008-03-09 01:01:57 +00001/*
hjelmn@cs.unm.edu1eff2202014-01-08 23:50:34 +00002 * Synchronous I/O functions for libusb
Pete Batarda544e592012-05-23 18:25:01 +01003 * Copyright © 2007-2008 Daniel Drake <dsd@gentoo.org>
Daniel Drake1ac0a7d2008-03-09 01:01:57 +00004 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
Chris Dickensd8a29502014-09-03 11:50:47 -070020#include <config.h>
21
Daniel Drake1ac0a7d2008-03-09 01:01:57 +000022#include <errno.h>
23#include <stdint.h>
24#include <stdlib.h>
25#include <string.h>
26
27#include "libusbi.h"
28
Daniel Drakeead09cd2008-03-15 16:35:12 +000029/**
Chris Dickens7ee92df2016-02-24 01:07:20 -080030 * @defgroup libusb_syncio Synchronous device I/O
Daniel Drakeead09cd2008-03-15 16:35:12 +000031 *
hjelmn@cs.unm.edu1eff2202014-01-08 23:50:34 +000032 * This page documents libusb's synchronous (blocking) API for USB device I/O.
Daniel Drakeead09cd2008-03-15 16:35:12 +000033 * This interface is easy to use but has some limitations. More advanced users
Chris Dickens7ee92df2016-02-24 01:07:20 -080034 * may wish to consider using the \ref libusb_asyncio "asynchronous I/O API" instead.
Daniel Drakeead09cd2008-03-15 16:35:12 +000035 */
36
Hans de Goede5b48dd22013-06-20 13:08:58 +020037static void LIBUSB_CALL sync_transfer_cb(struct libusb_transfer *transfer)
Daniel Drake1ac0a7d2008-03-09 01:01:57 +000038{
39 int *completed = transfer->user_data;
40 *completed = 1;
41 usbi_dbg("actual_length=%d", transfer->actual_length);
42 /* caller interprets result and frees transfer */
43}
44
Hans de Goede5b48dd22013-06-20 13:08:58 +020045static void sync_transfer_wait_for_completion(struct libusb_transfer *transfer)
46{
47 int r, *completed = transfer->user_data;
48 struct libusb_context *ctx = HANDLE_CTX(transfer->dev_handle);
49
50 while (!*completed) {
51 r = libusb_handle_events_completed(ctx, completed);
52 if (r < 0) {
53 if (r == LIBUSB_ERROR_INTERRUPTED)
54 continue;
55 usbi_err(ctx, "libusb_handle_events failed: %s, cancelling transfer and retrying",
56 libusb_error_name(r));
57 libusb_cancel_transfer(transfer);
58 continue;
59 }
60 }
61}
62
Chris Dickens7ee92df2016-02-24 01:07:20 -080063/** \ingroup libusb_syncio
Daniel Drakeba5d9a42008-05-11 15:36:24 +010064 * Perform a USB control transfer.
65 *
66 * The direction of the transfer is inferred from the bmRequestType field of
67 * the setup packet.
68 *
69 * The wValue, wIndex and wLength fields values should be given in host-endian
70 * byte order.
Daniel Drakeead09cd2008-03-15 16:35:12 +000071 *
72 * \param dev_handle a handle for the device to communicate with
Daniel Drake0499e9f2008-03-20 21:10:01 +000073 * \param bmRequestType the request type field for the setup packet
Daniel Drakeead09cd2008-03-15 16:35:12 +000074 * \param bRequest the request field for the setup packet
75 * \param wValue the value field for the setup packet
76 * \param wIndex the index field for the setup packet
77 * \param data a suitably-sized data buffer for either input or output
Daniel Drake0499e9f2008-03-20 21:10:01 +000078 * (depending on direction bits within bmRequestType)
Daniel Drakeead09cd2008-03-15 16:35:12 +000079 * \param wLength the length field for the setup packet. The data buffer should
80 * be at least this size.
81 * \param timeout timeout (in millseconds) that this function should wait
Daniel Drake98f1b302009-09-14 08:01:24 +010082 * before giving up due to no response being received. For an unlimited
83 * timeout, use value 0.
Daniel Drake885c2a52008-05-05 21:34:31 +010084 * \returns on success, the number of bytes actually transferred
Daniel Drakebdce3672008-05-04 14:22:16 +010085 * \returns LIBUSB_ERROR_TIMEOUT if the transfer timed out
Daniel Drakea304eca2008-05-05 16:22:33 +010086 * \returns LIBUSB_ERROR_PIPE if the control request was not supported by the
87 * device
Daniel Drakefec7c842008-05-11 20:31:58 +010088 * \returns LIBUSB_ERROR_NO_DEVICE if the device has been disconnected
Chris Dickens960a6e72015-09-10 02:39:20 -070089 * \returns LIBUSB_ERROR_BUSY if called from event handling context
Chris Dickensb99391d2016-02-24 01:50:40 -080090 * \returns LIBUSB_ERROR_INVALID_PARAM if the transfer size is larger than
91 * the operating system and/or hardware can support
Daniel Drakebdce3672008-05-04 14:22:16 +010092 * \returns another LIBUSB_ERROR code on other failures
Daniel Drakeead09cd2008-03-15 16:35:12 +000093 */
Pete Batard29f9f9e2010-08-13 11:59:49 +010094int API_EXPORTED libusb_control_transfer(libusb_device_handle *dev_handle,
Daniel Drake0499e9f2008-03-20 21:10:01 +000095 uint8_t bmRequestType, uint8_t bRequest, uint16_t wValue, uint16_t wIndex,
Daniel Drake1ac0a7d2008-03-09 01:01:57 +000096 unsigned char *data, uint16_t wLength, unsigned int timeout)
97{
Chris Dickens960a6e72015-09-10 02:39:20 -070098 struct libusb_transfer *transfer;
Daniel Drake1ac0a7d2008-03-09 01:01:57 +000099 unsigned char *buffer;
Daniel Drake1ac0a7d2008-03-09 01:01:57 +0000100 int completed = 0;
101 int r;
102
Chris Dickens960a6e72015-09-10 02:39:20 -0700103 if (usbi_handling_events(HANDLE_CTX(dev_handle)))
104 return LIBUSB_ERROR_BUSY;
105
106 transfer = libusb_alloc_transfer(0);
Daniel Drake1ac0a7d2008-03-09 01:01:57 +0000107 if (!transfer)
Daniel Drakebdce3672008-05-04 14:22:16 +0100108 return LIBUSB_ERROR_NO_MEM;
Pete Batarda636df42010-05-12 21:46:31 -0300109
Pete Batard63f569b2012-06-28 22:49:47 +0100110 buffer = (unsigned char*) malloc(LIBUSB_CONTROL_SETUP_SIZE + wLength);
Daniel Drake1ac0a7d2008-03-09 01:01:57 +0000111 if (!buffer) {
112 libusb_free_transfer(transfer);
Daniel Drakebdce3672008-05-04 14:22:16 +0100113 return LIBUSB_ERROR_NO_MEM;
Daniel Drake1ac0a7d2008-03-09 01:01:57 +0000114 }
115
Daniel Drake0499e9f2008-03-20 21:10:01 +0000116 libusb_fill_control_setup(buffer, bmRequestType, bRequest, wValue, wIndex,
Daniel Drake1ac0a7d2008-03-09 01:01:57 +0000117 wLength);
Daniel Drake0499e9f2008-03-20 21:10:01 +0000118 if ((bmRequestType & LIBUSB_ENDPOINT_DIR_MASK) == LIBUSB_ENDPOINT_OUT)
Daniel Drake1ac0a7d2008-03-09 01:01:57 +0000119 memcpy(buffer + LIBUSB_CONTROL_SETUP_SIZE, data, wLength);
120
Daniel Drakeaae05f62008-03-10 11:32:15 +0000121 libusb_fill_control_transfer(transfer, dev_handle, buffer,
Hans de Goede5b48dd22013-06-20 13:08:58 +0200122 sync_transfer_cb, &completed, timeout);
Daniel Drakebef33bb2008-05-19 15:43:27 +0100123 transfer->flags = LIBUSB_TRANSFER_FREE_BUFFER;
Daniel Drake1ac0a7d2008-03-09 01:01:57 +0000124 r = libusb_submit_transfer(transfer);
125 if (r < 0) {
126 libusb_free_transfer(transfer);
127 return r;
128 }
129
Hans de Goede5b48dd22013-06-20 13:08:58 +0200130 sync_transfer_wait_for_completion(transfer);
Daniel Drake1ac0a7d2008-03-09 01:01:57 +0000131
Daniel Drake0499e9f2008-03-20 21:10:01 +0000132 if ((bmRequestType & LIBUSB_ENDPOINT_DIR_MASK) == LIBUSB_ENDPOINT_IN)
Daniel Drake1ac0a7d2008-03-09 01:01:57 +0000133 memcpy(data, libusb_control_transfer_get_data(transfer),
134 transfer->actual_length);
135
136 switch (transfer->status) {
137 case LIBUSB_TRANSFER_COMPLETED:
138 r = transfer->actual_length;
139 break;
140 case LIBUSB_TRANSFER_TIMED_OUT:
Daniel Drakebdce3672008-05-04 14:22:16 +0100141 r = LIBUSB_ERROR_TIMEOUT;
Daniel Drake1ac0a7d2008-03-09 01:01:57 +0000142 break;
Daniel Drakea304eca2008-05-05 16:22:33 +0100143 case LIBUSB_TRANSFER_STALL:
144 r = LIBUSB_ERROR_PIPE;
145 break;
Daniel Drakefec7c842008-05-11 20:31:58 +0100146 case LIBUSB_TRANSFER_NO_DEVICE:
147 r = LIBUSB_ERROR_NO_DEVICE;
148 break;
Ludovic Rousseau1cc5b4a2011-09-16 18:07:56 +0200149 case LIBUSB_TRANSFER_OVERFLOW:
150 r = LIBUSB_ERROR_OVERFLOW;
151 break;
Ludovic Rousseau30ccbd72012-05-08 15:53:56 +0200152 case LIBUSB_TRANSFER_ERROR:
153 case LIBUSB_TRANSFER_CANCELLED:
154 r = LIBUSB_ERROR_IO;
155 break;
Daniel Drake1ac0a7d2008-03-09 01:01:57 +0000156 default:
Daniel Drake1df713d2008-06-24 23:01:51 -0500157 usbi_warn(HANDLE_CTX(dev_handle),
158 "unrecognised status code %d", transfer->status);
Daniel Drakebdce3672008-05-04 14:22:16 +0100159 r = LIBUSB_ERROR_OTHER;
Daniel Drake1ac0a7d2008-03-09 01:01:57 +0000160 }
161
162 libusb_free_transfer(transfer);
163 return r;
164}
165
Daniel Drakeebad1c72008-03-09 16:12:08 +0000166static int do_sync_bulk_transfer(struct libusb_device_handle *dev_handle,
Daniel Drake1ac0a7d2008-03-09 01:01:57 +0000167 unsigned char endpoint, unsigned char *buffer, int length,
Daniel Draked3ab4e32008-04-27 23:50:01 +0100168 int *transferred, unsigned int timeout, unsigned char type)
Daniel Drake1ac0a7d2008-03-09 01:01:57 +0000169{
Chris Dickens960a6e72015-09-10 02:39:20 -0700170 struct libusb_transfer *transfer;
Daniel Drake1ac0a7d2008-03-09 01:01:57 +0000171 int completed = 0;
172 int r;
173
Chris Dickens960a6e72015-09-10 02:39:20 -0700174 if (usbi_handling_events(HANDLE_CTX(dev_handle)))
175 return LIBUSB_ERROR_BUSY;
176
177 transfer = libusb_alloc_transfer(0);
Daniel Drake1ac0a7d2008-03-09 01:01:57 +0000178 if (!transfer)
Daniel Drakebdce3672008-05-04 14:22:16 +0100179 return LIBUSB_ERROR_NO_MEM;
Daniel Drake1ac0a7d2008-03-09 01:01:57 +0000180
181 libusb_fill_bulk_transfer(transfer, dev_handle, endpoint, buffer, length,
Hans de Goede5b48dd22013-06-20 13:08:58 +0200182 sync_transfer_cb, &completed, timeout);
Daniel Draked3ab4e32008-04-27 23:50:01 +0100183 transfer->type = type;
Daniel Drake1ac0a7d2008-03-09 01:01:57 +0000184
185 r = libusb_submit_transfer(transfer);
186 if (r < 0) {
187 libusb_free_transfer(transfer);
188 return r;
189 }
190
Hans de Goede5b48dd22013-06-20 13:08:58 +0200191 sync_transfer_wait_for_completion(transfer);
Daniel Drake1ac0a7d2008-03-09 01:01:57 +0000192
Chris Dickens60e875d2016-02-23 23:45:51 -0800193 if (transferred)
194 *transferred = transfer->actual_length;
195
Daniel Drake1ac0a7d2008-03-09 01:01:57 +0000196 switch (transfer->status) {
197 case LIBUSB_TRANSFER_COMPLETED:
198 r = 0;
199 break;
200 case LIBUSB_TRANSFER_TIMED_OUT:
Daniel Drakebdce3672008-05-04 14:22:16 +0100201 r = LIBUSB_ERROR_TIMEOUT;
Daniel Drake1ac0a7d2008-03-09 01:01:57 +0000202 break;
Daniel Drakea304eca2008-05-05 16:22:33 +0100203 case LIBUSB_TRANSFER_STALL:
204 r = LIBUSB_ERROR_PIPE;
205 break;
Daniel Draked5f82892008-06-20 23:04:53 -0500206 case LIBUSB_TRANSFER_OVERFLOW:
207 r = LIBUSB_ERROR_OVERFLOW;
208 break;
Daniel Drakefec7c842008-05-11 20:31:58 +0100209 case LIBUSB_TRANSFER_NO_DEVICE:
210 r = LIBUSB_ERROR_NO_DEVICE;
211 break;
Ludovic Rousseau30ccbd72012-05-08 15:53:56 +0200212 case LIBUSB_TRANSFER_ERROR:
213 case LIBUSB_TRANSFER_CANCELLED:
214 r = LIBUSB_ERROR_IO;
215 break;
Daniel Drake1ac0a7d2008-03-09 01:01:57 +0000216 default:
Daniel Drake1df713d2008-06-24 23:01:51 -0500217 usbi_warn(HANDLE_CTX(dev_handle),
218 "unrecognised status code %d", transfer->status);
Daniel Drakebdce3672008-05-04 14:22:16 +0100219 r = LIBUSB_ERROR_OTHER;
Daniel Drake1ac0a7d2008-03-09 01:01:57 +0000220 }
221
222 libusb_free_transfer(transfer);
223 return r;
224}
225
Chris Dickens7ee92df2016-02-24 01:07:20 -0800226/** \ingroup libusb_syncio
Daniel Drakeead09cd2008-03-15 16:35:12 +0000227 * Perform a USB bulk transfer. The direction of the transfer is inferred from
228 * the direction bits of the endpoint address.
229 *
Daniel Drake3bdafaa2008-04-27 19:53:51 +0100230 * For bulk reads, the <tt>length</tt> field indicates the maximum length of
231 * data you are expecting to receive. If less data arrives than expected,
232 * this function will return that data, so be sure to check the
233 * <tt>transferred</tt> output parameter.
234 *
235 * You should also check the <tt>transferred</tt> parameter for bulk writes.
236 * Not all of the data may have been written.
237 *
238 * Also check <tt>transferred</tt> when dealing with a timeout error code.
hjelmn@cs.unm.edu1eff2202014-01-08 23:50:34 +0000239 * libusb may have to split your transfer into a number of chunks to satisfy
Daniel Drake3bdafaa2008-04-27 19:53:51 +0100240 * underlying O/S requirements, meaning that the timeout may expire after
hjelmn@cs.unm.edu1eff2202014-01-08 23:50:34 +0000241 * the first few chunks have completed. libusb is careful not to lose any data
Daniel Drake3bdafaa2008-04-27 19:53:51 +0100242 * that may have been transferred; do not assume that timeout conditions
243 * indicate a complete lack of I/O.
244 *
Daniel Drakeead09cd2008-03-15 16:35:12 +0000245 * \param dev_handle a handle for the device to communicate with
246 * \param endpoint the address of a valid endpoint to communicate with
247 * \param data a suitably-sized data buffer for either input or output
248 * (depending on endpoint)
249 * \param length for bulk writes, the number of bytes from data to be sent. for
250 * bulk reads, the maximum number of bytes to receive into the data buffer.
251 * \param transferred output location for the number of bytes actually
Chris Dickens60e875d2016-02-23 23:45:51 -0800252 * transferred. Since version 1.0.21 (\ref LIBUSB_API_VERSION >= 0x01000105),
253 * it is legal to pass a NULL pointer if you do not wish to receive this
254 * information.
Daniel Drakeead09cd2008-03-15 16:35:12 +0000255 * \param timeout timeout (in millseconds) that this function should wait
Daniel Drake98f1b302009-09-14 08:01:24 +0100256 * before giving up due to no response being received. For an unlimited
257 * timeout, use value 0.
Daniel Drakeead09cd2008-03-15 16:35:12 +0000258 *
259 * \returns 0 on success (and populates <tt>transferred</tt>)
Daniel Drakebdce3672008-05-04 14:22:16 +0100260 * \returns LIBUSB_ERROR_TIMEOUT if the transfer timed out (and populates
Daniel Drake3bdafaa2008-04-27 19:53:51 +0100261 * <tt>transferred</tt>)
Daniel Drakea304eca2008-05-05 16:22:33 +0100262 * \returns LIBUSB_ERROR_PIPE if the endpoint halted
Daniel Draked5f82892008-06-20 23:04:53 -0500263 * \returns LIBUSB_ERROR_OVERFLOW if the device offered more data, see
Chris Dickens7ee92df2016-02-24 01:07:20 -0800264 * \ref libusb_packetoverflow
Daniel Drakefec7c842008-05-11 20:31:58 +0100265 * \returns LIBUSB_ERROR_NO_DEVICE if the device has been disconnected
Chris Dickens960a6e72015-09-10 02:39:20 -0700266 * \returns LIBUSB_ERROR_BUSY if called from event handling context
Daniel Drakebdce3672008-05-04 14:22:16 +0100267 * \returns another LIBUSB_ERROR code on other failures
Daniel Drakeead09cd2008-03-15 16:35:12 +0000268 */
Pete Batard29f9f9e2010-08-13 11:59:49 +0100269int API_EXPORTED libusb_bulk_transfer(struct libusb_device_handle *dev_handle,
Daniel Drake1ac0a7d2008-03-09 01:01:57 +0000270 unsigned char endpoint, unsigned char *data, int length, int *transferred,
271 unsigned int timeout)
272{
273 return do_sync_bulk_transfer(dev_handle, endpoint, data, length,
Daniel Draked3ab4e32008-04-27 23:50:01 +0100274 transferred, timeout, LIBUSB_TRANSFER_TYPE_BULK);
Daniel Drake1ac0a7d2008-03-09 01:01:57 +0000275}
276
Chris Dickens7ee92df2016-02-24 01:07:20 -0800277/** \ingroup libusb_syncio
Daniel Drakeead09cd2008-03-15 16:35:12 +0000278 * Perform a USB interrupt transfer. The direction of the transfer is inferred
279 * from the direction bits of the endpoint address.
280 *
Daniel Drake3bdafaa2008-04-27 19:53:51 +0100281 * For interrupt reads, the <tt>length</tt> field indicates the maximum length
282 * of data you are expecting to receive. If less data arrives than expected,
283 * this function will return that data, so be sure to check the
284 * <tt>transferred</tt> output parameter.
285 *
286 * You should also check the <tt>transferred</tt> parameter for interrupt
287 * writes. Not all of the data may have been written.
288 *
289 * Also check <tt>transferred</tt> when dealing with a timeout error code.
hjelmn@cs.unm.edu1eff2202014-01-08 23:50:34 +0000290 * libusb may have to split your transfer into a number of chunks to satisfy
Daniel Drake3bdafaa2008-04-27 19:53:51 +0100291 * underlying O/S requirements, meaning that the timeout may expire after
hjelmn@cs.unm.edu1eff2202014-01-08 23:50:34 +0000292 * the first few chunks have completed. libusb is careful not to lose any data
Daniel Drake3bdafaa2008-04-27 19:53:51 +0100293 * that may have been transferred; do not assume that timeout conditions
294 * indicate a complete lack of I/O.
295 *
296 * The default endpoint bInterval value is used as the polling interval.
297 *
Daniel Drakeead09cd2008-03-15 16:35:12 +0000298 * \param dev_handle a handle for the device to communicate with
299 * \param endpoint the address of a valid endpoint to communicate with
300 * \param data a suitably-sized data buffer for either input or output
301 * (depending on endpoint)
302 * \param length for bulk writes, the number of bytes from data to be sent. for
303 * bulk reads, the maximum number of bytes to receive into the data buffer.
304 * \param transferred output location for the number of bytes actually
Chris Dickens60e875d2016-02-23 23:45:51 -0800305 * transferred. Since version 1.0.21 (\ref LIBUSB_API_VERSION >= 0x01000105),
306 * it is legal to pass a NULL pointer if you do not wish to receive this
307 * information.
Daniel Drakeead09cd2008-03-15 16:35:12 +0000308 * \param timeout timeout (in millseconds) that this function should wait
Daniel Drake98f1b302009-09-14 08:01:24 +0100309 * before giving up due to no response being received. For an unlimited
310 * timeout, use value 0.
Daniel Drakeead09cd2008-03-15 16:35:12 +0000311 *
312 * \returns 0 on success (and populates <tt>transferred</tt>)
Daniel Drakebdce3672008-05-04 14:22:16 +0100313 * \returns LIBUSB_ERROR_TIMEOUT if the transfer timed out
Daniel Drakea304eca2008-05-05 16:22:33 +0100314 * \returns LIBUSB_ERROR_PIPE if the endpoint halted
Daniel Draked5f82892008-06-20 23:04:53 -0500315 * \returns LIBUSB_ERROR_OVERFLOW if the device offered more data, see
Chris Dickens7ee92df2016-02-24 01:07:20 -0800316 * \ref libusb_packetoverflow
Daniel Drakefec7c842008-05-11 20:31:58 +0100317 * \returns LIBUSB_ERROR_NO_DEVICE if the device has been disconnected
Chris Dickens960a6e72015-09-10 02:39:20 -0700318 * \returns LIBUSB_ERROR_BUSY if called from event handling context
Daniel Drakebdce3672008-05-04 14:22:16 +0100319 * \returns another LIBUSB_ERROR code on other error
Daniel Drakeead09cd2008-03-15 16:35:12 +0000320 */
Pete Batard29f9f9e2010-08-13 11:59:49 +0100321int API_EXPORTED libusb_interrupt_transfer(
Daniel Drakeebad1c72008-03-09 16:12:08 +0000322 struct libusb_device_handle *dev_handle, unsigned char endpoint,
323 unsigned char *data, int length, int *transferred, unsigned int timeout)
Daniel Drake1ac0a7d2008-03-09 01:01:57 +0000324{
325 return do_sync_bulk_transfer(dev_handle, endpoint, data, length,
Daniel Draked3ab4e32008-04-27 23:50:01 +0100326 transferred, timeout, LIBUSB_TRANSFER_TYPE_INTERRUPT);
Daniel Drake1ac0a7d2008-03-09 01:01:57 +0000327}