blob: b8534d3f8bb0ee5bacb9a5f7493cb794eace3806 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * inode.c -- user mode filesystem api for usb gadget controllers
3 *
4 * Copyright (C) 2003-2004 David Brownell
5 * Copyright (C) 2003 Agilent Technologies
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12
13
David Brownella4e3ef52007-08-01 23:58:22 -070014/* #define VERBOSE_DEBUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16#include <linux/init.h>
17#include <linux/module.h>
18#include <linux/fs.h>
19#include <linux/pagemap.h>
20#include <linux/uts.h>
21#include <linux/wait.h>
22#include <linux/compiler.h>
23#include <asm/uaccess.h>
Alexey Dobriyana99bbaf2009-10-04 16:11:37 +040024#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/slab.h>
Milan Svobodae22fc272006-08-08 22:23:12 -070026#include <linux/poll.h>
Zach Browna80bf612013-05-07 16:18:23 -070027#include <linux/mmu_context.h>
Kent Overstreet4e179bc2013-05-07 16:18:33 -070028#include <linux/aio.h>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080029#include <linux/uio.h>
Alan Sternfd5336c2017-09-21 13:23:58 -040030#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/device.h>
32#include <linux/moduleparam.h>
33
David Brownella5262dc2007-05-14 19:36:41 -070034#include <linux/usb/gadgetfs.h>
David Brownell9454a572007-10-04 18:05:17 -070035#include <linux/usb/gadget.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37
38/*
39 * The gadgetfs API maps each endpoint to a file descriptor so that you
40 * can use standard synchronous read/write calls for I/O. There's some
41 * O_NONBLOCK and O_ASYNC/FASYNC style i/o support. Example usermode
42 * drivers show how this works in practice. You can also use AIO to
43 * eliminate I/O gaps between requests, to help when streaming data.
44 *
45 * Key parts that must be USB-specific are protocols defining how the
46 * read/write operations relate to the hardware state machines. There
47 * are two types of files. One type is for the device, implementing ep0.
48 * The other type is for each IN or OUT endpoint. In both cases, the
49 * user mode driver must configure the hardware before using it.
50 *
51 * - First, dev_config() is called when /dev/gadget/$CHIP is configured
52 * (by writing configuration and device descriptors). Afterwards it
53 * may serve as a source of device events, used to handle all control
54 * requests other than basic enumeration.
55 *
Phil Endecott511779f2007-01-15 11:35:01 -080056 * - Then, after a SET_CONFIGURATION control request, ep_config() is
57 * called when each /dev/gadget/ep* file is configured (by writing
58 * endpoint descriptors). Afterwards these files are used to write()
59 * IN data or to read() OUT data. To halt the endpoint, a "wrong
60 * direction" request is issued (like reading an IN endpoint).
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 *
62 * Unlike "usbfs" the only ioctl()s are for things that are rare, and maybe
63 * not possible on all hardware. For example, precise fault handling with
64 * respect to data left in endpoint fifos after aborted operations; or
65 * selective clearing of endpoint halts, to implement SET_INTERFACE.
66 */
67
68#define DRIVER_DESC "USB Gadget filesystem"
69#define DRIVER_VERSION "24 Aug 2004"
70
71static const char driver_desc [] = DRIVER_DESC;
72static const char shortname [] = "gadgetfs";
73
74MODULE_DESCRIPTION (DRIVER_DESC);
75MODULE_AUTHOR ("David Brownell");
76MODULE_LICENSE ("GPL");
77
Al Virod4461a62015-03-03 08:39:34 +000078static int ep_open(struct inode *, struct file *);
79
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81/*----------------------------------------------------------------------*/
82
83#define GADGETFS_MAGIC 0xaee71ee7
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85/* /dev/gadget/$CHIP represents ep0 and the whole device */
86enum ep0_state {
87 /* DISBLED is the initial state.
88 */
89 STATE_DEV_DISABLED = 0,
90
91 /* Only one open() of /dev/gadget/$CHIP; only one file tracks
92 * ep0/device i/o modes and binding to the controller. Driver
93 * must always write descriptors to initialize the device, then
94 * the device becomes UNCONNECTED until enumeration.
95 */
David Brownell7489d142007-01-16 22:51:04 -080096 STATE_DEV_OPENED,
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
98 /* From then on, ep0 fd is in either of two basic modes:
99 * - (UN)CONNECTED: read usb_gadgetfs_event(s) from it
100 * - SETUP: read/write will transfer control data and succeed;
101 * or if "wrong direction", performs protocol stall
102 */
David Brownell7489d142007-01-16 22:51:04 -0800103 STATE_DEV_UNCONNECTED,
104 STATE_DEV_CONNECTED,
105 STATE_DEV_SETUP,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107 /* UNBOUND means the driver closed ep0, so the device won't be
108 * accessible again (DEV_DISABLED) until all fds are closed.
109 */
110 STATE_DEV_UNBOUND,
111};
112
113/* enough for the whole queue: most events invalidate others */
114#define N_EVENT 5
115
116struct dev_data {
117 spinlock_t lock;
118 atomic_t count;
Alan Sternfd5336c2017-09-21 13:23:58 -0400119 int udc_usage;
David Brownell7489d142007-01-16 22:51:04 -0800120 enum ep0_state state; /* P: lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 struct usb_gadgetfs_event event [N_EVENT];
122 unsigned ev_next;
123 struct fasync_struct *fasync;
124 u8 current_config;
125
126 /* drivers reading ep0 MUST handle control requests (SETUP)
127 * reported that way; else the host will time out.
128 */
129 unsigned usermode_setup : 1,
130 setup_in : 1,
131 setup_can_stall : 1,
132 setup_out_ready : 1,
133 setup_out_error : 1,
Marek Szyprowski7b0a2712016-02-18 08:59:26 +0100134 setup_abort : 1,
135 gadget_registered : 1;
Alan Stern97906362006-01-03 10:30:31 -0500136 unsigned setup_wLength;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138 /* the rest is basically write-once */
139 struct usb_config_descriptor *config, *hs_config;
140 struct usb_device_descriptor *dev;
141 struct usb_request *req;
142 struct usb_gadget *gadget;
143 struct list_head epfiles;
144 void *buf;
145 wait_queue_head_t wait;
146 struct super_block *sb;
147 struct dentry *dentry;
148
149 /* except this scratch i/o buffer for ep0 */
150 u8 rbuf [256];
151};
152
153static inline void get_dev (struct dev_data *data)
154{
155 atomic_inc (&data->count);
156}
157
158static void put_dev (struct dev_data *data)
159{
160 if (likely (!atomic_dec_and_test (&data->count)))
161 return;
162 /* needs no more cleanup */
163 BUG_ON (waitqueue_active (&data->wait));
164 kfree (data);
165}
166
167static struct dev_data *dev_new (void)
168{
169 struct dev_data *dev;
170
Eric Sesterhenn7039f422006-02-27 13:34:10 -0800171 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 if (!dev)
173 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 dev->state = STATE_DEV_DISABLED;
175 atomic_set (&dev->count, 1);
176 spin_lock_init (&dev->lock);
177 INIT_LIST_HEAD (&dev->epfiles);
178 init_waitqueue_head (&dev->wait);
179 return dev;
180}
181
182/*----------------------------------------------------------------------*/
183
184/* other /dev/gadget/$ENDPOINT files represent endpoints */
185enum ep_state {
186 STATE_EP_DISABLED = 0,
187 STATE_EP_READY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 STATE_EP_ENABLED,
189 STATE_EP_UNBOUND,
190};
191
192struct ep_data {
Thomas Gleixnera79df502010-01-29 20:38:59 +0000193 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 enum ep_state state;
195 atomic_t count;
196 struct dev_data *dev;
197 /* must hold dev->lock before accessing ep or req */
198 struct usb_ep *ep;
199 struct usb_request *req;
200 ssize_t status;
201 char name [16];
202 struct usb_endpoint_descriptor desc, hs_desc;
203 struct list_head epfiles;
204 wait_queue_head_t wait;
205 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206};
207
208static inline void get_ep (struct ep_data *data)
209{
210 atomic_inc (&data->count);
211}
212
213static void put_ep (struct ep_data *data)
214{
215 if (likely (!atomic_dec_and_test (&data->count)))
216 return;
217 put_dev (data->dev);
218 /* needs no more cleanup */
219 BUG_ON (!list_empty (&data->epfiles));
220 BUG_ON (waitqueue_active (&data->wait));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 kfree (data);
222}
223
224/*----------------------------------------------------------------------*/
225
226/* most "how to use the hardware" policy choices are in userspace:
227 * mapping endpoint roles (which the driver needs) to the capabilities
228 * which the usb controller has. most of those capabilities are exposed
229 * implicitly, starting with the driver name and then endpoint names.
230 */
231
232static const char *CHIP;
233
234/*----------------------------------------------------------------------*/
235
236/* NOTE: don't use dev_printk calls before binding to the gadget
237 * at the end of ep0 configuration, or after unbind.
238 */
239
240/* too wordy: dev_printk(level , &(d)->gadget->dev , fmt , ## args) */
241#define xprintk(d,level,fmt,args...) \
242 printk(level "%s: " fmt , shortname , ## args)
243
244#ifdef DEBUG
245#define DBG(dev,fmt,args...) \
246 xprintk(dev , KERN_DEBUG , fmt , ## args)
247#else
248#define DBG(dev,fmt,args...) \
249 do { } while (0)
250#endif /* DEBUG */
251
David Brownella4e3ef52007-08-01 23:58:22 -0700252#ifdef VERBOSE_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253#define VDEBUG DBG
254#else
255#define VDEBUG(dev,fmt,args...) \
256 do { } while (0)
257#endif /* DEBUG */
258
259#define ERROR(dev,fmt,args...) \
260 xprintk(dev , KERN_ERR , fmt , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261#define INFO(dev,fmt,args...) \
262 xprintk(dev , KERN_INFO , fmt , ## args)
263
264
265/*----------------------------------------------------------------------*/
266
267/* SYNCHRONOUS ENDPOINT OPERATIONS (bulk/intr/iso)
268 *
269 * After opening, configure non-control endpoints. Then use normal
270 * stream read() and write() requests; and maybe ioctl() to get more
Steven Cole093cf722005-05-03 19:07:24 -0600271 * precise FIFO status when recovering from cancellation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 */
273
274static void epio_complete (struct usb_ep *ep, struct usb_request *req)
275{
276 struct ep_data *epdata = ep->driver_data;
277
278 if (!req->context)
279 return;
280 if (req->status)
281 epdata->status = req->status;
282 else
283 epdata->status = req->actual;
284 complete ((struct completion *)req->context);
285}
286
287/* tasklock endpoint, returning when it's connected.
288 * still need dev->lock to use epdata->ep.
289 */
290static int
Al Virod4461a62015-03-03 08:39:34 +0000291get_ready_ep (unsigned f_flags, struct ep_data *epdata, bool is_write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292{
293 int val;
294
295 if (f_flags & O_NONBLOCK) {
Thomas Gleixnera79df502010-01-29 20:38:59 +0000296 if (!mutex_trylock(&epdata->lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 goto nonblock;
Al Virod4461a62015-03-03 08:39:34 +0000298 if (epdata->state != STATE_EP_ENABLED &&
299 (!is_write || epdata->state != STATE_EP_READY)) {
Thomas Gleixnera79df502010-01-29 20:38:59 +0000300 mutex_unlock(&epdata->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301nonblock:
302 val = -EAGAIN;
303 } else
304 val = 0;
305 return val;
306 }
307
Thomas Gleixnera79df502010-01-29 20:38:59 +0000308 val = mutex_lock_interruptible(&epdata->lock);
309 if (val < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 return val;
Phil Endecott511779f2007-01-15 11:35:01 -0800311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 switch (epdata->state) {
313 case STATE_EP_ENABLED:
Al Virod4461a62015-03-03 08:39:34 +0000314 return 0;
315 case STATE_EP_READY: /* not configured yet */
316 if (is_write)
317 return 0;
318 // FALLTHRU
319 case STATE_EP_UNBOUND: /* clean disconnect */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 // case STATE_EP_DISABLED: /* "can't happen" */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 default: /* error! */
323 pr_debug ("%s: ep %p not available, state %d\n",
324 shortname, epdata, epdata->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 }
Al Virod4461a62015-03-03 08:39:34 +0000326 mutex_unlock(&epdata->lock);
327 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329
330static ssize_t
331ep_io (struct ep_data *epdata, void *buf, unsigned len)
332{
Peter Zijlstra6e9a4732006-09-30 23:28:10 -0700333 DECLARE_COMPLETION_ONSTACK (done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 int value;
335
336 spin_lock_irq (&epdata->dev->lock);
337 if (likely (epdata->ep != NULL)) {
338 struct usb_request *req = epdata->req;
339
340 req->context = &done;
341 req->complete = epio_complete;
342 req->buf = buf;
343 req->length = len;
344 value = usb_ep_queue (epdata->ep, req, GFP_ATOMIC);
345 } else
346 value = -ENODEV;
347 spin_unlock_irq (&epdata->dev->lock);
348
349 if (likely (value == 0)) {
350 value = wait_event_interruptible (done.wait, done.done);
351 if (value != 0) {
352 spin_lock_irq (&epdata->dev->lock);
353 if (likely (epdata->ep != NULL)) {
354 DBG (epdata->dev, "%s i/o interrupted\n",
355 epdata->name);
356 usb_ep_dequeue (epdata->ep, epdata->req);
357 spin_unlock_irq (&epdata->dev->lock);
358
359 wait_event (done.wait, done.done);
360 if (epdata->status == -ECONNRESET)
361 epdata->status = -EINTR;
362 } else {
363 spin_unlock_irq (&epdata->dev->lock);
364
365 DBG (epdata->dev, "endpoint gone\n");
366 epdata->status = -ENODEV;
367 }
368 }
369 return epdata->status;
370 }
371 return value;
372}
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374static int
375ep_release (struct inode *inode, struct file *fd)
376{
377 struct ep_data *data = fd->private_data;
Milan Svobodaba307f52006-06-26 07:48:00 -0700378 int value;
379
Thomas Gleixnera79df502010-01-29 20:38:59 +0000380 value = mutex_lock_interruptible(&data->lock);
381 if (value < 0)
Milan Svobodaba307f52006-06-26 07:48:00 -0700382 return value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 /* clean up if this can be reopened */
385 if (data->state != STATE_EP_UNBOUND) {
386 data->state = STATE_EP_DISABLED;
387 data->desc.bDescriptorType = 0;
388 data->hs_desc.bDescriptorType = 0;
Pavol Kurina4809ecc2005-09-07 09:49:34 -0700389 usb_ep_disable(data->ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 }
Thomas Gleixnera79df502010-01-29 20:38:59 +0000391 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 put_ep (data);
393 return 0;
394}
395
Alan Cox44c389a2008-05-22 22:03:27 +0100396static long ep_ioctl(struct file *fd, unsigned code, unsigned long value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
398 struct ep_data *data = fd->private_data;
399 int status;
400
Al Virod4461a62015-03-03 08:39:34 +0000401 if ((status = get_ready_ep (fd->f_flags, data, false)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 return status;
403
404 spin_lock_irq (&data->dev->lock);
405 if (likely (data->ep != NULL)) {
406 switch (code) {
407 case GADGETFS_FIFO_STATUS:
408 status = usb_ep_fifo_status (data->ep);
409 break;
410 case GADGETFS_FIFO_FLUSH:
411 usb_ep_fifo_flush (data->ep);
412 break;
413 case GADGETFS_CLEAR_HALT:
414 status = usb_ep_clear_halt (data->ep);
415 break;
416 default:
417 status = -ENOTTY;
418 }
419 } else
420 status = -ENODEV;
421 spin_unlock_irq (&data->dev->lock);
Thomas Gleixnera79df502010-01-29 20:38:59 +0000422 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 return status;
424}
425
426/*----------------------------------------------------------------------*/
427
428/* ASYNCHRONOUS ENDPOINT I/O OPERATIONS (bulk/intr/iso) */
429
430struct kiocb_priv {
431 struct usb_request *req;
432 struct ep_data *epdata;
Zach Browna80bf612013-05-07 16:18:23 -0700433 struct kiocb *iocb;
434 struct mm_struct *mm;
435 struct work_struct work;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 void *buf;
Al Viro7fe39762015-02-07 00:30:23 -0500437 struct iov_iter to;
438 const void *to_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 unsigned actual;
440};
441
Kent Overstreetbec68faa2013-05-13 14:45:08 -0700442static int ep_aio_cancel(struct kiocb *iocb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
444 struct kiocb_priv *priv = iocb->private;
445 struct ep_data *epdata;
446 int value;
447
448 local_irq_disable();
449 epdata = priv->epdata;
450 // spin_lock(&epdata->dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 if (likely(epdata && epdata->ep && priv->req))
452 value = usb_ep_dequeue (epdata->ep, priv->req);
453 else
454 value = -EINVAL;
455 // spin_unlock(&epdata->dev->lock);
456 local_irq_enable();
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 return value;
459}
460
Zach Browna80bf612013-05-07 16:18:23 -0700461static void ep_user_copy_worker(struct work_struct *work)
462{
463 struct kiocb_priv *priv = container_of(work, struct kiocb_priv, work);
464 struct mm_struct *mm = priv->mm;
465 struct kiocb *iocb = priv->iocb;
466 size_t ret;
467
468 use_mm(mm);
Al Viro7fe39762015-02-07 00:30:23 -0500469 ret = copy_to_iter(priv->buf, priv->actual, &priv->to);
Zach Browna80bf612013-05-07 16:18:23 -0700470 unuse_mm(mm);
Al Viro7fe39762015-02-07 00:30:23 -0500471 if (!ret)
472 ret = -EFAULT;
Zach Browna80bf612013-05-07 16:18:23 -0700473
474 /* completing the iocb can drop the ctx and mm, don't touch mm after */
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100475 iocb->ki_complete(iocb, ret, ret);
Zach Browna80bf612013-05-07 16:18:23 -0700476
David Brownell25051072007-01-15 11:30:28 -0800477 kfree(priv->buf);
Al Viro7fe39762015-02-07 00:30:23 -0500478 kfree(priv->to_free);
David Brownell25051072007-01-15 11:30:28 -0800479 kfree(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480}
481
482static void ep_aio_complete(struct usb_ep *ep, struct usb_request *req)
483{
484 struct kiocb *iocb = req->context;
485 struct kiocb_priv *priv = iocb->private;
486 struct ep_data *epdata = priv->epdata;
487
488 /* lock against disconnect (and ideally, cancel) */
489 spin_lock(&epdata->dev->lock);
490 priv->req = NULL;
491 priv->epdata = NULL;
Alan Stern49631ca2007-01-16 23:28:48 -0800492
493 /* if this was a write or a read returning no data then we
494 * don't need to copy anything to userspace, so we can
495 * complete the aio request immediately.
496 */
Al Viro7fe39762015-02-07 00:30:23 -0500497 if (priv->to_free == NULL || unlikely(req->actual == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 kfree(req->buf);
Al Viro7fe39762015-02-07 00:30:23 -0500499 kfree(priv->to_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 kfree(priv);
501 iocb->private = NULL;
502 /* aio_complete() reports bytes-transferred _and_ faults */
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100503
504 iocb->ki_complete(iocb, req->actual ? req->actual : req->status,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 req->status);
506 } else {
Zach Browna80bf612013-05-07 16:18:23 -0700507 /* ep_copy_to_user() won't report both; we hide some faults */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 if (unlikely(0 != req->status))
509 DBG(epdata->dev, "%s fault %d len %d\n",
510 ep->name, req->status, req->actual);
511
512 priv->buf = req->buf;
513 priv->actual = req->actual;
Al Viro7fe39762015-02-07 00:30:23 -0500514 INIT_WORK(&priv->work, ep_user_copy_worker);
Zach Browna80bf612013-05-07 16:18:23 -0700515 schedule_work(&priv->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
518 usb_ep_free_request(ep, req);
Alan Sternfd5336c2017-09-21 13:23:58 -0400519 spin_unlock(&epdata->dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 put_ep(epdata);
521}
522
Al Viro7fe39762015-02-07 00:30:23 -0500523static ssize_t ep_aio(struct kiocb *iocb,
524 struct kiocb_priv *priv,
525 struct ep_data *epdata,
526 char *buf,
527 size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528{
Al Viro7fe39762015-02-07 00:30:23 -0500529 struct usb_request *req;
530 ssize_t value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 iocb->private = priv;
Zach Browna80bf612013-05-07 16:18:23 -0700533 priv->iocb = iocb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Kent Overstreet0460fef2013-05-07 16:18:49 -0700535 kiocb_set_cancel_fn(iocb, ep_aio_cancel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 get_ep(epdata);
537 priv->epdata = epdata;
538 priv->actual = 0;
Zach Browna80bf612013-05-07 16:18:23 -0700539 priv->mm = current->mm; /* mm teardown waits for iocbs in exit_aio() */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
541 /* each kiocb is coupled to one usb_request, but we can't
542 * allocate or submit those if the host disconnected.
543 */
544 spin_lock_irq(&epdata->dev->lock);
Al Viro7fe39762015-02-07 00:30:23 -0500545 value = -ENODEV;
Mathieu Laurendeau327b21da2016-07-15 14:58:41 +0200546 if (unlikely(epdata->ep == NULL))
Al Viro7fe39762015-02-07 00:30:23 -0500547 goto fail;
548
549 req = usb_ep_alloc_request(epdata->ep, GFP_ATOMIC);
550 value = -ENOMEM;
551 if (unlikely(!req))
552 goto fail;
553
554 priv->req = req;
555 req->buf = buf;
556 req->length = len;
557 req->complete = ep_aio_complete;
558 req->context = iocb;
559 value = usb_ep_queue(epdata->ep, req, GFP_ATOMIC);
560 if (unlikely(0 != value)) {
561 usb_ep_free_request(epdata->ep, req);
562 goto fail;
563 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 spin_unlock_irq(&epdata->dev->lock);
Al Viro7fe39762015-02-07 00:30:23 -0500565 return -EIOCBQUEUED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Al Viro7fe39762015-02-07 00:30:23 -0500567fail:
568 spin_unlock_irq(&epdata->dev->lock);
569 kfree(priv->to_free);
570 kfree(priv);
571 put_ep(epdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 return value;
573}
574
575static ssize_t
Al Viro7fe39762015-02-07 00:30:23 -0500576ep_read_iter(struct kiocb *iocb, struct iov_iter *to)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577{
Al Viro7fe39762015-02-07 00:30:23 -0500578 struct file *file = iocb->ki_filp;
579 struct ep_data *epdata = file->private_data;
580 size_t len = iov_iter_count(to);
581 ssize_t value;
582 char *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Al Virod4461a62015-03-03 08:39:34 +0000584 if ((value = get_ready_ep(file->f_flags, epdata, false)) < 0)
Al Viro7fe39762015-02-07 00:30:23 -0500585 return value;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700586
Al Viro7fe39762015-02-07 00:30:23 -0500587 /* halt any endpoint by doing a "wrong direction" i/o call */
588 if (usb_endpoint_dir_in(&epdata->desc)) {
589 if (usb_endpoint_xfer_isoc(&epdata->desc) ||
590 !is_sync_kiocb(iocb)) {
591 mutex_unlock(&epdata->lock);
592 return -EINVAL;
593 }
594 DBG (epdata->dev, "%s halt\n", epdata->name);
595 spin_lock_irq(&epdata->dev->lock);
596 if (likely(epdata->ep != NULL))
597 usb_ep_set_halt(epdata->ep);
598 spin_unlock_irq(&epdata->dev->lock);
599 mutex_unlock(&epdata->lock);
600 return -EBADMSG;
601 }
602
603 buf = kmalloc(len, GFP_KERNEL);
604 if (unlikely(!buf)) {
605 mutex_unlock(&epdata->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 return -ENOMEM;
Al Viro7fe39762015-02-07 00:30:23 -0500607 }
608 if (is_sync_kiocb(iocb)) {
609 value = ep_io(epdata, buf, len);
Binyamin Sharet63196e92016-07-07 22:22:04 +0300610 if (value >= 0 && (copy_to_iter(buf, value, to) != value))
Al Viro7fe39762015-02-07 00:30:23 -0500611 value = -EFAULT;
612 } else {
613 struct kiocb_priv *priv = kzalloc(sizeof *priv, GFP_KERNEL);
614 value = -ENOMEM;
615 if (!priv)
616 goto fail;
617 priv->to_free = dup_iter(&priv->to, to, GFP_KERNEL);
618 if (!priv->to_free) {
619 kfree(priv);
620 goto fail;
621 }
622 value = ep_aio(iocb, priv, epdata, buf, len);
623 if (value == -EIOCBQUEUED)
624 buf = NULL;
625 }
626fail:
627 kfree(buf);
628 mutex_unlock(&epdata->lock);
629 return value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630}
631
Al Virod4461a62015-03-03 08:39:34 +0000632static ssize_t ep_config(struct ep_data *, const char *, size_t);
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634static ssize_t
Al Viro7fe39762015-02-07 00:30:23 -0500635ep_write_iter(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636{
Al Viro7fe39762015-02-07 00:30:23 -0500637 struct file *file = iocb->ki_filp;
638 struct ep_data *epdata = file->private_data;
639 size_t len = iov_iter_count(from);
Al Virod4461a62015-03-03 08:39:34 +0000640 bool configured;
Al Viro7fe39762015-02-07 00:30:23 -0500641 ssize_t value;
642 char *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Al Virod4461a62015-03-03 08:39:34 +0000644 if ((value = get_ready_ep(file->f_flags, epdata, true)) < 0)
Al Viro7fe39762015-02-07 00:30:23 -0500645 return value;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700646
Al Virod4461a62015-03-03 08:39:34 +0000647 configured = epdata->state == STATE_EP_ENABLED;
648
Al Viro7fe39762015-02-07 00:30:23 -0500649 /* halt any endpoint by doing a "wrong direction" i/o call */
Al Virod4461a62015-03-03 08:39:34 +0000650 if (configured && !usb_endpoint_dir_in(&epdata->desc)) {
Al Viro7fe39762015-02-07 00:30:23 -0500651 if (usb_endpoint_xfer_isoc(&epdata->desc) ||
652 !is_sync_kiocb(iocb)) {
653 mutex_unlock(&epdata->lock);
654 return -EINVAL;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700655 }
Al Viro7fe39762015-02-07 00:30:23 -0500656 DBG (epdata->dev, "%s halt\n", epdata->name);
657 spin_lock_irq(&epdata->dev->lock);
658 if (likely(epdata->ep != NULL))
659 usb_ep_set_halt(epdata->ep);
660 spin_unlock_irq(&epdata->dev->lock);
661 mutex_unlock(&epdata->lock);
662 return -EBADMSG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 }
Al Viro7fe39762015-02-07 00:30:23 -0500664
665 buf = kmalloc(len, GFP_KERNEL);
666 if (unlikely(!buf)) {
667 mutex_unlock(&epdata->lock);
668 return -ENOMEM;
669 }
670
671 if (unlikely(copy_from_iter(buf, len, from) != len)) {
672 value = -EFAULT;
673 goto out;
674 }
675
Al Virod4461a62015-03-03 08:39:34 +0000676 if (unlikely(!configured)) {
677 value = ep_config(epdata, buf, len);
678 } else if (is_sync_kiocb(iocb)) {
Al Viro7fe39762015-02-07 00:30:23 -0500679 value = ep_io(epdata, buf, len);
680 } else {
681 struct kiocb_priv *priv = kzalloc(sizeof *priv, GFP_KERNEL);
682 value = -ENOMEM;
683 if (priv) {
684 value = ep_aio(iocb, priv, epdata, buf, len);
685 if (value == -EIOCBQUEUED)
686 buf = NULL;
687 }
688 }
689out:
690 kfree(buf);
691 mutex_unlock(&epdata->lock);
692 return value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693}
694
695/*----------------------------------------------------------------------*/
696
697/* used after endpoint configuration */
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300698static const struct file_operations ep_io_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Al Virod4461a62015-03-03 08:39:34 +0000701 .open = ep_open,
702 .release = ep_release,
703 .llseek = no_llseek,
Alan Cox44c389a2008-05-22 22:03:27 +0100704 .unlocked_ioctl = ep_ioctl,
Al Viro7fe39762015-02-07 00:30:23 -0500705 .read_iter = ep_read_iter,
706 .write_iter = ep_write_iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707};
708
709/* ENDPOINT INITIALIZATION
710 *
711 * fd = open ("/dev/gadget/$ENDPOINT", O_RDWR)
712 * status = write (fd, descriptors, sizeof descriptors)
713 *
714 * That write establishes the endpoint configuration, configuring
715 * the controller to process bulk, interrupt, or isochronous transfers
716 * at the right maxpacket size, and so on.
717 *
718 * The descriptors are message type 1, identified by a host order u32
719 * at the beginning of what's written. Descriptor order is: full/low
720 * speed descriptor, then optional high speed descriptor.
721 */
722static ssize_t
Al Virod4461a62015-03-03 08:39:34 +0000723ep_config (struct ep_data *data, const char *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 struct usb_ep *ep;
726 u32 tag;
Milan Svoboda8a7471a2006-06-26 07:19:00 -0700727 int value, length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 if (data->state != STATE_EP_READY) {
730 value = -EL2HLT;
731 goto fail;
732 }
733
734 value = len;
735 if (len < USB_DT_ENDPOINT_SIZE + 4)
736 goto fail0;
737
738 /* we might need to change message format someday */
Al Virod4461a62015-03-03 08:39:34 +0000739 memcpy(&tag, buf, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 if (tag != 1) {
741 DBG(data->dev, "config %s, bad tag %d\n", data->name, tag);
742 goto fail0;
743 }
744 buf += 4;
745 len -= 4;
746
747 /* NOTE: audio endpoint extensions not accepted here;
748 * just don't include the extra bytes.
749 */
750
751 /* full/low speed descriptor, then high speed */
Al Virod4461a62015-03-03 08:39:34 +0000752 memcpy(&data->desc, buf, USB_DT_ENDPOINT_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 if (data->desc.bLength != USB_DT_ENDPOINT_SIZE
754 || data->desc.bDescriptorType != USB_DT_ENDPOINT)
755 goto fail0;
756 if (len != USB_DT_ENDPOINT_SIZE) {
757 if (len != 2 * USB_DT_ENDPOINT_SIZE)
758 goto fail0;
Al Virod4461a62015-03-03 08:39:34 +0000759 memcpy(&data->hs_desc, buf + USB_DT_ENDPOINT_SIZE,
760 USB_DT_ENDPOINT_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 if (data->hs_desc.bLength != USB_DT_ENDPOINT_SIZE
762 || data->hs_desc.bDescriptorType
763 != USB_DT_ENDPOINT) {
764 DBG(data->dev, "config %s, bad hs length or type\n",
765 data->name);
766 goto fail0;
767 }
768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769
770 spin_lock_irq (&data->dev->lock);
771 if (data->dev->state == STATE_DEV_UNBOUND) {
772 value = -ENOENT;
773 goto gone;
Greg Kroah-Hartman1ee7eea2015-04-30 11:32:54 +0200774 } else {
775 ep = data->ep;
776 if (ep == NULL) {
777 value = -ENODEV;
778 goto gone;
779 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
781 switch (data->dev->gadget->speed) {
782 case USB_SPEED_LOW:
783 case USB_SPEED_FULL:
Tatyana Brokhman72c973d2011-06-28 16:33:48 +0300784 ep->desc = &data->desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 case USB_SPEED_HIGH:
787 /* fails if caller didn't provide that descriptor... */
Tatyana Brokhman72c973d2011-06-28 16:33:48 +0300788 ep->desc = &data->hs_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 default:
Phil Endecott511779f2007-01-15 11:35:01 -0800791 DBG(data->dev, "unconnected, %s init abandoned\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 data->name);
Phil Endecott511779f2007-01-15 11:35:01 -0800793 value = -EINVAL;
Al Virod4461a62015-03-03 08:39:34 +0000794 goto gone;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 }
Al Virod4461a62015-03-03 08:39:34 +0000796 value = usb_ep_enable(ep);
Milan Svoboda8a7471a2006-06-26 07:19:00 -0700797 if (value == 0) {
Al Virod4461a62015-03-03 08:39:34 +0000798 data->state = STATE_EP_ENABLED;
Milan Svoboda8a7471a2006-06-26 07:19:00 -0700799 value = length;
800 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801gone:
802 spin_unlock_irq (&data->dev->lock);
803 if (value < 0) {
804fail:
805 data->desc.bDescriptorType = 0;
806 data->hs_desc.bDescriptorType = 0;
807 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 return value;
809fail0:
810 value = -EINVAL;
811 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812}
813
814static int
815ep_open (struct inode *inode, struct file *fd)
816{
Theodore Ts'o8e18e292006-09-27 01:50:46 -0700817 struct ep_data *data = inode->i_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 int value = -EBUSY;
819
Thomas Gleixnera79df502010-01-29 20:38:59 +0000820 if (mutex_lock_interruptible(&data->lock) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 return -EINTR;
822 spin_lock_irq (&data->dev->lock);
823 if (data->dev->state == STATE_DEV_UNBOUND)
824 value = -ENOENT;
825 else if (data->state == STATE_EP_DISABLED) {
826 value = 0;
827 data->state = STATE_EP_READY;
828 get_ep (data);
829 fd->private_data = data;
830 VDEBUG (data->dev, "%s ready\n", data->name);
831 } else
832 DBG (data->dev, "%s state %d\n",
833 data->name, data->state);
834 spin_unlock_irq (&data->dev->lock);
Thomas Gleixnera79df502010-01-29 20:38:59 +0000835 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 return value;
837}
838
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839/*----------------------------------------------------------------------*/
840
841/* EP0 IMPLEMENTATION can be partly in userspace.
842 *
843 * Drivers that use this facility receive various events, including
844 * control requests the kernel doesn't handle. Drivers that don't
845 * use this facility may be too simple-minded for real applications.
846 */
847
848static inline void ep0_readable (struct dev_data *dev)
849{
850 wake_up (&dev->wait);
851 kill_fasync (&dev->fasync, SIGIO, POLL_IN);
852}
853
854static void clean_req (struct usb_ep *ep, struct usb_request *req)
855{
856 struct dev_data *dev = ep->driver_data;
857
858 if (req->buf != dev->rbuf) {
David Brownell9d8bab52007-07-01 11:04:54 -0700859 kfree(req->buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 req->buf = dev->rbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 }
862 req->complete = epio_complete;
863 dev->setup_out_ready = 0;
864}
865
866static void ep0_complete (struct usb_ep *ep, struct usb_request *req)
867{
868 struct dev_data *dev = ep->driver_data;
David Brownell5b89db022007-01-16 22:56:26 -0800869 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 int free = 1;
871
872 /* for control OUT, data must still get to userspace */
David Brownell5b89db022007-01-16 22:56:26 -0800873 spin_lock_irqsave(&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 if (!dev->setup_in) {
875 dev->setup_out_error = (req->status != 0);
876 if (!dev->setup_out_error)
877 free = 0;
878 dev->setup_out_ready = 1;
879 ep0_readable (dev);
David Brownell7489d142007-01-16 22:51:04 -0800880 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
882 /* clean up as appropriate */
883 if (free && req->buf != &dev->rbuf)
884 clean_req (ep, req);
885 req->complete = epio_complete;
David Brownell5b89db022007-01-16 22:56:26 -0800886 spin_unlock_irqrestore(&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887}
888
889static int setup_req (struct usb_ep *ep, struct usb_request *req, u16 len)
890{
891 struct dev_data *dev = ep->driver_data;
892
893 if (dev->setup_out_ready) {
894 DBG (dev, "ep0 request busy!\n");
895 return -EBUSY;
896 }
897 if (len > sizeof (dev->rbuf))
David Brownell9d8bab52007-07-01 11:04:54 -0700898 req->buf = kmalloc(len, GFP_ATOMIC);
David Brownella9475222007-07-30 12:31:07 -0700899 if (req->buf == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 req->buf = dev->rbuf;
901 return -ENOMEM;
902 }
903 req->complete = ep0_complete;
904 req->length = len;
Alan Stern97906362006-01-03 10:30:31 -0500905 req->zero = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 return 0;
907}
908
909static ssize_t
910ep0_read (struct file *fd, char __user *buf, size_t len, loff_t *ptr)
911{
912 struct dev_data *dev = fd->private_data;
913 ssize_t retval;
914 enum ep0_state state;
915
916 spin_lock_irq (&dev->lock);
Alan Stern96b62a52015-03-04 10:31:50 -0500917 if (dev->state <= STATE_DEV_OPENED) {
918 retval = -EINVAL;
919 goto done;
920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922 /* report fd mode change before acting on it */
923 if (dev->setup_abort) {
924 dev->setup_abort = 0;
925 retval = -EIDRM;
926 goto done;
927 }
928
929 /* control DATA stage */
David Brownell7489d142007-01-16 22:51:04 -0800930 if ((state = dev->state) == STATE_DEV_SETUP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
932 if (dev->setup_in) { /* stall IN */
933 VDEBUG(dev, "ep0in stall\n");
934 (void) usb_ep_set_halt (dev->gadget->ep0);
935 retval = -EL2HLT;
David Brownell7489d142007-01-16 22:51:04 -0800936 dev->state = STATE_DEV_CONNECTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937
938 } else if (len == 0) { /* ack SET_CONFIGURATION etc */
939 struct usb_ep *ep = dev->gadget->ep0;
940 struct usb_request *req = dev->req;
941
Bin Liud246dcb2016-05-26 11:43:45 -0500942 if ((retval = setup_req (ep, req, 0)) == 0) {
Alan Sternfd5336c2017-09-21 13:23:58 -0400943 ++dev->udc_usage;
Bin Liud246dcb2016-05-26 11:43:45 -0500944 spin_unlock_irq (&dev->lock);
945 retval = usb_ep_queue (ep, req, GFP_KERNEL);
946 spin_lock_irq (&dev->lock);
Alan Sternfd5336c2017-09-21 13:23:58 -0400947 --dev->udc_usage;
Bin Liud246dcb2016-05-26 11:43:45 -0500948 }
David Brownell7489d142007-01-16 22:51:04 -0800949 dev->state = STATE_DEV_CONNECTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
951 /* assume that was SET_CONFIGURATION */
952 if (dev->current_config) {
953 unsigned power;
David Brownella4e3ef52007-08-01 23:58:22 -0700954
955 if (gadget_is_dualspeed(dev->gadget)
956 && (dev->gadget->speed
957 == USB_SPEED_HIGH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 power = dev->hs_config->bMaxPower;
959 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 power = dev->config->bMaxPower;
961 usb_gadget_vbus_draw(dev->gadget, 2 * power);
962 }
963
964 } else { /* collect OUT data */
965 if ((fd->f_flags & O_NONBLOCK) != 0
966 && !dev->setup_out_ready) {
967 retval = -EAGAIN;
968 goto done;
969 }
970 spin_unlock_irq (&dev->lock);
971 retval = wait_event_interruptible (dev->wait,
972 dev->setup_out_ready != 0);
973
974 /* FIXME state could change from under us */
975 spin_lock_irq (&dev->lock);
976 if (retval)
977 goto done;
David Brownell5b89db022007-01-16 22:56:26 -0800978
979 if (dev->state != STATE_DEV_SETUP) {
980 retval = -ECANCELED;
981 goto done;
982 }
983 dev->state = STATE_DEV_CONNECTED;
984
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 if (dev->setup_out_error)
986 retval = -EIO;
987 else {
988 len = min (len, (size_t)dev->req->actual);
Alan Stern7f850032017-09-21 16:12:01 -0400989 ++dev->udc_usage;
990 spin_unlock_irq(&dev->lock);
Skip Hansen997694d2006-09-01 15:26:27 -0700991 if (copy_to_user (buf, dev->req->buf, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 retval = -EFAULT;
Thomas Faber85b4b3c2012-03-02 09:41:50 +0100993 else
994 retval = len;
Alan Stern7f850032017-09-21 16:12:01 -0400995 spin_lock_irq(&dev->lock);
996 --dev->udc_usage;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 clean_req (dev->gadget->ep0, dev->req);
998 /* NOTE userspace can't yet choose to stall */
999 }
1000 }
1001 goto done;
1002 }
1003
1004 /* else normal: return event data */
1005 if (len < sizeof dev->event [0]) {
1006 retval = -EINVAL;
1007 goto done;
1008 }
1009 len -= len % sizeof (struct usb_gadgetfs_event);
1010 dev->usermode_setup = 1;
1011
1012scan:
1013 /* return queued events right away */
1014 if (dev->ev_next != 0) {
1015 unsigned i, n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 n = len / sizeof (struct usb_gadgetfs_event);
David Brownell0864c7a2007-01-16 22:53:58 -08001018 if (dev->ev_next < n)
1019 n = dev->ev_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
David Brownell0864c7a2007-01-16 22:53:58 -08001021 /* ep0 i/o has special semantics during STATE_DEV_SETUP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 for (i = 0; i < n; i++) {
1023 if (dev->event [i].type == GADGETFS_SETUP) {
David Brownell0864c7a2007-01-16 22:53:58 -08001024 dev->state = STATE_DEV_SETUP;
1025 n = i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 break;
1027 }
1028 }
1029 spin_unlock_irq (&dev->lock);
David Brownell0864c7a2007-01-16 22:53:58 -08001030 len = n * sizeof (struct usb_gadgetfs_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 if (copy_to_user (buf, &dev->event, len))
1032 retval = -EFAULT;
1033 else
1034 retval = len;
1035 if (len > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 /* NOTE this doesn't guard against broken drivers;
1037 * concurrent ep0 readers may lose events.
1038 */
1039 spin_lock_irq (&dev->lock);
David Brownell0864c7a2007-01-16 22:53:58 -08001040 if (dev->ev_next > n) {
1041 memmove(&dev->event[0], &dev->event[n],
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 sizeof (struct usb_gadgetfs_event)
David Brownell0864c7a2007-01-16 22:53:58 -08001043 * (dev->ev_next - n));
1044 }
1045 dev->ev_next -= n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 spin_unlock_irq (&dev->lock);
1047 }
1048 return retval;
1049 }
1050 if (fd->f_flags & O_NONBLOCK) {
1051 retval = -EAGAIN;
1052 goto done;
1053 }
1054
1055 switch (state) {
1056 default:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001057 DBG (dev, "fail %s, state %d\n", __func__, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 retval = -ESRCH;
1059 break;
David Brownell7489d142007-01-16 22:51:04 -08001060 case STATE_DEV_UNCONNECTED:
1061 case STATE_DEV_CONNECTED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 spin_unlock_irq (&dev->lock);
Harvey Harrison441b62c2008-03-03 16:08:34 -08001063 DBG (dev, "%s wait\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
1065 /* wait for events */
1066 retval = wait_event_interruptible (dev->wait,
1067 dev->ev_next != 0);
1068 if (retval < 0)
1069 return retval;
1070 spin_lock_irq (&dev->lock);
1071 goto scan;
1072 }
1073
1074done:
1075 spin_unlock_irq (&dev->lock);
1076 return retval;
1077}
1078
1079static struct usb_gadgetfs_event *
1080next_event (struct dev_data *dev, enum usb_gadgetfs_event_type type)
1081{
1082 struct usb_gadgetfs_event *event;
1083 unsigned i;
1084
1085 switch (type) {
1086 /* these events purge the queue */
1087 case GADGETFS_DISCONNECT:
David Brownell7489d142007-01-16 22:51:04 -08001088 if (dev->state == STATE_DEV_SETUP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 dev->setup_abort = 1;
1090 // FALL THROUGH
1091 case GADGETFS_CONNECT:
1092 dev->ev_next = 0;
1093 break;
1094 case GADGETFS_SETUP: /* previous request timed out */
1095 case GADGETFS_SUSPEND: /* same effect */
1096 /* these events can't be repeated */
1097 for (i = 0; i != dev->ev_next; i++) {
1098 if (dev->event [i].type != type)
1099 continue;
David Brownell0864c7a2007-01-16 22:53:58 -08001100 DBG(dev, "discard old event[%d] %d\n", i, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 dev->ev_next--;
1102 if (i == dev->ev_next)
1103 break;
1104 /* indices start at zero, for simplicity */
1105 memmove (&dev->event [i], &dev->event [i + 1],
1106 sizeof (struct usb_gadgetfs_event)
1107 * (dev->ev_next - i));
1108 }
1109 break;
1110 default:
1111 BUG ();
1112 }
David Brownell0864c7a2007-01-16 22:53:58 -08001113 VDEBUG(dev, "event[%d] = %d\n", dev->ev_next, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 event = &dev->event [dev->ev_next++];
1115 BUG_ON (dev->ev_next > N_EVENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 memset (event, 0, sizeof *event);
1117 event->type = type;
1118 return event;
1119}
1120
1121static ssize_t
1122ep0_write (struct file *fd, const char __user *buf, size_t len, loff_t *ptr)
1123{
1124 struct dev_data *dev = fd->private_data;
1125 ssize_t retval = -ESRCH;
1126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 /* report fd mode change before acting on it */
1128 if (dev->setup_abort) {
1129 dev->setup_abort = 0;
1130 retval = -EIDRM;
1131
1132 /* data and/or status stage for control request */
David Brownell7489d142007-01-16 22:51:04 -08001133 } else if (dev->state == STATE_DEV_SETUP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134
Alan Sternb9467772016-12-09 15:17:46 -05001135 len = min_t(size_t, len, dev->setup_wLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 if (dev->setup_in) {
1137 retval = setup_req (dev->gadget->ep0, dev->req, len);
1138 if (retval == 0) {
David Brownell5b89db022007-01-16 22:56:26 -08001139 dev->state = STATE_DEV_CONNECTED;
Alan Sternfd5336c2017-09-21 13:23:58 -04001140 ++dev->udc_usage;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 spin_unlock_irq (&dev->lock);
1142 if (copy_from_user (dev->req->buf, buf, len))
1143 retval = -EFAULT;
Alan Stern97906362006-01-03 10:30:31 -05001144 else {
1145 if (len < dev->setup_wLength)
1146 dev->req->zero = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 retval = usb_ep_queue (
1148 dev->gadget->ep0, dev->req,
1149 GFP_KERNEL);
Alan Stern97906362006-01-03 10:30:31 -05001150 }
David Eccherb7bd98b2015-12-11 22:13:55 +01001151 spin_lock_irq(&dev->lock);
Alan Sternfd5336c2017-09-21 13:23:58 -04001152 --dev->udc_usage;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 if (retval < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 clean_req (dev->gadget->ep0, dev->req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 } else
1156 retval = len;
1157
1158 return retval;
1159 }
1160
1161 /* can stall some OUT transfers */
1162 } else if (dev->setup_can_stall) {
1163 VDEBUG(dev, "ep0out stall\n");
1164 (void) usb_ep_set_halt (dev->gadget->ep0);
1165 retval = -EL2HLT;
David Brownell7489d142007-01-16 22:51:04 -08001166 dev->state = STATE_DEV_CONNECTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 } else {
1168 DBG(dev, "bogus ep0out stall!\n");
1169 }
1170 } else
Harvey Harrison441b62c2008-03-03 16:08:34 -08001171 DBG (dev, "fail %s, state %d\n", __func__, dev->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 return retval;
1174}
1175
1176static int
1177ep0_fasync (int f, struct file *fd, int on)
1178{
1179 struct dev_data *dev = fd->private_data;
1180 // caller must F_SETOWN before signal delivery happens
Harvey Harrison441b62c2008-03-03 16:08:34 -08001181 VDEBUG (dev, "%s %s\n", __func__, on ? "on" : "off");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 return fasync_helper (f, fd, on, &dev->fasync);
1183}
1184
1185static struct usb_gadget_driver gadgetfs_driver;
1186
1187static int
1188dev_release (struct inode *inode, struct file *fd)
1189{
1190 struct dev_data *dev = fd->private_data;
1191
1192 /* closing ep0 === shutdown all */
1193
Alan Stern3ff5f4f2017-06-08 13:55:59 -04001194 if (dev->gadget_registered) {
Marek Szyprowski7b0a2712016-02-18 08:59:26 +01001195 usb_gadget_unregister_driver (&gadgetfs_driver);
Alan Stern3ff5f4f2017-06-08 13:55:59 -04001196 dev->gadget_registered = false;
1197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
1199 /* at this point "good" hardware has disconnected the
1200 * device from USB; the host won't see it any more.
1201 * alternatively, all host requests will time out.
1202 */
1203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 kfree (dev->buf);
1205 dev->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Marcus Nutzingerf0cae932014-06-05 17:17:06 +02001207 /* other endpoints were all decoupled from this device */
1208 spin_lock_irq(&dev->lock);
1209 dev->state = STATE_DEV_DISABLED;
1210 spin_unlock_irq(&dev->lock);
1211
1212 put_dev (dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 return 0;
1214}
1215
Milan Svobodae22fc272006-08-08 22:23:12 -07001216static unsigned int
1217ep0_poll (struct file *fd, poll_table *wait)
1218{
1219 struct dev_data *dev = fd->private_data;
1220 int mask = 0;
1221
Alan Stern96b62a52015-03-04 10:31:50 -05001222 if (dev->state <= STATE_DEV_OPENED)
1223 return DEFAULT_POLLMASK;
1224
Milan Svobodae22fc272006-08-08 22:23:12 -07001225 poll_wait(fd, &dev->wait, wait);
1226
1227 spin_lock_irq (&dev->lock);
1228
1229 /* report fd mode change before acting on it */
1230 if (dev->setup_abort) {
1231 dev->setup_abort = 0;
1232 mask = POLLHUP;
1233 goto out;
1234 }
1235
David Brownell7489d142007-01-16 22:51:04 -08001236 if (dev->state == STATE_DEV_SETUP) {
Milan Svobodae22fc272006-08-08 22:23:12 -07001237 if (dev->setup_in || dev->setup_can_stall)
1238 mask = POLLOUT;
1239 } else {
1240 if (dev->ev_next != 0)
1241 mask = POLLIN;
1242 }
1243out:
1244 spin_unlock_irq(&dev->lock);
1245 return mask;
1246}
1247
Alan Cox44c389a2008-05-22 22:03:27 +01001248static long dev_ioctl (struct file *fd, unsigned code, unsigned long value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249{
1250 struct dev_data *dev = fd->private_data;
1251 struct usb_gadget *gadget = dev->gadget;
Alan Cox44c389a2008-05-22 22:03:27 +01001252 long ret = -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Alan Sternfd5336c2017-09-21 13:23:58 -04001254 spin_lock_irq(&dev->lock);
1255 if (dev->state == STATE_DEV_OPENED ||
1256 dev->state == STATE_DEV_UNBOUND) {
1257 /* Not bound to a UDC */
1258 } else if (gadget->ops->ioctl) {
1259 ++dev->udc_usage;
1260 spin_unlock_irq(&dev->lock);
1261
Alan Cox44c389a2008-05-22 22:03:27 +01001262 ret = gadget->ops->ioctl (gadget, code, value);
Arnd Bergmann1548b132010-06-01 23:04:44 +02001263
Alan Sternfd5336c2017-09-21 13:23:58 -04001264 spin_lock_irq(&dev->lock);
1265 --dev->udc_usage;
1266 }
1267 spin_unlock_irq(&dev->lock);
1268
Alan Cox44c389a2008-05-22 22:03:27 +01001269 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270}
1271
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272/*----------------------------------------------------------------------*/
1273
1274/* The in-kernel gadget driver handles most ep0 issues, in particular
1275 * enumerating the single configuration (as provided from user space).
1276 *
1277 * Unrecognized ep0 requests may be handled in user space.
1278 */
1279
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280static void make_qualifier (struct dev_data *dev)
1281{
1282 struct usb_qualifier_descriptor qual;
1283 struct usb_device_descriptor *desc;
1284
1285 qual.bLength = sizeof qual;
1286 qual.bDescriptorType = USB_DT_DEVICE_QUALIFIER;
Harvey Harrison551509d2009-02-11 14:11:36 -08001287 qual.bcdUSB = cpu_to_le16 (0x0200);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
1289 desc = dev->dev;
1290 qual.bDeviceClass = desc->bDeviceClass;
1291 qual.bDeviceSubClass = desc->bDeviceSubClass;
1292 qual.bDeviceProtocol = desc->bDeviceProtocol;
1293
1294 /* assumes ep0 uses the same value for both speeds ... */
Sebastian Andrzej Siewior765f5b82011-06-23 14:26:11 +02001295 qual.bMaxPacketSize0 = dev->gadget->ep0->maxpacket;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
1297 qual.bNumConfigurations = 1;
1298 qual.bRESERVED = 0;
1299
1300 memcpy (dev->rbuf, &qual, sizeof qual);
1301}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
1303static int
1304config_buf (struct dev_data *dev, u8 type, unsigned index)
1305{
1306 int len;
David Brownella4e3ef52007-08-01 23:58:22 -07001307 int hs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
1309 /* only one configuration */
1310 if (index > 0)
1311 return -EINVAL;
1312
David Brownella4e3ef52007-08-01 23:58:22 -07001313 if (gadget_is_dualspeed(dev->gadget)) {
1314 hs = (dev->gadget->speed == USB_SPEED_HIGH);
1315 if (type == USB_DT_OTHER_SPEED_CONFIG)
1316 hs = !hs;
1317 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 if (hs) {
1319 dev->req->buf = dev->hs_config;
David Brownell01ee7d72007-05-25 20:40:14 -07001320 len = le16_to_cpu(dev->hs_config->wTotalLength);
David Brownella4e3ef52007-08-01 23:58:22 -07001321 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 dev->req->buf = dev->config;
David Brownell01ee7d72007-05-25 20:40:14 -07001323 len = le16_to_cpu(dev->config->wTotalLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 }
1325 ((u8 *)dev->req->buf) [1] = type;
1326 return len;
1327}
1328
1329static int
1330gadgetfs_setup (struct usb_gadget *gadget, const struct usb_ctrlrequest *ctrl)
1331{
1332 struct dev_data *dev = get_gadget_data (gadget);
1333 struct usb_request *req = dev->req;
1334 int value = -EOPNOTSUPP;
1335 struct usb_gadgetfs_event *event;
David Brownell1bbc1692005-05-07 13:05:13 -07001336 u16 w_value = le16_to_cpu(ctrl->wValue);
1337 u16 w_length = le16_to_cpu(ctrl->wLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
1339 spin_lock (&dev->lock);
1340 dev->setup_abort = 0;
David Brownell7489d142007-01-16 22:51:04 -08001341 if (dev->state == STATE_DEV_UNCONNECTED) {
David Brownella4e3ef52007-08-01 23:58:22 -07001342 if (gadget_is_dualspeed(gadget)
1343 && gadget->speed == USB_SPEED_HIGH
1344 && dev->hs_config == NULL) {
David Brownellce467942007-01-16 23:06:07 -08001345 spin_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 ERROR (dev, "no high speed config??\n");
1347 return -EINVAL;
1348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
David Brownellce467942007-01-16 23:06:07 -08001350 dev->state = STATE_DEV_CONNECTED;
David Brownellce467942007-01-16 23:06:07 -08001351
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 INFO (dev, "connected\n");
1353 event = next_event (dev, GADGETFS_CONNECT);
1354 event->u.speed = gadget->speed;
1355 ep0_readable (dev);
1356
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 /* host may have given up waiting for response. we can miss control
1358 * requests handled lower down (device/endpoint status and features);
1359 * then ep0_{read,write} will report the wrong status. controller
1360 * driver will have aborted pending i/o.
1361 */
David Brownell7489d142007-01-16 22:51:04 -08001362 } else if (dev->state == STATE_DEV_SETUP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 dev->setup_abort = 1;
1364
1365 req->buf = dev->rbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 req->context = NULL;
1367 value = -EOPNOTSUPP;
1368 switch (ctrl->bRequest) {
1369
1370 case USB_REQ_GET_DESCRIPTOR:
1371 if (ctrl->bRequestType != USB_DIR_IN)
1372 goto unrecognized;
1373 switch (w_value >> 8) {
1374
1375 case USB_DT_DEVICE:
1376 value = min (w_length, (u16) sizeof *dev->dev);
Sebastian Andrzej Siewior765f5b82011-06-23 14:26:11 +02001377 dev->dev->bMaxPacketSize0 = dev->gadget->ep0->maxpacket;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 req->buf = dev->dev;
1379 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 case USB_DT_DEVICE_QUALIFIER:
1381 if (!dev->hs_config)
1382 break;
1383 value = min (w_length, (u16)
1384 sizeof (struct usb_qualifier_descriptor));
1385 make_qualifier (dev);
1386 break;
1387 case USB_DT_OTHER_SPEED_CONFIG:
1388 // FALLTHROUGH
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 case USB_DT_CONFIG:
1390 value = config_buf (dev,
1391 w_value >> 8,
1392 w_value & 0xff);
1393 if (value >= 0)
1394 value = min (w_length, (u16) value);
1395 break;
1396 case USB_DT_STRING:
1397 goto unrecognized;
1398
1399 default: // all others are errors
1400 break;
1401 }
1402 break;
1403
1404 /* currently one config, two speeds */
1405 case USB_REQ_SET_CONFIGURATION:
1406 if (ctrl->bRequestType != 0)
Roy Hashimoto12cd5b92008-03-12 13:55:31 -08001407 goto unrecognized;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 if (0 == (u8) w_value) {
1409 value = 0;
1410 dev->current_config = 0;
1411 usb_gadget_vbus_draw(gadget, 8 /* mA */ );
1412 // user mode expected to disable endpoints
1413 } else {
1414 u8 config, power;
David Brownella4e3ef52007-08-01 23:58:22 -07001415
1416 if (gadget_is_dualspeed(gadget)
1417 && gadget->speed == USB_SPEED_HIGH) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 config = dev->hs_config->bConfigurationValue;
1419 power = dev->hs_config->bMaxPower;
David Brownella4e3ef52007-08-01 23:58:22 -07001420 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 config = dev->config->bConfigurationValue;
1422 power = dev->config->bMaxPower;
1423 }
1424
1425 if (config == (u8) w_value) {
1426 value = 0;
1427 dev->current_config = config;
1428 usb_gadget_vbus_draw(gadget, 2 * power);
1429 }
1430 }
1431
1432 /* report SET_CONFIGURATION like any other control request,
1433 * except that usermode may not stall this. the next
1434 * request mustn't be allowed start until this finishes:
1435 * endpoints and threads set up, etc.
1436 *
1437 * NOTE: older PXA hardware (before PXA 255: without UDCCFR)
1438 * has bad/racey automagic that prevents synchronizing here.
1439 * even kernel mode drivers often miss them.
1440 */
1441 if (value == 0) {
1442 INFO (dev, "configuration #%d\n", dev->current_config);
Peter Chen6027f312014-04-29 13:26:28 +08001443 usb_gadget_set_state(gadget, USB_STATE_CONFIGURED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 if (dev->usermode_setup) {
1445 dev->setup_can_stall = 0;
1446 goto delegate;
1447 }
1448 }
1449 break;
1450
Paul Bolled30f2062014-05-26 23:37:09 +02001451#ifndef CONFIG_USB_PXA25X
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 /* PXA automagically handles this request too */
1453 case USB_REQ_GET_CONFIGURATION:
1454 if (ctrl->bRequestType != 0x80)
Roy Hashimoto12cd5b92008-03-12 13:55:31 -08001455 goto unrecognized;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 *(u8 *)req->buf = dev->current_config;
1457 value = min (w_length, (u16) 1);
1458 break;
1459#endif
1460
1461 default:
1462unrecognized:
1463 VDEBUG (dev, "%s req%02x.%02x v%04x i%04x l%d\n",
1464 dev->usermode_setup ? "delegate" : "fail",
1465 ctrl->bRequestType, ctrl->bRequest,
1466 w_value, le16_to_cpu(ctrl->wIndex), w_length);
1467
1468 /* if there's an ep0 reader, don't stall */
1469 if (dev->usermode_setup) {
1470 dev->setup_can_stall = 1;
1471delegate:
1472 dev->setup_in = (ctrl->bRequestType & USB_DIR_IN)
1473 ? 1 : 0;
Alan Stern97906362006-01-03 10:30:31 -05001474 dev->setup_wLength = w_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 dev->setup_out_ready = 0;
1476 dev->setup_out_error = 0;
1477 value = 0;
1478
1479 /* read DATA stage for OUT right away */
1480 if (unlikely (!dev->setup_in && w_length)) {
1481 value = setup_req (gadget->ep0, dev->req,
1482 w_length);
1483 if (value < 0)
1484 break;
Bin Liud246dcb2016-05-26 11:43:45 -05001485
Alan Sternfd5336c2017-09-21 13:23:58 -04001486 ++dev->udc_usage;
Bin Liud246dcb2016-05-26 11:43:45 -05001487 spin_unlock (&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 value = usb_ep_queue (gadget->ep0, dev->req,
Bin Liud246dcb2016-05-26 11:43:45 -05001489 GFP_KERNEL);
1490 spin_lock (&dev->lock);
Alan Sternfd5336c2017-09-21 13:23:58 -04001491 --dev->udc_usage;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 if (value < 0) {
1493 clean_req (gadget->ep0, dev->req);
1494 break;
1495 }
1496
1497 /* we can't currently stall these */
1498 dev->setup_can_stall = 0;
1499 }
1500
1501 /* state changes when reader collects event */
1502 event = next_event (dev, GADGETFS_SETUP);
1503 event->u.setup = *ctrl;
1504 ep0_readable (dev);
1505 spin_unlock (&dev->lock);
1506 return 0;
1507 }
1508 }
1509
1510 /* proceed with data transfer and status phases? */
David Brownell7489d142007-01-16 22:51:04 -08001511 if (value >= 0 && dev->state != STATE_DEV_SETUP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 req->length = value;
1513 req->zero = value < w_length;
Bin Liud246dcb2016-05-26 11:43:45 -05001514
Alan Sternfd5336c2017-09-21 13:23:58 -04001515 ++dev->udc_usage;
Bin Liud246dcb2016-05-26 11:43:45 -05001516 spin_unlock (&dev->lock);
1517 value = usb_ep_queue (gadget->ep0, req, GFP_KERNEL);
Alan Sternfd5336c2017-09-21 13:23:58 -04001518 spin_lock(&dev->lock);
1519 --dev->udc_usage;
1520 spin_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 if (value < 0) {
1522 DBG (dev, "ep_queue --> %d\n", value);
1523 req->status = 0;
1524 }
Bin Liud246dcb2016-05-26 11:43:45 -05001525 return value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 }
1527
1528 /* device stalls when value < 0 */
1529 spin_unlock (&dev->lock);
1530 return value;
1531}
1532
1533static void destroy_ep_files (struct dev_data *dev)
1534{
Harvey Harrison441b62c2008-03-03 16:08:34 -08001535 DBG (dev, "%s %d\n", __func__, dev->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
1537 /* dev->state must prevent interference */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 spin_lock_irq (&dev->lock);
Al Viro104bb372012-01-08 16:13:28 -05001539 while (!list_empty(&dev->epfiles)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 struct ep_data *ep;
1541 struct inode *parent;
1542 struct dentry *dentry;
1543
1544 /* break link to FS */
Al Viro104bb372012-01-08 16:13:28 -05001545 ep = list_first_entry (&dev->epfiles, struct ep_data, epfiles);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 list_del_init (&ep->epfiles);
Alan Sternfd5336c2017-09-21 13:23:58 -04001547 spin_unlock_irq (&dev->lock);
1548
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 dentry = ep->dentry;
1550 ep->dentry = NULL;
David Howells75c3cfa2015-03-17 22:26:12 +00001551 parent = d_inode(dentry->d_parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
1553 /* break link to controller */
Alan Sternfd5336c2017-09-21 13:23:58 -04001554 mutex_lock(&ep->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 if (ep->state == STATE_EP_ENABLED)
1556 (void) usb_ep_disable (ep->ep);
1557 ep->state = STATE_EP_UNBOUND;
1558 usb_ep_free_request (ep->ep, ep->req);
1559 ep->ep = NULL;
Alan Sternfd5336c2017-09-21 13:23:58 -04001560 mutex_unlock(&ep->lock);
1561
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 wake_up (&ep->wait);
1563 put_ep (ep);
1564
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 /* break link to dcache */
Al Viro59551022016-01-22 15:40:57 -05001566 inode_lock(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 d_delete (dentry);
1568 dput (dentry);
Al Viro59551022016-01-22 15:40:57 -05001569 inode_unlock(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
Al Viro104bb372012-01-08 16:13:28 -05001571 spin_lock_irq (&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 }
1573 spin_unlock_irq (&dev->lock);
1574}
1575
1576
Al Virofb6c3222014-09-03 13:37:56 -04001577static struct dentry *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578gadgetfs_create_file (struct super_block *sb, char const *name,
Al Virofb6c3222014-09-03 13:37:56 -04001579 void *data, const struct file_operations *fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
1581static int activate_ep_files (struct dev_data *dev)
1582{
1583 struct usb_ep *ep;
Alan Stern0ae4ea82006-05-22 12:27:38 -04001584 struct ep_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
1586 gadget_for_each_ep (ep, dev->gadget) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
Eric Sesterhenn7039f422006-02-27 13:34:10 -08001588 data = kzalloc(sizeof(*data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 if (!data)
Alan Stern0ae4ea82006-05-22 12:27:38 -04001590 goto enomem0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 data->state = STATE_EP_DISABLED;
Thomas Gleixnera79df502010-01-29 20:38:59 +00001592 mutex_init(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 init_waitqueue_head (&data->wait);
1594
1595 strncpy (data->name, ep->name, sizeof (data->name) - 1);
1596 atomic_set (&data->count, 1);
1597 data->dev = dev;
1598 get_dev (dev);
1599
1600 data->ep = ep;
1601 ep->driver_data = data;
1602
1603 data->req = usb_ep_alloc_request (ep, GFP_KERNEL);
1604 if (!data->req)
Alan Stern0ae4ea82006-05-22 12:27:38 -04001605 goto enomem1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
Al Virofb6c3222014-09-03 13:37:56 -04001607 data->dentry = gadgetfs_create_file (dev->sb, data->name,
Al Virod4461a62015-03-03 08:39:34 +00001608 data, &ep_io_operations);
Al Virofb6c3222014-09-03 13:37:56 -04001609 if (!data->dentry)
Alan Stern0ae4ea82006-05-22 12:27:38 -04001610 goto enomem2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 list_add_tail (&data->epfiles, &dev->epfiles);
1612 }
1613 return 0;
1614
Alan Stern0ae4ea82006-05-22 12:27:38 -04001615enomem2:
1616 usb_ep_free_request (ep, data->req);
1617enomem1:
1618 put_dev (dev);
1619 kfree (data);
1620enomem0:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001621 DBG (dev, "%s enomem\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 destroy_ep_files (dev);
1623 return -ENOMEM;
1624}
1625
1626static void
1627gadgetfs_unbind (struct usb_gadget *gadget)
1628{
1629 struct dev_data *dev = get_gadget_data (gadget);
1630
Harvey Harrison441b62c2008-03-03 16:08:34 -08001631 DBG (dev, "%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
1633 spin_lock_irq (&dev->lock);
1634 dev->state = STATE_DEV_UNBOUND;
Alan Sternfd5336c2017-09-21 13:23:58 -04001635 while (dev->udc_usage > 0) {
1636 spin_unlock_irq(&dev->lock);
1637 usleep_range(1000, 2000);
1638 spin_lock_irq(&dev->lock);
1639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 spin_unlock_irq (&dev->lock);
1641
1642 destroy_ep_files (dev);
1643 gadget->ep0->driver_data = NULL;
1644 set_gadget_data (gadget, NULL);
1645
1646 /* we've already been disconnected ... no i/o is active */
1647 if (dev->req)
1648 usb_ep_free_request (gadget->ep0, dev->req);
Harvey Harrison441b62c2008-03-03 16:08:34 -08001649 DBG (dev, "%s done\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 put_dev (dev);
1651}
1652
1653static struct dev_data *the_device;
1654
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +02001655static int gadgetfs_bind(struct usb_gadget *gadget,
1656 struct usb_gadget_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657{
1658 struct dev_data *dev = the_device;
1659
1660 if (!dev)
1661 return -ESRCH;
1662 if (0 != strcmp (CHIP, gadget->name)) {
David Brownell00274922007-11-19 12:58:36 -08001663 pr_err("%s expected %s controller not %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 shortname, CHIP, gadget->name);
1665 return -ENODEV;
1666 }
1667
1668 set_gadget_data (gadget, dev);
1669 dev->gadget = gadget;
1670 gadget->ep0->driver_data = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
1672 /* preallocate control response and buffer */
1673 dev->req = usb_ep_alloc_request (gadget->ep0, GFP_KERNEL);
1674 if (!dev->req)
1675 goto enomem;
1676 dev->req->context = NULL;
1677 dev->req->complete = epio_complete;
1678
1679 if (activate_ep_files (dev) < 0)
1680 goto enomem;
1681
1682 INFO (dev, "bound to %s driver\n", gadget->name);
David Brownell7489d142007-01-16 22:51:04 -08001683 spin_lock_irq(&dev->lock);
1684 dev->state = STATE_DEV_UNCONNECTED;
1685 spin_unlock_irq(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 get_dev (dev);
1687 return 0;
1688
1689enomem:
1690 gadgetfs_unbind (gadget);
1691 return -ENOMEM;
1692}
1693
1694static void
1695gadgetfs_disconnect (struct usb_gadget *gadget)
1696{
1697 struct dev_data *dev = get_gadget_data (gadget);
Marc Kleine-Budde001428e2011-10-10 18:38:05 +02001698 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
Marc Kleine-Budde001428e2011-10-10 18:38:05 +02001700 spin_lock_irqsave (&dev->lock, flags);
David Brownell7489d142007-01-16 22:51:04 -08001701 if (dev->state == STATE_DEV_UNCONNECTED)
Milan Svoboda07cb7f22006-06-26 07:46:00 -07001702 goto exit;
David Brownell7489d142007-01-16 22:51:04 -08001703 dev->state = STATE_DEV_UNCONNECTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
1705 INFO (dev, "disconnected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 next_event (dev, GADGETFS_DISCONNECT);
1707 ep0_readable (dev);
Milan Svoboda07cb7f22006-06-26 07:46:00 -07001708exit:
Marc Kleine-Budde001428e2011-10-10 18:38:05 +02001709 spin_unlock_irqrestore (&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710}
1711
1712static void
1713gadgetfs_suspend (struct usb_gadget *gadget)
1714{
1715 struct dev_data *dev = get_gadget_data (gadget);
Alan Stern0c0d3d82017-06-13 15:23:42 -04001716 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
1718 INFO (dev, "suspended from state %d\n", dev->state);
Alan Stern0c0d3d82017-06-13 15:23:42 -04001719 spin_lock_irqsave(&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 switch (dev->state) {
David Brownell7489d142007-01-16 22:51:04 -08001721 case STATE_DEV_SETUP: // VERY odd... host died??
1722 case STATE_DEV_CONNECTED:
1723 case STATE_DEV_UNCONNECTED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 next_event (dev, GADGETFS_SUSPEND);
1725 ep0_readable (dev);
1726 /* FALLTHROUGH */
1727 default:
1728 break;
1729 }
Alan Stern0c0d3d82017-06-13 15:23:42 -04001730 spin_unlock_irqrestore(&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731}
1732
1733static struct usb_gadget_driver gadgetfs_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 .function = (char *) driver_desc,
Sebastian Andrzej Siewior93952952012-09-06 20:11:05 +02001735 .bind = gadgetfs_bind,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 .unbind = gadgetfs_unbind,
1737 .setup = gadgetfs_setup,
Peter Chen0eba4552014-09-09 08:56:51 +08001738 .reset = gadgetfs_disconnect,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 .disconnect = gadgetfs_disconnect,
1740 .suspend = gadgetfs_suspend,
1741
David Brownell25051072007-01-15 11:30:28 -08001742 .driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 .name = (char *) shortname,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 },
1745};
1746
1747/*----------------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748/* DEVICE INITIALIZATION
1749 *
1750 * fd = open ("/dev/gadget/$CHIP", O_RDWR)
1751 * status = write (fd, descriptors, sizeof descriptors)
1752 *
1753 * That write establishes the device configuration, so the kernel can
1754 * bind to the controller ... guaranteeing it can handle enumeration
1755 * at all necessary speeds. Descriptor order is:
1756 *
1757 * . message tag (u32, host order) ... for now, must be zero; it
1758 * would change to support features like multi-config devices
1759 * . full/low speed config ... all wTotalLength bytes (with interface,
1760 * class, altsetting, endpoint, and other descriptors)
1761 * . high speed config ... all descriptors, for high speed operation;
David Brownell25051072007-01-15 11:30:28 -08001762 * this one's optional except for high-speed hardware
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 * . device descriptor
1764 *
Phil Endecott511779f2007-01-15 11:35:01 -08001765 * Endpoints are not yet enabled. Drivers must wait until device
1766 * configuration and interface altsetting changes create
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 * the need to configure (or unconfigure) them.
1768 *
1769 * After initialization, the device stays active for as long as that
Phil Endecott511779f2007-01-15 11:35:01 -08001770 * $CHIP file is open. Events must then be read from that descriptor,
1771 * such as configuration notifications.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 */
1773
Alan Sternda4543b2016-12-09 15:24:24 -05001774static int is_valid_config(struct usb_config_descriptor *config,
1775 unsigned int total)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776{
1777 return config->bDescriptorType == USB_DT_CONFIG
1778 && config->bLength == USB_DT_CONFIG_SIZE
Alan Sternda4543b2016-12-09 15:24:24 -05001779 && total >= USB_DT_CONFIG_SIZE
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 && config->bConfigurationValue != 0
1781 && (config->bmAttributes & USB_CONFIG_ATT_ONE) != 0
1782 && (config->bmAttributes & USB_CONFIG_ATT_WAKEUP) == 0;
1783 /* FIXME if gadget->is_otg, _must_ include an otg descriptor */
1784 /* FIXME check lengths: walk to end */
1785}
1786
1787static ssize_t
1788dev_config (struct file *fd, const char __user *buf, size_t len, loff_t *ptr)
1789{
1790 struct dev_data *dev = fd->private_data;
1791 ssize_t value = len, length = len;
1792 unsigned total;
1793 u32 tag;
1794 char *kbuf;
1795
Alan Stern96b62a52015-03-04 10:31:50 -05001796 spin_lock_irq(&dev->lock);
1797 if (dev->state > STATE_DEV_OPENED) {
1798 value = ep0_write(fd, buf, len, ptr);
1799 spin_unlock_irq(&dev->lock);
1800 return value;
1801 }
1802 spin_unlock_irq(&dev->lock);
1803
Greg Kroah-Hartman404954e2016-12-06 08:36:29 +01001804 if ((len < (USB_DT_CONFIG_SIZE + USB_DT_DEVICE_SIZE + 4)) ||
1805 (len > PAGE_SIZE * 4))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 return -EINVAL;
1807
1808 /* we might need to change message format someday */
1809 if (copy_from_user (&tag, buf, 4))
1810 return -EFAULT;
1811 if (tag != 0)
1812 return -EINVAL;
1813 buf += 4;
1814 length -= 4;
1815
Julia Lawallbe8a0582010-05-22 10:26:22 +02001816 kbuf = memdup_user(buf, length);
1817 if (IS_ERR(kbuf))
1818 return PTR_ERR(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
1820 spin_lock_irq (&dev->lock);
1821 value = -EINVAL;
Christophe JAILLET8fe9ea82017-02-21 22:33:11 +01001822 if (dev->buf) {
1823 kfree(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 goto fail;
Christophe JAILLET8fe9ea82017-02-21 22:33:11 +01001825 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 dev->buf = kbuf;
1827
1828 /* full or low speed config */
1829 dev->config = (void *) kbuf;
David Brownell01ee7d72007-05-25 20:40:14 -07001830 total = le16_to_cpu(dev->config->wTotalLength);
Alan Sternda4543b2016-12-09 15:24:24 -05001831 if (!is_valid_config(dev->config, total) ||
1832 total > length - USB_DT_DEVICE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 goto fail;
1834 kbuf += total;
1835 length -= total;
1836
1837 /* optional high speed config */
1838 if (kbuf [1] == USB_DT_CONFIG) {
1839 dev->hs_config = (void *) kbuf;
David Brownell01ee7d72007-05-25 20:40:14 -07001840 total = le16_to_cpu(dev->hs_config->wTotalLength);
Alan Sternda4543b2016-12-09 15:24:24 -05001841 if (!is_valid_config(dev->hs_config, total) ||
1842 total > length - USB_DT_DEVICE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 goto fail;
1844 kbuf += total;
1845 length -= total;
Alan Stern46427c22016-12-09 15:18:43 -05001846 } else {
1847 dev->hs_config = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 }
1849
1850 /* could support multiple configs, using another encoding! */
1851
1852 /* device descriptor (tweaked for paranoia) */
1853 if (length != USB_DT_DEVICE_SIZE)
1854 goto fail;
1855 dev->dev = (void *)kbuf;
1856 if (dev->dev->bLength != USB_DT_DEVICE_SIZE
1857 || dev->dev->bDescriptorType != USB_DT_DEVICE
1858 || dev->dev->bNumConfigurations != 1)
1859 goto fail;
1860 dev->dev->bNumConfigurations = 1;
Harvey Harrison551509d2009-02-11 14:11:36 -08001861 dev->dev->bcdUSB = cpu_to_le16 (0x0200);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
1863 /* triggers gadgetfs_bind(); then we can enumerate. */
1864 spin_unlock_irq (&dev->lock);
Michal Nazarewicz85b86142012-08-24 20:46:18 +02001865 if (dev->hs_config)
1866 gadgetfs_driver.max_speed = USB_SPEED_HIGH;
1867 else
1868 gadgetfs_driver.max_speed = USB_SPEED_FULL;
Sebastian Andrzej Siewior93952952012-09-06 20:11:05 +02001869
1870 value = usb_gadget_probe_driver(&gadgetfs_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 if (value != 0) {
1872 kfree (dev->buf);
1873 dev->buf = NULL;
1874 } else {
1875 /* at this point "good" hardware has for the first time
1876 * let the USB the host see us. alternatively, if users
1877 * unplug/replug that will clear all the error state.
1878 *
1879 * note: everything running before here was guaranteed
1880 * to choke driver model style diagnostics. from here
1881 * on, they can work ... except in cleanup paths that
1882 * kick in after the ep0 descriptor is closed.
1883 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 value = len;
Marek Szyprowski7b0a2712016-02-18 08:59:26 +01001885 dev->gadget_registered = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 }
1887 return value;
1888
1889fail:
1890 spin_unlock_irq (&dev->lock);
Harvey Harrison441b62c2008-03-03 16:08:34 -08001891 pr_debug ("%s: %s fail %Zd, %p\n", shortname, __func__, value, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 kfree (dev->buf);
1893 dev->buf = NULL;
1894 return value;
1895}
1896
1897static int
1898dev_open (struct inode *inode, struct file *fd)
1899{
Theodore Ts'o8e18e292006-09-27 01:50:46 -07001900 struct dev_data *dev = inode->i_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 int value = -EBUSY;
1902
David Brownell7489d142007-01-16 22:51:04 -08001903 spin_lock_irq(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 if (dev->state == STATE_DEV_DISABLED) {
1905 dev->ev_next = 0;
David Brownell7489d142007-01-16 22:51:04 -08001906 dev->state = STATE_DEV_OPENED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 fd->private_data = dev;
1908 get_dev (dev);
1909 value = 0;
1910 }
David Brownell7489d142007-01-16 22:51:04 -08001911 spin_unlock_irq(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 return value;
1913}
1914
Alan Stern96b62a52015-03-04 10:31:50 -05001915static const struct file_operations ep0_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 .llseek = no_llseek,
1917
1918 .open = dev_open,
Alan Stern96b62a52015-03-04 10:31:50 -05001919 .read = ep0_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 .write = dev_config,
1921 .fasync = ep0_fasync,
Alan Stern96b62a52015-03-04 10:31:50 -05001922 .poll = ep0_poll,
Alan Cox44c389a2008-05-22 22:03:27 +01001923 .unlocked_ioctl = dev_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 .release = dev_release,
1925};
1926
1927/*----------------------------------------------------------------------*/
1928
1929/* FILESYSTEM AND SUPERBLOCK OPERATIONS
1930 *
1931 * Mounting the filesystem creates a controller file, used first for
1932 * device configuration then later for event monitoring.
1933 */
1934
1935
1936/* FIXME PAM etc could set this security policy without mount options
1937 * if epfiles inherited ownership and permissons from ep0 ...
1938 */
1939
1940static unsigned default_uid;
1941static unsigned default_gid;
1942static unsigned default_perm = S_IRUSR | S_IWUSR;
1943
1944module_param (default_uid, uint, 0644);
1945module_param (default_gid, uint, 0644);
1946module_param (default_perm, uint, 0644);
1947
1948
1949static struct inode *
1950gadgetfs_make_inode (struct super_block *sb,
Arjan van de Ven99ac48f2006-03-28 01:56:41 -08001951 void *data, const struct file_operations *fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 int mode)
1953{
1954 struct inode *inode = new_inode (sb);
1955
1956 if (inode) {
Christoph Hellwig85fe4022010-10-23 11:19:54 -04001957 inode->i_ino = get_next_ino();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 inode->i_mode = mode;
Eric W. Biederman32d639c2012-02-07 16:32:04 -08001959 inode->i_uid = make_kuid(&init_user_ns, default_uid);
1960 inode->i_gid = make_kgid(&init_user_ns, default_gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 inode->i_atime = inode->i_mtime = inode->i_ctime
Deepa Dinamani078cd822016-09-14 07:48:04 -07001962 = current_time(inode);
Theodore Ts'o8e18e292006-09-27 01:50:46 -07001963 inode->i_private = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 inode->i_fop = fops;
1965 }
1966 return inode;
1967}
1968
1969/* creates in fs root directory, so non-renamable and non-linkable.
1970 * so inode and dentry are paired, until device reconfig.
1971 */
Al Virofb6c3222014-09-03 13:37:56 -04001972static struct dentry *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973gadgetfs_create_file (struct super_block *sb, char const *name,
Al Virofb6c3222014-09-03 13:37:56 -04001974 void *data, const struct file_operations *fops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975{
1976 struct dentry *dentry;
1977 struct inode *inode;
1978
1979 dentry = d_alloc_name(sb->s_root, name);
1980 if (!dentry)
1981 return NULL;
1982
1983 inode = gadgetfs_make_inode (sb, data, fops,
1984 S_IFREG | (default_perm & S_IRWXUGO));
1985 if (!inode) {
1986 dput(dentry);
1987 return NULL;
1988 }
1989 d_add (dentry, inode);
Al Virofb6c3222014-09-03 13:37:56 -04001990 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991}
1992
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001993static const struct super_operations gadget_fs_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 .statfs = simple_statfs,
1995 .drop_inode = generic_delete_inode,
1996};
1997
1998static int
1999gadgetfs_fill_super (struct super_block *sb, void *opts, int silent)
2000{
2001 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 struct dev_data *dev;
2003
2004 if (the_device)
2005 return -ESRCH;
2006
Marek Szyprowski175f7122016-02-18 11:34:43 +01002007 CHIP = usb_get_gadget_udc_name();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 if (!CHIP)
2009 return -ENODEV;
2010
2011 /* superblock */
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002012 sb->s_blocksize = PAGE_SIZE;
2013 sb->s_blocksize_bits = PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 sb->s_magic = GADGETFS_MAGIC;
2015 sb->s_op = &gadget_fs_operations;
2016 sb->s_time_gran = 1;
2017
2018 /* root inode */
2019 inode = gadgetfs_make_inode (sb,
2020 NULL, &simple_dir_operations,
2021 S_IFDIR | S_IRUGO | S_IXUGO);
2022 if (!inode)
Al Viro87da5b32012-01-08 15:59:45 -05002023 goto Enomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 inode->i_op = &simple_dir_inode_operations;
Al Viro48fde702012-01-08 22:15:13 -05002025 if (!(sb->s_root = d_make_root (inode)))
Al Viro87da5b32012-01-08 15:59:45 -05002026 goto Enomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
2028 /* the ep0 file is named after the controller we expect;
2029 * user mode code can use it for sanity checks, like we do.
2030 */
2031 dev = dev_new ();
2032 if (!dev)
Al Viro87da5b32012-01-08 15:59:45 -05002033 goto Enomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
2035 dev->sb = sb;
Alan Stern96b62a52015-03-04 10:31:50 -05002036 dev->dentry = gadgetfs_create_file(sb, CHIP, dev, &ep0_operations);
Al Virofb6c3222014-09-03 13:37:56 -04002037 if (!dev->dentry) {
Al Viro87da5b32012-01-08 15:59:45 -05002038 put_dev(dev);
2039 goto Enomem;
2040 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
2042 /* other endpoint files are available after hardware setup,
2043 * from binding to a controller.
2044 */
2045 the_device = dev;
2046 return 0;
Alan Stern0ae4ea82006-05-22 12:27:38 -04002047
Al Viro87da5b32012-01-08 15:59:45 -05002048Enomem:
Alan Stern0ae4ea82006-05-22 12:27:38 -04002049 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050}
2051
2052/* "mount -t gadgetfs path /dev/gadget" ends up here */
Al Virofc14f2f2010-07-25 01:48:30 +04002053static struct dentry *
2054gadgetfs_mount (struct file_system_type *t, int flags,
2055 const char *path, void *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056{
Al Virofc14f2f2010-07-25 01:48:30 +04002057 return mount_single (t, flags, opts, gadgetfs_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058}
2059
2060static void
2061gadgetfs_kill_sb (struct super_block *sb)
2062{
2063 kill_litter_super (sb);
2064 if (the_device) {
2065 put_dev (the_device);
2066 the_device = NULL;
2067 }
Marek Szyprowski175f7122016-02-18 11:34:43 +01002068 kfree(CHIP);
2069 CHIP = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070}
2071
2072/*----------------------------------------------------------------------*/
2073
2074static struct file_system_type gadgetfs_type = {
2075 .owner = THIS_MODULE,
2076 .name = shortname,
Al Virofc14f2f2010-07-25 01:48:30 +04002077 .mount = gadgetfs_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 .kill_sb = gadgetfs_kill_sb,
2079};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08002080MODULE_ALIAS_FS("gadgetfs");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
2082/*----------------------------------------------------------------------*/
2083
2084static int __init init (void)
2085{
2086 int status;
2087
2088 status = register_filesystem (&gadgetfs_type);
2089 if (status == 0)
2090 pr_info ("%s: %s, version " DRIVER_VERSION "\n",
2091 shortname, driver_desc);
2092 return status;
2093}
2094module_init (init);
2095
2096static void __exit cleanup (void)
2097{
2098 pr_debug ("unregister %s\n", shortname);
2099 unregister_filesystem (&gadgetfs_type);
2100}
2101module_exit (cleanup);
2102