2 * Synchronous I/O functions for libusbx
3 * Copyright © 2007-2008 Daniel Drake <dsd@gentoo.org>
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.
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.
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
29 * @defgroup syncio Synchronous device I/O
31 * This page documents libusbx's synchronous (blocking) API for USB device I/O.
32 * This interface is easy to use but has some limitations. More advanced users
33 * may wish to consider using the \ref asyncio "asynchronous I/O API" instead.
36 static void LIBUSB_CALL
sync_transfer_cb(struct libusb_transfer
*transfer
)
38 int *completed
= transfer
->user_data
;
40 usbi_dbg("actual_length=%d", transfer
->actual_length
);
41 /* caller interprets result and frees transfer */
44 static void sync_transfer_wait_for_completion(struct libusb_transfer
*transfer
)
46 int r
, *completed
= transfer
->user_data
;
47 struct libusb_context
*ctx
= HANDLE_CTX(transfer
->dev_handle
);
50 r
= libusb_handle_events_completed(ctx
, completed
);
52 if (r
== LIBUSB_ERROR_INTERRUPTED
)
54 usbi_err(ctx
, "libusb_handle_events failed: %s, cancelling transfer and retrying",
55 libusb_error_name(r
));
56 libusb_cancel_transfer(transfer
);
63 * Perform a USB control transfer.
65 * The direction of the transfer is inferred from the bmRequestType field of
68 * The wValue, wIndex and wLength fields values should be given in host-endian
71 * \param dev_handle a handle for the device to communicate with
72 * \param bmRequestType the request type field for the setup packet
73 * \param bRequest the request field for the setup packet
74 * \param wValue the value field for the setup packet
75 * \param wIndex the index field for the setup packet
76 * \param data a suitably-sized data buffer for either input or output
77 * (depending on direction bits within bmRequestType)
78 * \param wLength the length field for the setup packet. The data buffer should
79 * be at least this size.
80 * \param timeout timeout (in millseconds) that this function should wait
81 * before giving up due to no response being received. For an unlimited
82 * timeout, use value 0.
83 * \returns on success, the number of bytes actually transferred
84 * \returns LIBUSB_ERROR_TIMEOUT if the transfer timed out
85 * \returns LIBUSB_ERROR_PIPE if the control request was not supported by the
87 * \returns LIBUSB_ERROR_NO_DEVICE if the device has been disconnected
88 * \returns another LIBUSB_ERROR code on other failures
90 int API_EXPORTED
libusb_control_transfer(libusb_device_handle
*dev_handle
,
91 uint8_t bmRequestType
, uint8_t bRequest
, uint16_t wValue
, uint16_t wIndex
,
92 unsigned char *data
, uint16_t wLength
, unsigned int timeout
)
94 struct libusb_transfer
*transfer
= libusb_alloc_transfer(0);
95 unsigned char *buffer
;
100 return LIBUSB_ERROR_NO_MEM
;
102 buffer
= (unsigned char*) malloc(LIBUSB_CONTROL_SETUP_SIZE
+ wLength
);
104 libusb_free_transfer(transfer
);
105 return LIBUSB_ERROR_NO_MEM
;
108 libusb_fill_control_setup(buffer
, bmRequestType
, bRequest
, wValue
, wIndex
,
110 if ((bmRequestType
& LIBUSB_ENDPOINT_DIR_MASK
) == LIBUSB_ENDPOINT_OUT
)
111 memcpy(buffer
+ LIBUSB_CONTROL_SETUP_SIZE
, data
, wLength
);
113 libusb_fill_control_transfer(transfer
, dev_handle
, buffer
,
114 sync_transfer_cb
, &completed
, timeout
);
115 transfer
->flags
= LIBUSB_TRANSFER_FREE_BUFFER
;
116 r
= libusb_submit_transfer(transfer
);
118 libusb_free_transfer(transfer
);
122 sync_transfer_wait_for_completion(transfer
);
124 if ((bmRequestType
& LIBUSB_ENDPOINT_DIR_MASK
) == LIBUSB_ENDPOINT_IN
)
125 memcpy(data
, libusb_control_transfer_get_data(transfer
),
126 transfer
->actual_length
);
128 switch (transfer
->status
) {
129 case LIBUSB_TRANSFER_COMPLETED
:
130 r
= transfer
->actual_length
;
132 case LIBUSB_TRANSFER_TIMED_OUT
:
133 r
= LIBUSB_ERROR_TIMEOUT
;
135 case LIBUSB_TRANSFER_STALL
:
136 r
= LIBUSB_ERROR_PIPE
;
138 case LIBUSB_TRANSFER_NO_DEVICE
:
139 r
= LIBUSB_ERROR_NO_DEVICE
;
141 case LIBUSB_TRANSFER_OVERFLOW
:
142 r
= LIBUSB_ERROR_OVERFLOW
;
144 case LIBUSB_TRANSFER_ERROR
:
145 case LIBUSB_TRANSFER_CANCELLED
:
149 usbi_warn(HANDLE_CTX(dev_handle
),
150 "unrecognised status code %d", transfer
->status
);
151 r
= LIBUSB_ERROR_OTHER
;
154 libusb_free_transfer(transfer
);
158 static int do_sync_bulk_transfer(struct libusb_device_handle
*dev_handle
,
159 unsigned char endpoint
, unsigned char *buffer
, int length
,
160 int *transferred
, unsigned int timeout
, unsigned char type
)
162 struct libusb_transfer
*transfer
= libusb_alloc_transfer(0);
167 return LIBUSB_ERROR_NO_MEM
;
169 libusb_fill_bulk_transfer(transfer
, dev_handle
, endpoint
, buffer
, length
,
170 sync_transfer_cb
, &completed
, timeout
);
171 transfer
->type
= type
;
173 r
= libusb_submit_transfer(transfer
);
175 libusb_free_transfer(transfer
);
179 sync_transfer_wait_for_completion(transfer
);
181 *transferred
= transfer
->actual_length
;
182 switch (transfer
->status
) {
183 case LIBUSB_TRANSFER_COMPLETED
:
186 case LIBUSB_TRANSFER_TIMED_OUT
:
187 r
= LIBUSB_ERROR_TIMEOUT
;
189 case LIBUSB_TRANSFER_STALL
:
190 r
= LIBUSB_ERROR_PIPE
;
192 case LIBUSB_TRANSFER_OVERFLOW
:
193 r
= LIBUSB_ERROR_OVERFLOW
;
195 case LIBUSB_TRANSFER_NO_DEVICE
:
196 r
= LIBUSB_ERROR_NO_DEVICE
;
198 case LIBUSB_TRANSFER_ERROR
:
199 case LIBUSB_TRANSFER_CANCELLED
:
203 usbi_warn(HANDLE_CTX(dev_handle
),
204 "unrecognised status code %d", transfer
->status
);
205 r
= LIBUSB_ERROR_OTHER
;
208 libusb_free_transfer(transfer
);
213 * Perform a USB bulk transfer. The direction of the transfer is inferred from
214 * the direction bits of the endpoint address.
216 * For bulk reads, the <tt>length</tt> field indicates the maximum length of
217 * data you are expecting to receive. If less data arrives than expected,
218 * this function will return that data, so be sure to check the
219 * <tt>transferred</tt> output parameter.
221 * You should also check the <tt>transferred</tt> parameter for bulk writes.
222 * Not all of the data may have been written.
224 * Also check <tt>transferred</tt> when dealing with a timeout error code.
225 * libusbx may have to split your transfer into a number of chunks to satisfy
226 * underlying O/S requirements, meaning that the timeout may expire after
227 * the first few chunks have completed. libusbx is careful not to lose any data
228 * that may have been transferred; do not assume that timeout conditions
229 * indicate a complete lack of I/O.
231 * \param dev_handle a handle for the device to communicate with
232 * \param endpoint the address of a valid endpoint to communicate with
233 * \param data a suitably-sized data buffer for either input or output
234 * (depending on endpoint)
235 * \param length for bulk writes, the number of bytes from data to be sent. for
236 * bulk reads, the maximum number of bytes to receive into the data buffer.
237 * \param transferred output location for the number of bytes actually
239 * \param timeout timeout (in millseconds) that this function should wait
240 * before giving up due to no response being received. For an unlimited
241 * timeout, use value 0.
243 * \returns 0 on success (and populates <tt>transferred</tt>)
244 * \returns LIBUSB_ERROR_TIMEOUT if the transfer timed out (and populates
245 * <tt>transferred</tt>)
246 * \returns LIBUSB_ERROR_PIPE if the endpoint halted
247 * \returns LIBUSB_ERROR_OVERFLOW if the device offered more data, see
248 * \ref packetoverflow
249 * \returns LIBUSB_ERROR_NO_DEVICE if the device has been disconnected
250 * \returns another LIBUSB_ERROR code on other failures
252 int API_EXPORTED
libusb_bulk_transfer(struct libusb_device_handle
*dev_handle
,
253 unsigned char endpoint
, unsigned char *data
, int length
, int *transferred
,
254 unsigned int timeout
)
256 return do_sync_bulk_transfer(dev_handle
, endpoint
, data
, length
,
257 transferred
, timeout
, LIBUSB_TRANSFER_TYPE_BULK
);
261 * Perform a USB interrupt transfer. The direction of the transfer is inferred
262 * from the direction bits of the endpoint address.
264 * For interrupt reads, the <tt>length</tt> field indicates the maximum length
265 * of data you are expecting to receive. If less data arrives than expected,
266 * this function will return that data, so be sure to check the
267 * <tt>transferred</tt> output parameter.
269 * You should also check the <tt>transferred</tt> parameter for interrupt
270 * writes. Not all of the data may have been written.
272 * Also check <tt>transferred</tt> when dealing with a timeout error code.
273 * libusbx may have to split your transfer into a number of chunks to satisfy
274 * underlying O/S requirements, meaning that the timeout may expire after
275 * the first few chunks have completed. libusbx is careful not to lose any data
276 * that may have been transferred; do not assume that timeout conditions
277 * indicate a complete lack of I/O.
279 * The default endpoint bInterval value is used as the polling interval.
281 * \param dev_handle a handle for the device to communicate with
282 * \param endpoint the address of a valid endpoint to communicate with
283 * \param data a suitably-sized data buffer for either input or output
284 * (depending on endpoint)
285 * \param length for bulk writes, the number of bytes from data to be sent. for
286 * bulk reads, the maximum number of bytes to receive into the data buffer.
287 * \param transferred output location for the number of bytes actually
289 * \param timeout timeout (in millseconds) that this function should wait
290 * before giving up due to no response being received. For an unlimited
291 * timeout, use value 0.
293 * \returns 0 on success (and populates <tt>transferred</tt>)
294 * \returns LIBUSB_ERROR_TIMEOUT if the transfer timed out
295 * \returns LIBUSB_ERROR_PIPE if the endpoint halted
296 * \returns LIBUSB_ERROR_OVERFLOW if the device offered more data, see
297 * \ref packetoverflow
298 * \returns LIBUSB_ERROR_NO_DEVICE if the device has been disconnected
299 * \returns another LIBUSB_ERROR code on other error
301 int API_EXPORTED
libusb_interrupt_transfer(
302 struct libusb_device_handle
*dev_handle
, unsigned char endpoint
,
303 unsigned char *data
, int length
, int *transferred
, unsigned int timeout
)
305 return do_sync_bulk_transfer(dev_handle
, endpoint
, data
, length
,
306 transferred
, timeout
, LIBUSB_TRANSFER_TYPE_INTERRUPT
);