1 // SPDX-License-Identifier: GPL-2.0
3 * USB Skeleton driver - 2.2
5 * Copyright (C) 2001-2004 Greg Kroah-Hartman (greg@kroah.com)
7 * This driver is based on the 2.6.3 version of drivers/usb/usb-skeleton.c
8 * but has been rewritten to be easier to read and use.
11 #include <linux/kernel.h>
12 #include <linux/errno.h>
13 #include <linux/slab.h>
14 #include <linux/module.h>
15 #include <linux/kref.h>
16 #include <linux/uaccess.h>
17 #include <linux/usb.h>
18 #include <linux/mutex.h>
21 /* Define these values to match your devices */
22 #define USB_SKEL_VENDOR_ID 0xfff0
23 #define USB_SKEL_PRODUCT_ID 0xfff0
25 /* table of devices that work with this driver */
26 static const struct usb_device_id skel_table
[] = {
27 { USB_DEVICE(USB_SKEL_VENDOR_ID
, USB_SKEL_PRODUCT_ID
) },
28 { } /* Terminating entry */
30 MODULE_DEVICE_TABLE(usb
, skel_table
);
33 /* Get a minor range for your devices from the usb maintainer */
34 #define USB_SKEL_MINOR_BASE 192
36 /* our private defines. if this grows any larger, use your own .h file */
37 #define MAX_TRANSFER (PAGE_SIZE - 512)
38 /* MAX_TRANSFER is chosen so that the VM is not stressed by
39 allocations > PAGE_SIZE and the number of packets in a page
40 is an integer 512 is the largest possible packet on EHCI */
41 #define WRITES_IN_FLIGHT 8
42 /* arbitrarily chosen */
44 /* Structure to hold all of our device specific stuff */
46 struct usb_device
*udev
; /* the usb device for this device */
47 struct usb_interface
*interface
; /* the interface for this device */
48 struct semaphore limit_sem
; /* limiting the number of writes in progress */
49 struct usb_anchor submitted
; /* in case we need to retract our submissions */
50 struct urb
*bulk_in_urb
; /* the urb to read data with */
51 unsigned char *bulk_in_buffer
; /* the buffer to receive data */
52 size_t bulk_in_size
; /* the size of the receive buffer */
53 size_t bulk_in_filled
; /* number of bytes in the buffer */
54 size_t bulk_in_copied
; /* already copied to user space */
55 __u8 bulk_in_endpointAddr
; /* the address of the bulk in endpoint */
56 __u8 bulk_out_endpointAddr
; /* the address of the bulk out endpoint */
57 int errors
; /* the last request tanked */
58 bool ongoing_read
; /* a read is going on */
59 spinlock_t err_lock
; /* lock for errors */
61 struct mutex io_mutex
; /* synchronize I/O with disconnect */
62 unsigned long disconnected
:1;
63 wait_queue_head_t bulk_in_wait
; /* to wait for an ongoing read */
65 #define to_skel_dev(d) container_of(d, struct usb_skel, kref)
67 static struct usb_driver skel_driver
;
68 static void skel_draw_down(struct usb_skel
*dev
);
70 static void skel_delete(struct kref
*kref
)
72 struct usb_skel
*dev
= to_skel_dev(kref
);
74 usb_free_urb(dev
->bulk_in_urb
);
75 usb_put_intf(dev
->interface
);
76 usb_put_dev(dev
->udev
);
77 kfree(dev
->bulk_in_buffer
);
81 static int skel_open(struct inode
*inode
, struct file
*file
)
84 struct usb_interface
*interface
;
88 subminor
= iminor(inode
);
90 interface
= usb_find_interface(&skel_driver
, subminor
);
92 pr_err("%s - error, can't find device for minor %d\n",
98 dev
= usb_get_intfdata(interface
);
104 retval
= usb_autopm_get_interface(interface
);
108 /* increment our usage count for the device */
109 kref_get(&dev
->kref
);
111 /* save our object in the file's private structure */
112 file
->private_data
= dev
;
118 static int skel_release(struct inode
*inode
, struct file
*file
)
120 struct usb_skel
*dev
;
122 dev
= file
->private_data
;
126 /* allow the device to be autosuspended */
127 usb_autopm_put_interface(dev
->interface
);
129 /* decrement the count on our device */
130 kref_put(&dev
->kref
, skel_delete
);
134 static int skel_flush(struct file
*file
, fl_owner_t id
)
136 struct usb_skel
*dev
;
139 dev
= file
->private_data
;
143 /* wait for io to stop */
144 mutex_lock(&dev
->io_mutex
);
147 /* read out errors, leave subsequent opens a clean slate */
148 spin_lock_irq(&dev
->err_lock
);
149 res
= dev
->errors
? (dev
->errors
== -EPIPE
? -EPIPE
: -EIO
) : 0;
151 spin_unlock_irq(&dev
->err_lock
);
153 mutex_unlock(&dev
->io_mutex
);
158 static void skel_read_bulk_callback(struct urb
*urb
)
160 struct usb_skel
*dev
;
165 spin_lock_irqsave(&dev
->err_lock
, flags
);
166 /* sync/async unlink faults aren't errors */
168 if (!(urb
->status
== -ENOENT
||
169 urb
->status
== -ECONNRESET
||
170 urb
->status
== -ESHUTDOWN
))
171 dev_err(&dev
->interface
->dev
,
172 "%s - nonzero write bulk status received: %d\n",
173 __func__
, urb
->status
);
175 dev
->errors
= urb
->status
;
177 dev
->bulk_in_filled
= urb
->actual_length
;
179 dev
->ongoing_read
= 0;
180 spin_unlock_irqrestore(&dev
->err_lock
, flags
);
182 wake_up_interruptible(&dev
->bulk_in_wait
);
185 static int skel_do_read_io(struct usb_skel
*dev
, size_t count
)
190 usb_fill_bulk_urb(dev
->bulk_in_urb
,
192 usb_rcvbulkpipe(dev
->udev
,
193 dev
->bulk_in_endpointAddr
),
195 min(dev
->bulk_in_size
, count
),
196 skel_read_bulk_callback
,
198 /* tell everybody to leave the URB alone */
199 spin_lock_irq(&dev
->err_lock
);
200 dev
->ongoing_read
= 1;
201 spin_unlock_irq(&dev
->err_lock
);
203 /* submit bulk in urb, which means no data to deliver */
204 dev
->bulk_in_filled
= 0;
205 dev
->bulk_in_copied
= 0;
208 rv
= usb_submit_urb(dev
->bulk_in_urb
, GFP_KERNEL
);
210 dev_err(&dev
->interface
->dev
,
211 "%s - failed submitting read urb, error %d\n",
213 rv
= (rv
== -ENOMEM
) ? rv
: -EIO
;
214 spin_lock_irq(&dev
->err_lock
);
215 dev
->ongoing_read
= 0;
216 spin_unlock_irq(&dev
->err_lock
);
222 static ssize_t
skel_read(struct file
*file
, char *buffer
, size_t count
,
225 struct usb_skel
*dev
;
229 dev
= file
->private_data
;
231 /* if we cannot read at all, return EOF */
232 if (!dev
->bulk_in_urb
|| !count
)
235 /* no concurrent readers */
236 rv
= mutex_lock_interruptible(&dev
->io_mutex
);
240 if (dev
->disconnected
) { /* disconnect() was called */
245 /* if IO is under way, we must not touch things */
247 spin_lock_irq(&dev
->err_lock
);
248 ongoing_io
= dev
->ongoing_read
;
249 spin_unlock_irq(&dev
->err_lock
);
252 /* nonblocking IO shall not wait */
253 if (file
->f_flags
& O_NONBLOCK
) {
258 * IO may take forever
259 * hence wait in an interruptible state
261 rv
= wait_event_interruptible(dev
->bulk_in_wait
, (!dev
->ongoing_read
));
266 /* errors must be reported */
269 /* any error is reported once */
271 /* to preserve notifications about reset */
272 rv
= (rv
== -EPIPE
) ? rv
: -EIO
;
278 * if the buffer is filled we may satisfy the read
279 * else we need to start IO
282 if (dev
->bulk_in_filled
) {
283 /* we had read data */
284 size_t available
= dev
->bulk_in_filled
- dev
->bulk_in_copied
;
285 size_t chunk
= min(available
, count
);
289 * all data has been used
290 * actual IO needs to be done
292 rv
= skel_do_read_io(dev
, count
);
300 * chunk tells us how much shall be copied
303 if (copy_to_user(buffer
,
304 dev
->bulk_in_buffer
+ dev
->bulk_in_copied
,
310 dev
->bulk_in_copied
+= chunk
;
313 * if we are asked for more than we have,
314 * we start IO but don't wait
316 if (available
< count
)
317 skel_do_read_io(dev
, count
- chunk
);
319 /* no data in the buffer */
320 rv
= skel_do_read_io(dev
, count
);
327 mutex_unlock(&dev
->io_mutex
);
331 static void skel_write_bulk_callback(struct urb
*urb
)
333 struct usb_skel
*dev
;
338 /* sync/async unlink faults aren't errors */
340 if (!(urb
->status
== -ENOENT
||
341 urb
->status
== -ECONNRESET
||
342 urb
->status
== -ESHUTDOWN
))
343 dev_err(&dev
->interface
->dev
,
344 "%s - nonzero write bulk status received: %d\n",
345 __func__
, urb
->status
);
347 spin_lock_irqsave(&dev
->err_lock
, flags
);
348 dev
->errors
= urb
->status
;
349 spin_unlock_irqrestore(&dev
->err_lock
, flags
);
352 /* free up our allocated buffer */
353 usb_free_coherent(urb
->dev
, urb
->transfer_buffer_length
,
354 urb
->transfer_buffer
, urb
->transfer_dma
);
358 static ssize_t
skel_write(struct file
*file
, const char *user_buffer
,
359 size_t count
, loff_t
*ppos
)
361 struct usb_skel
*dev
;
363 struct urb
*urb
= NULL
;
365 size_t writesize
= min(count
, (size_t)MAX_TRANSFER
);
367 dev
= file
->private_data
;
369 /* verify that we actually have some data to write */
374 * limit the number of URBs in flight to stop a user from using up all
377 if (!(file
->f_flags
& O_NONBLOCK
)) {
378 if (down_interruptible(&dev
->limit_sem
)) {
379 retval
= -ERESTARTSYS
;
383 if (down_trylock(&dev
->limit_sem
)) {
389 spin_lock_irq(&dev
->err_lock
);
390 retval
= dev
->errors
;
392 /* any error is reported once */
394 /* to preserve notifications about reset */
395 retval
= (retval
== -EPIPE
) ? retval
: -EIO
;
397 spin_unlock_irq(&dev
->err_lock
);
401 /* create a urb, and a buffer for it, and copy the data to the urb */
402 urb
= usb_alloc_urb(0, GFP_KERNEL
);
408 buf
= usb_alloc_coherent(dev
->udev
, writesize
, GFP_KERNEL
,
415 if (copy_from_user(buf
, user_buffer
, writesize
)) {
420 /* this lock makes sure we don't submit URBs to gone devices */
421 mutex_lock(&dev
->io_mutex
);
422 if (dev
->disconnected
) { /* disconnect() was called */
423 mutex_unlock(&dev
->io_mutex
);
428 /* initialize the urb properly */
429 usb_fill_bulk_urb(urb
, dev
->udev
,
430 usb_sndbulkpipe(dev
->udev
, dev
->bulk_out_endpointAddr
),
431 buf
, writesize
, skel_write_bulk_callback
, dev
);
432 urb
->transfer_flags
|= URB_NO_TRANSFER_DMA_MAP
;
433 usb_anchor_urb(urb
, &dev
->submitted
);
435 /* send the data out the bulk port */
436 retval
= usb_submit_urb(urb
, GFP_KERNEL
);
437 mutex_unlock(&dev
->io_mutex
);
439 dev_err(&dev
->interface
->dev
,
440 "%s - failed submitting write urb, error %d\n",
446 * release our reference to this urb, the USB core will eventually free
455 usb_unanchor_urb(urb
);
458 usb_free_coherent(dev
->udev
, writesize
, buf
, urb
->transfer_dma
);
467 static const struct file_operations skel_fops
= {
468 .owner
= THIS_MODULE
,
472 .release
= skel_release
,
474 .llseek
= noop_llseek
,
478 * usb class driver info in order to get a minor number from the usb core,
479 * and to have the device registered with the driver core
481 static struct usb_class_driver skel_class
= {
484 .minor_base
= USB_SKEL_MINOR_BASE
,
487 static int skel_probe(struct usb_interface
*interface
,
488 const struct usb_device_id
*id
)
490 struct usb_skel
*dev
;
491 struct usb_endpoint_descriptor
*bulk_in
, *bulk_out
;
494 /* allocate memory for our device state and initialize it */
495 dev
= kzalloc(sizeof(*dev
), GFP_KERNEL
);
499 kref_init(&dev
->kref
);
500 sema_init(&dev
->limit_sem
, WRITES_IN_FLIGHT
);
501 mutex_init(&dev
->io_mutex
);
502 spin_lock_init(&dev
->err_lock
);
503 init_usb_anchor(&dev
->submitted
);
504 init_waitqueue_head(&dev
->bulk_in_wait
);
506 dev
->udev
= usb_get_dev(interface_to_usbdev(interface
));
507 dev
->interface
= usb_get_intf(interface
);
509 /* set up the endpoint information */
510 /* use only the first bulk-in and bulk-out endpoints */
511 retval
= usb_find_common_endpoints(interface
->cur_altsetting
,
512 &bulk_in
, &bulk_out
, NULL
, NULL
);
514 dev_err(&interface
->dev
,
515 "Could not find both bulk-in and bulk-out endpoints\n");
519 dev
->bulk_in_size
= usb_endpoint_maxp(bulk_in
);
520 dev
->bulk_in_endpointAddr
= bulk_in
->bEndpointAddress
;
521 dev
->bulk_in_buffer
= kmalloc(dev
->bulk_in_size
, GFP_KERNEL
);
522 if (!dev
->bulk_in_buffer
) {
526 dev
->bulk_in_urb
= usb_alloc_urb(0, GFP_KERNEL
);
527 if (!dev
->bulk_in_urb
) {
532 dev
->bulk_out_endpointAddr
= bulk_out
->bEndpointAddress
;
534 /* save our data pointer in this interface device */
535 usb_set_intfdata(interface
, dev
);
537 /* we can register the device now, as it is ready */
538 retval
= usb_register_dev(interface
, &skel_class
);
540 /* something prevented us from registering this driver */
541 dev_err(&interface
->dev
,
542 "Not able to get a minor for this device.\n");
543 usb_set_intfdata(interface
, NULL
);
547 /* let the user know what node this device is now attached to */
548 dev_info(&interface
->dev
,
549 "USB Skeleton device now attached to USBSkel-%d",
554 /* this frees allocated memory */
555 kref_put(&dev
->kref
, skel_delete
);
560 static void skel_disconnect(struct usb_interface
*interface
)
562 struct usb_skel
*dev
;
563 int minor
= interface
->minor
;
565 dev
= usb_get_intfdata(interface
);
566 usb_set_intfdata(interface
, NULL
);
568 /* give back our minor */
569 usb_deregister_dev(interface
, &skel_class
);
571 /* prevent more I/O from starting */
572 mutex_lock(&dev
->io_mutex
);
573 dev
->disconnected
= 1;
574 mutex_unlock(&dev
->io_mutex
);
576 usb_kill_anchored_urbs(&dev
->submitted
);
578 /* decrement our usage count */
579 kref_put(&dev
->kref
, skel_delete
);
581 dev_info(&interface
->dev
, "USB Skeleton #%d now disconnected", minor
);
584 static void skel_draw_down(struct usb_skel
*dev
)
588 time
= usb_wait_anchor_empty_timeout(&dev
->submitted
, 1000);
590 usb_kill_anchored_urbs(&dev
->submitted
);
591 usb_kill_urb(dev
->bulk_in_urb
);
594 static int skel_suspend(struct usb_interface
*intf
, pm_message_t message
)
596 struct usb_skel
*dev
= usb_get_intfdata(intf
);
604 static int skel_resume(struct usb_interface
*intf
)
609 static int skel_pre_reset(struct usb_interface
*intf
)
611 struct usb_skel
*dev
= usb_get_intfdata(intf
);
613 mutex_lock(&dev
->io_mutex
);
619 static int skel_post_reset(struct usb_interface
*intf
)
621 struct usb_skel
*dev
= usb_get_intfdata(intf
);
623 /* we are sure no URBs are active - no locking needed */
624 dev
->errors
= -EPIPE
;
625 mutex_unlock(&dev
->io_mutex
);
630 static struct usb_driver skel_driver
= {
633 .disconnect
= skel_disconnect
,
634 .suspend
= skel_suspend
,
635 .resume
= skel_resume
,
636 .pre_reset
= skel_pre_reset
,
637 .post_reset
= skel_post_reset
,
638 .id_table
= skel_table
,
639 .supports_autosuspend
= 1,
642 module_usb_driver(skel_driver
);
644 MODULE_LICENSE("GPL v2");