staging:iio:trigger handle name attr in core, remove old alloc and register any contr...
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / staging / usbip / stub_rx.c
blobe24560929a88ee9b3f4e0ce3bcd667fed44205aa
1 /*
2 * Copyright (C) 2003-2008 Takahiro Hirofuchi
4 * This is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
17 * USA.
20 #include <asm/byteorder.h>
21 #include <linux/kthread.h>
22 #include <linux/usb.h>
23 #include <linux/usb/hcd.h>
25 #include "usbip_common.h"
26 #include "stub.h"
28 static int is_clear_halt_cmd(struct urb *urb)
30 struct usb_ctrlrequest *req;
32 req = (struct usb_ctrlrequest *) urb->setup_packet;
34 return (req->bRequest == USB_REQ_CLEAR_FEATURE) &&
35 (req->bRequestType == USB_RECIP_ENDPOINT) &&
36 (req->wValue == USB_ENDPOINT_HALT);
39 static int is_set_interface_cmd(struct urb *urb)
41 struct usb_ctrlrequest *req;
43 req = (struct usb_ctrlrequest *) urb->setup_packet;
45 return (req->bRequest == USB_REQ_SET_INTERFACE) &&
46 (req->bRequestType == USB_RECIP_INTERFACE);
49 static int is_set_configuration_cmd(struct urb *urb)
51 struct usb_ctrlrequest *req;
53 req = (struct usb_ctrlrequest *) urb->setup_packet;
55 return (req->bRequest == USB_REQ_SET_CONFIGURATION) &&
56 (req->bRequestType == USB_RECIP_DEVICE);
59 static int is_reset_device_cmd(struct urb *urb)
61 struct usb_ctrlrequest *req;
62 __u16 value;
63 __u16 index;
65 req = (struct usb_ctrlrequest *) urb->setup_packet;
66 value = le16_to_cpu(req->wValue);
67 index = le16_to_cpu(req->wIndex);
69 if ((req->bRequest == USB_REQ_SET_FEATURE) &&
70 (req->bRequestType == USB_RT_PORT) &&
71 (value == USB_PORT_FEAT_RESET)) {
72 usbip_dbg_stub_rx("reset_device_cmd, port %u\n", index);
73 return 1;
74 } else
75 return 0;
78 static int tweak_clear_halt_cmd(struct urb *urb)
80 struct usb_ctrlrequest *req;
81 int target_endp;
82 int target_dir;
83 int target_pipe;
84 int ret;
86 req = (struct usb_ctrlrequest *) urb->setup_packet;
89 * The stalled endpoint is specified in the wIndex value. The endpoint
90 * of the urb is the target of this clear_halt request (i.e., control
91 * endpoint).
93 target_endp = le16_to_cpu(req->wIndex) & 0x000f;
95 /* the stalled endpoint direction is IN or OUT?. USB_DIR_IN is 0x80. */
96 target_dir = le16_to_cpu(req->wIndex) & 0x0080;
98 if (target_dir)
99 target_pipe = usb_rcvctrlpipe(urb->dev, target_endp);
100 else
101 target_pipe = usb_sndctrlpipe(urb->dev, target_endp);
103 ret = usb_clear_halt(urb->dev, target_pipe);
104 if (ret < 0)
105 usbip_uinfo("clear_halt error: devnum %d endp %d, %d\n",
106 urb->dev->devnum, target_endp, ret);
107 else
108 usbip_uinfo("clear_halt done: devnum %d endp %d\n",
109 urb->dev->devnum, target_endp);
111 return ret;
114 static int tweak_set_interface_cmd(struct urb *urb)
116 struct usb_ctrlrequest *req;
117 __u16 alternate;
118 __u16 interface;
119 int ret;
121 req = (struct usb_ctrlrequest *) urb->setup_packet;
122 alternate = le16_to_cpu(req->wValue);
123 interface = le16_to_cpu(req->wIndex);
125 usbip_dbg_stub_rx("set_interface: inf %u alt %u\n",
126 interface, alternate);
128 ret = usb_set_interface(urb->dev, interface, alternate);
129 if (ret < 0)
130 usbip_uinfo("set_interface error: inf %u alt %u, %d\n",
131 interface, alternate, ret);
132 else
133 usbip_uinfo("set_interface done: inf %u alt %u\n",
134 interface, alternate);
136 return ret;
139 static int tweak_set_configuration_cmd(struct urb *urb)
141 struct usb_ctrlrequest *req;
142 __u16 config;
144 req = (struct usb_ctrlrequest *) urb->setup_packet;
145 config = le16_to_cpu(req->wValue);
148 * I have never seen a multi-config device. Very rare.
149 * For most devices, this will be called to choose a default
150 * configuration only once in an initialization phase.
152 * set_configuration may change a device configuration and its device
153 * drivers will be unbound and assigned for a new device configuration.
154 * This means this usbip driver will be also unbound when called, then
155 * eventually reassigned to the device as far as driver matching
156 * condition is kept.
158 * Unfortunatelly, an existing usbip connection will be dropped
159 * due to this driver unbinding. So, skip here.
160 * A user may need to set a special configuration value before
161 * exporting the device.
163 usbip_uinfo("set_configuration %d to %s\n",
164 config, dev_name(&urb->dev->dev));
165 usbip_uinfo("but, skip!\n");
167 return 0;
168 /* return usb_driver_set_configuration(urb->dev, config); */
171 static int tweak_reset_device_cmd(struct urb *urb)
173 struct stub_priv *priv = (struct stub_priv *) urb->context;
174 struct stub_device *sdev = priv->sdev;
176 usbip_uinfo("reset_device %s\n", dev_name(&urb->dev->dev));
179 * usb_lock_device_for_reset caused a deadlock: it causes the driver
180 * to unbind. In the shutdown the rx thread is signalled to shut down
181 * but this thread is pending in the usb_lock_device_for_reset.
183 * Instead queue the reset.
185 * Unfortunatly an existing usbip connection will be dropped due to
186 * driver unbinding.
188 usb_queue_reset_device(sdev->interface);
189 return 0;
193 * clear_halt, set_interface, and set_configuration require special tricks.
195 static void tweak_special_requests(struct urb *urb)
197 if (!urb || !urb->setup_packet)
198 return;
200 if (usb_pipetype(urb->pipe) != PIPE_CONTROL)
201 return;
203 if (is_clear_halt_cmd(urb))
204 /* tweak clear_halt */
205 tweak_clear_halt_cmd(urb);
207 else if (is_set_interface_cmd(urb))
208 /* tweak set_interface */
209 tweak_set_interface_cmd(urb);
211 else if (is_set_configuration_cmd(urb))
212 /* tweak set_configuration */
213 tweak_set_configuration_cmd(urb);
215 else if (is_reset_device_cmd(urb))
216 tweak_reset_device_cmd(urb);
217 else
218 usbip_dbg_stub_rx("no need to tweak\n");
222 * stub_recv_unlink() unlinks the URB by a call to usb_unlink_urb().
223 * By unlinking the urb asynchronously, stub_rx can continuously
224 * process coming urbs. Even if the urb is unlinked, its completion
225 * handler will be called and stub_tx will send a return pdu.
227 * See also comments about unlinking strategy in vhci_hcd.c.
229 static int stub_recv_cmd_unlink(struct stub_device *sdev,
230 struct usbip_header *pdu)
232 unsigned long flags;
234 struct stub_priv *priv;
236 spin_lock_irqsave(&sdev->priv_lock, flags);
238 list_for_each_entry(priv, &sdev->priv_init, list) {
239 if (priv->seqnum == pdu->u.cmd_unlink.seqnum) {
240 int ret;
242 dev_info(&priv->urb->dev->dev, "unlink urb %p\n",
243 priv->urb);
246 * This matched urb is not completed yet (i.e., be in
247 * flight in usb hcd hardware/driver). Now we are
248 * cancelling it. The unlinking flag means that we are
249 * now not going to return the normal result pdu of a
250 * submission request, but going to return a result pdu
251 * of the unlink request.
253 priv->unlinking = 1;
256 * In the case that unlinking flag is on, prev->seqnum
257 * is changed from the seqnum of the cancelling urb to
258 * the seqnum of the unlink request. This will be used
259 * to make the result pdu of the unlink request.
261 priv->seqnum = pdu->base.seqnum;
263 spin_unlock_irqrestore(&sdev->priv_lock, flags);
266 * usb_unlink_urb() is now out of spinlocking to avoid
267 * spinlock recursion since stub_complete() is
268 * sometimes called in this context but not in the
269 * interrupt context. If stub_complete() is executed
270 * before we call usb_unlink_urb(), usb_unlink_urb()
271 * will return an error value. In this case, stub_tx
272 * will return the result pdu of this unlink request
273 * though submission is completed and actual unlinking
274 * is not executed. OK?
276 /* In the above case, urb->status is not -ECONNRESET,
277 * so a driver in a client host will know the failure
278 * of the unlink request ?
280 ret = usb_unlink_urb(priv->urb);
281 if (ret != -EINPROGRESS)
282 dev_err(&priv->urb->dev->dev,
283 "failed to unlink a urb %p, ret %d\n",
284 priv->urb, ret);
285 return 0;
289 usbip_dbg_stub_rx("seqnum %d is not pending\n",
290 pdu->u.cmd_unlink.seqnum);
293 * The urb of the unlink target is not found in priv_init queue. It was
294 * already completed and its results is/was going to be sent by a
295 * CMD_RET pdu. In this case, usb_unlink_urb() is not needed. We only
296 * return the completeness of this unlink request to vhci_hcd.
298 stub_enqueue_ret_unlink(sdev, pdu->base.seqnum, 0);
300 spin_unlock_irqrestore(&sdev->priv_lock, flags);
302 return 0;
305 static int valid_request(struct stub_device *sdev, struct usbip_header *pdu)
307 struct usbip_device *ud = &sdev->ud;
309 if (pdu->base.devid == sdev->devid) {
310 spin_lock(&ud->lock);
311 if (ud->status == SDEV_ST_USED) {
312 /* A request is valid. */
313 spin_unlock(&ud->lock);
314 return 1;
316 spin_unlock(&ud->lock);
319 return 0;
322 static struct stub_priv *stub_priv_alloc(struct stub_device *sdev,
323 struct usbip_header *pdu)
325 struct stub_priv *priv;
326 struct usbip_device *ud = &sdev->ud;
327 unsigned long flags;
329 spin_lock_irqsave(&sdev->priv_lock, flags);
331 priv = kmem_cache_zalloc(stub_priv_cache, GFP_ATOMIC);
332 if (!priv) {
333 dev_err(&sdev->interface->dev, "alloc stub_priv\n");
334 spin_unlock_irqrestore(&sdev->priv_lock, flags);
335 usbip_event_add(ud, SDEV_EVENT_ERROR_MALLOC);
336 return NULL;
339 priv->seqnum = pdu->base.seqnum;
340 priv->sdev = sdev;
343 * After a stub_priv is linked to a list_head,
344 * our error handler can free allocated data.
346 list_add_tail(&priv->list, &sdev->priv_init);
348 spin_unlock_irqrestore(&sdev->priv_lock, flags);
350 return priv;
353 static int get_pipe(struct stub_device *sdev, int epnum, int dir)
355 struct usb_device *udev = sdev->udev;
356 struct usb_host_endpoint *ep;
357 struct usb_endpoint_descriptor *epd = NULL;
359 if (dir == USBIP_DIR_IN)
360 ep = udev->ep_in[epnum & 0x7f];
361 else
362 ep = udev->ep_out[epnum & 0x7f];
363 if (!ep) {
364 dev_err(&sdev->interface->dev, "no such endpoint?, %d\n",
365 epnum);
366 BUG();
369 epd = &ep->desc;
370 #if 0
371 /* epnum 0 is always control */
372 if (epnum == 0) {
373 if (dir == USBIP_DIR_OUT)
374 return usb_sndctrlpipe(udev, 0);
375 else
376 return usb_rcvctrlpipe(udev, 0);
378 #endif
379 if (usb_endpoint_xfer_control(epd)) {
380 if (dir == USBIP_DIR_OUT)
381 return usb_sndctrlpipe(udev, epnum);
382 else
383 return usb_rcvctrlpipe(udev, epnum);
386 if (usb_endpoint_xfer_bulk(epd)) {
387 if (dir == USBIP_DIR_OUT)
388 return usb_sndbulkpipe(udev, epnum);
389 else
390 return usb_rcvbulkpipe(udev, epnum);
393 if (usb_endpoint_xfer_int(epd)) {
394 if (dir == USBIP_DIR_OUT)
395 return usb_sndintpipe(udev, epnum);
396 else
397 return usb_rcvintpipe(udev, epnum);
400 if (usb_endpoint_xfer_isoc(epd)) {
401 if (dir == USBIP_DIR_OUT)
402 return usb_sndisocpipe(udev, epnum);
403 else
404 return usb_rcvisocpipe(udev, epnum);
407 /* NOT REACHED */
408 dev_err(&sdev->interface->dev, "get pipe, epnum %d\n", epnum);
409 return 0;
412 static void masking_bogus_flags(struct urb *urb)
414 int xfertype;
415 struct usb_device *dev;
416 struct usb_host_endpoint *ep;
417 int is_out;
418 unsigned int allowed;
420 if (!urb || urb->hcpriv || !urb->complete)
421 return;
422 dev = urb->dev;
423 if ((!dev) || (dev->state < USB_STATE_UNAUTHENTICATED))
424 return;
426 ep = (usb_pipein(urb->pipe) ? dev->ep_in : dev->ep_out)
427 [usb_pipeendpoint(urb->pipe)];
428 if (!ep)
429 return;
431 xfertype = usb_endpoint_type(&ep->desc);
432 if (xfertype == USB_ENDPOINT_XFER_CONTROL) {
433 struct usb_ctrlrequest *setup =
434 (struct usb_ctrlrequest *) urb->setup_packet;
436 if (!setup)
437 return;
438 is_out = !(setup->bRequestType & USB_DIR_IN) ||
439 !setup->wLength;
440 } else {
441 is_out = usb_endpoint_dir_out(&ep->desc);
444 /* enforce simple/standard policy */
445 allowed = (URB_NO_TRANSFER_DMA_MAP | URB_NO_INTERRUPT |
446 URB_DIR_MASK | URB_FREE_BUFFER);
447 switch (xfertype) {
448 case USB_ENDPOINT_XFER_BULK:
449 if (is_out)
450 allowed |= URB_ZERO_PACKET;
451 /* FALLTHROUGH */
452 case USB_ENDPOINT_XFER_CONTROL:
453 allowed |= URB_NO_FSBR; /* only affects UHCI */
454 /* FALLTHROUGH */
455 default: /* all non-iso endpoints */
456 if (!is_out)
457 allowed |= URB_SHORT_NOT_OK;
458 break;
459 case USB_ENDPOINT_XFER_ISOC:
460 allowed |= URB_ISO_ASAP;
461 break;
463 urb->transfer_flags &= allowed;
466 static void stub_recv_cmd_submit(struct stub_device *sdev,
467 struct usbip_header *pdu)
469 int ret;
470 struct stub_priv *priv;
471 struct usbip_device *ud = &sdev->ud;
472 struct usb_device *udev = sdev->udev;
473 int pipe = get_pipe(sdev, pdu->base.ep, pdu->base.direction);
475 priv = stub_priv_alloc(sdev, pdu);
476 if (!priv)
477 return;
479 /* setup a urb */
480 if (usb_pipeisoc(pipe))
481 priv->urb = usb_alloc_urb(pdu->u.cmd_submit.number_of_packets,
482 GFP_KERNEL);
483 else
484 priv->urb = usb_alloc_urb(0, GFP_KERNEL);
486 if (!priv->urb) {
487 dev_err(&sdev->interface->dev, "malloc urb\n");
488 usbip_event_add(ud, SDEV_EVENT_ERROR_MALLOC);
489 return;
492 /* set priv->urb->transfer_buffer */
493 if (pdu->u.cmd_submit.transfer_buffer_length > 0) {
494 priv->urb->transfer_buffer =
495 kzalloc(pdu->u.cmd_submit.transfer_buffer_length,
496 GFP_KERNEL);
497 if (!priv->urb->transfer_buffer) {
498 dev_err(&sdev->interface->dev, "malloc x_buff\n");
499 usbip_event_add(ud, SDEV_EVENT_ERROR_MALLOC);
500 return;
504 /* set priv->urb->setup_packet */
505 priv->urb->setup_packet = kmemdup(&pdu->u.cmd_submit.setup, 8,
506 GFP_KERNEL);
507 if (!priv->urb->setup_packet) {
508 dev_err(&sdev->interface->dev, "allocate setup_packet\n");
509 usbip_event_add(ud, SDEV_EVENT_ERROR_MALLOC);
510 return;
513 /* set other members from the base header of pdu */
514 priv->urb->context = (void *) priv;
515 priv->urb->dev = udev;
516 priv->urb->pipe = pipe;
517 priv->urb->complete = stub_complete;
519 usbip_pack_pdu(pdu, priv->urb, USBIP_CMD_SUBMIT, 0);
522 if (usbip_recv_xbuff(ud, priv->urb) < 0)
523 return;
525 if (usbip_recv_iso(ud, priv->urb) < 0)
526 return;
528 /* no need to submit an intercepted request, but harmless? */
529 tweak_special_requests(priv->urb);
531 masking_bogus_flags(priv->urb);
532 /* urb is now ready to submit */
533 ret = usb_submit_urb(priv->urb, GFP_KERNEL);
535 if (ret == 0)
536 usbip_dbg_stub_rx("submit urb ok, seqnum %u\n",
537 pdu->base.seqnum);
538 else {
539 dev_err(&sdev->interface->dev, "submit_urb error, %d\n", ret);
540 usbip_dump_header(pdu);
541 usbip_dump_urb(priv->urb);
544 * Pessimistic.
545 * This connection will be discarded.
547 usbip_event_add(ud, SDEV_EVENT_ERROR_SUBMIT);
550 usbip_dbg_stub_rx("Leave\n");
551 return;
554 /* recv a pdu */
555 static void stub_rx_pdu(struct usbip_device *ud)
557 int ret;
558 struct usbip_header pdu;
559 struct stub_device *sdev = container_of(ud, struct stub_device, ud);
560 struct device *dev = &sdev->interface->dev;
562 usbip_dbg_stub_rx("Enter\n");
564 memset(&pdu, 0, sizeof(pdu));
566 /* 1. receive a pdu header */
567 ret = usbip_xmit(0, ud->tcp_socket, (char *) &pdu, sizeof(pdu), 0);
568 if (ret != sizeof(pdu)) {
569 dev_err(dev, "recv a header, %d\n", ret);
570 usbip_event_add(ud, SDEV_EVENT_ERROR_TCP);
571 return;
574 usbip_header_correct_endian(&pdu, 0);
576 if (usbip_dbg_flag_stub_rx)
577 usbip_dump_header(&pdu);
579 if (!valid_request(sdev, &pdu)) {
580 dev_err(dev, "recv invalid request\n");
581 usbip_event_add(ud, SDEV_EVENT_ERROR_TCP);
582 return;
585 switch (pdu.base.command) {
586 case USBIP_CMD_UNLINK:
587 stub_recv_cmd_unlink(sdev, &pdu);
588 break;
590 case USBIP_CMD_SUBMIT:
591 stub_recv_cmd_submit(sdev, &pdu);
592 break;
594 default:
595 /* NOTREACHED */
596 dev_err(dev, "unknown pdu\n");
597 usbip_event_add(ud, SDEV_EVENT_ERROR_TCP);
598 break;
602 int stub_rx_loop(void *data)
604 struct usbip_device *ud = data;
606 while (!kthread_should_stop()) {
607 if (usbip_event_happened(ud))
608 break;
610 stub_rx_pdu(ud);
613 return 0;