blob: aa0de9e35afaf78e2dd64562b8a54a887e593d77 [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: GPL-2.0+
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * inode.c -- user mode filesystem api for usb gadget controllers
4 *
5 * Copyright (C) 2003-2004 David Brownell
6 * Copyright (C) 2003 Agilent Technologies
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 */
8
9
David Brownella4e3ef52007-08-01 23:58:22 -070010/* #define VERBOSE_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
12#include <linux/init.h>
13#include <linux/module.h>
14#include <linux/fs.h>
David Howellse5d82a732019-03-25 16:38:30 +000015#include <linux/fs_context.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/pagemap.h>
17#include <linux/uts.h>
18#include <linux/wait.h>
19#include <linux/compiler.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080020#include <linux/uaccess.h>
Alexey Dobriyana99bbaf2009-10-04 16:11:37 +040021#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/slab.h>
Milan Svobodae22fc272006-08-08 22:23:12 -070023#include <linux/poll.h>
Zach Browna80bf612013-05-07 16:18:23 -070024#include <linux/mmu_context.h>
Kent Overstreet4e179bc2013-05-07 16:18:33 -070025#include <linux/aio.h>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080026#include <linux/uio.h>
Elena Reshetovab7ddc982017-03-06 16:21:13 +020027#include <linux/refcount.h>
Alan Stern520b72f2017-09-21 13:23:58 -040028#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/device.h>
30#include <linux/moduleparam.h>
31
David Brownella5262dc2007-05-14 19:36:41 -070032#include <linux/usb/gadgetfs.h>
David Brownell9454a572007-10-04 18:05:17 -070033#include <linux/usb/gadget.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35
36/*
37 * The gadgetfs API maps each endpoint to a file descriptor so that you
38 * can use standard synchronous read/write calls for I/O. There's some
39 * O_NONBLOCK and O_ASYNC/FASYNC style i/o support. Example usermode
40 * drivers show how this works in practice. You can also use AIO to
41 * eliminate I/O gaps between requests, to help when streaming data.
42 *
43 * Key parts that must be USB-specific are protocols defining how the
44 * read/write operations relate to the hardware state machines. There
45 * are two types of files. One type is for the device, implementing ep0.
46 * The other type is for each IN or OUT endpoint. In both cases, the
47 * user mode driver must configure the hardware before using it.
48 *
49 * - First, dev_config() is called when /dev/gadget/$CHIP is configured
50 * (by writing configuration and device descriptors). Afterwards it
51 * may serve as a source of device events, used to handle all control
52 * requests other than basic enumeration.
53 *
Phil Endecott511779f2007-01-15 11:35:01 -080054 * - Then, after a SET_CONFIGURATION control request, ep_config() is
55 * called when each /dev/gadget/ep* file is configured (by writing
56 * endpoint descriptors). Afterwards these files are used to write()
57 * IN data or to read() OUT data. To halt the endpoint, a "wrong
58 * direction" request is issued (like reading an IN endpoint).
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 *
60 * Unlike "usbfs" the only ioctl()s are for things that are rare, and maybe
61 * not possible on all hardware. For example, precise fault handling with
62 * respect to data left in endpoint fifos after aborted operations; or
63 * selective clearing of endpoint halts, to implement SET_INTERFACE.
64 */
65
66#define DRIVER_DESC "USB Gadget filesystem"
67#define DRIVER_VERSION "24 Aug 2004"
68
69static const char driver_desc [] = DRIVER_DESC;
70static const char shortname [] = "gadgetfs";
71
72MODULE_DESCRIPTION (DRIVER_DESC);
73MODULE_AUTHOR ("David Brownell");
74MODULE_LICENSE ("GPL");
75
Al Virod4461a62015-03-03 08:39:34 +000076static int ep_open(struct inode *, struct file *);
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79/*----------------------------------------------------------------------*/
80
81#define GADGETFS_MAGIC 0xaee71ee7
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83/* /dev/gadget/$CHIP represents ep0 and the whole device */
84enum ep0_state {
Masahiro Yamada8a1115f2017-03-09 16:16:31 -080085 /* DISABLED is the initial state. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 STATE_DEV_DISABLED = 0,
87
88 /* Only one open() of /dev/gadget/$CHIP; only one file tracks
89 * ep0/device i/o modes and binding to the controller. Driver
90 * must always write descriptors to initialize the device, then
91 * the device becomes UNCONNECTED until enumeration.
92 */
David Brownell7489d142007-01-16 22:51:04 -080093 STATE_DEV_OPENED,
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 /* From then on, ep0 fd is in either of two basic modes:
96 * - (UN)CONNECTED: read usb_gadgetfs_event(s) from it
97 * - SETUP: read/write will transfer control data and succeed;
98 * or if "wrong direction", performs protocol stall
99 */
David Brownell7489d142007-01-16 22:51:04 -0800100 STATE_DEV_UNCONNECTED,
101 STATE_DEV_CONNECTED,
102 STATE_DEV_SETUP,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104 /* UNBOUND means the driver closed ep0, so the device won't be
105 * accessible again (DEV_DISABLED) until all fds are closed.
106 */
107 STATE_DEV_UNBOUND,
108};
109
110/* enough for the whole queue: most events invalidate others */
111#define N_EVENT 5
112
113struct dev_data {
114 spinlock_t lock;
Elena Reshetovab7ddc982017-03-06 16:21:13 +0200115 refcount_t count;
Alan Stern520b72f2017-09-21 13:23:58 -0400116 int udc_usage;
David Brownell7489d142007-01-16 22:51:04 -0800117 enum ep0_state state; /* P: lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 struct usb_gadgetfs_event event [N_EVENT];
119 unsigned ev_next;
120 struct fasync_struct *fasync;
121 u8 current_config;
122
123 /* drivers reading ep0 MUST handle control requests (SETUP)
124 * reported that way; else the host will time out.
125 */
126 unsigned usermode_setup : 1,
127 setup_in : 1,
128 setup_can_stall : 1,
129 setup_out_ready : 1,
130 setup_out_error : 1,
Marek Szyprowski7b0a2712016-02-18 08:59:26 +0100131 setup_abort : 1,
132 gadget_registered : 1;
Alan Stern97906362006-01-03 10:30:31 -0500133 unsigned setup_wLength;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135 /* the rest is basically write-once */
136 struct usb_config_descriptor *config, *hs_config;
137 struct usb_device_descriptor *dev;
138 struct usb_request *req;
139 struct usb_gadget *gadget;
140 struct list_head epfiles;
141 void *buf;
142 wait_queue_head_t wait;
143 struct super_block *sb;
144 struct dentry *dentry;
145
146 /* except this scratch i/o buffer for ep0 */
147 u8 rbuf [256];
148};
149
150static inline void get_dev (struct dev_data *data)
151{
Elena Reshetovab7ddc982017-03-06 16:21:13 +0200152 refcount_inc (&data->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
154
155static void put_dev (struct dev_data *data)
156{
Elena Reshetovab7ddc982017-03-06 16:21:13 +0200157 if (likely (!refcount_dec_and_test (&data->count)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 return;
159 /* needs no more cleanup */
160 BUG_ON (waitqueue_active (&data->wait));
161 kfree (data);
162}
163
164static struct dev_data *dev_new (void)
165{
166 struct dev_data *dev;
167
Eric Sesterhenn7039f422006-02-27 13:34:10 -0800168 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 if (!dev)
170 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 dev->state = STATE_DEV_DISABLED;
Elena Reshetovab7ddc982017-03-06 16:21:13 +0200172 refcount_set (&dev->count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 spin_lock_init (&dev->lock);
174 INIT_LIST_HEAD (&dev->epfiles);
175 init_waitqueue_head (&dev->wait);
176 return dev;
177}
178
179/*----------------------------------------------------------------------*/
180
181/* other /dev/gadget/$ENDPOINT files represent endpoints */
182enum ep_state {
183 STATE_EP_DISABLED = 0,
184 STATE_EP_READY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 STATE_EP_ENABLED,
186 STATE_EP_UNBOUND,
187};
188
189struct ep_data {
Thomas Gleixnera79df502010-01-29 20:38:59 +0000190 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 enum ep_state state;
Elena Reshetova8d66db52017-03-06 16:21:14 +0200192 refcount_t count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 struct dev_data *dev;
194 /* must hold dev->lock before accessing ep or req */
195 struct usb_ep *ep;
196 struct usb_request *req;
197 ssize_t status;
198 char name [16];
199 struct usb_endpoint_descriptor desc, hs_desc;
200 struct list_head epfiles;
201 wait_queue_head_t wait;
202 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203};
204
205static inline void get_ep (struct ep_data *data)
206{
Elena Reshetova8d66db52017-03-06 16:21:14 +0200207 refcount_inc (&data->count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208}
209
210static void put_ep (struct ep_data *data)
211{
Elena Reshetova8d66db52017-03-06 16:21:14 +0200212 if (likely (!refcount_dec_and_test (&data->count)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return;
214 put_dev (data->dev);
215 /* needs no more cleanup */
216 BUG_ON (!list_empty (&data->epfiles));
217 BUG_ON (waitqueue_active (&data->wait));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 kfree (data);
219}
220
221/*----------------------------------------------------------------------*/
222
223/* most "how to use the hardware" policy choices are in userspace:
224 * mapping endpoint roles (which the driver needs) to the capabilities
225 * which the usb controller has. most of those capabilities are exposed
226 * implicitly, starting with the driver name and then endpoint names.
227 */
228
229static const char *CHIP;
230
231/*----------------------------------------------------------------------*/
232
233/* NOTE: don't use dev_printk calls before binding to the gadget
234 * at the end of ep0 configuration, or after unbind.
235 */
236
237/* too wordy: dev_printk(level , &(d)->gadget->dev , fmt , ## args) */
238#define xprintk(d,level,fmt,args...) \
239 printk(level "%s: " fmt , shortname , ## args)
240
241#ifdef DEBUG
242#define DBG(dev,fmt,args...) \
243 xprintk(dev , KERN_DEBUG , fmt , ## args)
244#else
245#define DBG(dev,fmt,args...) \
246 do { } while (0)
247#endif /* DEBUG */
248
David Brownella4e3ef52007-08-01 23:58:22 -0700249#ifdef VERBOSE_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250#define VDEBUG DBG
251#else
252#define VDEBUG(dev,fmt,args...) \
253 do { } while (0)
254#endif /* DEBUG */
255
256#define ERROR(dev,fmt,args...) \
257 xprintk(dev , KERN_ERR , fmt , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258#define INFO(dev,fmt,args...) \
259 xprintk(dev , KERN_INFO , fmt , ## args)
260
261
262/*----------------------------------------------------------------------*/
263
264/* SYNCHRONOUS ENDPOINT OPERATIONS (bulk/intr/iso)
265 *
266 * After opening, configure non-control endpoints. Then use normal
267 * stream read() and write() requests; and maybe ioctl() to get more
Steven Cole093cf722005-05-03 19:07:24 -0600268 * precise FIFO status when recovering from cancellation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 */
270
271static void epio_complete (struct usb_ep *ep, struct usb_request *req)
272{
273 struct ep_data *epdata = ep->driver_data;
274
275 if (!req->context)
276 return;
277 if (req->status)
278 epdata->status = req->status;
279 else
280 epdata->status = req->actual;
281 complete ((struct completion *)req->context);
282}
283
284/* tasklock endpoint, returning when it's connected.
285 * still need dev->lock to use epdata->ep.
286 */
287static int
Al Virod4461a62015-03-03 08:39:34 +0000288get_ready_ep (unsigned f_flags, struct ep_data *epdata, bool is_write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
290 int val;
291
292 if (f_flags & O_NONBLOCK) {
Thomas Gleixnera79df502010-01-29 20:38:59 +0000293 if (!mutex_trylock(&epdata->lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 goto nonblock;
Al Virod4461a62015-03-03 08:39:34 +0000295 if (epdata->state != STATE_EP_ENABLED &&
296 (!is_write || epdata->state != STATE_EP_READY)) {
Thomas Gleixnera79df502010-01-29 20:38:59 +0000297 mutex_unlock(&epdata->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298nonblock:
299 val = -EAGAIN;
300 } else
301 val = 0;
302 return val;
303 }
304
Thomas Gleixnera79df502010-01-29 20:38:59 +0000305 val = mutex_lock_interruptible(&epdata->lock);
306 if (val < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 return val;
Phil Endecott511779f2007-01-15 11:35:01 -0800308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 switch (epdata->state) {
310 case STATE_EP_ENABLED:
Al Virod4461a62015-03-03 08:39:34 +0000311 return 0;
312 case STATE_EP_READY: /* not configured yet */
313 if (is_write)
314 return 0;
315 // FALLTHRU
316 case STATE_EP_UNBOUND: /* clean disconnect */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 // case STATE_EP_DISABLED: /* "can't happen" */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 default: /* error! */
320 pr_debug ("%s: ep %p not available, state %d\n",
321 shortname, epdata, epdata->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 }
Al Virod4461a62015-03-03 08:39:34 +0000323 mutex_unlock(&epdata->lock);
324 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
327static ssize_t
328ep_io (struct ep_data *epdata, void *buf, unsigned len)
329{
Peter Zijlstra6e9a4732006-09-30 23:28:10 -0700330 DECLARE_COMPLETION_ONSTACK (done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 int value;
332
333 spin_lock_irq (&epdata->dev->lock);
334 if (likely (epdata->ep != NULL)) {
335 struct usb_request *req = epdata->req;
336
337 req->context = &done;
338 req->complete = epio_complete;
339 req->buf = buf;
340 req->length = len;
341 value = usb_ep_queue (epdata->ep, req, GFP_ATOMIC);
342 } else
343 value = -ENODEV;
344 spin_unlock_irq (&epdata->dev->lock);
345
346 if (likely (value == 0)) {
Thomas Gleixnerc1d51dd2020-03-21 12:25:47 +0100347 value = wait_for_completion_interruptible(&done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 if (value != 0) {
349 spin_lock_irq (&epdata->dev->lock);
350 if (likely (epdata->ep != NULL)) {
351 DBG (epdata->dev, "%s i/o interrupted\n",
352 epdata->name);
353 usb_ep_dequeue (epdata->ep, epdata->req);
354 spin_unlock_irq (&epdata->dev->lock);
355
Thomas Gleixnerc1d51dd2020-03-21 12:25:47 +0100356 wait_for_completion(&done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 if (epdata->status == -ECONNRESET)
358 epdata->status = -EINTR;
359 } else {
360 spin_unlock_irq (&epdata->dev->lock);
361
362 DBG (epdata->dev, "endpoint gone\n");
363 epdata->status = -ENODEV;
364 }
365 }
366 return epdata->status;
367 }
368 return value;
369}
370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371static int
372ep_release (struct inode *inode, struct file *fd)
373{
374 struct ep_data *data = fd->private_data;
Milan Svobodaba307f52006-06-26 07:48:00 -0700375 int value;
376
Thomas Gleixnera79df502010-01-29 20:38:59 +0000377 value = mutex_lock_interruptible(&data->lock);
378 if (value < 0)
Milan Svobodaba307f52006-06-26 07:48:00 -0700379 return value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381 /* clean up if this can be reopened */
382 if (data->state != STATE_EP_UNBOUND) {
383 data->state = STATE_EP_DISABLED;
384 data->desc.bDescriptorType = 0;
385 data->hs_desc.bDescriptorType = 0;
Pavol Kurina4809ecc2005-09-07 09:49:34 -0700386 usb_ep_disable(data->ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
Thomas Gleixnera79df502010-01-29 20:38:59 +0000388 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 put_ep (data);
390 return 0;
391}
392
Alan Cox44c389a2008-05-22 22:03:27 +0100393static long ep_ioctl(struct file *fd, unsigned code, unsigned long value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
395 struct ep_data *data = fd->private_data;
396 int status;
397
Al Virod4461a62015-03-03 08:39:34 +0000398 if ((status = get_ready_ep (fd->f_flags, data, false)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return status;
400
401 spin_lock_irq (&data->dev->lock);
402 if (likely (data->ep != NULL)) {
403 switch (code) {
404 case GADGETFS_FIFO_STATUS:
405 status = usb_ep_fifo_status (data->ep);
406 break;
407 case GADGETFS_FIFO_FLUSH:
408 usb_ep_fifo_flush (data->ep);
409 break;
410 case GADGETFS_CLEAR_HALT:
411 status = usb_ep_clear_halt (data->ep);
412 break;
413 default:
414 status = -ENOTTY;
415 }
416 } else
417 status = -ENODEV;
418 spin_unlock_irq (&data->dev->lock);
Thomas Gleixnera79df502010-01-29 20:38:59 +0000419 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 return status;
421}
422
423/*----------------------------------------------------------------------*/
424
425/* ASYNCHRONOUS ENDPOINT I/O OPERATIONS (bulk/intr/iso) */
426
427struct kiocb_priv {
428 struct usb_request *req;
429 struct ep_data *epdata;
Zach Browna80bf612013-05-07 16:18:23 -0700430 struct kiocb *iocb;
431 struct mm_struct *mm;
432 struct work_struct work;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 void *buf;
Al Viro7fe39762015-02-07 00:30:23 -0500434 struct iov_iter to;
435 const void *to_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 unsigned actual;
437};
438
Kent Overstreetbec68faa2013-05-13 14:45:08 -0700439static int ep_aio_cancel(struct kiocb *iocb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
441 struct kiocb_priv *priv = iocb->private;
442 struct ep_data *epdata;
443 int value;
444
445 local_irq_disable();
446 epdata = priv->epdata;
447 // spin_lock(&epdata->dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 if (likely(epdata && epdata->ep && priv->req))
449 value = usb_ep_dequeue (epdata->ep, priv->req);
450 else
451 value = -EINVAL;
452 // spin_unlock(&epdata->dev->lock);
453 local_irq_enable();
454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 return value;
456}
457
Zach Browna80bf612013-05-07 16:18:23 -0700458static void ep_user_copy_worker(struct work_struct *work)
459{
460 struct kiocb_priv *priv = container_of(work, struct kiocb_priv, work);
461 struct mm_struct *mm = priv->mm;
462 struct kiocb *iocb = priv->iocb;
463 size_t ret;
464
465 use_mm(mm);
Al Viro7fe39762015-02-07 00:30:23 -0500466 ret = copy_to_iter(priv->buf, priv->actual, &priv->to);
Zach Browna80bf612013-05-07 16:18:23 -0700467 unuse_mm(mm);
Al Viro7fe39762015-02-07 00:30:23 -0500468 if (!ret)
469 ret = -EFAULT;
Zach Browna80bf612013-05-07 16:18:23 -0700470
471 /* completing the iocb can drop the ctx and mm, don't touch mm after */
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100472 iocb->ki_complete(iocb, ret, ret);
Zach Browna80bf612013-05-07 16:18:23 -0700473
David Brownell25051072007-01-15 11:30:28 -0800474 kfree(priv->buf);
Al Viro7fe39762015-02-07 00:30:23 -0500475 kfree(priv->to_free);
David Brownell25051072007-01-15 11:30:28 -0800476 kfree(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477}
478
479static void ep_aio_complete(struct usb_ep *ep, struct usb_request *req)
480{
481 struct kiocb *iocb = req->context;
482 struct kiocb_priv *priv = iocb->private;
483 struct ep_data *epdata = priv->epdata;
484
485 /* lock against disconnect (and ideally, cancel) */
486 spin_lock(&epdata->dev->lock);
487 priv->req = NULL;
488 priv->epdata = NULL;
Alan Stern49631ca2007-01-16 23:28:48 -0800489
490 /* if this was a write or a read returning no data then we
491 * don't need to copy anything to userspace, so we can
492 * complete the aio request immediately.
493 */
Al Viro7fe39762015-02-07 00:30:23 -0500494 if (priv->to_free == NULL || unlikely(req->actual == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 kfree(req->buf);
Al Viro7fe39762015-02-07 00:30:23 -0500496 kfree(priv->to_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 kfree(priv);
498 iocb->private = NULL;
499 /* aio_complete() reports bytes-transferred _and_ faults */
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100500
501 iocb->ki_complete(iocb, req->actual ? req->actual : req->status,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 req->status);
503 } else {
Zach Browna80bf612013-05-07 16:18:23 -0700504 /* ep_copy_to_user() won't report both; we hide some faults */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 if (unlikely(0 != req->status))
506 DBG(epdata->dev, "%s fault %d len %d\n",
507 ep->name, req->status, req->actual);
508
509 priv->buf = req->buf;
510 priv->actual = req->actual;
Al Viro7fe39762015-02-07 00:30:23 -0500511 INIT_WORK(&priv->work, ep_user_copy_worker);
Zach Browna80bf612013-05-07 16:18:23 -0700512 schedule_work(&priv->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515 usb_ep_free_request(ep, req);
Alan Stern520b72f2017-09-21 13:23:58 -0400516 spin_unlock(&epdata->dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 put_ep(epdata);
518}
519
Al Viro7fe39762015-02-07 00:30:23 -0500520static ssize_t ep_aio(struct kiocb *iocb,
521 struct kiocb_priv *priv,
522 struct ep_data *epdata,
523 char *buf,
524 size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
Al Viro7fe39762015-02-07 00:30:23 -0500526 struct usb_request *req;
527 ssize_t value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 iocb->private = priv;
Zach Browna80bf612013-05-07 16:18:23 -0700530 priv->iocb = iocb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Kent Overstreet0460fef2013-05-07 16:18:49 -0700532 kiocb_set_cancel_fn(iocb, ep_aio_cancel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 get_ep(epdata);
534 priv->epdata = epdata;
535 priv->actual = 0;
Zach Browna80bf612013-05-07 16:18:23 -0700536 priv->mm = current->mm; /* mm teardown waits for iocbs in exit_aio() */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538 /* each kiocb is coupled to one usb_request, but we can't
539 * allocate or submit those if the host disconnected.
540 */
541 spin_lock_irq(&epdata->dev->lock);
Al Viro7fe39762015-02-07 00:30:23 -0500542 value = -ENODEV;
Mathieu Laurendeau327b21da2016-07-15 14:58:41 +0200543 if (unlikely(epdata->ep == NULL))
Al Viro7fe39762015-02-07 00:30:23 -0500544 goto fail;
545
546 req = usb_ep_alloc_request(epdata->ep, GFP_ATOMIC);
547 value = -ENOMEM;
548 if (unlikely(!req))
549 goto fail;
550
551 priv->req = req;
552 req->buf = buf;
553 req->length = len;
554 req->complete = ep_aio_complete;
555 req->context = iocb;
556 value = usb_ep_queue(epdata->ep, req, GFP_ATOMIC);
557 if (unlikely(0 != value)) {
558 usb_ep_free_request(epdata->ep, req);
559 goto fail;
560 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 spin_unlock_irq(&epdata->dev->lock);
Al Viro7fe39762015-02-07 00:30:23 -0500562 return -EIOCBQUEUED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Al Viro7fe39762015-02-07 00:30:23 -0500564fail:
565 spin_unlock_irq(&epdata->dev->lock);
566 kfree(priv->to_free);
567 kfree(priv);
568 put_ep(epdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 return value;
570}
571
572static ssize_t
Al Viro7fe39762015-02-07 00:30:23 -0500573ep_read_iter(struct kiocb *iocb, struct iov_iter *to)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
Al Viro7fe39762015-02-07 00:30:23 -0500575 struct file *file = iocb->ki_filp;
576 struct ep_data *epdata = file->private_data;
577 size_t len = iov_iter_count(to);
578 ssize_t value;
579 char *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Al Virod4461a62015-03-03 08:39:34 +0000581 if ((value = get_ready_ep(file->f_flags, epdata, false)) < 0)
Al Viro7fe39762015-02-07 00:30:23 -0500582 return value;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700583
Al Viro7fe39762015-02-07 00:30:23 -0500584 /* halt any endpoint by doing a "wrong direction" i/o call */
585 if (usb_endpoint_dir_in(&epdata->desc)) {
586 if (usb_endpoint_xfer_isoc(&epdata->desc) ||
587 !is_sync_kiocb(iocb)) {
588 mutex_unlock(&epdata->lock);
589 return -EINVAL;
590 }
591 DBG (epdata->dev, "%s halt\n", epdata->name);
592 spin_lock_irq(&epdata->dev->lock);
593 if (likely(epdata->ep != NULL))
594 usb_ep_set_halt(epdata->ep);
595 spin_unlock_irq(&epdata->dev->lock);
596 mutex_unlock(&epdata->lock);
597 return -EBADMSG;
598 }
599
600 buf = kmalloc(len, GFP_KERNEL);
601 if (unlikely(!buf)) {
602 mutex_unlock(&epdata->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 return -ENOMEM;
Al Viro7fe39762015-02-07 00:30:23 -0500604 }
605 if (is_sync_kiocb(iocb)) {
606 value = ep_io(epdata, buf, len);
Binyamin Sharet63196e92016-07-07 22:22:04 +0300607 if (value >= 0 && (copy_to_iter(buf, value, to) != value))
Al Viro7fe39762015-02-07 00:30:23 -0500608 value = -EFAULT;
609 } else {
610 struct kiocb_priv *priv = kzalloc(sizeof *priv, GFP_KERNEL);
611 value = -ENOMEM;
612 if (!priv)
613 goto fail;
614 priv->to_free = dup_iter(&priv->to, to, GFP_KERNEL);
615 if (!priv->to_free) {
616 kfree(priv);
617 goto fail;
618 }
619 value = ep_aio(iocb, priv, epdata, buf, len);
620 if (value == -EIOCBQUEUED)
621 buf = NULL;
622 }
623fail:
624 kfree(buf);
625 mutex_unlock(&epdata->lock);
626 return value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627}
628
Al Virod4461a62015-03-03 08:39:34 +0000629static ssize_t ep_config(struct ep_data *, const char *, size_t);
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631static ssize_t
Al Viro7fe39762015-02-07 00:30:23 -0500632ep_write_iter(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
Al Viro7fe39762015-02-07 00:30:23 -0500634 struct file *file = iocb->ki_filp;
635 struct ep_data *epdata = file->private_data;
636 size_t len = iov_iter_count(from);
Al Virod4461a62015-03-03 08:39:34 +0000637 bool configured;
Al Viro7fe39762015-02-07 00:30:23 -0500638 ssize_t value;
639 char *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Al Virod4461a62015-03-03 08:39:34 +0000641 if ((value = get_ready_ep(file->f_flags, epdata, true)) < 0)
Al Viro7fe39762015-02-07 00:30:23 -0500642 return value;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700643
Al Virod4461a62015-03-03 08:39:34 +0000644 configured = epdata->state == STATE_EP_ENABLED;
645
Al Viro7fe39762015-02-07 00:30:23 -0500646 /* halt any endpoint by doing a "wrong direction" i/o call */
Al Virod4461a62015-03-03 08:39:34 +0000647 if (configured && !usb_endpoint_dir_in(&epdata->desc)) {
Al Viro7fe39762015-02-07 00:30:23 -0500648 if (usb_endpoint_xfer_isoc(&epdata->desc) ||
649 !is_sync_kiocb(iocb)) {
650 mutex_unlock(&epdata->lock);
651 return -EINVAL;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700652 }
Al Viro7fe39762015-02-07 00:30:23 -0500653 DBG (epdata->dev, "%s halt\n", epdata->name);
654 spin_lock_irq(&epdata->dev->lock);
655 if (likely(epdata->ep != NULL))
656 usb_ep_set_halt(epdata->ep);
657 spin_unlock_irq(&epdata->dev->lock);
658 mutex_unlock(&epdata->lock);
659 return -EBADMSG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 }
Al Viro7fe39762015-02-07 00:30:23 -0500661
662 buf = kmalloc(len, GFP_KERNEL);
663 if (unlikely(!buf)) {
664 mutex_unlock(&epdata->lock);
665 return -ENOMEM;
666 }
667
Al Virocbbd26b2016-11-01 22:09:04 -0400668 if (unlikely(!copy_from_iter_full(buf, len, from))) {
Al Viro7fe39762015-02-07 00:30:23 -0500669 value = -EFAULT;
670 goto out;
671 }
672
Al Virod4461a62015-03-03 08:39:34 +0000673 if (unlikely(!configured)) {
674 value = ep_config(epdata, buf, len);
675 } else if (is_sync_kiocb(iocb)) {
Al Viro7fe39762015-02-07 00:30:23 -0500676 value = ep_io(epdata, buf, len);
677 } else {
678 struct kiocb_priv *priv = kzalloc(sizeof *priv, GFP_KERNEL);
679 value = -ENOMEM;
680 if (priv) {
681 value = ep_aio(iocb, priv, epdata, buf, len);
682 if (value == -EIOCBQUEUED)
683 buf = NULL;
684 }
685 }
686out:
687 kfree(buf);
688 mutex_unlock(&epdata->lock);
689 return value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690}
691
692/*----------------------------------------------------------------------*/
693
694/* used after endpoint configuration */
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300695static const struct file_operations ep_io_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Al Virod4461a62015-03-03 08:39:34 +0000698 .open = ep_open,
699 .release = ep_release,
700 .llseek = no_llseek,
Alan Cox44c389a2008-05-22 22:03:27 +0100701 .unlocked_ioctl = ep_ioctl,
Al Viro7fe39762015-02-07 00:30:23 -0500702 .read_iter = ep_read_iter,
703 .write_iter = ep_write_iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704};
705
706/* ENDPOINT INITIALIZATION
707 *
708 * fd = open ("/dev/gadget/$ENDPOINT", O_RDWR)
709 * status = write (fd, descriptors, sizeof descriptors)
710 *
711 * That write establishes the endpoint configuration, configuring
712 * the controller to process bulk, interrupt, or isochronous transfers
713 * at the right maxpacket size, and so on.
714 *
715 * The descriptors are message type 1, identified by a host order u32
716 * at the beginning of what's written. Descriptor order is: full/low
717 * speed descriptor, then optional high speed descriptor.
718 */
719static ssize_t
Al Virod4461a62015-03-03 08:39:34 +0000720ep_config (struct ep_data *data, const char *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 struct usb_ep *ep;
723 u32 tag;
Milan Svoboda8a7471a2006-06-26 07:19:00 -0700724 int value, length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 if (data->state != STATE_EP_READY) {
727 value = -EL2HLT;
728 goto fail;
729 }
730
731 value = len;
732 if (len < USB_DT_ENDPOINT_SIZE + 4)
733 goto fail0;
734
735 /* we might need to change message format someday */
Al Virod4461a62015-03-03 08:39:34 +0000736 memcpy(&tag, buf, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 if (tag != 1) {
738 DBG(data->dev, "config %s, bad tag %d\n", data->name, tag);
739 goto fail0;
740 }
741 buf += 4;
742 len -= 4;
743
744 /* NOTE: audio endpoint extensions not accepted here;
745 * just don't include the extra bytes.
746 */
747
748 /* full/low speed descriptor, then high speed */
Al Virod4461a62015-03-03 08:39:34 +0000749 memcpy(&data->desc, buf, USB_DT_ENDPOINT_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 if (data->desc.bLength != USB_DT_ENDPOINT_SIZE
751 || data->desc.bDescriptorType != USB_DT_ENDPOINT)
752 goto fail0;
753 if (len != USB_DT_ENDPOINT_SIZE) {
754 if (len != 2 * USB_DT_ENDPOINT_SIZE)
755 goto fail0;
Al Virod4461a62015-03-03 08:39:34 +0000756 memcpy(&data->hs_desc, buf + USB_DT_ENDPOINT_SIZE,
757 USB_DT_ENDPOINT_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 if (data->hs_desc.bLength != USB_DT_ENDPOINT_SIZE
759 || data->hs_desc.bDescriptorType
760 != USB_DT_ENDPOINT) {
761 DBG(data->dev, "config %s, bad hs length or type\n",
762 data->name);
763 goto fail0;
764 }
765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767 spin_lock_irq (&data->dev->lock);
768 if (data->dev->state == STATE_DEV_UNBOUND) {
769 value = -ENOENT;
770 goto gone;
Greg Kroah-Hartman1ee7eea2015-04-30 11:32:54 +0200771 } else {
772 ep = data->ep;
773 if (ep == NULL) {
774 value = -ENODEV;
775 goto gone;
776 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 }
778 switch (data->dev->gadget->speed) {
779 case USB_SPEED_LOW:
780 case USB_SPEED_FULL:
Tatyana Brokhman72c973d2011-06-28 16:33:48 +0300781 ep->desc = &data->desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 case USB_SPEED_HIGH:
784 /* fails if caller didn't provide that descriptor... */
Tatyana Brokhman72c973d2011-06-28 16:33:48 +0300785 ep->desc = &data->hs_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 default:
Phil Endecott511779f2007-01-15 11:35:01 -0800788 DBG(data->dev, "unconnected, %s init abandoned\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 data->name);
Phil Endecott511779f2007-01-15 11:35:01 -0800790 value = -EINVAL;
Al Virod4461a62015-03-03 08:39:34 +0000791 goto gone;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 }
Al Virod4461a62015-03-03 08:39:34 +0000793 value = usb_ep_enable(ep);
Milan Svoboda8a7471a2006-06-26 07:19:00 -0700794 if (value == 0) {
Al Virod4461a62015-03-03 08:39:34 +0000795 data->state = STATE_EP_ENABLED;
Milan Svoboda8a7471a2006-06-26 07:19:00 -0700796 value = length;
797 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798gone:
799 spin_unlock_irq (&data->dev->lock);
800 if (value < 0) {
801fail:
802 data->desc.bDescriptorType = 0;
803 data->hs_desc.bDescriptorType = 0;
804 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 return value;
806fail0:
807 value = -EINVAL;
808 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809}
810
811static int
812ep_open (struct inode *inode, struct file *fd)
813{
Theodore Ts'o8e18e292006-09-27 01:50:46 -0700814 struct ep_data *data = inode->i_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 int value = -EBUSY;
816
Thomas Gleixnera79df502010-01-29 20:38:59 +0000817 if (mutex_lock_interruptible(&data->lock) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 return -EINTR;
819 spin_lock_irq (&data->dev->lock);
820 if (data->dev->state == STATE_DEV_UNBOUND)
821 value = -ENOENT;
822 else if (data->state == STATE_EP_DISABLED) {
823 value = 0;
824 data->state = STATE_EP_READY;
825 get_ep (data);
826 fd->private_data = data;
827 VDEBUG (data->dev, "%s ready\n", data->name);
828 } else
829 DBG (data->dev, "%s state %d\n",
830 data->name, data->state);
831 spin_unlock_irq (&data->dev->lock);
Thomas Gleixnera79df502010-01-29 20:38:59 +0000832 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 return value;
834}
835
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836/*----------------------------------------------------------------------*/
837
838/* EP0 IMPLEMENTATION can be partly in userspace.
839 *
840 * Drivers that use this facility receive various events, including
841 * control requests the kernel doesn't handle. Drivers that don't
842 * use this facility may be too simple-minded for real applications.
843 */
844
845static inline void ep0_readable (struct dev_data *dev)
846{
847 wake_up (&dev->wait);
848 kill_fasync (&dev->fasync, SIGIO, POLL_IN);
849}
850
851static void clean_req (struct usb_ep *ep, struct usb_request *req)
852{
853 struct dev_data *dev = ep->driver_data;
854
855 if (req->buf != dev->rbuf) {
David Brownell9d8bab52007-07-01 11:04:54 -0700856 kfree(req->buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 req->buf = dev->rbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 }
859 req->complete = epio_complete;
860 dev->setup_out_ready = 0;
861}
862
863static void ep0_complete (struct usb_ep *ep, struct usb_request *req)
864{
865 struct dev_data *dev = ep->driver_data;
David Brownell5b89db022007-01-16 22:56:26 -0800866 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 int free = 1;
868
869 /* for control OUT, data must still get to userspace */
David Brownell5b89db022007-01-16 22:56:26 -0800870 spin_lock_irqsave(&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 if (!dev->setup_in) {
872 dev->setup_out_error = (req->status != 0);
873 if (!dev->setup_out_error)
874 free = 0;
875 dev->setup_out_ready = 1;
876 ep0_readable (dev);
David Brownell7489d142007-01-16 22:51:04 -0800877 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
879 /* clean up as appropriate */
880 if (free && req->buf != &dev->rbuf)
881 clean_req (ep, req);
882 req->complete = epio_complete;
David Brownell5b89db022007-01-16 22:56:26 -0800883 spin_unlock_irqrestore(&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884}
885
886static int setup_req (struct usb_ep *ep, struct usb_request *req, u16 len)
887{
888 struct dev_data *dev = ep->driver_data;
889
890 if (dev->setup_out_ready) {
891 DBG (dev, "ep0 request busy!\n");
892 return -EBUSY;
893 }
894 if (len > sizeof (dev->rbuf))
David Brownell9d8bab52007-07-01 11:04:54 -0700895 req->buf = kmalloc(len, GFP_ATOMIC);
David Brownella9475222007-07-30 12:31:07 -0700896 if (req->buf == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 req->buf = dev->rbuf;
898 return -ENOMEM;
899 }
900 req->complete = ep0_complete;
901 req->length = len;
Alan Stern97906362006-01-03 10:30:31 -0500902 req->zero = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 return 0;
904}
905
906static ssize_t
907ep0_read (struct file *fd, char __user *buf, size_t len, loff_t *ptr)
908{
909 struct dev_data *dev = fd->private_data;
910 ssize_t retval;
911 enum ep0_state state;
912
913 spin_lock_irq (&dev->lock);
Alan Stern96b62a52015-03-04 10:31:50 -0500914 if (dev->state <= STATE_DEV_OPENED) {
915 retval = -EINVAL;
916 goto done;
917 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
919 /* report fd mode change before acting on it */
920 if (dev->setup_abort) {
921 dev->setup_abort = 0;
922 retval = -EIDRM;
923 goto done;
924 }
925
926 /* control DATA stage */
David Brownell7489d142007-01-16 22:51:04 -0800927 if ((state = dev->state) == STATE_DEV_SETUP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
929 if (dev->setup_in) { /* stall IN */
930 VDEBUG(dev, "ep0in stall\n");
931 (void) usb_ep_set_halt (dev->gadget->ep0);
932 retval = -EL2HLT;
David Brownell7489d142007-01-16 22:51:04 -0800933 dev->state = STATE_DEV_CONNECTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
935 } else if (len == 0) { /* ack SET_CONFIGURATION etc */
936 struct usb_ep *ep = dev->gadget->ep0;
937 struct usb_request *req = dev->req;
938
Bin Liud246dcb2016-05-26 11:43:45 -0500939 if ((retval = setup_req (ep, req, 0)) == 0) {
Alan Stern520b72f2017-09-21 13:23:58 -0400940 ++dev->udc_usage;
Bin Liud246dcb2016-05-26 11:43:45 -0500941 spin_unlock_irq (&dev->lock);
942 retval = usb_ep_queue (ep, req, GFP_KERNEL);
943 spin_lock_irq (&dev->lock);
Alan Stern520b72f2017-09-21 13:23:58 -0400944 --dev->udc_usage;
Bin Liud246dcb2016-05-26 11:43:45 -0500945 }
David Brownell7489d142007-01-16 22:51:04 -0800946 dev->state = STATE_DEV_CONNECTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
948 /* assume that was SET_CONFIGURATION */
949 if (dev->current_config) {
950 unsigned power;
David Brownella4e3ef52007-08-01 23:58:22 -0700951
952 if (gadget_is_dualspeed(dev->gadget)
953 && (dev->gadget->speed
954 == USB_SPEED_HIGH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 power = dev->hs_config->bMaxPower;
956 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 power = dev->config->bMaxPower;
958 usb_gadget_vbus_draw(dev->gadget, 2 * power);
959 }
960
961 } else { /* collect OUT data */
962 if ((fd->f_flags & O_NONBLOCK) != 0
963 && !dev->setup_out_ready) {
964 retval = -EAGAIN;
965 goto done;
966 }
967 spin_unlock_irq (&dev->lock);
968 retval = wait_event_interruptible (dev->wait,
969 dev->setup_out_ready != 0);
970
971 /* FIXME state could change from under us */
972 spin_lock_irq (&dev->lock);
973 if (retval)
974 goto done;
David Brownell5b89db022007-01-16 22:56:26 -0800975
976 if (dev->state != STATE_DEV_SETUP) {
977 retval = -ECANCELED;
978 goto done;
979 }
980 dev->state = STATE_DEV_CONNECTED;
981
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 if (dev->setup_out_error)
983 retval = -EIO;
984 else {
985 len = min (len, (size_t)dev->req->actual);
Alan Stern6e76c012017-09-21 16:12:01 -0400986 ++dev->udc_usage;
987 spin_unlock_irq(&dev->lock);
Skip Hansen997694d2006-09-01 15:26:27 -0700988 if (copy_to_user (buf, dev->req->buf, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 retval = -EFAULT;
Thomas Faber85b4b3c2012-03-02 09:41:50 +0100990 else
991 retval = len;
Alan Stern6e76c012017-09-21 16:12:01 -0400992 spin_lock_irq(&dev->lock);
993 --dev->udc_usage;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 clean_req (dev->gadget->ep0, dev->req);
995 /* NOTE userspace can't yet choose to stall */
996 }
997 }
998 goto done;
999 }
1000
1001 /* else normal: return event data */
1002 if (len < sizeof dev->event [0]) {
1003 retval = -EINVAL;
1004 goto done;
1005 }
1006 len -= len % sizeof (struct usb_gadgetfs_event);
1007 dev->usermode_setup = 1;
1008
1009scan:
1010 /* return queued events right away */
1011 if (dev->ev_next != 0) {
1012 unsigned i, n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 n = len / sizeof (struct usb_gadgetfs_event);
David Brownell0864c7a2007-01-16 22:53:58 -08001015 if (dev->ev_next < n)
1016 n = dev->ev_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
David Brownell0864c7a2007-01-16 22:53:58 -08001018 /* ep0 i/o has special semantics during STATE_DEV_SETUP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 for (i = 0; i < n; i++) {
1020 if (dev->event [i].type == GADGETFS_SETUP) {
David Brownell0864c7a2007-01-16 22:53:58 -08001021 dev->state = STATE_DEV_SETUP;
1022 n = i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 break;
1024 }
1025 }
1026 spin_unlock_irq (&dev->lock);
David Brownell0864c7a2007-01-16 22:53:58 -08001027 len = n * sizeof (struct usb_gadgetfs_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 if (copy_to_user (buf, &dev->event, len))
1029 retval = -EFAULT;
1030 else
1031 retval = len;
1032 if (len > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 /* NOTE this doesn't guard against broken drivers;
1034 * concurrent ep0 readers may lose events.
1035 */
1036 spin_lock_irq (&dev->lock);
David Brownell0864c7a2007-01-16 22:53:58 -08001037 if (dev->ev_next > n) {
1038 memmove(&dev->event[0], &dev->event[n],
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 sizeof (struct usb_gadgetfs_event)
David Brownell0864c7a2007-01-16 22:53:58 -08001040 * (dev->ev_next - n));
1041 }
1042 dev->ev_next -= n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 spin_unlock_irq (&dev->lock);
1044 }
1045 return retval;
1046 }
1047 if (fd->f_flags & O_NONBLOCK) {
1048 retval = -EAGAIN;
1049 goto done;
1050 }
1051
1052 switch (state) {
1053 default:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001054 DBG (dev, "fail %s, state %d\n", __func__, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 retval = -ESRCH;
1056 break;
David Brownell7489d142007-01-16 22:51:04 -08001057 case STATE_DEV_UNCONNECTED:
1058 case STATE_DEV_CONNECTED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 spin_unlock_irq (&dev->lock);
Harvey Harrison441b62c2008-03-03 16:08:34 -08001060 DBG (dev, "%s wait\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
1062 /* wait for events */
1063 retval = wait_event_interruptible (dev->wait,
1064 dev->ev_next != 0);
1065 if (retval < 0)
1066 return retval;
1067 spin_lock_irq (&dev->lock);
1068 goto scan;
1069 }
1070
1071done:
1072 spin_unlock_irq (&dev->lock);
1073 return retval;
1074}
1075
1076static struct usb_gadgetfs_event *
1077next_event (struct dev_data *dev, enum usb_gadgetfs_event_type type)
1078{
1079 struct usb_gadgetfs_event *event;
1080 unsigned i;
1081
1082 switch (type) {
1083 /* these events purge the queue */
1084 case GADGETFS_DISCONNECT:
David Brownell7489d142007-01-16 22:51:04 -08001085 if (dev->state == STATE_DEV_SETUP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 dev->setup_abort = 1;
1087 // FALL THROUGH
1088 case GADGETFS_CONNECT:
1089 dev->ev_next = 0;
1090 break;
1091 case GADGETFS_SETUP: /* previous request timed out */
1092 case GADGETFS_SUSPEND: /* same effect */
1093 /* these events can't be repeated */
1094 for (i = 0; i != dev->ev_next; i++) {
1095 if (dev->event [i].type != type)
1096 continue;
David Brownell0864c7a2007-01-16 22:53:58 -08001097 DBG(dev, "discard old event[%d] %d\n", i, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 dev->ev_next--;
1099 if (i == dev->ev_next)
1100 break;
1101 /* indices start at zero, for simplicity */
1102 memmove (&dev->event [i], &dev->event [i + 1],
1103 sizeof (struct usb_gadgetfs_event)
1104 * (dev->ev_next - i));
1105 }
1106 break;
1107 default:
1108 BUG ();
1109 }
David Brownell0864c7a2007-01-16 22:53:58 -08001110 VDEBUG(dev, "event[%d] = %d\n", dev->ev_next, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 event = &dev->event [dev->ev_next++];
1112 BUG_ON (dev->ev_next > N_EVENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 memset (event, 0, sizeof *event);
1114 event->type = type;
1115 return event;
1116}
1117
1118static ssize_t
1119ep0_write (struct file *fd, const char __user *buf, size_t len, loff_t *ptr)
1120{
1121 struct dev_data *dev = fd->private_data;
1122 ssize_t retval = -ESRCH;
1123
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 /* report fd mode change before acting on it */
1125 if (dev->setup_abort) {
1126 dev->setup_abort = 0;
1127 retval = -EIDRM;
1128
1129 /* data and/or status stage for control request */
David Brownell7489d142007-01-16 22:51:04 -08001130 } else if (dev->state == STATE_DEV_SETUP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
Alan Sternfaab5092016-12-09 15:17:46 -05001132 len = min_t(size_t, len, dev->setup_wLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 if (dev->setup_in) {
1134 retval = setup_req (dev->gadget->ep0, dev->req, len);
1135 if (retval == 0) {
David Brownell5b89db022007-01-16 22:56:26 -08001136 dev->state = STATE_DEV_CONNECTED;
Alan Stern520b72f2017-09-21 13:23:58 -04001137 ++dev->udc_usage;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 spin_unlock_irq (&dev->lock);
1139 if (copy_from_user (dev->req->buf, buf, len))
1140 retval = -EFAULT;
Alan Stern97906362006-01-03 10:30:31 -05001141 else {
1142 if (len < dev->setup_wLength)
1143 dev->req->zero = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 retval = usb_ep_queue (
1145 dev->gadget->ep0, dev->req,
1146 GFP_KERNEL);
Alan Stern97906362006-01-03 10:30:31 -05001147 }
David Eccherb7bd98b2015-12-11 22:13:55 +01001148 spin_lock_irq(&dev->lock);
Alan Stern520b72f2017-09-21 13:23:58 -04001149 --dev->udc_usage;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 if (retval < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 clean_req (dev->gadget->ep0, dev->req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 } else
1153 retval = len;
1154
1155 return retval;
1156 }
1157
1158 /* can stall some OUT transfers */
1159 } else if (dev->setup_can_stall) {
1160 VDEBUG(dev, "ep0out stall\n");
1161 (void) usb_ep_set_halt (dev->gadget->ep0);
1162 retval = -EL2HLT;
David Brownell7489d142007-01-16 22:51:04 -08001163 dev->state = STATE_DEV_CONNECTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 } else {
1165 DBG(dev, "bogus ep0out stall!\n");
1166 }
1167 } else
Harvey Harrison441b62c2008-03-03 16:08:34 -08001168 DBG (dev, "fail %s, state %d\n", __func__, dev->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 return retval;
1171}
1172
1173static int
1174ep0_fasync (int f, struct file *fd, int on)
1175{
1176 struct dev_data *dev = fd->private_data;
1177 // caller must F_SETOWN before signal delivery happens
Harvey Harrison441b62c2008-03-03 16:08:34 -08001178 VDEBUG (dev, "%s %s\n", __func__, on ? "on" : "off");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 return fasync_helper (f, fd, on, &dev->fasync);
1180}
1181
1182static struct usb_gadget_driver gadgetfs_driver;
1183
1184static int
1185dev_release (struct inode *inode, struct file *fd)
1186{
1187 struct dev_data *dev = fd->private_data;
1188
1189 /* closing ep0 === shutdown all */
1190
Alan Sternf50b8782017-06-08 13:55:59 -04001191 if (dev->gadget_registered) {
Marek Szyprowski7b0a2712016-02-18 08:59:26 +01001192 usb_gadget_unregister_driver (&gadgetfs_driver);
Alan Sternf50b8782017-06-08 13:55:59 -04001193 dev->gadget_registered = false;
1194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
1196 /* at this point "good" hardware has disconnected the
1197 * device from USB; the host won't see it any more.
1198 * alternatively, all host requests will time out.
1199 */
1200
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 kfree (dev->buf);
1202 dev->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
Marcus Nutzingerf0cae932014-06-05 17:17:06 +02001204 /* other endpoints were all decoupled from this device */
1205 spin_lock_irq(&dev->lock);
1206 dev->state = STATE_DEV_DISABLED;
1207 spin_unlock_irq(&dev->lock);
1208
1209 put_dev (dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 return 0;
1211}
1212
Al Viroafc9a422017-07-03 06:39:46 -04001213static __poll_t
Milan Svobodae22fc272006-08-08 22:23:12 -07001214ep0_poll (struct file *fd, poll_table *wait)
1215{
1216 struct dev_data *dev = fd->private_data;
Al Viroafc9a422017-07-03 06:39:46 -04001217 __poll_t mask = 0;
Milan Svobodae22fc272006-08-08 22:23:12 -07001218
Alan Stern96b62a52015-03-04 10:31:50 -05001219 if (dev->state <= STATE_DEV_OPENED)
1220 return DEFAULT_POLLMASK;
1221
Colin Ian King1ff767b2019-01-22 14:26:54 +00001222 poll_wait(fd, &dev->wait, wait);
Milan Svobodae22fc272006-08-08 22:23:12 -07001223
Colin Ian King1ff767b2019-01-22 14:26:54 +00001224 spin_lock_irq(&dev->lock);
Milan Svobodae22fc272006-08-08 22:23:12 -07001225
Colin Ian King1ff767b2019-01-22 14:26:54 +00001226 /* report fd mode change before acting on it */
1227 if (dev->setup_abort) {
1228 dev->setup_abort = 0;
1229 mask = EPOLLHUP;
1230 goto out;
1231 }
Milan Svobodae22fc272006-08-08 22:23:12 -07001232
Colin Ian King1ff767b2019-01-22 14:26:54 +00001233 if (dev->state == STATE_DEV_SETUP) {
1234 if (dev->setup_in || dev->setup_can_stall)
1235 mask = EPOLLOUT;
1236 } else {
1237 if (dev->ev_next != 0)
1238 mask = EPOLLIN;
1239 }
Milan Svobodae22fc272006-08-08 22:23:12 -07001240out:
Colin Ian King1ff767b2019-01-22 14:26:54 +00001241 spin_unlock_irq(&dev->lock);
1242 return mask;
Milan Svobodae22fc272006-08-08 22:23:12 -07001243}
1244
Alan Cox44c389a2008-05-22 22:03:27 +01001245static long dev_ioctl (struct file *fd, unsigned code, unsigned long value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246{
1247 struct dev_data *dev = fd->private_data;
1248 struct usb_gadget *gadget = dev->gadget;
Alan Cox44c389a2008-05-22 22:03:27 +01001249 long ret = -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Alan Stern520b72f2017-09-21 13:23:58 -04001251 spin_lock_irq(&dev->lock);
1252 if (dev->state == STATE_DEV_OPENED ||
1253 dev->state == STATE_DEV_UNBOUND) {
1254 /* Not bound to a UDC */
1255 } else if (gadget->ops->ioctl) {
1256 ++dev->udc_usage;
1257 spin_unlock_irq(&dev->lock);
1258
Alan Cox44c389a2008-05-22 22:03:27 +01001259 ret = gadget->ops->ioctl (gadget, code, value);
Arnd Bergmann1548b132010-06-01 23:04:44 +02001260
Alan Stern520b72f2017-09-21 13:23:58 -04001261 spin_lock_irq(&dev->lock);
1262 --dev->udc_usage;
1263 }
1264 spin_unlock_irq(&dev->lock);
1265
Alan Cox44c389a2008-05-22 22:03:27 +01001266 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267}
1268
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269/*----------------------------------------------------------------------*/
1270
1271/* The in-kernel gadget driver handles most ep0 issues, in particular
1272 * enumerating the single configuration (as provided from user space).
1273 *
1274 * Unrecognized ep0 requests may be handled in user space.
1275 */
1276
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277static void make_qualifier (struct dev_data *dev)
1278{
1279 struct usb_qualifier_descriptor qual;
1280 struct usb_device_descriptor *desc;
1281
1282 qual.bLength = sizeof qual;
1283 qual.bDescriptorType = USB_DT_DEVICE_QUALIFIER;
Harvey Harrison551509d2009-02-11 14:11:36 -08001284 qual.bcdUSB = cpu_to_le16 (0x0200);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285
1286 desc = dev->dev;
1287 qual.bDeviceClass = desc->bDeviceClass;
1288 qual.bDeviceSubClass = desc->bDeviceSubClass;
1289 qual.bDeviceProtocol = desc->bDeviceProtocol;
1290
1291 /* assumes ep0 uses the same value for both speeds ... */
Sebastian Andrzej Siewior765f5b82011-06-23 14:26:11 +02001292 qual.bMaxPacketSize0 = dev->gadget->ep0->maxpacket;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
1294 qual.bNumConfigurations = 1;
1295 qual.bRESERVED = 0;
1296
1297 memcpy (dev->rbuf, &qual, sizeof qual);
1298}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
1300static int
1301config_buf (struct dev_data *dev, u8 type, unsigned index)
1302{
1303 int len;
David Brownella4e3ef52007-08-01 23:58:22 -07001304 int hs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
1306 /* only one configuration */
1307 if (index > 0)
1308 return -EINVAL;
1309
David Brownella4e3ef52007-08-01 23:58:22 -07001310 if (gadget_is_dualspeed(dev->gadget)) {
1311 hs = (dev->gadget->speed == USB_SPEED_HIGH);
1312 if (type == USB_DT_OTHER_SPEED_CONFIG)
1313 hs = !hs;
1314 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 if (hs) {
1316 dev->req->buf = dev->hs_config;
David Brownell01ee7d72007-05-25 20:40:14 -07001317 len = le16_to_cpu(dev->hs_config->wTotalLength);
David Brownella4e3ef52007-08-01 23:58:22 -07001318 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 dev->req->buf = dev->config;
David Brownell01ee7d72007-05-25 20:40:14 -07001320 len = le16_to_cpu(dev->config->wTotalLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 }
1322 ((u8 *)dev->req->buf) [1] = type;
1323 return len;
1324}
1325
1326static int
1327gadgetfs_setup (struct usb_gadget *gadget, const struct usb_ctrlrequest *ctrl)
1328{
1329 struct dev_data *dev = get_gadget_data (gadget);
1330 struct usb_request *req = dev->req;
1331 int value = -EOPNOTSUPP;
1332 struct usb_gadgetfs_event *event;
David Brownell1bbc1692005-05-07 13:05:13 -07001333 u16 w_value = le16_to_cpu(ctrl->wValue);
1334 u16 w_length = le16_to_cpu(ctrl->wLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
1336 spin_lock (&dev->lock);
1337 dev->setup_abort = 0;
David Brownell7489d142007-01-16 22:51:04 -08001338 if (dev->state == STATE_DEV_UNCONNECTED) {
David Brownella4e3ef52007-08-01 23:58:22 -07001339 if (gadget_is_dualspeed(gadget)
1340 && gadget->speed == USB_SPEED_HIGH
1341 && dev->hs_config == NULL) {
David Brownellce467942007-01-16 23:06:07 -08001342 spin_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 ERROR (dev, "no high speed config??\n");
1344 return -EINVAL;
1345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
David Brownellce467942007-01-16 23:06:07 -08001347 dev->state = STATE_DEV_CONNECTED;
David Brownellce467942007-01-16 23:06:07 -08001348
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 INFO (dev, "connected\n");
1350 event = next_event (dev, GADGETFS_CONNECT);
1351 event->u.speed = gadget->speed;
1352 ep0_readable (dev);
1353
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 /* host may have given up waiting for response. we can miss control
1355 * requests handled lower down (device/endpoint status and features);
1356 * then ep0_{read,write} will report the wrong status. controller
1357 * driver will have aborted pending i/o.
1358 */
David Brownell7489d142007-01-16 22:51:04 -08001359 } else if (dev->state == STATE_DEV_SETUP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 dev->setup_abort = 1;
1361
1362 req->buf = dev->rbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 req->context = NULL;
1364 value = -EOPNOTSUPP;
1365 switch (ctrl->bRequest) {
1366
1367 case USB_REQ_GET_DESCRIPTOR:
1368 if (ctrl->bRequestType != USB_DIR_IN)
1369 goto unrecognized;
1370 switch (w_value >> 8) {
1371
1372 case USB_DT_DEVICE:
1373 value = min (w_length, (u16) sizeof *dev->dev);
Sebastian Andrzej Siewior765f5b82011-06-23 14:26:11 +02001374 dev->dev->bMaxPacketSize0 = dev->gadget->ep0->maxpacket;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 req->buf = dev->dev;
1376 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 case USB_DT_DEVICE_QUALIFIER:
1378 if (!dev->hs_config)
1379 break;
1380 value = min (w_length, (u16)
1381 sizeof (struct usb_qualifier_descriptor));
1382 make_qualifier (dev);
1383 break;
1384 case USB_DT_OTHER_SPEED_CONFIG:
1385 // FALLTHROUGH
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 case USB_DT_CONFIG:
1387 value = config_buf (dev,
1388 w_value >> 8,
1389 w_value & 0xff);
1390 if (value >= 0)
1391 value = min (w_length, (u16) value);
1392 break;
1393 case USB_DT_STRING:
1394 goto unrecognized;
1395
1396 default: // all others are errors
1397 break;
1398 }
1399 break;
1400
1401 /* currently one config, two speeds */
1402 case USB_REQ_SET_CONFIGURATION:
1403 if (ctrl->bRequestType != 0)
Roy Hashimoto12cd5b92008-03-12 13:55:31 -08001404 goto unrecognized;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 if (0 == (u8) w_value) {
1406 value = 0;
1407 dev->current_config = 0;
1408 usb_gadget_vbus_draw(gadget, 8 /* mA */ );
1409 // user mode expected to disable endpoints
1410 } else {
1411 u8 config, power;
David Brownella4e3ef52007-08-01 23:58:22 -07001412
1413 if (gadget_is_dualspeed(gadget)
1414 && gadget->speed == USB_SPEED_HIGH) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 config = dev->hs_config->bConfigurationValue;
1416 power = dev->hs_config->bMaxPower;
David Brownella4e3ef52007-08-01 23:58:22 -07001417 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 config = dev->config->bConfigurationValue;
1419 power = dev->config->bMaxPower;
1420 }
1421
1422 if (config == (u8) w_value) {
1423 value = 0;
1424 dev->current_config = config;
1425 usb_gadget_vbus_draw(gadget, 2 * power);
1426 }
1427 }
1428
1429 /* report SET_CONFIGURATION like any other control request,
1430 * except that usermode may not stall this. the next
1431 * request mustn't be allowed start until this finishes:
1432 * endpoints and threads set up, etc.
1433 *
1434 * NOTE: older PXA hardware (before PXA 255: without UDCCFR)
1435 * has bad/racey automagic that prevents synchronizing here.
1436 * even kernel mode drivers often miss them.
1437 */
1438 if (value == 0) {
1439 INFO (dev, "configuration #%d\n", dev->current_config);
Peter Chen6027f312014-04-29 13:26:28 +08001440 usb_gadget_set_state(gadget, USB_STATE_CONFIGURED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 if (dev->usermode_setup) {
1442 dev->setup_can_stall = 0;
1443 goto delegate;
1444 }
1445 }
1446 break;
1447
Paul Bolled30f2062014-05-26 23:37:09 +02001448#ifndef CONFIG_USB_PXA25X
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 /* PXA automagically handles this request too */
1450 case USB_REQ_GET_CONFIGURATION:
1451 if (ctrl->bRequestType != 0x80)
Roy Hashimoto12cd5b92008-03-12 13:55:31 -08001452 goto unrecognized;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 *(u8 *)req->buf = dev->current_config;
1454 value = min (w_length, (u16) 1);
1455 break;
1456#endif
1457
1458 default:
1459unrecognized:
1460 VDEBUG (dev, "%s req%02x.%02x v%04x i%04x l%d\n",
1461 dev->usermode_setup ? "delegate" : "fail",
1462 ctrl->bRequestType, ctrl->bRequest,
1463 w_value, le16_to_cpu(ctrl->wIndex), w_length);
1464
1465 /* if there's an ep0 reader, don't stall */
1466 if (dev->usermode_setup) {
1467 dev->setup_can_stall = 1;
1468delegate:
1469 dev->setup_in = (ctrl->bRequestType & USB_DIR_IN)
1470 ? 1 : 0;
Alan Stern97906362006-01-03 10:30:31 -05001471 dev->setup_wLength = w_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 dev->setup_out_ready = 0;
1473 dev->setup_out_error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474
1475 /* read DATA stage for OUT right away */
1476 if (unlikely (!dev->setup_in && w_length)) {
1477 value = setup_req (gadget->ep0, dev->req,
1478 w_length);
1479 if (value < 0)
1480 break;
Bin Liud246dcb2016-05-26 11:43:45 -05001481
Alan Stern520b72f2017-09-21 13:23:58 -04001482 ++dev->udc_usage;
Bin Liud246dcb2016-05-26 11:43:45 -05001483 spin_unlock (&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 value = usb_ep_queue (gadget->ep0, dev->req,
Bin Liud246dcb2016-05-26 11:43:45 -05001485 GFP_KERNEL);
1486 spin_lock (&dev->lock);
Alan Stern520b72f2017-09-21 13:23:58 -04001487 --dev->udc_usage;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 if (value < 0) {
1489 clean_req (gadget->ep0, dev->req);
1490 break;
1491 }
1492
1493 /* we can't currently stall these */
1494 dev->setup_can_stall = 0;
1495 }
1496
1497 /* state changes when reader collects event */
1498 event = next_event (dev, GADGETFS_SETUP);
1499 event->u.setup = *ctrl;
1500 ep0_readable (dev);
1501 spin_unlock (&dev->lock);
1502 return 0;
1503 }
1504 }
1505
1506 /* proceed with data transfer and status phases? */
David Brownell7489d142007-01-16 22:51:04 -08001507 if (value >= 0 && dev->state != STATE_DEV_SETUP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 req->length = value;
1509 req->zero = value < w_length;
Bin Liud246dcb2016-05-26 11:43:45 -05001510
Alan Stern520b72f2017-09-21 13:23:58 -04001511 ++dev->udc_usage;
Bin Liud246dcb2016-05-26 11:43:45 -05001512 spin_unlock (&dev->lock);
1513 value = usb_ep_queue (gadget->ep0, req, GFP_KERNEL);
Alan Stern520b72f2017-09-21 13:23:58 -04001514 spin_lock(&dev->lock);
1515 --dev->udc_usage;
1516 spin_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 if (value < 0) {
1518 DBG (dev, "ep_queue --> %d\n", value);
1519 req->status = 0;
1520 }
Bin Liud246dcb2016-05-26 11:43:45 -05001521 return value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 }
1523
1524 /* device stalls when value < 0 */
1525 spin_unlock (&dev->lock);
1526 return value;
1527}
1528
1529static void destroy_ep_files (struct dev_data *dev)
1530{
Harvey Harrison441b62c2008-03-03 16:08:34 -08001531 DBG (dev, "%s %d\n", __func__, dev->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
1533 /* dev->state must prevent interference */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 spin_lock_irq (&dev->lock);
Al Viro104bb372012-01-08 16:13:28 -05001535 while (!list_empty(&dev->epfiles)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 struct ep_data *ep;
1537 struct inode *parent;
1538 struct dentry *dentry;
1539
1540 /* break link to FS */
Al Viro104bb372012-01-08 16:13:28 -05001541 ep = list_first_entry (&dev->epfiles, struct ep_data, epfiles);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 list_del_init (&ep->epfiles);
Alan Stern520b72f2017-09-21 13:23:58 -04001543 spin_unlock_irq (&dev->lock);
1544
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 dentry = ep->dentry;
1546 ep->dentry = NULL;
David Howells75c3cfa2015-03-17 22:26:12 +00001547 parent = d_inode(dentry->d_parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
1549 /* break link to controller */
Alan Stern520b72f2017-09-21 13:23:58 -04001550 mutex_lock(&ep->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 if (ep->state == STATE_EP_ENABLED)
1552 (void) usb_ep_disable (ep->ep);
1553 ep->state = STATE_EP_UNBOUND;
1554 usb_ep_free_request (ep->ep, ep->req);
1555 ep->ep = NULL;
Alan Stern520b72f2017-09-21 13:23:58 -04001556 mutex_unlock(&ep->lock);
1557
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 wake_up (&ep->wait);
1559 put_ep (ep);
1560
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 /* break link to dcache */
Al Viro59551022016-01-22 15:40:57 -05001562 inode_lock(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 d_delete (dentry);
1564 dput (dentry);
Al Viro59551022016-01-22 15:40:57 -05001565 inode_unlock(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
Al Viro104bb372012-01-08 16:13:28 -05001567 spin_lock_irq (&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 }
1569 spin_unlock_irq (&dev->lock);
1570}
1571
1572
Al Virofb6c3222014-09-03 13:37:56 -04001573static struct dentry *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574gadgetfs_create_file (struct super_block *sb, char const *name,
Al Virofb6c3222014-09-03 13:37:56 -04001575 void *data, const struct file_operations *fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
1577static int activate_ep_files (struct dev_data *dev)
1578{
1579 struct usb_ep *ep;
Alan Stern0ae4ea82006-05-22 12:27:38 -04001580 struct ep_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
1582 gadget_for_each_ep (ep, dev->gadget) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
Eric Sesterhenn7039f422006-02-27 13:34:10 -08001584 data = kzalloc(sizeof(*data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 if (!data)
Alan Stern0ae4ea82006-05-22 12:27:38 -04001586 goto enomem0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 data->state = STATE_EP_DISABLED;
Thomas Gleixnera79df502010-01-29 20:38:59 +00001588 mutex_init(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 init_waitqueue_head (&data->wait);
1590
1591 strncpy (data->name, ep->name, sizeof (data->name) - 1);
Elena Reshetova8d66db52017-03-06 16:21:14 +02001592 refcount_set (&data->count, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 data->dev = dev;
1594 get_dev (dev);
1595
1596 data->ep = ep;
1597 ep->driver_data = data;
1598
1599 data->req = usb_ep_alloc_request (ep, GFP_KERNEL);
1600 if (!data->req)
Alan Stern0ae4ea82006-05-22 12:27:38 -04001601 goto enomem1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
Al Virofb6c3222014-09-03 13:37:56 -04001603 data->dentry = gadgetfs_create_file (dev->sb, data->name,
Al Virod4461a62015-03-03 08:39:34 +00001604 data, &ep_io_operations);
Al Virofb6c3222014-09-03 13:37:56 -04001605 if (!data->dentry)
Alan Stern0ae4ea82006-05-22 12:27:38 -04001606 goto enomem2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 list_add_tail (&data->epfiles, &dev->epfiles);
1608 }
1609 return 0;
1610
Alan Stern0ae4ea82006-05-22 12:27:38 -04001611enomem2:
1612 usb_ep_free_request (ep, data->req);
1613enomem1:
1614 put_dev (dev);
1615 kfree (data);
1616enomem0:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001617 DBG (dev, "%s enomem\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 destroy_ep_files (dev);
1619 return -ENOMEM;
1620}
1621
1622static void
1623gadgetfs_unbind (struct usb_gadget *gadget)
1624{
1625 struct dev_data *dev = get_gadget_data (gadget);
1626
Harvey Harrison441b62c2008-03-03 16:08:34 -08001627 DBG (dev, "%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
1629 spin_lock_irq (&dev->lock);
1630 dev->state = STATE_DEV_UNBOUND;
Alan Stern520b72f2017-09-21 13:23:58 -04001631 while (dev->udc_usage > 0) {
1632 spin_unlock_irq(&dev->lock);
1633 usleep_range(1000, 2000);
1634 spin_lock_irq(&dev->lock);
1635 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 spin_unlock_irq (&dev->lock);
1637
1638 destroy_ep_files (dev);
1639 gadget->ep0->driver_data = NULL;
1640 set_gadget_data (gadget, NULL);
1641
1642 /* we've already been disconnected ... no i/o is active */
1643 if (dev->req)
1644 usb_ep_free_request (gadget->ep0, dev->req);
Harvey Harrison441b62c2008-03-03 16:08:34 -08001645 DBG (dev, "%s done\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 put_dev (dev);
1647}
1648
1649static struct dev_data *the_device;
1650
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +02001651static int gadgetfs_bind(struct usb_gadget *gadget,
1652 struct usb_gadget_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653{
1654 struct dev_data *dev = the_device;
1655
1656 if (!dev)
1657 return -ESRCH;
1658 if (0 != strcmp (CHIP, gadget->name)) {
David Brownell00274922007-11-19 12:58:36 -08001659 pr_err("%s expected %s controller not %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 shortname, CHIP, gadget->name);
1661 return -ENODEV;
1662 }
1663
1664 set_gadget_data (gadget, dev);
1665 dev->gadget = gadget;
1666 gadget->ep0->driver_data = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
1668 /* preallocate control response and buffer */
1669 dev->req = usb_ep_alloc_request (gadget->ep0, GFP_KERNEL);
1670 if (!dev->req)
1671 goto enomem;
1672 dev->req->context = NULL;
1673 dev->req->complete = epio_complete;
1674
1675 if (activate_ep_files (dev) < 0)
1676 goto enomem;
1677
1678 INFO (dev, "bound to %s driver\n", gadget->name);
David Brownell7489d142007-01-16 22:51:04 -08001679 spin_lock_irq(&dev->lock);
1680 dev->state = STATE_DEV_UNCONNECTED;
1681 spin_unlock_irq(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 get_dev (dev);
1683 return 0;
1684
1685enomem:
1686 gadgetfs_unbind (gadget);
1687 return -ENOMEM;
1688}
1689
1690static void
1691gadgetfs_disconnect (struct usb_gadget *gadget)
1692{
1693 struct dev_data *dev = get_gadget_data (gadget);
Marc Kleine-Budde001428e2011-10-10 18:38:05 +02001694 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
Marc Kleine-Budde001428e2011-10-10 18:38:05 +02001696 spin_lock_irqsave (&dev->lock, flags);
David Brownell7489d142007-01-16 22:51:04 -08001697 if (dev->state == STATE_DEV_UNCONNECTED)
Milan Svoboda07cb7f22006-06-26 07:46:00 -07001698 goto exit;
David Brownell7489d142007-01-16 22:51:04 -08001699 dev->state = STATE_DEV_UNCONNECTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
1701 INFO (dev, "disconnected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 next_event (dev, GADGETFS_DISCONNECT);
1703 ep0_readable (dev);
Milan Svoboda07cb7f22006-06-26 07:46:00 -07001704exit:
Marc Kleine-Budde001428e2011-10-10 18:38:05 +02001705 spin_unlock_irqrestore (&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706}
1707
1708static void
1709gadgetfs_suspend (struct usb_gadget *gadget)
1710{
1711 struct dev_data *dev = get_gadget_data (gadget);
Alan Sternf16443a2017-06-13 15:23:42 -04001712 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713
1714 INFO (dev, "suspended from state %d\n", dev->state);
Alan Sternf16443a2017-06-13 15:23:42 -04001715 spin_lock_irqsave(&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 switch (dev->state) {
David Brownell7489d142007-01-16 22:51:04 -08001717 case STATE_DEV_SETUP: // VERY odd... host died??
1718 case STATE_DEV_CONNECTED:
1719 case STATE_DEV_UNCONNECTED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 next_event (dev, GADGETFS_SUSPEND);
1721 ep0_readable (dev);
1722 /* FALLTHROUGH */
1723 default:
1724 break;
1725 }
Alan Sternf16443a2017-06-13 15:23:42 -04001726 spin_unlock_irqrestore(&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727}
1728
1729static struct usb_gadget_driver gadgetfs_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 .function = (char *) driver_desc,
Sebastian Andrzej Siewior93952952012-09-06 20:11:05 +02001731 .bind = gadgetfs_bind,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 .unbind = gadgetfs_unbind,
1733 .setup = gadgetfs_setup,
Peter Chen0eba4552014-09-09 08:56:51 +08001734 .reset = gadgetfs_disconnect,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 .disconnect = gadgetfs_disconnect,
1736 .suspend = gadgetfs_suspend,
1737
David Brownell25051072007-01-15 11:30:28 -08001738 .driver = {
Corentin Labbebab6bac2020-02-18 19:32:45 +00001739 .name = shortname,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 },
1741};
1742
1743/*----------------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744/* DEVICE INITIALIZATION
1745 *
1746 * fd = open ("/dev/gadget/$CHIP", O_RDWR)
1747 * status = write (fd, descriptors, sizeof descriptors)
1748 *
1749 * That write establishes the device configuration, so the kernel can
1750 * bind to the controller ... guaranteeing it can handle enumeration
1751 * at all necessary speeds. Descriptor order is:
1752 *
1753 * . message tag (u32, host order) ... for now, must be zero; it
1754 * would change to support features like multi-config devices
1755 * . full/low speed config ... all wTotalLength bytes (with interface,
1756 * class, altsetting, endpoint, and other descriptors)
1757 * . high speed config ... all descriptors, for high speed operation;
David Brownell25051072007-01-15 11:30:28 -08001758 * this one's optional except for high-speed hardware
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 * . device descriptor
1760 *
Phil Endecott511779f2007-01-15 11:35:01 -08001761 * Endpoints are not yet enabled. Drivers must wait until device
1762 * configuration and interface altsetting changes create
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 * the need to configure (or unconfigure) them.
1764 *
1765 * After initialization, the device stays active for as long as that
Phil Endecott511779f2007-01-15 11:35:01 -08001766 * $CHIP file is open. Events must then be read from that descriptor,
1767 * such as configuration notifications.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 */
1769
Alan Stern1c069b02016-12-09 15:24:24 -05001770static int is_valid_config(struct usb_config_descriptor *config,
1771 unsigned int total)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772{
1773 return config->bDescriptorType == USB_DT_CONFIG
1774 && config->bLength == USB_DT_CONFIG_SIZE
Alan Stern1c069b02016-12-09 15:24:24 -05001775 && total >= USB_DT_CONFIG_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 && config->bConfigurationValue != 0
1777 && (config->bmAttributes & USB_CONFIG_ATT_ONE) != 0
1778 && (config->bmAttributes & USB_CONFIG_ATT_WAKEUP) == 0;
1779 /* FIXME if gadget->is_otg, _must_ include an otg descriptor */
1780 /* FIXME check lengths: walk to end */
1781}
1782
1783static ssize_t
1784dev_config (struct file *fd, const char __user *buf, size_t len, loff_t *ptr)
1785{
1786 struct dev_data *dev = fd->private_data;
1787 ssize_t value = len, length = len;
1788 unsigned total;
1789 u32 tag;
1790 char *kbuf;
1791
Alan Stern96b62a52015-03-04 10:31:50 -05001792 spin_lock_irq(&dev->lock);
1793 if (dev->state > STATE_DEV_OPENED) {
1794 value = ep0_write(fd, buf, len, ptr);
1795 spin_unlock_irq(&dev->lock);
1796 return value;
1797 }
1798 spin_unlock_irq(&dev->lock);
1799
Greg Kroah-Hartman0994b0a2016-12-06 08:36:29 +01001800 if ((len < (USB_DT_CONFIG_SIZE + USB_DT_DEVICE_SIZE + 4)) ||
1801 (len > PAGE_SIZE * 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 return -EINVAL;
1803
1804 /* we might need to change message format someday */
1805 if (copy_from_user (&tag, buf, 4))
1806 return -EFAULT;
1807 if (tag != 0)
1808 return -EINVAL;
1809 buf += 4;
1810 length -= 4;
1811
Julia Lawallbe8a0582010-05-22 10:26:22 +02001812 kbuf = memdup_user(buf, length);
1813 if (IS_ERR(kbuf))
1814 return PTR_ERR(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
1816 spin_lock_irq (&dev->lock);
1817 value = -EINVAL;
Christophe JAILLETb6e7aee2017-02-21 22:33:11 +01001818 if (dev->buf) {
1819 kfree(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 goto fail;
Christophe JAILLETb6e7aee2017-02-21 22:33:11 +01001821 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 dev->buf = kbuf;
1823
1824 /* full or low speed config */
1825 dev->config = (void *) kbuf;
David Brownell01ee7d72007-05-25 20:40:14 -07001826 total = le16_to_cpu(dev->config->wTotalLength);
Alan Stern1c069b02016-12-09 15:24:24 -05001827 if (!is_valid_config(dev->config, total) ||
1828 total > length - USB_DT_DEVICE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 goto fail;
1830 kbuf += total;
1831 length -= total;
1832
1833 /* optional high speed config */
1834 if (kbuf [1] == USB_DT_CONFIG) {
1835 dev->hs_config = (void *) kbuf;
David Brownell01ee7d72007-05-25 20:40:14 -07001836 total = le16_to_cpu(dev->hs_config->wTotalLength);
Alan Stern1c069b02016-12-09 15:24:24 -05001837 if (!is_valid_config(dev->hs_config, total) ||
1838 total > length - USB_DT_DEVICE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 goto fail;
1840 kbuf += total;
1841 length -= total;
Alan Sternadd333a2016-12-09 15:18:43 -05001842 } else {
1843 dev->hs_config = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 }
1845
1846 /* could support multiple configs, using another encoding! */
1847
1848 /* device descriptor (tweaked for paranoia) */
1849 if (length != USB_DT_DEVICE_SIZE)
1850 goto fail;
1851 dev->dev = (void *)kbuf;
1852 if (dev->dev->bLength != USB_DT_DEVICE_SIZE
1853 || dev->dev->bDescriptorType != USB_DT_DEVICE
1854 || dev->dev->bNumConfigurations != 1)
1855 goto fail;
Harvey Harrison551509d2009-02-11 14:11:36 -08001856 dev->dev->bcdUSB = cpu_to_le16 (0x0200);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
1858 /* triggers gadgetfs_bind(); then we can enumerate. */
1859 spin_unlock_irq (&dev->lock);
Michal Nazarewicz85b86142012-08-24 20:46:18 +02001860 if (dev->hs_config)
1861 gadgetfs_driver.max_speed = USB_SPEED_HIGH;
1862 else
1863 gadgetfs_driver.max_speed = USB_SPEED_FULL;
Sebastian Andrzej Siewior93952952012-09-06 20:11:05 +02001864
1865 value = usb_gadget_probe_driver(&gadgetfs_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 if (value != 0) {
1867 kfree (dev->buf);
1868 dev->buf = NULL;
1869 } else {
1870 /* at this point "good" hardware has for the first time
1871 * let the USB the host see us. alternatively, if users
1872 * unplug/replug that will clear all the error state.
1873 *
1874 * note: everything running before here was guaranteed
1875 * to choke driver model style diagnostics. from here
1876 * on, they can work ... except in cleanup paths that
1877 * kick in after the ep0 descriptor is closed.
1878 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 value = len;
Marek Szyprowski7b0a2712016-02-18 08:59:26 +01001880 dev->gadget_registered = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 }
1882 return value;
1883
1884fail:
1885 spin_unlock_irq (&dev->lock);
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -08001886 pr_debug ("%s: %s fail %zd, %p\n", shortname, __func__, value, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 kfree (dev->buf);
1888 dev->buf = NULL;
1889 return value;
1890}
1891
1892static int
1893dev_open (struct inode *inode, struct file *fd)
1894{
Theodore Ts'o8e18e292006-09-27 01:50:46 -07001895 struct dev_data *dev = inode->i_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 int value = -EBUSY;
1897
David Brownell7489d142007-01-16 22:51:04 -08001898 spin_lock_irq(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 if (dev->state == STATE_DEV_DISABLED) {
1900 dev->ev_next = 0;
David Brownell7489d142007-01-16 22:51:04 -08001901 dev->state = STATE_DEV_OPENED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 fd->private_data = dev;
1903 get_dev (dev);
1904 value = 0;
1905 }
David Brownell7489d142007-01-16 22:51:04 -08001906 spin_unlock_irq(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 return value;
1908}
1909
Alan Stern96b62a52015-03-04 10:31:50 -05001910static const struct file_operations ep0_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 .llseek = no_llseek,
1912
1913 .open = dev_open,
Alan Stern96b62a52015-03-04 10:31:50 -05001914 .read = ep0_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 .write = dev_config,
1916 .fasync = ep0_fasync,
Alan Stern96b62a52015-03-04 10:31:50 -05001917 .poll = ep0_poll,
Alan Cox44c389a2008-05-22 22:03:27 +01001918 .unlocked_ioctl = dev_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 .release = dev_release,
1920};
1921
1922/*----------------------------------------------------------------------*/
1923
1924/* FILESYSTEM AND SUPERBLOCK OPERATIONS
1925 *
1926 * Mounting the filesystem creates a controller file, used first for
1927 * device configuration then later for event monitoring.
1928 */
1929
1930
1931/* FIXME PAM etc could set this security policy without mount options
1932 * if epfiles inherited ownership and permissons from ep0 ...
1933 */
1934
1935static unsigned default_uid;
1936static unsigned default_gid;
1937static unsigned default_perm = S_IRUSR | S_IWUSR;
1938
1939module_param (default_uid, uint, 0644);
1940module_param (default_gid, uint, 0644);
1941module_param (default_perm, uint, 0644);
1942
1943
1944static struct inode *
1945gadgetfs_make_inode (struct super_block *sb,
Arjan van de Ven99ac48f2006-03-28 01:56:41 -08001946 void *data, const struct file_operations *fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 int mode)
1948{
1949 struct inode *inode = new_inode (sb);
1950
1951 if (inode) {
Christoph Hellwig85fe4022010-10-23 11:19:54 -04001952 inode->i_ino = get_next_ino();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 inode->i_mode = mode;
Eric W. Biederman32d639c2012-02-07 16:32:04 -08001954 inode->i_uid = make_kuid(&init_user_ns, default_uid);
1955 inode->i_gid = make_kgid(&init_user_ns, default_gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 inode->i_atime = inode->i_mtime = inode->i_ctime
Deepa Dinamani078cd822016-09-14 07:48:04 -07001957 = current_time(inode);
Theodore Ts'o8e18e292006-09-27 01:50:46 -07001958 inode->i_private = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 inode->i_fop = fops;
1960 }
1961 return inode;
1962}
1963
1964/* creates in fs root directory, so non-renamable and non-linkable.
1965 * so inode and dentry are paired, until device reconfig.
1966 */
Al Virofb6c3222014-09-03 13:37:56 -04001967static struct dentry *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968gadgetfs_create_file (struct super_block *sb, char const *name,
Al Virofb6c3222014-09-03 13:37:56 -04001969 void *data, const struct file_operations *fops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970{
1971 struct dentry *dentry;
1972 struct inode *inode;
1973
1974 dentry = d_alloc_name(sb->s_root, name);
1975 if (!dentry)
1976 return NULL;
1977
1978 inode = gadgetfs_make_inode (sb, data, fops,
1979 S_IFREG | (default_perm & S_IRWXUGO));
1980 if (!inode) {
1981 dput(dentry);
1982 return NULL;
1983 }
1984 d_add (dentry, inode);
Al Virofb6c3222014-09-03 13:37:56 -04001985 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986}
1987
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001988static const struct super_operations gadget_fs_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 .statfs = simple_statfs,
1990 .drop_inode = generic_delete_inode,
1991};
1992
1993static int
David Howellse5d82a732019-03-25 16:38:30 +00001994gadgetfs_fill_super (struct super_block *sb, struct fs_context *fc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995{
1996 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 struct dev_data *dev;
1998
1999 if (the_device)
2000 return -ESRCH;
2001
Marek Szyprowski175f7122016-02-18 11:34:43 +01002002 CHIP = usb_get_gadget_udc_name();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 if (!CHIP)
2004 return -ENODEV;
2005
2006 /* superblock */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002007 sb->s_blocksize = PAGE_SIZE;
2008 sb->s_blocksize_bits = PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 sb->s_magic = GADGETFS_MAGIC;
2010 sb->s_op = &gadget_fs_operations;
2011 sb->s_time_gran = 1;
2012
2013 /* root inode */
2014 inode = gadgetfs_make_inode (sb,
2015 NULL, &simple_dir_operations,
2016 S_IFDIR | S_IRUGO | S_IXUGO);
2017 if (!inode)
Al Viro87da5b32012-01-08 15:59:45 -05002018 goto Enomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 inode->i_op = &simple_dir_inode_operations;
Al Viro48fde702012-01-08 22:15:13 -05002020 if (!(sb->s_root = d_make_root (inode)))
Al Viro87da5b32012-01-08 15:59:45 -05002021 goto Enomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022
2023 /* the ep0 file is named after the controller we expect;
2024 * user mode code can use it for sanity checks, like we do.
2025 */
2026 dev = dev_new ();
2027 if (!dev)
Al Viro87da5b32012-01-08 15:59:45 -05002028 goto Enomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
2030 dev->sb = sb;
Alan Stern96b62a52015-03-04 10:31:50 -05002031 dev->dentry = gadgetfs_create_file(sb, CHIP, dev, &ep0_operations);
Al Virofb6c3222014-09-03 13:37:56 -04002032 if (!dev->dentry) {
Al Viro87da5b32012-01-08 15:59:45 -05002033 put_dev(dev);
2034 goto Enomem;
2035 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
2037 /* other endpoint files are available after hardware setup,
2038 * from binding to a controller.
2039 */
2040 the_device = dev;
2041 return 0;
Alan Stern0ae4ea82006-05-22 12:27:38 -04002042
Al Viro87da5b32012-01-08 15:59:45 -05002043Enomem:
Alan Stern0ae4ea82006-05-22 12:27:38 -04002044 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045}
2046
2047/* "mount -t gadgetfs path /dev/gadget" ends up here */
David Howellse5d82a732019-03-25 16:38:30 +00002048static int gadgetfs_get_tree(struct fs_context *fc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049{
David Howellse5d82a732019-03-25 16:38:30 +00002050 return get_tree_single(fc, gadgetfs_fill_super);
2051}
2052
2053static const struct fs_context_operations gadgetfs_context_ops = {
2054 .get_tree = gadgetfs_get_tree,
2055};
2056
2057static int gadgetfs_init_fs_context(struct fs_context *fc)
2058{
2059 fc->ops = &gadgetfs_context_ops;
2060 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061}
2062
2063static void
2064gadgetfs_kill_sb (struct super_block *sb)
2065{
2066 kill_litter_super (sb);
2067 if (the_device) {
2068 put_dev (the_device);
2069 the_device = NULL;
2070 }
Marek Szyprowski175f7122016-02-18 11:34:43 +01002071 kfree(CHIP);
2072 CHIP = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073}
2074
2075/*----------------------------------------------------------------------*/
2076
2077static struct file_system_type gadgetfs_type = {
2078 .owner = THIS_MODULE,
2079 .name = shortname,
David Howellse5d82a732019-03-25 16:38:30 +00002080 .init_fs_context = gadgetfs_init_fs_context,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 .kill_sb = gadgetfs_kill_sb,
2082};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08002083MODULE_ALIAS_FS("gadgetfs");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
2085/*----------------------------------------------------------------------*/
2086
2087static int __init init (void)
2088{
2089 int status;
2090
2091 status = register_filesystem (&gadgetfs_type);
2092 if (status == 0)
2093 pr_info ("%s: %s, version " DRIVER_VERSION "\n",
2094 shortname, driver_desc);
2095 return status;
2096}
2097module_init (init);
2098
2099static void __exit cleanup (void)
2100{
2101 pr_debug ("unregister %s\n", shortname);
2102 unregister_filesystem (&gadgetfs_type);
2103}
2104module_exit (cleanup);
2105