1 /*****************************************************************************/
4 * devio.c -- User space communication with USB devices.
6 * Copyright (C) 1999-2000 Thomas Sailer (sailer@ife.ee.ethz.ch)
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 * This file implements the usbfs/x/y files, where
23 * x is the bus number and y the device number.
25 * It allows user space programs/"drivers" to communicate directly
26 * with USB devices without intervening kernel driver.
29 * 22.12.1999 0.1 Initial release (split from proc_usb.c)
30 * 04.01.2000 0.2 Turned into its own filesystem
31 * 30.09.2005 0.3 Fix user-triggerable oops in async URB delivery
35 /*****************************************************************************/
39 #include <linux/slab.h>
40 #include <linux/signal.h>
41 #include <linux/poll.h>
42 #include <linux/module.h>
43 #include <linux/usb.h>
44 #include <linux/usbdevice_fs.h>
45 #include <linux/usb/hcd.h> /* for usbcore internals */
46 #include <linux/cdev.h>
47 #include <linux/notifier.h>
48 #include <linux/security.h>
49 #include <asm/uaccess.h>
50 #include <asm/byteorder.h>
51 #include <linux/moduleparam.h>
56 #define USB_DEVICE_MAX USB_MAXBUS * 128
58 /* Mutual exclusion for removal, open, and release */
59 DEFINE_MUTEX(usbfs_mutex
);
62 struct list_head list
; /* state list */
63 struct usb_device
*dev
;
65 spinlock_t lock
; /* protects the async urb lists */
66 struct list_head async_pending
;
67 struct list_head async_completed
;
68 wait_queue_head_t wait
; /* wake up if a request completed */
69 unsigned int discsignr
;
71 uid_t disc_uid
, disc_euid
;
72 void __user
*disccontext
;
73 unsigned long ifclaimed
;
75 u32 disabled_bulk_eps
;
79 struct list_head asynclist
;
85 void __user
*userbuffer
;
94 static int usbfs_snoop
;
95 module_param(usbfs_snoop
, bool, S_IRUGO
| S_IWUSR
);
96 MODULE_PARM_DESC(usbfs_snoop
, "true to log all usbfs traffic");
98 #define snoop(dev, format, arg...) \
101 dev_info(dev , format , ## arg); \
108 #define USB_DEVICE_DEV MKDEV(USB_DEVICE_MAJOR, 0)
110 #define MAX_USBFS_BUFFER_SIZE 16384
113 static int connected(struct dev_state
*ps
)
115 return (!list_empty(&ps
->list
) &&
116 ps
->dev
->state
!= USB_STATE_NOTATTACHED
);
119 static loff_t
usbdev_lseek(struct file
*file
, loff_t offset
, int orig
)
123 mutex_lock(&file
->f_dentry
->d_inode
->i_mutex
);
127 file
->f_pos
= offset
;
131 file
->f_pos
+= offset
;
139 mutex_unlock(&file
->f_dentry
->d_inode
->i_mutex
);
143 static ssize_t
usbdev_read(struct file
*file
, char __user
*buf
, size_t nbytes
,
146 struct dev_state
*ps
= file
->private_data
;
147 struct usb_device
*dev
= ps
->dev
;
154 usb_lock_device(dev
);
155 if (!connected(ps
)) {
158 } else if (pos
< 0) {
163 if (pos
< sizeof(struct usb_device_descriptor
)) {
164 /* 18 bytes - fits on the stack */
165 struct usb_device_descriptor temp_desc
;
167 memcpy(&temp_desc
, &dev
->descriptor
, sizeof(dev
->descriptor
));
168 le16_to_cpus(&temp_desc
.bcdUSB
);
169 le16_to_cpus(&temp_desc
.idVendor
);
170 le16_to_cpus(&temp_desc
.idProduct
);
171 le16_to_cpus(&temp_desc
.bcdDevice
);
173 len
= sizeof(struct usb_device_descriptor
) - pos
;
176 if (copy_to_user(buf
, ((char *)&temp_desc
) + pos
, len
)) {
187 pos
= sizeof(struct usb_device_descriptor
);
188 for (i
= 0; nbytes
&& i
< dev
->descriptor
.bNumConfigurations
; i
++) {
189 struct usb_config_descriptor
*config
=
190 (struct usb_config_descriptor
*)dev
->rawdescriptors
[i
];
191 unsigned int length
= le16_to_cpu(config
->wTotalLength
);
193 if (*ppos
< pos
+ length
) {
195 /* The descriptor may claim to be longer than it
196 * really is. Here is the actual allocated length. */
198 le16_to_cpu(dev
->config
[i
].desc
.wTotalLength
);
200 len
= length
- (*ppos
- pos
);
204 /* Simply don't write (skip over) unallocated parts */
205 if (alloclen
> (*ppos
- pos
)) {
206 alloclen
-= (*ppos
- pos
);
207 if (copy_to_user(buf
,
208 dev
->rawdescriptors
[i
] + (*ppos
- pos
),
209 min(len
, alloclen
))) {
225 usb_unlock_device(dev
);
230 * async list handling
233 static struct async
*alloc_async(unsigned int numisoframes
)
237 as
= kzalloc(sizeof(struct async
), GFP_KERNEL
);
240 as
->urb
= usb_alloc_urb(numisoframes
, GFP_KERNEL
);
248 static void free_async(struct async
*as
)
251 kfree(as
->urb
->transfer_buffer
);
252 kfree(as
->urb
->setup_packet
);
253 usb_free_urb(as
->urb
);
257 static void async_newpending(struct async
*as
)
259 struct dev_state
*ps
= as
->ps
;
262 spin_lock_irqsave(&ps
->lock
, flags
);
263 list_add_tail(&as
->asynclist
, &ps
->async_pending
);
264 spin_unlock_irqrestore(&ps
->lock
, flags
);
267 static void async_removepending(struct async
*as
)
269 struct dev_state
*ps
= as
->ps
;
272 spin_lock_irqsave(&ps
->lock
, flags
);
273 list_del_init(&as
->asynclist
);
274 spin_unlock_irqrestore(&ps
->lock
, flags
);
277 static struct async
*async_getcompleted(struct dev_state
*ps
)
280 struct async
*as
= NULL
;
282 spin_lock_irqsave(&ps
->lock
, flags
);
283 if (!list_empty(&ps
->async_completed
)) {
284 as
= list_entry(ps
->async_completed
.next
, struct async
,
286 list_del_init(&as
->asynclist
);
288 spin_unlock_irqrestore(&ps
->lock
, flags
);
292 static struct async
*async_getpending(struct dev_state
*ps
,
293 void __user
*userurb
)
297 list_for_each_entry(as
, &ps
->async_pending
, asynclist
)
298 if (as
->userurb
== userurb
) {
299 list_del_init(&as
->asynclist
);
306 static void snoop_urb(struct usb_device
*udev
,
307 void __user
*userurb
, int pipe
, unsigned length
,
308 int timeout_or_status
, enum snoop_when when
,
309 unsigned char *data
, unsigned data_len
)
311 static const char *types
[] = {"isoc", "int", "ctrl", "bulk"};
312 static const char *dirs
[] = {"out", "in"};
319 ep
= usb_pipeendpoint(pipe
);
320 t
= types
[usb_pipetype(pipe
)];
321 d
= dirs
[!!usb_pipein(pipe
)];
323 if (userurb
) { /* Async */
325 dev_info(&udev
->dev
, "userurb %p, ep%d %s-%s, "
327 userurb
, ep
, t
, d
, length
);
329 dev_info(&udev
->dev
, "userurb %p, ep%d %s-%s, "
330 "actual_length %u status %d\n",
331 userurb
, ep
, t
, d
, length
,
335 dev_info(&udev
->dev
, "ep%d %s-%s, length %u, "
337 ep
, t
, d
, length
, timeout_or_status
);
339 dev_info(&udev
->dev
, "ep%d %s-%s, actual_length %u, "
341 ep
, t
, d
, length
, timeout_or_status
);
344 if (data
&& data_len
> 0) {
345 print_hex_dump(KERN_DEBUG
, "data: ", DUMP_PREFIX_NONE
, 32, 1,
350 #define AS_CONTINUATION 1
353 static void cancel_bulk_urbs(struct dev_state
*ps
, unsigned bulk_addr
)
360 /* Mark all the pending URBs that match bulk_addr, up to but not
361 * including the first one without AS_CONTINUATION. If such an
362 * URB is encountered then a new transfer has already started so
363 * the endpoint doesn't need to be disabled; otherwise it does.
365 list_for_each_entry(as
, &ps
->async_pending
, asynclist
) {
366 if (as
->bulk_addr
== bulk_addr
) {
367 if (as
->bulk_status
!= AS_CONTINUATION
)
369 as
->bulk_status
= AS_UNLINK
;
373 ps
->disabled_bulk_eps
|= (1 << bulk_addr
);
375 /* Now carefully unlink all the marked pending URBs */
377 list_for_each_entry(as
, &ps
->async_pending
, asynclist
) {
378 if (as
->bulk_status
== AS_UNLINK
) {
379 as
->bulk_status
= 0; /* Only once */
382 spin_unlock(&ps
->lock
); /* Allow completions */
385 spin_lock(&ps
->lock
);
391 static void async_completed(struct urb
*urb
)
393 struct async
*as
= urb
->context
;
394 struct dev_state
*ps
= as
->ps
;
395 struct siginfo sinfo
;
396 struct pid
*pid
= NULL
;
402 spin_lock(&ps
->lock
);
403 list_move_tail(&as
->asynclist
, &ps
->async_completed
);
404 as
->status
= urb
->status
;
407 sinfo
.si_signo
= as
->signr
;
408 sinfo
.si_errno
= as
->status
;
409 sinfo
.si_code
= SI_ASYNCIO
;
410 sinfo
.si_addr
= as
->userurb
;
411 pid
= get_pid(as
->pid
);
416 snoop(&urb
->dev
->dev
, "urb complete\n");
417 snoop_urb(urb
->dev
, as
->userurb
, urb
->pipe
, urb
->actual_length
,
418 as
->status
, COMPLETE
,
419 ((urb
->transfer_flags
& URB_DIR_MASK
) == USB_DIR_OUT
) ?
420 NULL
: urb
->transfer_buffer
, urb
->actual_length
);
421 if (as
->status
< 0 && as
->bulk_addr
&& as
->status
!= -ECONNRESET
&&
422 as
->status
!= -ENOENT
)
423 cancel_bulk_urbs(ps
, as
->bulk_addr
);
424 spin_unlock(&ps
->lock
);
427 kill_pid_info_as_uid(sinfo
.si_signo
, &sinfo
, pid
, uid
,
435 static void destroy_async(struct dev_state
*ps
, struct list_head
*list
)
441 spin_lock_irqsave(&ps
->lock
, flags
);
442 while (!list_empty(list
)) {
443 as
= list_entry(list
->next
, struct async
, asynclist
);
444 list_del_init(&as
->asynclist
);
448 /* drop the spinlock so the completion handler can run */
449 spin_unlock_irqrestore(&ps
->lock
, flags
);
452 spin_lock_irqsave(&ps
->lock
, flags
);
454 spin_unlock_irqrestore(&ps
->lock
, flags
);
457 static void destroy_async_on_interface(struct dev_state
*ps
,
460 struct list_head
*p
, *q
, hitlist
;
463 INIT_LIST_HEAD(&hitlist
);
464 spin_lock_irqsave(&ps
->lock
, flags
);
465 list_for_each_safe(p
, q
, &ps
->async_pending
)
466 if (ifnum
== list_entry(p
, struct async
, asynclist
)->ifnum
)
467 list_move_tail(p
, &hitlist
);
468 spin_unlock_irqrestore(&ps
->lock
, flags
);
469 destroy_async(ps
, &hitlist
);
472 static void destroy_all_async(struct dev_state
*ps
)
474 destroy_async(ps
, &ps
->async_pending
);
478 * interface claims are made only at the request of user level code,
479 * which can also release them (explicitly or by closing files).
480 * they're also undone when devices disconnect.
483 static int driver_probe(struct usb_interface
*intf
,
484 const struct usb_device_id
*id
)
489 static void driver_disconnect(struct usb_interface
*intf
)
491 struct dev_state
*ps
= usb_get_intfdata(intf
);
492 unsigned int ifnum
= intf
->altsetting
->desc
.bInterfaceNumber
;
497 /* NOTE: this relies on usbcore having canceled and completed
498 * all pending I/O requests; 2.6 does that.
501 if (likely(ifnum
< 8*sizeof(ps
->ifclaimed
)))
502 clear_bit(ifnum
, &ps
->ifclaimed
);
504 dev_warn(&intf
->dev
, "interface number %u out of range\n",
507 usb_set_intfdata(intf
, NULL
);
509 /* force async requests to complete */
510 destroy_async_on_interface(ps
, ifnum
);
513 /* The following routines are merely placeholders. There is no way
514 * to inform a user task about suspend or resumes.
516 static int driver_suspend(struct usb_interface
*intf
, pm_message_t msg
)
521 static int driver_resume(struct usb_interface
*intf
)
526 struct usb_driver usbfs_driver
= {
528 .probe
= driver_probe
,
529 .disconnect
= driver_disconnect
,
530 .suspend
= driver_suspend
,
531 .resume
= driver_resume
,
534 static int claimintf(struct dev_state
*ps
, unsigned int ifnum
)
536 struct usb_device
*dev
= ps
->dev
;
537 struct usb_interface
*intf
;
540 if (ifnum
>= 8*sizeof(ps
->ifclaimed
))
542 /* already claimed */
543 if (test_bit(ifnum
, &ps
->ifclaimed
))
546 intf
= usb_ifnum_to_if(dev
, ifnum
);
550 err
= usb_driver_claim_interface(&usbfs_driver
, intf
, ps
);
552 set_bit(ifnum
, &ps
->ifclaimed
);
556 static int releaseintf(struct dev_state
*ps
, unsigned int ifnum
)
558 struct usb_device
*dev
;
559 struct usb_interface
*intf
;
563 if (ifnum
>= 8*sizeof(ps
->ifclaimed
))
566 intf
= usb_ifnum_to_if(dev
, ifnum
);
569 else if (test_and_clear_bit(ifnum
, &ps
->ifclaimed
)) {
570 usb_driver_release_interface(&usbfs_driver
, intf
);
576 static int checkintf(struct dev_state
*ps
, unsigned int ifnum
)
578 if (ps
->dev
->state
!= USB_STATE_CONFIGURED
)
579 return -EHOSTUNREACH
;
580 if (ifnum
>= 8*sizeof(ps
->ifclaimed
))
582 if (test_bit(ifnum
, &ps
->ifclaimed
))
584 /* if not yet claimed, claim it for the driver */
585 dev_warn(&ps
->dev
->dev
, "usbfs: process %d (%s) did not claim "
586 "interface %u before use\n", task_pid_nr(current
),
587 current
->comm
, ifnum
);
588 return claimintf(ps
, ifnum
);
591 static int findintfep(struct usb_device
*dev
, unsigned int ep
)
593 unsigned int i
, j
, e
;
594 struct usb_interface
*intf
;
595 struct usb_host_interface
*alts
;
596 struct usb_endpoint_descriptor
*endpt
;
598 if (ep
& ~(USB_DIR_IN
|0xf))
602 for (i
= 0; i
< dev
->actconfig
->desc
.bNumInterfaces
; i
++) {
603 intf
= dev
->actconfig
->interface
[i
];
604 for (j
= 0; j
< intf
->num_altsetting
; j
++) {
605 alts
= &intf
->altsetting
[j
];
606 for (e
= 0; e
< alts
->desc
.bNumEndpoints
; e
++) {
607 endpt
= &alts
->endpoint
[e
].desc
;
608 if (endpt
->bEndpointAddress
== ep
)
609 return alts
->desc
.bInterfaceNumber
;
616 static int check_ctrlrecip(struct dev_state
*ps
, unsigned int requesttype
,
617 unsigned int request
, unsigned int index
)
620 struct usb_host_interface
*alt_setting
;
622 if (ps
->dev
->state
!= USB_STATE_UNAUTHENTICATED
623 && ps
->dev
->state
!= USB_STATE_ADDRESS
624 && ps
->dev
->state
!= USB_STATE_CONFIGURED
)
625 return -EHOSTUNREACH
;
626 if (USB_TYPE_VENDOR
== (USB_TYPE_MASK
& requesttype
))
630 * check for the special corner case 'get_device_id' in the printer
631 * class specification, where wIndex is (interface << 8 | altsetting)
632 * instead of just interface
634 if (requesttype
== 0xa1 && request
== 0) {
635 alt_setting
= usb_find_alt_setting(ps
->dev
->actconfig
,
636 index
>> 8, index
& 0xff);
638 && alt_setting
->desc
.bInterfaceClass
== USB_CLASS_PRINTER
)
643 switch (requesttype
& USB_RECIP_MASK
) {
644 case USB_RECIP_ENDPOINT
:
645 ret
= findintfep(ps
->dev
, index
);
647 ret
= checkintf(ps
, ret
);
650 case USB_RECIP_INTERFACE
:
651 ret
= checkintf(ps
, index
);
657 static int match_devt(struct device
*dev
, void *data
)
659 return dev
->devt
== (dev_t
) (unsigned long) data
;
662 static struct usb_device
*usbdev_lookup_by_devt(dev_t devt
)
666 dev
= bus_find_device(&usb_bus_type
, NULL
,
667 (void *) (unsigned long) devt
, match_devt
);
670 return container_of(dev
, struct usb_device
, dev
);
676 static int usbdev_open(struct inode
*inode
, struct file
*file
)
678 struct usb_device
*dev
= NULL
;
679 struct dev_state
*ps
;
680 const struct cred
*cred
= current_cred();
684 ps
= kmalloc(sizeof(struct dev_state
), GFP_KERNEL
);
690 /* Protect against simultaneous removal or release */
691 mutex_lock(&usbfs_mutex
);
693 /* usbdev device-node */
694 if (imajor(inode
) == USB_DEVICE_MAJOR
)
695 dev
= usbdev_lookup_by_devt(inode
->i_rdev
);
697 #ifdef CONFIG_USB_DEVICEFS
700 dev
= inode
->i_private
;
701 if (dev
&& dev
->usbfs_dentry
&&
702 dev
->usbfs_dentry
->d_inode
== inode
)
708 mutex_unlock(&usbfs_mutex
);
713 usb_lock_device(dev
);
714 if (dev
->state
== USB_STATE_NOTATTACHED
)
715 goto out_unlock_device
;
717 ret
= usb_autoresume_device(dev
);
719 goto out_unlock_device
;
723 spin_lock_init(&ps
->lock
);
724 INIT_LIST_HEAD(&ps
->list
);
725 INIT_LIST_HEAD(&ps
->async_pending
);
726 INIT_LIST_HEAD(&ps
->async_completed
);
727 init_waitqueue_head(&ps
->wait
);
729 ps
->disc_pid
= get_pid(task_pid(current
));
730 ps
->disc_uid
= cred
->uid
;
731 ps
->disc_euid
= cred
->euid
;
732 ps
->disccontext
= NULL
;
734 security_task_getsecid(current
, &ps
->secid
);
736 list_add_tail(&ps
->list
, &dev
->filelist
);
737 file
->private_data
= ps
;
738 usb_unlock_device(dev
);
739 snoop(&dev
->dev
, "opened by process %d: %s\n", task_pid_nr(current
),
744 usb_unlock_device(dev
);
751 static int usbdev_release(struct inode
*inode
, struct file
*file
)
753 struct dev_state
*ps
= file
->private_data
;
754 struct usb_device
*dev
= ps
->dev
;
758 usb_lock_device(dev
);
759 usb_hub_release_all_ports(dev
, ps
);
761 list_del_init(&ps
->list
);
763 for (ifnum
= 0; ps
->ifclaimed
&& ifnum
< 8*sizeof(ps
->ifclaimed
);
765 if (test_bit(ifnum
, &ps
->ifclaimed
))
766 releaseintf(ps
, ifnum
);
768 destroy_all_async(ps
);
769 usb_autosuspend_device(dev
);
770 usb_unlock_device(dev
);
772 put_pid(ps
->disc_pid
);
774 as
= async_getcompleted(ps
);
777 as
= async_getcompleted(ps
);
783 static int proc_control(struct dev_state
*ps
, void __user
*arg
)
785 struct usb_device
*dev
= ps
->dev
;
786 struct usbdevfs_ctrltransfer ctrl
;
792 if (copy_from_user(&ctrl
, arg
, sizeof(ctrl
)))
794 ret
= check_ctrlrecip(ps
, ctrl
.bRequestType
, ctrl
.bRequest
,
798 wLength
= ctrl
.wLength
; /* To suppress 64k PAGE_SIZE warning */
799 if (wLength
> PAGE_SIZE
)
801 tbuf
= (unsigned char *)__get_free_page(GFP_KERNEL
);
805 snoop(&dev
->dev
, "control urb: bRequestType=%02x "
806 "bRequest=%02x wValue=%04x "
807 "wIndex=%04x wLength=%04x\n",
808 ctrl
.bRequestType
, ctrl
.bRequest
,
809 __le16_to_cpup(&ctrl
.wValue
),
810 __le16_to_cpup(&ctrl
.wIndex
),
811 __le16_to_cpup(&ctrl
.wLength
));
812 if (ctrl
.bRequestType
& 0x80) {
813 if (ctrl
.wLength
&& !access_ok(VERIFY_WRITE
, ctrl
.data
,
815 free_page((unsigned long)tbuf
);
818 pipe
= usb_rcvctrlpipe(dev
, 0);
819 snoop_urb(dev
, NULL
, pipe
, ctrl
.wLength
, tmo
, SUBMIT
, NULL
, 0);
821 usb_unlock_device(dev
);
822 i
= usb_control_msg(dev
, pipe
, ctrl
.bRequest
,
823 ctrl
.bRequestType
, ctrl
.wValue
, ctrl
.wIndex
,
824 tbuf
, ctrl
.wLength
, tmo
);
825 usb_lock_device(dev
);
826 snoop_urb(dev
, NULL
, pipe
, max(i
, 0), min(i
, 0), COMPLETE
,
828 if ((i
> 0) && ctrl
.wLength
) {
829 if (copy_to_user(ctrl
.data
, tbuf
, i
)) {
830 free_page((unsigned long)tbuf
);
836 if (copy_from_user(tbuf
, ctrl
.data
, ctrl
.wLength
)) {
837 free_page((unsigned long)tbuf
);
841 pipe
= usb_sndctrlpipe(dev
, 0);
842 snoop_urb(dev
, NULL
, pipe
, ctrl
.wLength
, tmo
, SUBMIT
,
845 usb_unlock_device(dev
);
846 i
= usb_control_msg(dev
, usb_sndctrlpipe(dev
, 0), ctrl
.bRequest
,
847 ctrl
.bRequestType
, ctrl
.wValue
, ctrl
.wIndex
,
848 tbuf
, ctrl
.wLength
, tmo
);
849 usb_lock_device(dev
);
850 snoop_urb(dev
, NULL
, pipe
, max(i
, 0), min(i
, 0), COMPLETE
, NULL
, 0);
852 free_page((unsigned long)tbuf
);
853 if (i
< 0 && i
!= -EPIPE
) {
854 dev_printk(KERN_DEBUG
, &dev
->dev
, "usbfs: USBDEVFS_CONTROL "
855 "failed cmd %s rqt %u rq %u len %u ret %d\n",
856 current
->comm
, ctrl
.bRequestType
, ctrl
.bRequest
,
862 static int proc_bulk(struct dev_state
*ps
, void __user
*arg
)
864 struct usb_device
*dev
= ps
->dev
;
865 struct usbdevfs_bulktransfer bulk
;
866 unsigned int tmo
, len1
, pipe
;
871 if (copy_from_user(&bulk
, arg
, sizeof(bulk
)))
873 ret
= findintfep(ps
->dev
, bulk
.ep
);
876 ret
= checkintf(ps
, ret
);
879 if (bulk
.ep
& USB_DIR_IN
)
880 pipe
= usb_rcvbulkpipe(dev
, bulk
.ep
& 0x7f);
882 pipe
= usb_sndbulkpipe(dev
, bulk
.ep
& 0x7f);
883 if (!usb_maxpacket(dev
, pipe
, !(bulk
.ep
& USB_DIR_IN
)))
886 if (len1
> MAX_USBFS_BUFFER_SIZE
)
888 if (!(tbuf
= kmalloc(len1
, GFP_KERNEL
)))
891 if (bulk
.ep
& 0x80) {
892 if (len1
&& !access_ok(VERIFY_WRITE
, bulk
.data
, len1
)) {
896 snoop_urb(dev
, NULL
, pipe
, len1
, tmo
, SUBMIT
, NULL
, 0);
898 usb_unlock_device(dev
);
899 i
= usb_bulk_msg(dev
, pipe
, tbuf
, len1
, &len2
, tmo
);
900 usb_lock_device(dev
);
901 snoop_urb(dev
, NULL
, pipe
, len2
, i
, COMPLETE
, tbuf
, len2
);
904 if (copy_to_user(bulk
.data
, tbuf
, len2
)) {
911 if (copy_from_user(tbuf
, bulk
.data
, len1
)) {
916 snoop_urb(dev
, NULL
, pipe
, len1
, tmo
, SUBMIT
, tbuf
, len1
);
918 usb_unlock_device(dev
);
919 i
= usb_bulk_msg(dev
, pipe
, tbuf
, len1
, &len2
, tmo
);
920 usb_lock_device(dev
);
921 snoop_urb(dev
, NULL
, pipe
, len2
, i
, COMPLETE
, NULL
, 0);
929 static int proc_resetep(struct dev_state
*ps
, void __user
*arg
)
934 if (get_user(ep
, (unsigned int __user
*)arg
))
936 ret
= findintfep(ps
->dev
, ep
);
939 ret
= checkintf(ps
, ret
);
942 usb_reset_endpoint(ps
->dev
, ep
);
946 static int proc_clearhalt(struct dev_state
*ps
, void __user
*arg
)
952 if (get_user(ep
, (unsigned int __user
*)arg
))
954 ret
= findintfep(ps
->dev
, ep
);
957 ret
= checkintf(ps
, ret
);
961 pipe
= usb_rcvbulkpipe(ps
->dev
, ep
& 0x7f);
963 pipe
= usb_sndbulkpipe(ps
->dev
, ep
& 0x7f);
965 return usb_clear_halt(ps
->dev
, pipe
);
968 static int proc_getdriver(struct dev_state
*ps
, void __user
*arg
)
970 struct usbdevfs_getdriver gd
;
971 struct usb_interface
*intf
;
974 if (copy_from_user(&gd
, arg
, sizeof(gd
)))
976 intf
= usb_ifnum_to_if(ps
->dev
, gd
.interface
);
977 if (!intf
|| !intf
->dev
.driver
)
980 strncpy(gd
.driver
, intf
->dev
.driver
->name
,
982 ret
= (copy_to_user(arg
, &gd
, sizeof(gd
)) ? -EFAULT
: 0);
987 static int proc_connectinfo(struct dev_state
*ps
, void __user
*arg
)
989 struct usbdevfs_connectinfo ci
= {
990 .devnum
= ps
->dev
->devnum
,
991 .slow
= ps
->dev
->speed
== USB_SPEED_LOW
994 if (copy_to_user(arg
, &ci
, sizeof(ci
)))
999 static int proc_resetdevice(struct dev_state
*ps
)
1001 return usb_reset_device(ps
->dev
);
1004 static int proc_setintf(struct dev_state
*ps
, void __user
*arg
)
1006 struct usbdevfs_setinterface setintf
;
1009 if (copy_from_user(&setintf
, arg
, sizeof(setintf
)))
1011 if ((ret
= checkintf(ps
, setintf
.interface
)))
1013 return usb_set_interface(ps
->dev
, setintf
.interface
,
1014 setintf
.altsetting
);
1017 static int proc_setconfig(struct dev_state
*ps
, void __user
*arg
)
1021 struct usb_host_config
*actconfig
;
1023 if (get_user(u
, (int __user
*)arg
))
1026 actconfig
= ps
->dev
->actconfig
;
1028 /* Don't touch the device if any interfaces are claimed.
1029 * It could interfere with other drivers' operations, and if
1030 * an interface is claimed by usbfs it could easily deadlock.
1035 for (i
= 0; i
< actconfig
->desc
.bNumInterfaces
; ++i
) {
1036 if (usb_interface_claimed(actconfig
->interface
[i
])) {
1037 dev_warn(&ps
->dev
->dev
,
1038 "usbfs: interface %d claimed by %s "
1039 "while '%s' sets config #%d\n",
1040 actconfig
->interface
[i
]
1042 ->desc
.bInterfaceNumber
,
1043 actconfig
->interface
[i
]
1052 /* SET_CONFIGURATION is often abused as a "cheap" driver reset,
1053 * so avoid usb_set_configuration()'s kick to sysfs
1056 if (actconfig
&& actconfig
->desc
.bConfigurationValue
== u
)
1057 status
= usb_reset_configuration(ps
->dev
);
1059 status
= usb_set_configuration(ps
->dev
, u
);
1065 static int proc_do_submiturb(struct dev_state
*ps
, struct usbdevfs_urb
*uurb
,
1066 struct usbdevfs_iso_packet_desc __user
*iso_frame_desc
,
1069 struct usbdevfs_iso_packet_desc
*isopkt
= NULL
;
1070 struct usb_host_endpoint
*ep
;
1072 struct usb_ctrlrequest
*dr
= NULL
;
1073 const struct cred
*cred
= current_cred();
1074 unsigned int u
, totlen
, isofrmlen
;
1075 int ret
, ifnum
= -1;
1078 if (uurb
->flags
& ~(USBDEVFS_URB_ISO_ASAP
|
1079 USBDEVFS_URB_SHORT_NOT_OK
|
1080 USBDEVFS_URB_BULK_CONTINUATION
|
1081 USBDEVFS_URB_NO_FSBR
|
1082 USBDEVFS_URB_ZERO_PACKET
|
1083 USBDEVFS_URB_NO_INTERRUPT
))
1085 if (uurb
->buffer_length
> 0 && !uurb
->buffer
)
1087 if (!(uurb
->type
== USBDEVFS_URB_TYPE_CONTROL
&&
1088 (uurb
->endpoint
& ~USB_ENDPOINT_DIR_MASK
) == 0)) {
1089 ifnum
= findintfep(ps
->dev
, uurb
->endpoint
);
1092 ret
= checkintf(ps
, ifnum
);
1096 if ((uurb
->endpoint
& USB_ENDPOINT_DIR_MASK
) != 0) {
1098 ep
= ps
->dev
->ep_in
[uurb
->endpoint
& USB_ENDPOINT_NUMBER_MASK
];
1101 ep
= ps
->dev
->ep_out
[uurb
->endpoint
& USB_ENDPOINT_NUMBER_MASK
];
1105 switch(uurb
->type
) {
1106 case USBDEVFS_URB_TYPE_CONTROL
:
1107 if (!usb_endpoint_xfer_control(&ep
->desc
))
1109 /* min 8 byte setup packet,
1110 * max 8 byte setup plus an arbitrary data stage */
1111 if (uurb
->buffer_length
< 8 ||
1112 uurb
->buffer_length
> (8 + MAX_USBFS_BUFFER_SIZE
))
1114 dr
= kmalloc(sizeof(struct usb_ctrlrequest
), GFP_KERNEL
);
1117 if (copy_from_user(dr
, uurb
->buffer
, 8)) {
1121 if (uurb
->buffer_length
< (le16_to_cpup(&dr
->wLength
) + 8)) {
1125 ret
= check_ctrlrecip(ps
, dr
->bRequestType
, dr
->bRequest
,
1126 le16_to_cpup(&dr
->wIndex
));
1131 uurb
->number_of_packets
= 0;
1132 uurb
->buffer_length
= le16_to_cpup(&dr
->wLength
);
1134 if ((dr
->bRequestType
& USB_DIR_IN
) && uurb
->buffer_length
) {
1136 uurb
->endpoint
|= USB_DIR_IN
;
1139 uurb
->endpoint
&= ~USB_DIR_IN
;
1141 snoop(&ps
->dev
->dev
, "control urb: bRequestType=%02x "
1142 "bRequest=%02x wValue=%04x "
1143 "wIndex=%04x wLength=%04x\n",
1144 dr
->bRequestType
, dr
->bRequest
,
1145 __le16_to_cpup(&dr
->wValue
),
1146 __le16_to_cpup(&dr
->wIndex
),
1147 __le16_to_cpup(&dr
->wLength
));
1150 case USBDEVFS_URB_TYPE_BULK
:
1151 switch (usb_endpoint_type(&ep
->desc
)) {
1152 case USB_ENDPOINT_XFER_CONTROL
:
1153 case USB_ENDPOINT_XFER_ISOC
:
1155 case USB_ENDPOINT_XFER_INT
:
1156 /* allow single-shot interrupt transfers */
1157 uurb
->type
= USBDEVFS_URB_TYPE_INTERRUPT
;
1160 uurb
->number_of_packets
= 0;
1161 if (uurb
->buffer_length
> MAX_USBFS_BUFFER_SIZE
)
1165 case USBDEVFS_URB_TYPE_INTERRUPT
:
1166 if (!usb_endpoint_xfer_int(&ep
->desc
))
1169 uurb
->number_of_packets
= 0;
1170 if (uurb
->buffer_length
> MAX_USBFS_BUFFER_SIZE
)
1174 case USBDEVFS_URB_TYPE_ISO
:
1175 /* arbitrary limit */
1176 if (uurb
->number_of_packets
< 1 ||
1177 uurb
->number_of_packets
> 128)
1179 if (!usb_endpoint_xfer_isoc(&ep
->desc
))
1181 isofrmlen
= sizeof(struct usbdevfs_iso_packet_desc
) *
1182 uurb
->number_of_packets
;
1183 if (!(isopkt
= kmalloc(isofrmlen
, GFP_KERNEL
)))
1185 if (copy_from_user(isopkt
, iso_frame_desc
, isofrmlen
)) {
1189 for (totlen
= u
= 0; u
< uurb
->number_of_packets
; u
++) {
1191 * sufficient for USB 2.0 high-bandwidth iso */
1192 if (isopkt
[u
].length
> 8192) {
1196 totlen
+= isopkt
[u
].length
;
1198 /* 3072 * 64 microframes */
1199 if (totlen
> 196608) {
1203 uurb
->buffer_length
= totlen
;
1209 if (uurb
->buffer_length
> 0 &&
1210 !access_ok(is_in
? VERIFY_WRITE
: VERIFY_READ
,
1211 uurb
->buffer
, uurb
->buffer_length
)) {
1216 as
= alloc_async(uurb
->number_of_packets
);
1222 if (uurb
->buffer_length
> 0) {
1223 as
->urb
->transfer_buffer
= kmalloc(uurb
->buffer_length
,
1225 if (!as
->urb
->transfer_buffer
) {
1231 /* Isochronous input data may end up being discontiguous
1232 * if some of the packets are short. Clear the buffer so
1233 * that the gaps don't leak kernel data to userspace.
1235 if (is_in
&& uurb
->type
== USBDEVFS_URB_TYPE_ISO
)
1236 memset(as
->urb
->transfer_buffer
, 0,
1237 uurb
->buffer_length
);
1239 as
->urb
->dev
= ps
->dev
;
1240 as
->urb
->pipe
= (uurb
->type
<< 30) |
1241 __create_pipe(ps
->dev
, uurb
->endpoint
& 0xf) |
1242 (uurb
->endpoint
& USB_DIR_IN
);
1244 /* This tedious sequence is necessary because the URB_* flags
1245 * are internal to the kernel and subject to change, whereas
1246 * the USBDEVFS_URB_* flags are a user API and must not be changed.
1248 u
= (is_in
? URB_DIR_IN
: URB_DIR_OUT
);
1249 if (uurb
->flags
& USBDEVFS_URB_ISO_ASAP
)
1251 if (uurb
->flags
& USBDEVFS_URB_SHORT_NOT_OK
)
1252 u
|= URB_SHORT_NOT_OK
;
1253 if (uurb
->flags
& USBDEVFS_URB_NO_FSBR
)
1255 if (uurb
->flags
& USBDEVFS_URB_ZERO_PACKET
)
1256 u
|= URB_ZERO_PACKET
;
1257 if (uurb
->flags
& USBDEVFS_URB_NO_INTERRUPT
)
1258 u
|= URB_NO_INTERRUPT
;
1259 as
->urb
->transfer_flags
= u
;
1261 as
->urb
->transfer_buffer_length
= uurb
->buffer_length
;
1262 as
->urb
->setup_packet
= (unsigned char *)dr
;
1263 as
->urb
->start_frame
= uurb
->start_frame
;
1264 as
->urb
->number_of_packets
= uurb
->number_of_packets
;
1265 if (uurb
->type
== USBDEVFS_URB_TYPE_ISO
||
1266 ps
->dev
->speed
== USB_SPEED_HIGH
)
1267 as
->urb
->interval
= 1 << min(15, ep
->desc
.bInterval
- 1);
1269 as
->urb
->interval
= ep
->desc
.bInterval
;
1270 as
->urb
->context
= as
;
1271 as
->urb
->complete
= async_completed
;
1272 for (totlen
= u
= 0; u
< uurb
->number_of_packets
; u
++) {
1273 as
->urb
->iso_frame_desc
[u
].offset
= totlen
;
1274 as
->urb
->iso_frame_desc
[u
].length
= isopkt
[u
].length
;
1275 totlen
+= isopkt
[u
].length
;
1280 if (is_in
&& uurb
->buffer_length
> 0)
1281 as
->userbuffer
= uurb
->buffer
;
1283 as
->userbuffer
= NULL
;
1284 as
->signr
= uurb
->signr
;
1286 as
->pid
= get_pid(task_pid(current
));
1287 as
->uid
= cred
->uid
;
1288 as
->euid
= cred
->euid
;
1289 security_task_getsecid(current
, &as
->secid
);
1290 if (!is_in
&& uurb
->buffer_length
> 0) {
1291 if (copy_from_user(as
->urb
->transfer_buffer
, uurb
->buffer
,
1292 uurb
->buffer_length
)) {
1297 snoop_urb(ps
->dev
, as
->userurb
, as
->urb
->pipe
,
1298 as
->urb
->transfer_buffer_length
, 0, SUBMIT
,
1299 is_in
? NULL
: as
->urb
->transfer_buffer
,
1300 uurb
->buffer_length
);
1301 async_newpending(as
);
1303 if (usb_endpoint_xfer_bulk(&ep
->desc
)) {
1304 spin_lock_irq(&ps
->lock
);
1306 /* Not exactly the endpoint address; the direction bit is
1307 * shifted to the 0x10 position so that the value will be
1310 as
->bulk_addr
= usb_endpoint_num(&ep
->desc
) |
1311 ((ep
->desc
.bEndpointAddress
& USB_ENDPOINT_DIR_MASK
)
1314 /* If this bulk URB is the start of a new transfer, re-enable
1315 * the endpoint. Otherwise mark it as a continuation URB.
1317 if (uurb
->flags
& USBDEVFS_URB_BULK_CONTINUATION
)
1318 as
->bulk_status
= AS_CONTINUATION
;
1320 ps
->disabled_bulk_eps
&= ~(1 << as
->bulk_addr
);
1322 /* Don't accept continuation URBs if the endpoint is
1323 * disabled because of an earlier error.
1325 if (ps
->disabled_bulk_eps
& (1 << as
->bulk_addr
))
1328 ret
= usb_submit_urb(as
->urb
, GFP_ATOMIC
);
1329 spin_unlock_irq(&ps
->lock
);
1331 ret
= usb_submit_urb(as
->urb
, GFP_KERNEL
);
1335 dev_printk(KERN_DEBUG
, &ps
->dev
->dev
,
1336 "usbfs: usb_submit_urb returned %d\n", ret
);
1337 snoop_urb(ps
->dev
, as
->userurb
, as
->urb
->pipe
,
1338 0, ret
, COMPLETE
, NULL
, 0);
1339 async_removepending(as
);
1346 static int proc_submiturb(struct dev_state
*ps
, void __user
*arg
)
1348 struct usbdevfs_urb uurb
;
1350 if (copy_from_user(&uurb
, arg
, sizeof(uurb
)))
1353 return proc_do_submiturb(ps
, &uurb
,
1354 (((struct usbdevfs_urb __user
*)arg
)->iso_frame_desc
),
1358 static int proc_unlinkurb(struct dev_state
*ps
, void __user
*arg
)
1362 unsigned long flags
;
1364 spin_lock_irqsave(&ps
->lock
, flags
);
1365 as
= async_getpending(ps
, arg
);
1367 spin_unlock_irqrestore(&ps
->lock
, flags
);
1373 spin_unlock_irqrestore(&ps
->lock
, flags
);
1381 static int processcompl(struct async
*as
, void __user
* __user
*arg
)
1383 struct urb
*urb
= as
->urb
;
1384 struct usbdevfs_urb __user
*userurb
= as
->userurb
;
1385 void __user
*addr
= as
->userurb
;
1388 if (as
->userbuffer
&& urb
->actual_length
) {
1389 if (urb
->number_of_packets
> 0) /* Isochronous */
1390 i
= urb
->transfer_buffer_length
;
1392 i
= urb
->actual_length
;
1393 if (copy_to_user(as
->userbuffer
, urb
->transfer_buffer
, i
))
1396 if (put_user(as
->status
, &userurb
->status
))
1398 if (put_user(urb
->actual_length
, &userurb
->actual_length
))
1400 if (put_user(urb
->error_count
, &userurb
->error_count
))
1403 if (usb_endpoint_xfer_isoc(&urb
->ep
->desc
)) {
1404 for (i
= 0; i
< urb
->number_of_packets
; i
++) {
1405 if (put_user(urb
->iso_frame_desc
[i
].actual_length
,
1406 &userurb
->iso_frame_desc
[i
].actual_length
))
1408 if (put_user(urb
->iso_frame_desc
[i
].status
,
1409 &userurb
->iso_frame_desc
[i
].status
))
1414 if (put_user(addr
, (void __user
* __user
*)arg
))
1422 static struct async
*reap_as(struct dev_state
*ps
)
1424 DECLARE_WAITQUEUE(wait
, current
);
1425 struct async
*as
= NULL
;
1426 struct usb_device
*dev
= ps
->dev
;
1428 add_wait_queue(&ps
->wait
, &wait
);
1430 __set_current_state(TASK_INTERRUPTIBLE
);
1431 as
= async_getcompleted(ps
);
1434 if (signal_pending(current
))
1436 usb_unlock_device(dev
);
1438 usb_lock_device(dev
);
1440 remove_wait_queue(&ps
->wait
, &wait
);
1441 set_current_state(TASK_RUNNING
);
1445 static int proc_reapurb(struct dev_state
*ps
, void __user
*arg
)
1447 struct async
*as
= reap_as(ps
);
1449 int retval
= processcompl(as
, (void __user
* __user
*)arg
);
1453 if (signal_pending(current
))
1458 static int proc_reapurbnonblock(struct dev_state
*ps
, void __user
*arg
)
1463 as
= async_getcompleted(ps
);
1466 retval
= processcompl(as
, (void __user
* __user
*)arg
);
1472 #ifdef CONFIG_COMPAT
1473 static int proc_control_compat(struct dev_state
*ps
,
1474 struct usbdevfs_ctrltransfer32 __user
*p32
)
1476 struct usbdevfs_ctrltransfer __user
*p
;
1478 p
= compat_alloc_user_space(sizeof(*p
));
1479 if (copy_in_user(p
, p32
, (sizeof(*p32
) - sizeof(compat_caddr_t
))) ||
1480 get_user(udata
, &p32
->data
) ||
1481 put_user(compat_ptr(udata
), &p
->data
))
1483 return proc_control(ps
, p
);
1486 static int proc_bulk_compat(struct dev_state
*ps
,
1487 struct usbdevfs_bulktransfer32 __user
*p32
)
1489 struct usbdevfs_bulktransfer __user
*p
;
1491 compat_caddr_t addr
;
1493 p
= compat_alloc_user_space(sizeof(*p
));
1495 if (get_user(n
, &p32
->ep
) || put_user(n
, &p
->ep
) ||
1496 get_user(n
, &p32
->len
) || put_user(n
, &p
->len
) ||
1497 get_user(n
, &p32
->timeout
) || put_user(n
, &p
->timeout
) ||
1498 get_user(addr
, &p32
->data
) || put_user(compat_ptr(addr
), &p
->data
))
1501 return proc_bulk(ps
, p
);
1503 static int proc_disconnectsignal_compat(struct dev_state
*ps
, void __user
*arg
)
1505 struct usbdevfs_disconnectsignal32 ds
;
1507 if (copy_from_user(&ds
, arg
, sizeof(ds
)))
1509 ps
->discsignr
= ds
.signr
;
1510 ps
->disccontext
= compat_ptr(ds
.context
);
1514 static int get_urb32(struct usbdevfs_urb
*kurb
,
1515 struct usbdevfs_urb32 __user
*uurb
)
1518 if (!access_ok(VERIFY_READ
, uurb
, sizeof(*uurb
)) ||
1519 __get_user(kurb
->type
, &uurb
->type
) ||
1520 __get_user(kurb
->endpoint
, &uurb
->endpoint
) ||
1521 __get_user(kurb
->status
, &uurb
->status
) ||
1522 __get_user(kurb
->flags
, &uurb
->flags
) ||
1523 __get_user(kurb
->buffer_length
, &uurb
->buffer_length
) ||
1524 __get_user(kurb
->actual_length
, &uurb
->actual_length
) ||
1525 __get_user(kurb
->start_frame
, &uurb
->start_frame
) ||
1526 __get_user(kurb
->number_of_packets
, &uurb
->number_of_packets
) ||
1527 __get_user(kurb
->error_count
, &uurb
->error_count
) ||
1528 __get_user(kurb
->signr
, &uurb
->signr
))
1531 if (__get_user(uptr
, &uurb
->buffer
))
1533 kurb
->buffer
= compat_ptr(uptr
);
1534 if (__get_user(uptr
, &uurb
->usercontext
))
1536 kurb
->usercontext
= compat_ptr(uptr
);
1541 static int proc_submiturb_compat(struct dev_state
*ps
, void __user
*arg
)
1543 struct usbdevfs_urb uurb
;
1545 if (get_urb32(&uurb
, (struct usbdevfs_urb32 __user
*)arg
))
1548 return proc_do_submiturb(ps
, &uurb
,
1549 ((struct usbdevfs_urb32 __user
*)arg
)->iso_frame_desc
,
1553 static int processcompl_compat(struct async
*as
, void __user
* __user
*arg
)
1555 struct urb
*urb
= as
->urb
;
1556 struct usbdevfs_urb32 __user
*userurb
= as
->userurb
;
1557 void __user
*addr
= as
->userurb
;
1560 if (as
->userbuffer
&& urb
->actual_length
)
1561 if (copy_to_user(as
->userbuffer
, urb
->transfer_buffer
,
1562 urb
->actual_length
))
1564 if (put_user(as
->status
, &userurb
->status
))
1566 if (put_user(urb
->actual_length
, &userurb
->actual_length
))
1568 if (put_user(urb
->error_count
, &userurb
->error_count
))
1571 if (usb_endpoint_xfer_isoc(&urb
->ep
->desc
)) {
1572 for (i
= 0; i
< urb
->number_of_packets
; i
++) {
1573 if (put_user(urb
->iso_frame_desc
[i
].actual_length
,
1574 &userurb
->iso_frame_desc
[i
].actual_length
))
1576 if (put_user(urb
->iso_frame_desc
[i
].status
,
1577 &userurb
->iso_frame_desc
[i
].status
))
1582 if (put_user(ptr_to_compat(addr
), (u32 __user
*)arg
))
1587 static int proc_reapurb_compat(struct dev_state
*ps
, void __user
*arg
)
1589 struct async
*as
= reap_as(ps
);
1591 int retval
= processcompl_compat(as
, (void __user
* __user
*)arg
);
1595 if (signal_pending(current
))
1600 static int proc_reapurbnonblock_compat(struct dev_state
*ps
, void __user
*arg
)
1606 as
= async_getcompleted(ps
);
1608 retval
= processcompl_compat(as
, (void __user
* __user
*)arg
);
1617 static int proc_disconnectsignal(struct dev_state
*ps
, void __user
*arg
)
1619 struct usbdevfs_disconnectsignal ds
;
1621 if (copy_from_user(&ds
, arg
, sizeof(ds
)))
1623 ps
->discsignr
= ds
.signr
;
1624 ps
->disccontext
= ds
.context
;
1628 static int proc_claiminterface(struct dev_state
*ps
, void __user
*arg
)
1632 if (get_user(ifnum
, (unsigned int __user
*)arg
))
1634 return claimintf(ps
, ifnum
);
1637 static int proc_releaseinterface(struct dev_state
*ps
, void __user
*arg
)
1642 if (get_user(ifnum
, (unsigned int __user
*)arg
))
1644 if ((ret
= releaseintf(ps
, ifnum
)) < 0)
1646 destroy_async_on_interface (ps
, ifnum
);
1650 static int proc_ioctl(struct dev_state
*ps
, struct usbdevfs_ioctl
*ctl
)
1655 struct usb_interface
*intf
= NULL
;
1656 struct usb_driver
*driver
= NULL
;
1659 if ((size
= _IOC_SIZE(ctl
->ioctl_code
)) > 0) {
1660 if ((buf
= kmalloc(size
, GFP_KERNEL
)) == NULL
)
1662 if ((_IOC_DIR(ctl
->ioctl_code
) & _IOC_WRITE
)) {
1663 if (copy_from_user(buf
, ctl
->data
, size
)) {
1668 memset(buf
, 0, size
);
1672 if (!connected(ps
)) {
1677 if (ps
->dev
->state
!= USB_STATE_CONFIGURED
)
1678 retval
= -EHOSTUNREACH
;
1679 else if (!(intf
= usb_ifnum_to_if(ps
->dev
, ctl
->ifno
)))
1681 else switch (ctl
->ioctl_code
) {
1683 /* disconnect kernel driver from interface */
1684 case USBDEVFS_DISCONNECT
:
1685 if (intf
->dev
.driver
) {
1686 driver
= to_usb_driver(intf
->dev
.driver
);
1687 dev_dbg(&intf
->dev
, "disconnect by usbfs\n");
1688 usb_driver_release_interface(driver
, intf
);
1693 /* let kernel drivers try to (re)bind to the interface */
1694 case USBDEVFS_CONNECT
:
1695 if (!intf
->dev
.driver
)
1696 retval
= device_attach(&intf
->dev
);
1701 /* talk directly to the interface's driver */
1703 if (intf
->dev
.driver
)
1704 driver
= to_usb_driver(intf
->dev
.driver
);
1705 if (driver
== NULL
|| driver
->unlocked_ioctl
== NULL
) {
1708 retval
= driver
->unlocked_ioctl(intf
, ctl
->ioctl_code
, buf
);
1709 if (retval
== -ENOIOCTLCMD
)
1714 /* cleanup and return */
1716 && (_IOC_DIR(ctl
->ioctl_code
) & _IOC_READ
) != 0
1718 && copy_to_user(ctl
->data
, buf
, size
) != 0)
1725 static int proc_ioctl_default(struct dev_state
*ps
, void __user
*arg
)
1727 struct usbdevfs_ioctl ctrl
;
1729 if (copy_from_user(&ctrl
, arg
, sizeof(ctrl
)))
1731 return proc_ioctl(ps
, &ctrl
);
1734 #ifdef CONFIG_COMPAT
1735 static int proc_ioctl_compat(struct dev_state
*ps
, compat_uptr_t arg
)
1737 struct usbdevfs_ioctl32 __user
*uioc
;
1738 struct usbdevfs_ioctl ctrl
;
1741 uioc
= compat_ptr((long)arg
);
1742 if (!access_ok(VERIFY_READ
, uioc
, sizeof(*uioc
)) ||
1743 __get_user(ctrl
.ifno
, &uioc
->ifno
) ||
1744 __get_user(ctrl
.ioctl_code
, &uioc
->ioctl_code
) ||
1745 __get_user(udata
, &uioc
->data
))
1747 ctrl
.data
= compat_ptr(udata
);
1749 return proc_ioctl(ps
, &ctrl
);
1753 static int proc_claim_port(struct dev_state
*ps
, void __user
*arg
)
1758 if (get_user(portnum
, (unsigned __user
*) arg
))
1760 rc
= usb_hub_claim_port(ps
->dev
, portnum
, ps
);
1762 snoop(&ps
->dev
->dev
, "port %d claimed by process %d: %s\n",
1763 portnum
, task_pid_nr(current
), current
->comm
);
1767 static int proc_release_port(struct dev_state
*ps
, void __user
*arg
)
1771 if (get_user(portnum
, (unsigned __user
*) arg
))
1773 return usb_hub_release_port(ps
->dev
, portnum
, ps
);
1777 * NOTE: All requests here that have interface numbers as parameters
1778 * are assuming that somehow the configuration has been prevented from
1779 * changing. But there's no mechanism to ensure that...
1781 static long usbdev_do_ioctl(struct file
*file
, unsigned int cmd
,
1784 struct dev_state
*ps
= file
->private_data
;
1785 struct inode
*inode
= file
->f_path
.dentry
->d_inode
;
1786 struct usb_device
*dev
= ps
->dev
;
1789 if (!(file
->f_mode
& FMODE_WRITE
))
1792 usb_lock_device(dev
);
1793 if (!connected(ps
)) {
1794 usb_unlock_device(dev
);
1799 case USBDEVFS_CONTROL
:
1800 snoop(&dev
->dev
, "%s: CONTROL\n", __func__
);
1801 ret
= proc_control(ps
, p
);
1803 inode
->i_mtime
= CURRENT_TIME
;
1807 snoop(&dev
->dev
, "%s: BULK\n", __func__
);
1808 ret
= proc_bulk(ps
, p
);
1810 inode
->i_mtime
= CURRENT_TIME
;
1813 case USBDEVFS_RESETEP
:
1814 snoop(&dev
->dev
, "%s: RESETEP\n", __func__
);
1815 ret
= proc_resetep(ps
, p
);
1817 inode
->i_mtime
= CURRENT_TIME
;
1820 case USBDEVFS_RESET
:
1821 snoop(&dev
->dev
, "%s: RESET\n", __func__
);
1822 ret
= proc_resetdevice(ps
);
1825 case USBDEVFS_CLEAR_HALT
:
1826 snoop(&dev
->dev
, "%s: CLEAR_HALT\n", __func__
);
1827 ret
= proc_clearhalt(ps
, p
);
1829 inode
->i_mtime
= CURRENT_TIME
;
1832 case USBDEVFS_GETDRIVER
:
1833 snoop(&dev
->dev
, "%s: GETDRIVER\n", __func__
);
1834 ret
= proc_getdriver(ps
, p
);
1837 case USBDEVFS_CONNECTINFO
:
1838 snoop(&dev
->dev
, "%s: CONNECTINFO\n", __func__
);
1839 ret
= proc_connectinfo(ps
, p
);
1842 case USBDEVFS_SETINTERFACE
:
1843 snoop(&dev
->dev
, "%s: SETINTERFACE\n", __func__
);
1844 ret
= proc_setintf(ps
, p
);
1847 case USBDEVFS_SETCONFIGURATION
:
1848 snoop(&dev
->dev
, "%s: SETCONFIGURATION\n", __func__
);
1849 ret
= proc_setconfig(ps
, p
);
1852 case USBDEVFS_SUBMITURB
:
1853 snoop(&dev
->dev
, "%s: SUBMITURB\n", __func__
);
1854 ret
= proc_submiturb(ps
, p
);
1856 inode
->i_mtime
= CURRENT_TIME
;
1859 #ifdef CONFIG_COMPAT
1860 case USBDEVFS_CONTROL32
:
1861 snoop(&dev
->dev
, "%s: CONTROL32\n", __func__
);
1862 ret
= proc_control_compat(ps
, p
);
1864 inode
->i_mtime
= CURRENT_TIME
;
1867 case USBDEVFS_BULK32
:
1868 snoop(&dev
->dev
, "%s: BULK32\n", __func__
);
1869 ret
= proc_bulk_compat(ps
, p
);
1871 inode
->i_mtime
= CURRENT_TIME
;
1874 case USBDEVFS_DISCSIGNAL32
:
1875 snoop(&dev
->dev
, "%s: DISCSIGNAL32\n", __func__
);
1876 ret
= proc_disconnectsignal_compat(ps
, p
);
1879 case USBDEVFS_SUBMITURB32
:
1880 snoop(&dev
->dev
, "%s: SUBMITURB32\n", __func__
);
1881 ret
= proc_submiturb_compat(ps
, p
);
1883 inode
->i_mtime
= CURRENT_TIME
;
1886 case USBDEVFS_REAPURB32
:
1887 snoop(&dev
->dev
, "%s: REAPURB32\n", __func__
);
1888 ret
= proc_reapurb_compat(ps
, p
);
1891 case USBDEVFS_REAPURBNDELAY32
:
1892 snoop(&dev
->dev
, "%s: REAPURBNDELAY32\n", __func__
);
1893 ret
= proc_reapurbnonblock_compat(ps
, p
);
1896 case USBDEVFS_IOCTL32
:
1897 snoop(&dev
->dev
, "%s: IOCTL32\n", __func__
);
1898 ret
= proc_ioctl_compat(ps
, ptr_to_compat(p
));
1902 case USBDEVFS_DISCARDURB
:
1903 snoop(&dev
->dev
, "%s: DISCARDURB\n", __func__
);
1904 ret
= proc_unlinkurb(ps
, p
);
1907 case USBDEVFS_REAPURB
:
1908 snoop(&dev
->dev
, "%s: REAPURB\n", __func__
);
1909 ret
= proc_reapurb(ps
, p
);
1912 case USBDEVFS_REAPURBNDELAY
:
1913 snoop(&dev
->dev
, "%s: REAPURBNDELAY\n", __func__
);
1914 ret
= proc_reapurbnonblock(ps
, p
);
1917 case USBDEVFS_DISCSIGNAL
:
1918 snoop(&dev
->dev
, "%s: DISCSIGNAL\n", __func__
);
1919 ret
= proc_disconnectsignal(ps
, p
);
1922 case USBDEVFS_CLAIMINTERFACE
:
1923 snoop(&dev
->dev
, "%s: CLAIMINTERFACE\n", __func__
);
1924 ret
= proc_claiminterface(ps
, p
);
1927 case USBDEVFS_RELEASEINTERFACE
:
1928 snoop(&dev
->dev
, "%s: RELEASEINTERFACE\n", __func__
);
1929 ret
= proc_releaseinterface(ps
, p
);
1932 case USBDEVFS_IOCTL
:
1933 snoop(&dev
->dev
, "%s: IOCTL\n", __func__
);
1934 ret
= proc_ioctl_default(ps
, p
);
1937 case USBDEVFS_CLAIM_PORT
:
1938 snoop(&dev
->dev
, "%s: CLAIM_PORT\n", __func__
);
1939 ret
= proc_claim_port(ps
, p
);
1942 case USBDEVFS_RELEASE_PORT
:
1943 snoop(&dev
->dev
, "%s: RELEASE_PORT\n", __func__
);
1944 ret
= proc_release_port(ps
, p
);
1947 usb_unlock_device(dev
);
1949 inode
->i_atime
= CURRENT_TIME
;
1953 static long usbdev_ioctl(struct file
*file
, unsigned int cmd
,
1958 ret
= usbdev_do_ioctl(file
, cmd
, (void __user
*)arg
);
1963 #ifdef CONFIG_COMPAT
1964 static long usbdev_compat_ioctl(struct file
*file
, unsigned int cmd
,
1969 ret
= usbdev_do_ioctl(file
, cmd
, compat_ptr(arg
));
1975 /* No kernel lock - fine */
1976 static unsigned int usbdev_poll(struct file
*file
,
1977 struct poll_table_struct
*wait
)
1979 struct dev_state
*ps
= file
->private_data
;
1980 unsigned int mask
= 0;
1982 poll_wait(file
, &ps
->wait
, wait
);
1983 if (file
->f_mode
& FMODE_WRITE
&& !list_empty(&ps
->async_completed
))
1984 mask
|= POLLOUT
| POLLWRNORM
;
1986 mask
|= POLLERR
| POLLHUP
;
1990 const struct file_operations usbdev_file_operations
= {
1991 .owner
= THIS_MODULE
,
1992 .llseek
= usbdev_lseek
,
1993 .read
= usbdev_read
,
1994 .poll
= usbdev_poll
,
1995 .unlocked_ioctl
= usbdev_ioctl
,
1996 #ifdef CONFIG_COMPAT
1997 .compat_ioctl
= usbdev_compat_ioctl
,
1999 .open
= usbdev_open
,
2000 .release
= usbdev_release
,
2003 static void usbdev_remove(struct usb_device
*udev
)
2005 struct dev_state
*ps
;
2006 struct siginfo sinfo
;
2008 while (!list_empty(&udev
->filelist
)) {
2009 ps
= list_entry(udev
->filelist
.next
, struct dev_state
, list
);
2010 destroy_all_async(ps
);
2011 wake_up_all(&ps
->wait
);
2012 list_del_init(&ps
->list
);
2013 if (ps
->discsignr
) {
2014 sinfo
.si_signo
= ps
->discsignr
;
2015 sinfo
.si_errno
= EPIPE
;
2016 sinfo
.si_code
= SI_ASYNCIO
;
2017 sinfo
.si_addr
= ps
->disccontext
;
2018 kill_pid_info_as_uid(ps
->discsignr
, &sinfo
,
2019 ps
->disc_pid
, ps
->disc_uid
,
2020 ps
->disc_euid
, ps
->secid
);
2025 #ifdef CONFIG_USB_DEVICE_CLASS
2026 static struct class *usb_classdev_class
;
2028 static int usb_classdev_add(struct usb_device
*dev
)
2030 struct device
*cldev
;
2032 cldev
= device_create(usb_classdev_class
, &dev
->dev
, dev
->dev
.devt
,
2033 NULL
, "usbdev%d.%d", dev
->bus
->busnum
,
2036 return PTR_ERR(cldev
);
2037 dev
->usb_classdev
= cldev
;
2041 static void usb_classdev_remove(struct usb_device
*dev
)
2043 if (dev
->usb_classdev
)
2044 device_unregister(dev
->usb_classdev
);
2048 #define usb_classdev_add(dev) 0
2049 #define usb_classdev_remove(dev) do {} while (0)
2053 static int usbdev_notify(struct notifier_block
*self
,
2054 unsigned long action
, void *dev
)
2057 case USB_DEVICE_ADD
:
2058 if (usb_classdev_add(dev
))
2061 case USB_DEVICE_REMOVE
:
2062 usb_classdev_remove(dev
);
2069 static struct notifier_block usbdev_nb
= {
2070 .notifier_call
= usbdev_notify
,
2073 static struct cdev usb_device_cdev
;
2075 int __init
usb_devio_init(void)
2079 retval
= register_chrdev_region(USB_DEVICE_DEV
, USB_DEVICE_MAX
,
2082 printk(KERN_ERR
"Unable to register minors for usb_device\n");
2085 cdev_init(&usb_device_cdev
, &usbdev_file_operations
);
2086 retval
= cdev_add(&usb_device_cdev
, USB_DEVICE_DEV
, USB_DEVICE_MAX
);
2088 printk(KERN_ERR
"Unable to get usb_device major %d\n",
2092 #ifdef CONFIG_USB_DEVICE_CLASS
2093 usb_classdev_class
= class_create(THIS_MODULE
, "usb_device");
2094 if (IS_ERR(usb_classdev_class
)) {
2095 printk(KERN_ERR
"Unable to register usb_device class\n");
2096 retval
= PTR_ERR(usb_classdev_class
);
2097 cdev_del(&usb_device_cdev
);
2098 usb_classdev_class
= NULL
;
2101 /* devices of this class shadow the major:minor of their parent
2102 * device, so clear ->dev_kobj to prevent adding duplicate entries
2105 usb_classdev_class
->dev_kobj
= NULL
;
2107 usb_register_notify(&usbdev_nb
);
2112 unregister_chrdev_region(USB_DEVICE_DEV
, USB_DEVICE_MAX
);
2116 void usb_devio_cleanup(void)
2118 usb_unregister_notify(&usbdev_nb
);
2119 #ifdef CONFIG_USB_DEVICE_CLASS
2120 class_destroy(usb_classdev_class
);
2122 cdev_del(&usb_device_cdev
);
2123 unregister_chrdev_region(USB_DEVICE_DEV
, USB_DEVICE_MAX
);