urb.c 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853
  1. #include <linux/module.h>
  2. #include <linux/string.h>
  3. #include <linux/bitops.h>
  4. #include <linux/slab.h>
  5. #include <linux/init.h>
  6. #include <linux/log2.h>
  7. #include <linux/usb.h>
  8. #include <linux/wait.h>
  9. #include <linux/usb/hcd.h>
  10. #define to_urb(d) container_of(d, struct urb, kref)
  11. static void urb_destroy(struct kref *kref)
  12. {
  13. struct urb *urb = to_urb(kref);
  14. if (urb->transfer_flags & URB_FREE_BUFFER)
  15. kfree(urb->transfer_buffer);
  16. kfree(urb);
  17. }
  18. /**
  19. * usb_init_urb - initializes a urb so that it can be used by a USB driver
  20. * @urb: pointer to the urb to initialize
  21. *
  22. * Initializes a urb so that the USB subsystem can use it properly.
  23. *
  24. * If a urb is created with a call to usb_alloc_urb() it is not
  25. * necessary to call this function. Only use this if you allocate the
  26. * space for a struct urb on your own. If you call this function, be
  27. * careful when freeing the memory for your urb that it is no longer in
  28. * use by the USB core.
  29. *
  30. * Only use this function if you _really_ understand what you are doing.
  31. */
  32. void usb_init_urb(struct urb *urb)
  33. {
  34. if (urb) {
  35. memset(urb, 0, sizeof(*urb));
  36. kref_init(&urb->kref);
  37. INIT_LIST_HEAD(&urb->anchor_list);
  38. }
  39. }
  40. EXPORT_SYMBOL_GPL(usb_init_urb);
  41. /**
  42. * usb_alloc_urb - creates a new urb for a USB driver to use
  43. * @iso_packets: number of iso packets for this urb
  44. * @mem_flags: the type of memory to allocate, see kmalloc() for a list of
  45. * valid options for this.
  46. *
  47. * Creates an urb for the USB driver to use, initializes a few internal
  48. * structures, incrementes the usage counter, and returns a pointer to it.
  49. *
  50. * If no memory is available, NULL is returned.
  51. *
  52. * If the driver want to use this urb for interrupt, control, or bulk
  53. * endpoints, pass '0' as the number of iso packets.
  54. *
  55. * The driver must call usb_free_urb() when it is finished with the urb.
  56. */
  57. struct urb *usb_alloc_urb(int iso_packets, gfp_t mem_flags)
  58. {
  59. struct urb *urb;
  60. urb = kmalloc(sizeof(struct urb) +
  61. iso_packets * sizeof(struct usb_iso_packet_descriptor),
  62. mem_flags);
  63. if (!urb) {
  64. printk(KERN_ERR "alloc_urb: kmalloc failed\n");
  65. return NULL;
  66. }
  67. usb_init_urb(urb);
  68. return urb;
  69. }
  70. EXPORT_SYMBOL_GPL(usb_alloc_urb);
  71. /**
  72. * usb_free_urb - frees the memory used by a urb when all users of it are finished
  73. * @urb: pointer to the urb to free, may be NULL
  74. *
  75. * Must be called when a user of a urb is finished with it. When the last user
  76. * of the urb calls this function, the memory of the urb is freed.
  77. *
  78. * Note: The transfer buffer associated with the urb is not freed unless the
  79. * URB_FREE_BUFFER transfer flag is set.
  80. */
  81. void usb_free_urb(struct urb *urb)
  82. {
  83. if (urb)
  84. kref_put(&urb->kref, urb_destroy);
  85. }
  86. EXPORT_SYMBOL_GPL(usb_free_urb);
  87. /**
  88. * usb_get_urb - increments the reference count of the urb
  89. * @urb: pointer to the urb to modify, may be NULL
  90. *
  91. * This must be called whenever a urb is transferred from a device driver to a
  92. * host controller driver. This allows proper reference counting to happen
  93. * for urbs.
  94. *
  95. * A pointer to the urb with the incremented reference counter is returned.
  96. */
  97. struct urb *usb_get_urb(struct urb *urb)
  98. {
  99. if (urb)
  100. kref_get(&urb->kref);
  101. return urb;
  102. }
  103. EXPORT_SYMBOL_GPL(usb_get_urb);
  104. /**
  105. * usb_anchor_urb - anchors an URB while it is processed
  106. * @urb: pointer to the urb to anchor
  107. * @anchor: pointer to the anchor
  108. *
  109. * This can be called to have access to URBs which are to be executed
  110. * without bothering to track them
  111. */
  112. void usb_anchor_urb(struct urb *urb, struct usb_anchor *anchor)
  113. {
  114. unsigned long flags;
  115. spin_lock_irqsave(&anchor->lock, flags);
  116. usb_get_urb(urb);
  117. list_add_tail(&urb->anchor_list, &anchor->urb_list);
  118. urb->anchor = anchor;
  119. if (unlikely(anchor->poisoned)) {
  120. atomic_inc(&urb->reject);
  121. }
  122. spin_unlock_irqrestore(&anchor->lock, flags);
  123. }
  124. EXPORT_SYMBOL_GPL(usb_anchor_urb);
  125. /**
  126. * usb_unanchor_urb - unanchors an URB
  127. * @urb: pointer to the urb to anchor
  128. *
  129. * Call this to stop the system keeping track of this URB
  130. */
  131. void usb_unanchor_urb(struct urb *urb)
  132. {
  133. unsigned long flags;
  134. struct usb_anchor *anchor;
  135. if (!urb)
  136. return;
  137. anchor = urb->anchor;
  138. if (!anchor)
  139. return;
  140. spin_lock_irqsave(&anchor->lock, flags);
  141. if (unlikely(anchor != urb->anchor)) {
  142. /* we've lost the race to another thread */
  143. spin_unlock_irqrestore(&anchor->lock, flags);
  144. return;
  145. }
  146. urb->anchor = NULL;
  147. list_del(&urb->anchor_list);
  148. spin_unlock_irqrestore(&anchor->lock, flags);
  149. usb_put_urb(urb);
  150. if (list_empty(&anchor->urb_list))
  151. wake_up(&anchor->wait);
  152. }
  153. EXPORT_SYMBOL_GPL(usb_unanchor_urb);
  154. /*-------------------------------------------------------------------*/
  155. /**
  156. * usb_submit_urb - issue an asynchronous transfer request for an endpoint
  157. * @urb: pointer to the urb describing the request
  158. * @mem_flags: the type of memory to allocate, see kmalloc() for a list
  159. * of valid options for this.
  160. *
  161. * This submits a transfer request, and transfers control of the URB
  162. * describing that request to the USB subsystem. Request completion will
  163. * be indicated later, asynchronously, by calling the completion handler.
  164. * The three types of completion are success, error, and unlink
  165. * (a software-induced fault, also called "request cancellation").
  166. *
  167. * URBs may be submitted in interrupt context.
  168. *
  169. * The caller must have correctly initialized the URB before submitting
  170. * it. Functions such as usb_fill_bulk_urb() and usb_fill_control_urb() are
  171. * available to ensure that most fields are correctly initialized, for
  172. * the particular kind of transfer, although they will not initialize
  173. * any transfer flags.
  174. *
  175. * Successful submissions return 0; otherwise this routine returns a
  176. * negative error number. If the submission is successful, the complete()
  177. * callback from the URB will be called exactly once, when the USB core and
  178. * Host Controller Driver (HCD) are finished with the URB. When the completion
  179. * function is called, control of the URB is returned to the device
  180. * driver which issued the request. The completion handler may then
  181. * immediately free or reuse that URB.
  182. *
  183. * With few exceptions, USB device drivers should never access URB fields
  184. * provided by usbcore or the HCD until its complete() is called.
  185. * The exceptions relate to periodic transfer scheduling. For both
  186. * interrupt and isochronous urbs, as part of successful URB submission
  187. * urb->interval is modified to reflect the actual transfer period used
  188. * (normally some power of two units). And for isochronous urbs,
  189. * urb->start_frame is modified to reflect when the URB's transfers were
  190. * scheduled to start. Not all isochronous transfer scheduling policies
  191. * will work, but most host controller drivers should easily handle ISO
  192. * queues going from now until 10-200 msec into the future.
  193. *
  194. * For control endpoints, the synchronous usb_control_msg() call is
  195. * often used (in non-interrupt context) instead of this call.
  196. * That is often used through convenience wrappers, for the requests
  197. * that are standardized in the USB 2.0 specification. For bulk
  198. * endpoints, a synchronous usb_bulk_msg() call is available.
  199. *
  200. * Request Queuing:
  201. *
  202. * URBs may be submitted to endpoints before previous ones complete, to
  203. * minimize the impact of interrupt latencies and system overhead on data
  204. * throughput. With that queuing policy, an endpoint's queue would never
  205. * be empty. This is required for continuous isochronous data streams,
  206. * and may also be required for some kinds of interrupt transfers. Such
  207. * queuing also maximizes bandwidth utilization by letting USB controllers
  208. * start work on later requests before driver software has finished the
  209. * completion processing for earlier (successful) requests.
  210. *
  211. * As of Linux 2.6, all USB endpoint transfer queues support depths greater
  212. * than one. This was previously a HCD-specific behavior, except for ISO
  213. * transfers. Non-isochronous endpoint queues are inactive during cleanup
  214. * after faults (transfer errors or cancellation).
  215. *
  216. * Reserved Bandwidth Transfers:
  217. *
  218. * Periodic transfers (interrupt or isochronous) are performed repeatedly,
  219. * using the interval specified in the urb. Submitting the first urb to
  220. * the endpoint reserves the bandwidth necessary to make those transfers.
  221. * If the USB subsystem can't allocate sufficient bandwidth to perform
  222. * the periodic request, submitting such a periodic request should fail.
  223. *
  224. * For devices under xHCI, the bandwidth is reserved at configuration time, or
  225. * when the alt setting is selected. If there is not enough bus bandwidth, the
  226. * configuration/alt setting request will fail. Therefore, submissions to
  227. * periodic endpoints on devices under xHCI should never fail due to bandwidth
  228. * constraints.
  229. *
  230. * Device drivers must explicitly request that repetition, by ensuring that
  231. * some URB is always on the endpoint's queue (except possibly for short
  232. * periods during completion callacks). When there is no longer an urb
  233. * queued, the endpoint's bandwidth reservation is canceled. This means
  234. * drivers can use their completion handlers to ensure they keep bandwidth
  235. * they need, by reinitializing and resubmitting the just-completed urb
  236. * until the driver longer needs that periodic bandwidth.
  237. *
  238. * Memory Flags:
  239. *
  240. * The general rules for how to decide which mem_flags to use
  241. * are the same as for kmalloc. There are four
  242. * different possible values; GFP_KERNEL, GFP_NOFS, GFP_NOIO and
  243. * GFP_ATOMIC.
  244. *
  245. * GFP_NOFS is not ever used, as it has not been implemented yet.
  246. *
  247. * GFP_ATOMIC is used when
  248. * (a) you are inside a completion handler, an interrupt, bottom half,
  249. * tasklet or timer, or
  250. * (b) you are holding a spinlock or rwlock (does not apply to
  251. * semaphores), or
  252. * (c) current->state != TASK_RUNNING, this is the case only after
  253. * you've changed it.
  254. *
  255. * GFP_NOIO is used in the block io path and error handling of storage
  256. * devices.
  257. *
  258. * All other situations use GFP_KERNEL.
  259. *
  260. * Some more specific rules for mem_flags can be inferred, such as
  261. * (1) start_xmit, timeout, and receive methods of network drivers must
  262. * use GFP_ATOMIC (they are called with a spinlock held);
  263. * (2) queuecommand methods of scsi drivers must use GFP_ATOMIC (also
  264. * called with a spinlock held);
  265. * (3) If you use a kernel thread with a network driver you must use
  266. * GFP_NOIO, unless (b) or (c) apply;
  267. * (4) after you have done a down() you can use GFP_KERNEL, unless (b) or (c)
  268. * apply or your are in a storage driver's block io path;
  269. * (5) USB probe and disconnect can use GFP_KERNEL unless (b) or (c) apply; and
  270. * (6) changing firmware on a running storage or net device uses
  271. * GFP_NOIO, unless b) or c) apply
  272. *
  273. */
  274. int usb_submit_urb(struct urb *urb, gfp_t mem_flags)
  275. {
  276. int xfertype, max;
  277. struct usb_device *dev;
  278. struct usb_host_endpoint *ep;
  279. int is_out;
  280. if (!urb || urb->hcpriv || !urb->complete)
  281. return -EINVAL;
  282. dev = urb->dev;
  283. if ((!dev) || (dev->state < USB_STATE_UNAUTHENTICATED))
  284. return -ENODEV;
  285. /* For now, get the endpoint from the pipe. Eventually drivers
  286. * will be required to set urb->ep directly and we will eliminate
  287. * urb->pipe.
  288. */
  289. ep = usb_pipe_endpoint(dev, urb->pipe);
  290. if (!ep)
  291. return -ENOENT;
  292. urb->ep = ep;
  293. urb->status = -EINPROGRESS;
  294. urb->actual_length = 0;
  295. /* Lots of sanity checks, so HCDs can rely on clean data
  296. * and don't need to duplicate tests
  297. */
  298. xfertype = usb_endpoint_type(&ep->desc);
  299. if (xfertype == USB_ENDPOINT_XFER_CONTROL) {
  300. struct usb_ctrlrequest *setup =
  301. (struct usb_ctrlrequest *) urb->setup_packet;
  302. if (!setup)
  303. return -ENOEXEC;
  304. is_out = !(setup->bRequestType & USB_DIR_IN) ||
  305. !setup->wLength;
  306. } else {
  307. is_out = usb_endpoint_dir_out(&ep->desc);
  308. }
  309. /* Clear the internal flags and cache the direction for later use */
  310. urb->transfer_flags &= ~(URB_DIR_MASK | URB_DMA_MAP_SINGLE |
  311. URB_DMA_MAP_PAGE | URB_DMA_MAP_SG | URB_MAP_LOCAL |
  312. URB_SETUP_MAP_SINGLE | URB_SETUP_MAP_LOCAL |
  313. URB_DMA_SG_COMBINED);
  314. urb->transfer_flags |= (is_out ? URB_DIR_OUT : URB_DIR_IN);
  315. if (xfertype != USB_ENDPOINT_XFER_CONTROL &&
  316. dev->state < USB_STATE_CONFIGURED)
  317. return -ENODEV;
  318. max = le16_to_cpu(ep->desc.wMaxPacketSize);
  319. if (max <= 0) {
  320. dev_dbg(&dev->dev,
  321. "bogus endpoint ep%d%s in %s (bad maxpacket %d)\n",
  322. usb_endpoint_num(&ep->desc), is_out ? "out" : "in",
  323. __func__, max);
  324. return -EMSGSIZE;
  325. }
  326. /* periodic transfers limit size per frame/uframe,
  327. * but drivers only control those sizes for ISO.
  328. * while we're checking, initialize return status.
  329. */
  330. if (xfertype == USB_ENDPOINT_XFER_ISOC) {
  331. int n, len;
  332. /* FIXME SuperSpeed isoc endpoints have up to 16 bursts */
  333. /* "high bandwidth" mode, 1-3 packets/uframe? */
  334. if (dev->speed == USB_SPEED_HIGH) {
  335. int mult = 1 + ((max >> 11) & 0x03);
  336. max &= 0x07ff;
  337. max *= mult;
  338. }
  339. if (urb->number_of_packets <= 0)
  340. return -EINVAL;
  341. for (n = 0; n < urb->number_of_packets; n++) {
  342. len = urb->iso_frame_desc[n].length;
  343. if (len < 0 || len > max)
  344. return -EMSGSIZE;
  345. urb->iso_frame_desc[n].status = -EXDEV;
  346. urb->iso_frame_desc[n].actual_length = 0;
  347. }
  348. }
  349. /* the I/O buffer must be mapped/unmapped, except when length=0 */
  350. if (urb->transfer_buffer_length > INT_MAX)
  351. return -EMSGSIZE;
  352. #ifdef DEBUG
  353. /* stuff that drivers shouldn't do, but which shouldn't
  354. * cause problems in HCDs if they get it wrong.
  355. */
  356. {
  357. unsigned int orig_flags = urb->transfer_flags;
  358. unsigned int allowed;
  359. static int pipetypes[4] = {
  360. PIPE_CONTROL, PIPE_ISOCHRONOUS, PIPE_BULK, PIPE_INTERRUPT
  361. };
  362. /* Check that the pipe's type matches the endpoint's type */
  363. if (usb_pipetype(urb->pipe) != pipetypes[xfertype])
  364. return -EPIPE; /* The most suitable error code :-) */
  365. /* enforce simple/standard policy */
  366. allowed = (URB_NO_TRANSFER_DMA_MAP | URB_NO_INTERRUPT | URB_DIR_MASK |
  367. URB_FREE_BUFFER);
  368. switch (xfertype) {
  369. case USB_ENDPOINT_XFER_BULK:
  370. if (is_out)
  371. allowed |= URB_ZERO_PACKET;
  372. /* FALLTHROUGH */
  373. case USB_ENDPOINT_XFER_CONTROL:
  374. allowed |= URB_NO_FSBR; /* only affects UHCI */
  375. /* FALLTHROUGH */
  376. default: /* all non-iso endpoints */
  377. if (!is_out)
  378. allowed |= URB_SHORT_NOT_OK;
  379. break;
  380. case USB_ENDPOINT_XFER_ISOC:
  381. allowed |= URB_ISO_ASAP;
  382. break;
  383. }
  384. urb->transfer_flags &= allowed;
  385. /* fail if submitter gave bogus flags */
  386. if (urb->transfer_flags != orig_flags) {
  387. dev_err(&dev->dev, "BOGUS urb flags, %x --> %x\n",
  388. orig_flags, urb->transfer_flags);
  389. return -EINVAL;
  390. }
  391. }
  392. #endif
  393. /*
  394. * Force periodic transfer intervals to be legal values that are
  395. * a power of two (so HCDs don't need to).
  396. *
  397. * FIXME want bus->{intr,iso}_sched_horizon values here. Each HC
  398. * supports different values... this uses EHCI/UHCI defaults (and
  399. * EHCI can use smaller non-default values).
  400. */
  401. switch (xfertype) {
  402. case USB_ENDPOINT_XFER_ISOC:
  403. case USB_ENDPOINT_XFER_INT:
  404. /* too small? */
  405. switch (dev->speed) {
  406. case USB_SPEED_WIRELESS:
  407. if (urb->interval < 6)
  408. return -EINVAL;
  409. break;
  410. default:
  411. if (urb->interval <= 0)
  412. return -EINVAL;
  413. break;
  414. }
  415. /* too big? */
  416. switch (dev->speed) {
  417. case USB_SPEED_SUPER: /* units are 125us */
  418. /* Handle up to 2^(16-1) microframes */
  419. if (urb->interval > (1 << 15))
  420. return -EINVAL;
  421. max = 1 << 15;
  422. break;
  423. case USB_SPEED_WIRELESS:
  424. if (urb->interval > 16)
  425. return -EINVAL;
  426. break;
  427. case USB_SPEED_HIGH: /* units are microframes */
  428. /* NOTE usb handles 2^15 */
  429. if (urb->interval > (1024 * 8))
  430. urb->interval = 1024 * 8;
  431. max = 1024 * 8;
  432. break;
  433. case USB_SPEED_FULL: /* units are frames/msec */
  434. case USB_SPEED_LOW:
  435. if (xfertype == USB_ENDPOINT_XFER_INT) {
  436. if (urb->interval > 255)
  437. return -EINVAL;
  438. /* NOTE ohci only handles up to 32 */
  439. max = 128;
  440. } else {
  441. if (urb->interval > 1024)
  442. urb->interval = 1024;
  443. /* NOTE usb and ohci handle up to 2^15 */
  444. max = 1024;
  445. }
  446. break;
  447. default:
  448. return -EINVAL;
  449. }
  450. if (dev->speed != USB_SPEED_WIRELESS) {
  451. /* Round down to a power of 2, no more than max */
  452. urb->interval = min(max, 1 << ilog2(urb->interval));
  453. }
  454. }
  455. return usb_hcd_submit_urb(urb, mem_flags);
  456. }
  457. EXPORT_SYMBOL_GPL(usb_submit_urb);
  458. /*-------------------------------------------------------------------*/
  459. /**
  460. * usb_unlink_urb - abort/cancel a transfer request for an endpoint
  461. * @urb: pointer to urb describing a previously submitted request,
  462. * may be NULL
  463. *
  464. * This routine cancels an in-progress request. URBs complete only once
  465. * per submission, and may be canceled only once per submission.
  466. * Successful cancellation means termination of @urb will be expedited
  467. * and the completion handler will be called with a status code
  468. * indicating that the request has been canceled (rather than any other
  469. * code).
  470. *
  471. * Drivers should not call this routine or related routines, such as
  472. * usb_kill_urb() or usb_unlink_anchored_urbs(), after their disconnect
  473. * method has returned. The disconnect function should synchronize with
  474. * a driver's I/O routines to insure that all URB-related activity has
  475. * completed before it returns.
  476. *
  477. * This request is always asynchronous. Success is indicated by
  478. * returning -EINPROGRESS, at which time the URB will probably not yet
  479. * have been given back to the device driver. When it is eventually
  480. * called, the completion function will see @urb->status == -ECONNRESET.
  481. * Failure is indicated by usb_unlink_urb() returning any other value.
  482. * Unlinking will fail when @urb is not currently "linked" (i.e., it was
  483. * never submitted, or it was unlinked before, or the hardware is already
  484. * finished with it), even if the completion handler has not yet run.
  485. *
  486. * Unlinking and Endpoint Queues:
  487. *
  488. * [The behaviors and guarantees described below do not apply to virtual
  489. * root hubs but only to endpoint queues for physical USB devices.]
  490. *
  491. * Host Controller Drivers (HCDs) place all the URBs for a particular
  492. * endpoint in a queue. Normally the queue advances as the controller
  493. * hardware processes each request. But when an URB terminates with an
  494. * error its queue generally stops (see below), at least until that URB's
  495. * completion routine returns. It is guaranteed that a stopped queue
  496. * will not restart until all its unlinked URBs have been fully retired,
  497. * with their completion routines run, even if that's not until some time
  498. * after the original completion handler returns. The same behavior and
  499. * guarantee apply when an URB terminates because it was unlinked.
  500. *
  501. * Bulk and interrupt endpoint queues are guaranteed to stop whenever an
  502. * URB terminates with any sort of error, including -ECONNRESET, -ENOENT,
  503. * and -EREMOTEIO. Control endpoint queues behave the same way except
  504. * that they are not guaranteed to stop for -EREMOTEIO errors. Queues
  505. * for isochronous endpoints are treated differently, because they must
  506. * advance at fixed rates. Such queues do not stop when an URB
  507. * encounters an error or is unlinked. An unlinked isochronous URB may
  508. * leave a gap in the stream of packets; it is undefined whether such
  509. * gaps can be filled in.
  510. *
  511. * Note that early termination of an URB because a short packet was
  512. * received will generate a -EREMOTEIO error if and only if the
  513. * URB_SHORT_NOT_OK flag is set. By setting this flag, USB device
  514. * drivers can build deep queues for large or complex bulk transfers
  515. * and clean them up reliably after any sort of aborted transfer by
  516. * unlinking all pending URBs at the first fault.
  517. *
  518. * When a control URB terminates with an error other than -EREMOTEIO, it
  519. * is quite likely that the status stage of the transfer will not take
  520. * place.
  521. */
  522. int usb_unlink_urb(struct urb *urb)
  523. {
  524. if (!urb)
  525. return -EINVAL;
  526. if (!urb->dev)
  527. return -ENODEV;
  528. if (!urb->ep)
  529. return -EIDRM;
  530. return usb_hcd_unlink_urb(urb, -ECONNRESET);
  531. }
  532. EXPORT_SYMBOL_GPL(usb_unlink_urb);
  533. /**
  534. * usb_kill_urb - cancel a transfer request and wait for it to finish
  535. * @urb: pointer to URB describing a previously submitted request,
  536. * may be NULL
  537. *
  538. * This routine cancels an in-progress request. It is guaranteed that
  539. * upon return all completion handlers will have finished and the URB
  540. * will be totally idle and available for reuse. These features make
  541. * this an ideal way to stop I/O in a disconnect() callback or close()
  542. * function. If the request has not already finished or been unlinked
  543. * the completion handler will see urb->status == -ENOENT.
  544. *
  545. * While the routine is running, attempts to resubmit the URB will fail
  546. * with error -EPERM. Thus even if the URB's completion handler always
  547. * tries to resubmit, it will not succeed and the URB will become idle.
  548. *
  549. * This routine may not be used in an interrupt context (such as a bottom
  550. * half or a completion handler), or when holding a spinlock, or in other
  551. * situations where the caller can't schedule().
  552. *
  553. * This routine should not be called by a driver after its disconnect
  554. * method has returned.
  555. */
  556. void usb_kill_urb(struct urb *urb)
  557. {
  558. might_sleep();
  559. if (!(urb && urb->dev && urb->ep))
  560. return;
  561. atomic_inc(&urb->reject);
  562. usb_hcd_unlink_urb(urb, -ENOENT);
  563. wait_event(usb_kill_urb_queue, atomic_read(&urb->use_count) == 0);
  564. atomic_dec(&urb->reject);
  565. }
  566. EXPORT_SYMBOL_GPL(usb_kill_urb);
  567. /**
  568. * usb_poison_urb - reliably kill a transfer and prevent further use of an URB
  569. * @urb: pointer to URB describing a previously submitted request,
  570. * may be NULL
  571. *
  572. * This routine cancels an in-progress request. It is guaranteed that
  573. * upon return all completion handlers will have finished and the URB
  574. * will be totally idle and cannot be reused. These features make
  575. * this an ideal way to stop I/O in a disconnect() callback.
  576. * If the request has not already finished or been unlinked
  577. * the completion handler will see urb->status == -ENOENT.
  578. *
  579. * After and while the routine runs, attempts to resubmit the URB will fail
  580. * with error -EPERM. Thus even if the URB's completion handler always
  581. * tries to resubmit, it will not succeed and the URB will become idle.
  582. *
  583. * This routine may not be used in an interrupt context (such as a bottom
  584. * half or a completion handler), or when holding a spinlock, or in other
  585. * situations where the caller can't schedule().
  586. *
  587. * This routine should not be called by a driver after its disconnect
  588. * method has returned.
  589. */
  590. void usb_poison_urb(struct urb *urb)
  591. {
  592. might_sleep();
  593. if (!(urb && urb->dev && urb->ep))
  594. return;
  595. atomic_inc(&urb->reject);
  596. usb_hcd_unlink_urb(urb, -ENOENT);
  597. wait_event(usb_kill_urb_queue, atomic_read(&urb->use_count) == 0);
  598. }
  599. EXPORT_SYMBOL_GPL(usb_poison_urb);
  600. void usb_unpoison_urb(struct urb *urb)
  601. {
  602. if (!urb)
  603. return;
  604. atomic_dec(&urb->reject);
  605. }
  606. EXPORT_SYMBOL_GPL(usb_unpoison_urb);
  607. /**
  608. * usb_kill_anchored_urbs - cancel transfer requests en masse
  609. * @anchor: anchor the requests are bound to
  610. *
  611. * this allows all outstanding URBs to be killed starting
  612. * from the back of the queue
  613. *
  614. * This routine should not be called by a driver after its disconnect
  615. * method has returned.
  616. */
  617. void usb_kill_anchored_urbs(struct usb_anchor *anchor)
  618. {
  619. struct urb *victim;
  620. spin_lock_irq(&anchor->lock);
  621. while (!list_empty(&anchor->urb_list)) {
  622. victim = list_entry(anchor->urb_list.prev, struct urb,
  623. anchor_list);
  624. /* we must make sure the URB isn't freed before we kill it*/
  625. usb_get_urb(victim);
  626. spin_unlock_irq(&anchor->lock);
  627. /* this will unanchor the URB */
  628. usb_kill_urb(victim);
  629. usb_put_urb(victim);
  630. spin_lock_irq(&anchor->lock);
  631. }
  632. spin_unlock_irq(&anchor->lock);
  633. }
  634. EXPORT_SYMBOL_GPL(usb_kill_anchored_urbs);
  635. /**
  636. * usb_poison_anchored_urbs - cease all traffic from an anchor
  637. * @anchor: anchor the requests are bound to
  638. *
  639. * this allows all outstanding URBs to be poisoned starting
  640. * from the back of the queue. Newly added URBs will also be
  641. * poisoned
  642. *
  643. * This routine should not be called by a driver after its disconnect
  644. * method has returned.
  645. */
  646. void usb_poison_anchored_urbs(struct usb_anchor *anchor)
  647. {
  648. struct urb *victim;
  649. spin_lock_irq(&anchor->lock);
  650. anchor->poisoned = 1;
  651. while (!list_empty(&anchor->urb_list)) {
  652. victim = list_entry(anchor->urb_list.prev, struct urb,
  653. anchor_list);
  654. /* we must make sure the URB isn't freed before we kill it*/
  655. usb_get_urb(victim);
  656. spin_unlock_irq(&anchor->lock);
  657. /* this will unanchor the URB */
  658. usb_poison_urb(victim);
  659. usb_put_urb(victim);
  660. spin_lock_irq(&anchor->lock);
  661. }
  662. spin_unlock_irq(&anchor->lock);
  663. }
  664. EXPORT_SYMBOL_GPL(usb_poison_anchored_urbs);
  665. /**
  666. * usb_unpoison_anchored_urbs - let an anchor be used successfully again
  667. * @anchor: anchor the requests are bound to
  668. *
  669. * Reverses the effect of usb_poison_anchored_urbs
  670. * the anchor can be used normally after it returns
  671. */
  672. void usb_unpoison_anchored_urbs(struct usb_anchor *anchor)
  673. {
  674. unsigned long flags;
  675. struct urb *lazarus;
  676. spin_lock_irqsave(&anchor->lock, flags);
  677. list_for_each_entry(lazarus, &anchor->urb_list, anchor_list) {
  678. usb_unpoison_urb(lazarus);
  679. }
  680. anchor->poisoned = 0;
  681. spin_unlock_irqrestore(&anchor->lock, flags);
  682. }
  683. EXPORT_SYMBOL_GPL(usb_unpoison_anchored_urbs);
  684. /**
  685. * usb_unlink_anchored_urbs - asynchronously cancel transfer requests en masse
  686. * @anchor: anchor the requests are bound to
  687. *
  688. * this allows all outstanding URBs to be unlinked starting
  689. * from the back of the queue. This function is asynchronous.
  690. * The unlinking is just tiggered. It may happen after this
  691. * function has returned.
  692. *
  693. * This routine should not be called by a driver after its disconnect
  694. * method has returned.
  695. */
  696. void usb_unlink_anchored_urbs(struct usb_anchor *anchor)
  697. {
  698. struct urb *victim;
  699. unsigned long flags;
  700. spin_lock_irqsave(&anchor->lock, flags);
  701. while (!list_empty(&anchor->urb_list)) {
  702. victim = list_entry(anchor->urb_list.prev, struct urb,
  703. anchor_list);
  704. usb_get_urb(victim);
  705. spin_unlock_irqrestore(&anchor->lock, flags);
  706. /* this will unanchor the URB */
  707. usb_unlink_urb(victim);
  708. usb_put_urb(victim);
  709. spin_lock_irqsave(&anchor->lock, flags);
  710. }
  711. spin_unlock_irqrestore(&anchor->lock, flags);
  712. }
  713. EXPORT_SYMBOL_GPL(usb_unlink_anchored_urbs);
  714. /**
  715. * usb_wait_anchor_empty_timeout - wait for an anchor to be unused
  716. * @anchor: the anchor you want to become unused
  717. * @timeout: how long you are willing to wait in milliseconds
  718. *
  719. * Call this is you want to be sure all an anchor's
  720. * URBs have finished
  721. */
  722. int usb_wait_anchor_empty_timeout(struct usb_anchor *anchor,
  723. unsigned int timeout)
  724. {
  725. return wait_event_timeout(anchor->wait, list_empty(&anchor->urb_list),
  726. msecs_to_jiffies(timeout));
  727. }
  728. EXPORT_SYMBOL_GPL(usb_wait_anchor_empty_timeout);
  729. /**
  730. * usb_get_from_anchor - get an anchor's oldest urb
  731. * @anchor: the anchor whose urb you want
  732. *
  733. * this will take the oldest urb from an anchor,
  734. * unanchor and return it
  735. */
  736. struct urb *usb_get_from_anchor(struct usb_anchor *anchor)
  737. {
  738. struct urb *victim;
  739. unsigned long flags;
  740. spin_lock_irqsave(&anchor->lock, flags);
  741. if (!list_empty(&anchor->urb_list)) {
  742. victim = list_entry(anchor->urb_list.next, struct urb,
  743. anchor_list);
  744. usb_get_urb(victim);
  745. spin_unlock_irqrestore(&anchor->lock, flags);
  746. usb_unanchor_urb(victim);
  747. } else {
  748. spin_unlock_irqrestore(&anchor->lock, flags);
  749. victim = NULL;
  750. }
  751. return victim;
  752. }
  753. EXPORT_SYMBOL_GPL(usb_get_from_anchor);
  754. /**
  755. * usb_scuttle_anchored_urbs - unanchor all an anchor's urbs
  756. * @anchor: the anchor whose urbs you want to unanchor
  757. *
  758. * use this to get rid of all an anchor's urbs
  759. */
  760. void usb_scuttle_anchored_urbs(struct usb_anchor *anchor)
  761. {
  762. struct urb *victim;
  763. unsigned long flags;
  764. spin_lock_irqsave(&anchor->lock, flags);
  765. while (!list_empty(&anchor->urb_list)) {
  766. victim = list_entry(anchor->urb_list.prev, struct urb,
  767. anchor_list);
  768. usb_get_urb(victim);
  769. spin_unlock_irqrestore(&anchor->lock, flags);
  770. /* this may free the URB */
  771. usb_unanchor_urb(victim);
  772. usb_put_urb(victim);
  773. spin_lock_irqsave(&anchor->lock, flags);
  774. }
  775. spin_unlock_irqrestore(&anchor->lock, flags);
  776. }
  777. EXPORT_SYMBOL_GPL(usb_scuttle_anchored_urbs);
  778. /**
  779. * usb_anchor_empty - is an anchor empty
  780. * @anchor: the anchor you want to query
  781. *
  782. * returns 1 if the anchor has no urbs associated with it
  783. */
  784. int usb_anchor_empty(struct usb_anchor *anchor)
  785. {
  786. return list_empty(&anchor->urb_list);
  787. }
  788. EXPORT_SYMBOL_GPL(usb_anchor_empty);