blob: 5cdaf0150a4ed4fc2efe42c19dff6083674ead13 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31#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;
David Brownell7489d142007-01-16 22:51:04 -0800119 enum ep0_state state; /* P: lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 struct usb_gadgetfs_event event [N_EVENT];
121 unsigned ev_next;
122 struct fasync_struct *fasync;
123 u8 current_config;
124
125 /* drivers reading ep0 MUST handle control requests (SETUP)
126 * reported that way; else the host will time out.
127 */
128 unsigned usermode_setup : 1,
129 setup_in : 1,
130 setup_can_stall : 1,
131 setup_out_ready : 1,
132 setup_out_error : 1,
Marek Szyprowski7b0a2712016-02-18 08:59:26 +0100133 setup_abort : 1,
134 gadget_registered : 1;
Alan Stern97906362006-01-03 10:30:31 -0500135 unsigned setup_wLength;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137 /* the rest is basically write-once */
138 struct usb_config_descriptor *config, *hs_config;
139 struct usb_device_descriptor *dev;
140 struct usb_request *req;
141 struct usb_gadget *gadget;
142 struct list_head epfiles;
143 void *buf;
144 wait_queue_head_t wait;
145 struct super_block *sb;
146 struct dentry *dentry;
147
148 /* except this scratch i/o buffer for ep0 */
149 u8 rbuf [256];
150};
151
152static inline void get_dev (struct dev_data *data)
153{
154 atomic_inc (&data->count);
155}
156
157static void put_dev (struct dev_data *data)
158{
159 if (likely (!atomic_dec_and_test (&data->count)))
160 return;
161 /* needs no more cleanup */
162 BUG_ON (waitqueue_active (&data->wait));
163 kfree (data);
164}
165
166static struct dev_data *dev_new (void)
167{
168 struct dev_data *dev;
169
Eric Sesterhenn7039f422006-02-27 13:34:10 -0800170 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 if (!dev)
172 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 dev->state = STATE_DEV_DISABLED;
174 atomic_set (&dev->count, 1);
175 spin_lock_init (&dev->lock);
176 INIT_LIST_HEAD (&dev->epfiles);
177 init_waitqueue_head (&dev->wait);
178 return dev;
179}
180
181/*----------------------------------------------------------------------*/
182
183/* other /dev/gadget/$ENDPOINT files represent endpoints */
184enum ep_state {
185 STATE_EP_DISABLED = 0,
186 STATE_EP_READY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 STATE_EP_ENABLED,
188 STATE_EP_UNBOUND,
189};
190
191struct ep_data {
Thomas Gleixnera79df502010-01-29 20:38:59 +0000192 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 enum ep_state state;
194 atomic_t count;
195 struct dev_data *dev;
196 /* must hold dev->lock before accessing ep or req */
197 struct usb_ep *ep;
198 struct usb_request *req;
199 ssize_t status;
200 char name [16];
201 struct usb_endpoint_descriptor desc, hs_desc;
202 struct list_head epfiles;
203 wait_queue_head_t wait;
204 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205};
206
207static inline void get_ep (struct ep_data *data)
208{
209 atomic_inc (&data->count);
210}
211
212static void put_ep (struct ep_data *data)
213{
214 if (likely (!atomic_dec_and_test (&data->count)))
215 return;
216 put_dev (data->dev);
217 /* needs no more cleanup */
218 BUG_ON (!list_empty (&data->epfiles));
219 BUG_ON (waitqueue_active (&data->wait));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 kfree (data);
221}
222
223/*----------------------------------------------------------------------*/
224
225/* most "how to use the hardware" policy choices are in userspace:
226 * mapping endpoint roles (which the driver needs) to the capabilities
227 * which the usb controller has. most of those capabilities are exposed
228 * implicitly, starting with the driver name and then endpoint names.
229 */
230
231static const char *CHIP;
232
233/*----------------------------------------------------------------------*/
234
235/* NOTE: don't use dev_printk calls before binding to the gadget
236 * at the end of ep0 configuration, or after unbind.
237 */
238
239/* too wordy: dev_printk(level , &(d)->gadget->dev , fmt , ## args) */
240#define xprintk(d,level,fmt,args...) \
241 printk(level "%s: " fmt , shortname , ## args)
242
243#ifdef DEBUG
244#define DBG(dev,fmt,args...) \
245 xprintk(dev , KERN_DEBUG , fmt , ## args)
246#else
247#define DBG(dev,fmt,args...) \
248 do { } while (0)
249#endif /* DEBUG */
250
David Brownella4e3ef52007-08-01 23:58:22 -0700251#ifdef VERBOSE_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252#define VDEBUG DBG
253#else
254#define VDEBUG(dev,fmt,args...) \
255 do { } while (0)
256#endif /* DEBUG */
257
258#define ERROR(dev,fmt,args...) \
259 xprintk(dev , KERN_ERR , fmt , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260#define INFO(dev,fmt,args...) \
261 xprintk(dev , KERN_INFO , fmt , ## args)
262
263
264/*----------------------------------------------------------------------*/
265
266/* SYNCHRONOUS ENDPOINT OPERATIONS (bulk/intr/iso)
267 *
268 * After opening, configure non-control endpoints. Then use normal
269 * stream read() and write() requests; and maybe ioctl() to get more
Steven Cole093cf722005-05-03 19:07:24 -0600270 * precise FIFO status when recovering from cancellation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 */
272
273static void epio_complete (struct usb_ep *ep, struct usb_request *req)
274{
275 struct ep_data *epdata = ep->driver_data;
276
277 if (!req->context)
278 return;
279 if (req->status)
280 epdata->status = req->status;
281 else
282 epdata->status = req->actual;
283 complete ((struct completion *)req->context);
284}
285
286/* tasklock endpoint, returning when it's connected.
287 * still need dev->lock to use epdata->ep.
288 */
289static int
Al Virod4461a62015-03-03 08:39:34 +0000290get_ready_ep (unsigned f_flags, struct ep_data *epdata, bool is_write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
292 int val;
293
294 if (f_flags & O_NONBLOCK) {
Thomas Gleixnera79df502010-01-29 20:38:59 +0000295 if (!mutex_trylock(&epdata->lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 goto nonblock;
Al Virod4461a62015-03-03 08:39:34 +0000297 if (epdata->state != STATE_EP_ENABLED &&
298 (!is_write || epdata->state != STATE_EP_READY)) {
Thomas Gleixnera79df502010-01-29 20:38:59 +0000299 mutex_unlock(&epdata->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300nonblock:
301 val = -EAGAIN;
302 } else
303 val = 0;
304 return val;
305 }
306
Thomas Gleixnera79df502010-01-29 20:38:59 +0000307 val = mutex_lock_interruptible(&epdata->lock);
308 if (val < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 return val;
Phil Endecott511779f2007-01-15 11:35:01 -0800310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 switch (epdata->state) {
312 case STATE_EP_ENABLED:
Al Virod4461a62015-03-03 08:39:34 +0000313 return 0;
314 case STATE_EP_READY: /* not configured yet */
315 if (is_write)
316 return 0;
317 // FALLTHRU
318 case STATE_EP_UNBOUND: /* clean disconnect */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 // case STATE_EP_DISABLED: /* "can't happen" */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 default: /* error! */
322 pr_debug ("%s: ep %p not available, state %d\n",
323 shortname, epdata, epdata->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 }
Al Virod4461a62015-03-03 08:39:34 +0000325 mutex_unlock(&epdata->lock);
326 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
329static ssize_t
330ep_io (struct ep_data *epdata, void *buf, unsigned len)
331{
Peter Zijlstra6e9a4732006-09-30 23:28:10 -0700332 DECLARE_COMPLETION_ONSTACK (done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 int value;
334
335 spin_lock_irq (&epdata->dev->lock);
336 if (likely (epdata->ep != NULL)) {
337 struct usb_request *req = epdata->req;
338
339 req->context = &done;
340 req->complete = epio_complete;
341 req->buf = buf;
342 req->length = len;
343 value = usb_ep_queue (epdata->ep, req, GFP_ATOMIC);
344 } else
345 value = -ENODEV;
346 spin_unlock_irq (&epdata->dev->lock);
347
348 if (likely (value == 0)) {
349 value = wait_event_interruptible (done.wait, done.done);
350 if (value != 0) {
351 spin_lock_irq (&epdata->dev->lock);
352 if (likely (epdata->ep != NULL)) {
353 DBG (epdata->dev, "%s i/o interrupted\n",
354 epdata->name);
355 usb_ep_dequeue (epdata->ep, epdata->req);
356 spin_unlock_irq (&epdata->dev->lock);
357
358 wait_event (done.wait, done.done);
359 if (epdata->status == -ECONNRESET)
360 epdata->status = -EINTR;
361 } else {
362 spin_unlock_irq (&epdata->dev->lock);
363
364 DBG (epdata->dev, "endpoint gone\n");
365 epdata->status = -ENODEV;
366 }
367 }
368 return epdata->status;
369 }
370 return value;
371}
372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373static int
374ep_release (struct inode *inode, struct file *fd)
375{
376 struct ep_data *data = fd->private_data;
Milan Svobodaba307f52006-06-26 07:48:00 -0700377 int value;
378
Thomas Gleixnera79df502010-01-29 20:38:59 +0000379 value = mutex_lock_interruptible(&data->lock);
380 if (value < 0)
Milan Svobodaba307f52006-06-26 07:48:00 -0700381 return value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 /* clean up if this can be reopened */
384 if (data->state != STATE_EP_UNBOUND) {
385 data->state = STATE_EP_DISABLED;
386 data->desc.bDescriptorType = 0;
387 data->hs_desc.bDescriptorType = 0;
Pavol Kurina4809ecc2005-09-07 09:49:34 -0700388 usb_ep_disable(data->ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 }
Thomas Gleixnera79df502010-01-29 20:38:59 +0000390 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 put_ep (data);
392 return 0;
393}
394
Alan Cox44c389a2008-05-22 22:03:27 +0100395static long ep_ioctl(struct file *fd, unsigned code, unsigned long value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
397 struct ep_data *data = fd->private_data;
398 int status;
399
Al Virod4461a62015-03-03 08:39:34 +0000400 if ((status = get_ready_ep (fd->f_flags, data, false)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 return status;
402
403 spin_lock_irq (&data->dev->lock);
404 if (likely (data->ep != NULL)) {
405 switch (code) {
406 case GADGETFS_FIFO_STATUS:
407 status = usb_ep_fifo_status (data->ep);
408 break;
409 case GADGETFS_FIFO_FLUSH:
410 usb_ep_fifo_flush (data->ep);
411 break;
412 case GADGETFS_CLEAR_HALT:
413 status = usb_ep_clear_halt (data->ep);
414 break;
415 default:
416 status = -ENOTTY;
417 }
418 } else
419 status = -ENODEV;
420 spin_unlock_irq (&data->dev->lock);
Thomas Gleixnera79df502010-01-29 20:38:59 +0000421 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 return status;
423}
424
425/*----------------------------------------------------------------------*/
426
427/* ASYNCHRONOUS ENDPOINT I/O OPERATIONS (bulk/intr/iso) */
428
429struct kiocb_priv {
430 struct usb_request *req;
431 struct ep_data *epdata;
Zach Browna80bf612013-05-07 16:18:23 -0700432 struct kiocb *iocb;
433 struct mm_struct *mm;
434 struct work_struct work;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 void *buf;
Al Viro7fe39762015-02-07 00:30:23 -0500436 struct iov_iter to;
437 const void *to_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 unsigned actual;
439};
440
Kent Overstreetbec68faa2013-05-13 14:45:08 -0700441static int ep_aio_cancel(struct kiocb *iocb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
443 struct kiocb_priv *priv = iocb->private;
444 struct ep_data *epdata;
445 int value;
446
447 local_irq_disable();
448 epdata = priv->epdata;
449 // spin_lock(&epdata->dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 if (likely(epdata && epdata->ep && priv->req))
451 value = usb_ep_dequeue (epdata->ep, priv->req);
452 else
453 value = -EINVAL;
454 // spin_unlock(&epdata->dev->lock);
455 local_irq_enable();
456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 return value;
458}
459
Zach Browna80bf612013-05-07 16:18:23 -0700460static void ep_user_copy_worker(struct work_struct *work)
461{
462 struct kiocb_priv *priv = container_of(work, struct kiocb_priv, work);
463 struct mm_struct *mm = priv->mm;
464 struct kiocb *iocb = priv->iocb;
465 size_t ret;
466
467 use_mm(mm);
Al Viro7fe39762015-02-07 00:30:23 -0500468 ret = copy_to_iter(priv->buf, priv->actual, &priv->to);
Zach Browna80bf612013-05-07 16:18:23 -0700469 unuse_mm(mm);
Al Viro7fe39762015-02-07 00:30:23 -0500470 if (!ret)
471 ret = -EFAULT;
Zach Browna80bf612013-05-07 16:18:23 -0700472
473 /* completing the iocb can drop the ctx and mm, don't touch mm after */
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100474 iocb->ki_complete(iocb, ret, ret);
Zach Browna80bf612013-05-07 16:18:23 -0700475
David Brownell25051072007-01-15 11:30:28 -0800476 kfree(priv->buf);
Al Viro7fe39762015-02-07 00:30:23 -0500477 kfree(priv->to_free);
David Brownell25051072007-01-15 11:30:28 -0800478 kfree(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479}
480
481static void ep_aio_complete(struct usb_ep *ep, struct usb_request *req)
482{
483 struct kiocb *iocb = req->context;
484 struct kiocb_priv *priv = iocb->private;
485 struct ep_data *epdata = priv->epdata;
486
487 /* lock against disconnect (and ideally, cancel) */
488 spin_lock(&epdata->dev->lock);
489 priv->req = NULL;
490 priv->epdata = NULL;
Alan Stern49631ca2007-01-16 23:28:48 -0800491
492 /* if this was a write or a read returning no data then we
493 * don't need to copy anything to userspace, so we can
494 * complete the aio request immediately.
495 */
Al Viro7fe39762015-02-07 00:30:23 -0500496 if (priv->to_free == NULL || unlikely(req->actual == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 kfree(req->buf);
Al Viro7fe39762015-02-07 00:30:23 -0500498 kfree(priv->to_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 kfree(priv);
500 iocb->private = NULL;
501 /* aio_complete() reports bytes-transferred _and_ faults */
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100502
503 iocb->ki_complete(iocb, req->actual ? req->actual : req->status,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 req->status);
505 } else {
Zach Browna80bf612013-05-07 16:18:23 -0700506 /* ep_copy_to_user() won't report both; we hide some faults */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 if (unlikely(0 != req->status))
508 DBG(epdata->dev, "%s fault %d len %d\n",
509 ep->name, req->status, req->actual);
510
511 priv->buf = req->buf;
512 priv->actual = req->actual;
Al Viro7fe39762015-02-07 00:30:23 -0500513 INIT_WORK(&priv->work, ep_user_copy_worker);
Zach Browna80bf612013-05-07 16:18:23 -0700514 schedule_work(&priv->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 }
516 spin_unlock(&epdata->dev->lock);
517
518 usb_ep_free_request(ep, req);
519 put_ep(epdata);
520}
521
Al Viro7fe39762015-02-07 00:30:23 -0500522static ssize_t ep_aio(struct kiocb *iocb,
523 struct kiocb_priv *priv,
524 struct ep_data *epdata,
525 char *buf,
526 size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527{
Al Viro7fe39762015-02-07 00:30:23 -0500528 struct usb_request *req;
529 ssize_t value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 iocb->private = priv;
Zach Browna80bf612013-05-07 16:18:23 -0700532 priv->iocb = iocb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
Kent Overstreet0460fef2013-05-07 16:18:49 -0700534 kiocb_set_cancel_fn(iocb, ep_aio_cancel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 get_ep(epdata);
536 priv->epdata = epdata;
537 priv->actual = 0;
Zach Browna80bf612013-05-07 16:18:23 -0700538 priv->mm = current->mm; /* mm teardown waits for iocbs in exit_aio() */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
540 /* each kiocb is coupled to one usb_request, but we can't
541 * allocate or submit those if the host disconnected.
542 */
543 spin_lock_irq(&epdata->dev->lock);
Al Viro7fe39762015-02-07 00:30:23 -0500544 value = -ENODEV;
545 if (unlikely(epdata->ep))
546 goto fail;
547
548 req = usb_ep_alloc_request(epdata->ep, GFP_ATOMIC);
549 value = -ENOMEM;
550 if (unlikely(!req))
551 goto fail;
552
553 priv->req = req;
554 req->buf = buf;
555 req->length = len;
556 req->complete = ep_aio_complete;
557 req->context = iocb;
558 value = usb_ep_queue(epdata->ep, req, GFP_ATOMIC);
559 if (unlikely(0 != value)) {
560 usb_ep_free_request(epdata->ep, req);
561 goto fail;
562 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 spin_unlock_irq(&epdata->dev->lock);
Al Viro7fe39762015-02-07 00:30:23 -0500564 return -EIOCBQUEUED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Al Viro7fe39762015-02-07 00:30:23 -0500566fail:
567 spin_unlock_irq(&epdata->dev->lock);
568 kfree(priv->to_free);
569 kfree(priv);
570 put_ep(epdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 return value;
572}
573
574static ssize_t
Al Viro7fe39762015-02-07 00:30:23 -0500575ep_read_iter(struct kiocb *iocb, struct iov_iter *to)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
Al Viro7fe39762015-02-07 00:30:23 -0500577 struct file *file = iocb->ki_filp;
578 struct ep_data *epdata = file->private_data;
579 size_t len = iov_iter_count(to);
580 ssize_t value;
581 char *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Al Virod4461a62015-03-03 08:39:34 +0000583 if ((value = get_ready_ep(file->f_flags, epdata, false)) < 0)
Al Viro7fe39762015-02-07 00:30:23 -0500584 return value;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700585
Al Viro7fe39762015-02-07 00:30:23 -0500586 /* halt any endpoint by doing a "wrong direction" i/o call */
587 if (usb_endpoint_dir_in(&epdata->desc)) {
588 if (usb_endpoint_xfer_isoc(&epdata->desc) ||
589 !is_sync_kiocb(iocb)) {
590 mutex_unlock(&epdata->lock);
591 return -EINVAL;
592 }
593 DBG (epdata->dev, "%s halt\n", epdata->name);
594 spin_lock_irq(&epdata->dev->lock);
595 if (likely(epdata->ep != NULL))
596 usb_ep_set_halt(epdata->ep);
597 spin_unlock_irq(&epdata->dev->lock);
598 mutex_unlock(&epdata->lock);
599 return -EBADMSG;
600 }
601
602 buf = kmalloc(len, GFP_KERNEL);
603 if (unlikely(!buf)) {
604 mutex_unlock(&epdata->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 return -ENOMEM;
Al Viro7fe39762015-02-07 00:30:23 -0500606 }
607 if (is_sync_kiocb(iocb)) {
608 value = ep_io(epdata, buf, len);
609 if (value >= 0 && copy_to_iter(buf, value, to))
610 value = -EFAULT;
611 } else {
612 struct kiocb_priv *priv = kzalloc(sizeof *priv, GFP_KERNEL);
613 value = -ENOMEM;
614 if (!priv)
615 goto fail;
616 priv->to_free = dup_iter(&priv->to, to, GFP_KERNEL);
617 if (!priv->to_free) {
618 kfree(priv);
619 goto fail;
620 }
621 value = ep_aio(iocb, priv, epdata, buf, len);
622 if (value == -EIOCBQUEUED)
623 buf = NULL;
624 }
625fail:
626 kfree(buf);
627 mutex_unlock(&epdata->lock);
628 return value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629}
630
Al Virod4461a62015-03-03 08:39:34 +0000631static ssize_t ep_config(struct ep_data *, const char *, size_t);
632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633static ssize_t
Al Viro7fe39762015-02-07 00:30:23 -0500634ep_write_iter(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
Al Viro7fe39762015-02-07 00:30:23 -0500636 struct file *file = iocb->ki_filp;
637 struct ep_data *epdata = file->private_data;
638 size_t len = iov_iter_count(from);
Al Virod4461a62015-03-03 08:39:34 +0000639 bool configured;
Al Viro7fe39762015-02-07 00:30:23 -0500640 ssize_t value;
641 char *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Al Virod4461a62015-03-03 08:39:34 +0000643 if ((value = get_ready_ep(file->f_flags, epdata, true)) < 0)
Al Viro7fe39762015-02-07 00:30:23 -0500644 return value;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700645
Al Virod4461a62015-03-03 08:39:34 +0000646 configured = epdata->state == STATE_EP_ENABLED;
647
Al Viro7fe39762015-02-07 00:30:23 -0500648 /* halt any endpoint by doing a "wrong direction" i/o call */
Al Virod4461a62015-03-03 08:39:34 +0000649 if (configured && !usb_endpoint_dir_in(&epdata->desc)) {
Al Viro7fe39762015-02-07 00:30:23 -0500650 if (usb_endpoint_xfer_isoc(&epdata->desc) ||
651 !is_sync_kiocb(iocb)) {
652 mutex_unlock(&epdata->lock);
653 return -EINVAL;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700654 }
Al Viro7fe39762015-02-07 00:30:23 -0500655 DBG (epdata->dev, "%s halt\n", epdata->name);
656 spin_lock_irq(&epdata->dev->lock);
657 if (likely(epdata->ep != NULL))
658 usb_ep_set_halt(epdata->ep);
659 spin_unlock_irq(&epdata->dev->lock);
660 mutex_unlock(&epdata->lock);
661 return -EBADMSG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 }
Al Viro7fe39762015-02-07 00:30:23 -0500663
664 buf = kmalloc(len, GFP_KERNEL);
665 if (unlikely(!buf)) {
666 mutex_unlock(&epdata->lock);
667 return -ENOMEM;
668 }
669
670 if (unlikely(copy_from_iter(buf, len, from) != len)) {
671 value = -EFAULT;
672 goto out;
673 }
674
Al Virod4461a62015-03-03 08:39:34 +0000675 if (unlikely(!configured)) {
676 value = ep_config(epdata, buf, len);
677 } else if (is_sync_kiocb(iocb)) {
Al Viro7fe39762015-02-07 00:30:23 -0500678 value = ep_io(epdata, buf, len);
679 } else {
680 struct kiocb_priv *priv = kzalloc(sizeof *priv, GFP_KERNEL);
681 value = -ENOMEM;
682 if (priv) {
683 value = ep_aio(iocb, priv, epdata, buf, len);
684 if (value == -EIOCBQUEUED)
685 buf = NULL;
686 }
687 }
688out:
689 kfree(buf);
690 mutex_unlock(&epdata->lock);
691 return value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692}
693
694/*----------------------------------------------------------------------*/
695
696/* used after endpoint configuration */
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300697static const struct file_operations ep_io_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Al Virod4461a62015-03-03 08:39:34 +0000700 .open = ep_open,
701 .release = ep_release,
702 .llseek = no_llseek,
Alan Cox44c389a2008-05-22 22:03:27 +0100703 .unlocked_ioctl = ep_ioctl,
Al Viro7fe39762015-02-07 00:30:23 -0500704 .read_iter = ep_read_iter,
705 .write_iter = ep_write_iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706};
707
708/* ENDPOINT INITIALIZATION
709 *
710 * fd = open ("/dev/gadget/$ENDPOINT", O_RDWR)
711 * status = write (fd, descriptors, sizeof descriptors)
712 *
713 * That write establishes the endpoint configuration, configuring
714 * the controller to process bulk, interrupt, or isochronous transfers
715 * at the right maxpacket size, and so on.
716 *
717 * The descriptors are message type 1, identified by a host order u32
718 * at the beginning of what's written. Descriptor order is: full/low
719 * speed descriptor, then optional high speed descriptor.
720 */
721static ssize_t
Al Virod4461a62015-03-03 08:39:34 +0000722ep_config (struct ep_data *data, const char *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 struct usb_ep *ep;
725 u32 tag;
Milan Svoboda8a7471a2006-06-26 07:19:00 -0700726 int value, length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 if (data->state != STATE_EP_READY) {
729 value = -EL2HLT;
730 goto fail;
731 }
732
733 value = len;
734 if (len < USB_DT_ENDPOINT_SIZE + 4)
735 goto fail0;
736
737 /* we might need to change message format someday */
Al Virod4461a62015-03-03 08:39:34 +0000738 memcpy(&tag, buf, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 if (tag != 1) {
740 DBG(data->dev, "config %s, bad tag %d\n", data->name, tag);
741 goto fail0;
742 }
743 buf += 4;
744 len -= 4;
745
746 /* NOTE: audio endpoint extensions not accepted here;
747 * just don't include the extra bytes.
748 */
749
750 /* full/low speed descriptor, then high speed */
Al Virod4461a62015-03-03 08:39:34 +0000751 memcpy(&data->desc, buf, USB_DT_ENDPOINT_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 if (data->desc.bLength != USB_DT_ENDPOINT_SIZE
753 || data->desc.bDescriptorType != USB_DT_ENDPOINT)
754 goto fail0;
755 if (len != USB_DT_ENDPOINT_SIZE) {
756 if (len != 2 * USB_DT_ENDPOINT_SIZE)
757 goto fail0;
Al Virod4461a62015-03-03 08:39:34 +0000758 memcpy(&data->hs_desc, buf + USB_DT_ENDPOINT_SIZE,
759 USB_DT_ENDPOINT_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 if (data->hs_desc.bLength != USB_DT_ENDPOINT_SIZE
761 || data->hs_desc.bDescriptorType
762 != USB_DT_ENDPOINT) {
763 DBG(data->dev, "config %s, bad hs length or type\n",
764 data->name);
765 goto fail0;
766 }
767 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
769 spin_lock_irq (&data->dev->lock);
770 if (data->dev->state == STATE_DEV_UNBOUND) {
771 value = -ENOENT;
772 goto gone;
Greg Kroah-Hartman1ee7eea2015-04-30 11:32:54 +0200773 } else {
774 ep = data->ep;
775 if (ep == NULL) {
776 value = -ENODEV;
777 goto gone;
778 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 }
780 switch (data->dev->gadget->speed) {
781 case USB_SPEED_LOW:
782 case USB_SPEED_FULL:
Tatyana Brokhman72c973d2011-06-28 16:33:48 +0300783 ep->desc = &data->desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 case USB_SPEED_HIGH:
786 /* fails if caller didn't provide that descriptor... */
Tatyana Brokhman72c973d2011-06-28 16:33:48 +0300787 ep->desc = &data->hs_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 default:
Phil Endecott511779f2007-01-15 11:35:01 -0800790 DBG(data->dev, "unconnected, %s init abandoned\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 data->name);
Phil Endecott511779f2007-01-15 11:35:01 -0800792 value = -EINVAL;
Al Virod4461a62015-03-03 08:39:34 +0000793 goto gone;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
Al Virod4461a62015-03-03 08:39:34 +0000795 value = usb_ep_enable(ep);
Milan Svoboda8a7471a2006-06-26 07:19:00 -0700796 if (value == 0) {
Al Virod4461a62015-03-03 08:39:34 +0000797 data->state = STATE_EP_ENABLED;
Milan Svoboda8a7471a2006-06-26 07:19:00 -0700798 value = length;
799 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800gone:
801 spin_unlock_irq (&data->dev->lock);
802 if (value < 0) {
803fail:
804 data->desc.bDescriptorType = 0;
805 data->hs_desc.bDescriptorType = 0;
806 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 return value;
808fail0:
809 value = -EINVAL;
810 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811}
812
813static int
814ep_open (struct inode *inode, struct file *fd)
815{
Theodore Ts'o8e18e292006-09-27 01:50:46 -0700816 struct ep_data *data = inode->i_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 int value = -EBUSY;
818
Thomas Gleixnera79df502010-01-29 20:38:59 +0000819 if (mutex_lock_interruptible(&data->lock) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 return -EINTR;
821 spin_lock_irq (&data->dev->lock);
822 if (data->dev->state == STATE_DEV_UNBOUND)
823 value = -ENOENT;
824 else if (data->state == STATE_EP_DISABLED) {
825 value = 0;
826 data->state = STATE_EP_READY;
827 get_ep (data);
828 fd->private_data = data;
829 VDEBUG (data->dev, "%s ready\n", data->name);
830 } else
831 DBG (data->dev, "%s state %d\n",
832 data->name, data->state);
833 spin_unlock_irq (&data->dev->lock);
Thomas Gleixnera79df502010-01-29 20:38:59 +0000834 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 return value;
836}
837
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838/*----------------------------------------------------------------------*/
839
840/* EP0 IMPLEMENTATION can be partly in userspace.
841 *
842 * Drivers that use this facility receive various events, including
843 * control requests the kernel doesn't handle. Drivers that don't
844 * use this facility may be too simple-minded for real applications.
845 */
846
847static inline void ep0_readable (struct dev_data *dev)
848{
849 wake_up (&dev->wait);
850 kill_fasync (&dev->fasync, SIGIO, POLL_IN);
851}
852
853static void clean_req (struct usb_ep *ep, struct usb_request *req)
854{
855 struct dev_data *dev = ep->driver_data;
856
857 if (req->buf != dev->rbuf) {
David Brownell9d8bab52007-07-01 11:04:54 -0700858 kfree(req->buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 req->buf = dev->rbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 }
861 req->complete = epio_complete;
862 dev->setup_out_ready = 0;
863}
864
865static void ep0_complete (struct usb_ep *ep, struct usb_request *req)
866{
867 struct dev_data *dev = ep->driver_data;
David Brownell5b89db022007-01-16 22:56:26 -0800868 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 int free = 1;
870
871 /* for control OUT, data must still get to userspace */
David Brownell5b89db022007-01-16 22:56:26 -0800872 spin_lock_irqsave(&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 if (!dev->setup_in) {
874 dev->setup_out_error = (req->status != 0);
875 if (!dev->setup_out_error)
876 free = 0;
877 dev->setup_out_ready = 1;
878 ep0_readable (dev);
David Brownell7489d142007-01-16 22:51:04 -0800879 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
881 /* clean up as appropriate */
882 if (free && req->buf != &dev->rbuf)
883 clean_req (ep, req);
884 req->complete = epio_complete;
David Brownell5b89db022007-01-16 22:56:26 -0800885 spin_unlock_irqrestore(&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886}
887
888static int setup_req (struct usb_ep *ep, struct usb_request *req, u16 len)
889{
890 struct dev_data *dev = ep->driver_data;
891
892 if (dev->setup_out_ready) {
893 DBG (dev, "ep0 request busy!\n");
894 return -EBUSY;
895 }
896 if (len > sizeof (dev->rbuf))
David Brownell9d8bab52007-07-01 11:04:54 -0700897 req->buf = kmalloc(len, GFP_ATOMIC);
David Brownella9475222007-07-30 12:31:07 -0700898 if (req->buf == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 req->buf = dev->rbuf;
900 return -ENOMEM;
901 }
902 req->complete = ep0_complete;
903 req->length = len;
Alan Stern97906362006-01-03 10:30:31 -0500904 req->zero = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 return 0;
906}
907
908static ssize_t
909ep0_read (struct file *fd, char __user *buf, size_t len, loff_t *ptr)
910{
911 struct dev_data *dev = fd->private_data;
912 ssize_t retval;
913 enum ep0_state state;
914
915 spin_lock_irq (&dev->lock);
Alan Stern96b62a52015-03-04 10:31:50 -0500916 if (dev->state <= STATE_DEV_OPENED) {
917 retval = -EINVAL;
918 goto done;
919 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
921 /* report fd mode change before acting on it */
922 if (dev->setup_abort) {
923 dev->setup_abort = 0;
924 retval = -EIDRM;
925 goto done;
926 }
927
928 /* control DATA stage */
David Brownell7489d142007-01-16 22:51:04 -0800929 if ((state = dev->state) == STATE_DEV_SETUP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
931 if (dev->setup_in) { /* stall IN */
932 VDEBUG(dev, "ep0in stall\n");
933 (void) usb_ep_set_halt (dev->gadget->ep0);
934 retval = -EL2HLT;
David Brownell7489d142007-01-16 22:51:04 -0800935 dev->state = STATE_DEV_CONNECTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937 } else if (len == 0) { /* ack SET_CONFIGURATION etc */
938 struct usb_ep *ep = dev->gadget->ep0;
939 struct usb_request *req = dev->req;
940
941 if ((retval = setup_req (ep, req, 0)) == 0)
942 retval = usb_ep_queue (ep, req, GFP_ATOMIC);
David Brownell7489d142007-01-16 22:51:04 -0800943 dev->state = STATE_DEV_CONNECTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
945 /* assume that was SET_CONFIGURATION */
946 if (dev->current_config) {
947 unsigned power;
David Brownella4e3ef52007-08-01 23:58:22 -0700948
949 if (gadget_is_dualspeed(dev->gadget)
950 && (dev->gadget->speed
951 == USB_SPEED_HIGH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 power = dev->hs_config->bMaxPower;
953 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 power = dev->config->bMaxPower;
955 usb_gadget_vbus_draw(dev->gadget, 2 * power);
956 }
957
958 } else { /* collect OUT data */
959 if ((fd->f_flags & O_NONBLOCK) != 0
960 && !dev->setup_out_ready) {
961 retval = -EAGAIN;
962 goto done;
963 }
964 spin_unlock_irq (&dev->lock);
965 retval = wait_event_interruptible (dev->wait,
966 dev->setup_out_ready != 0);
967
968 /* FIXME state could change from under us */
969 spin_lock_irq (&dev->lock);
970 if (retval)
971 goto done;
David Brownell5b89db022007-01-16 22:56:26 -0800972
973 if (dev->state != STATE_DEV_SETUP) {
974 retval = -ECANCELED;
975 goto done;
976 }
977 dev->state = STATE_DEV_CONNECTED;
978
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 if (dev->setup_out_error)
980 retval = -EIO;
981 else {
982 len = min (len, (size_t)dev->req->actual);
983// FIXME don't call this with the spinlock held ...
Skip Hansen997694d2006-09-01 15:26:27 -0700984 if (copy_to_user (buf, dev->req->buf, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 retval = -EFAULT;
Thomas Faber85b4b3c2012-03-02 09:41:50 +0100986 else
987 retval = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 clean_req (dev->gadget->ep0, dev->req);
989 /* NOTE userspace can't yet choose to stall */
990 }
991 }
992 goto done;
993 }
994
995 /* else normal: return event data */
996 if (len < sizeof dev->event [0]) {
997 retval = -EINVAL;
998 goto done;
999 }
1000 len -= len % sizeof (struct usb_gadgetfs_event);
1001 dev->usermode_setup = 1;
1002
1003scan:
1004 /* return queued events right away */
1005 if (dev->ev_next != 0) {
1006 unsigned i, n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 n = len / sizeof (struct usb_gadgetfs_event);
David Brownell0864c7a2007-01-16 22:53:58 -08001009 if (dev->ev_next < n)
1010 n = dev->ev_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
David Brownell0864c7a2007-01-16 22:53:58 -08001012 /* ep0 i/o has special semantics during STATE_DEV_SETUP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 for (i = 0; i < n; i++) {
1014 if (dev->event [i].type == GADGETFS_SETUP) {
David Brownell0864c7a2007-01-16 22:53:58 -08001015 dev->state = STATE_DEV_SETUP;
1016 n = i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 break;
1018 }
1019 }
1020 spin_unlock_irq (&dev->lock);
David Brownell0864c7a2007-01-16 22:53:58 -08001021 len = n * sizeof (struct usb_gadgetfs_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 if (copy_to_user (buf, &dev->event, len))
1023 retval = -EFAULT;
1024 else
1025 retval = len;
1026 if (len > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 /* NOTE this doesn't guard against broken drivers;
1028 * concurrent ep0 readers may lose events.
1029 */
1030 spin_lock_irq (&dev->lock);
David Brownell0864c7a2007-01-16 22:53:58 -08001031 if (dev->ev_next > n) {
1032 memmove(&dev->event[0], &dev->event[n],
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 sizeof (struct usb_gadgetfs_event)
David Brownell0864c7a2007-01-16 22:53:58 -08001034 * (dev->ev_next - n));
1035 }
1036 dev->ev_next -= n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 spin_unlock_irq (&dev->lock);
1038 }
1039 return retval;
1040 }
1041 if (fd->f_flags & O_NONBLOCK) {
1042 retval = -EAGAIN;
1043 goto done;
1044 }
1045
1046 switch (state) {
1047 default:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001048 DBG (dev, "fail %s, state %d\n", __func__, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 retval = -ESRCH;
1050 break;
David Brownell7489d142007-01-16 22:51:04 -08001051 case STATE_DEV_UNCONNECTED:
1052 case STATE_DEV_CONNECTED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 spin_unlock_irq (&dev->lock);
Harvey Harrison441b62c2008-03-03 16:08:34 -08001054 DBG (dev, "%s wait\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
1056 /* wait for events */
1057 retval = wait_event_interruptible (dev->wait,
1058 dev->ev_next != 0);
1059 if (retval < 0)
1060 return retval;
1061 spin_lock_irq (&dev->lock);
1062 goto scan;
1063 }
1064
1065done:
1066 spin_unlock_irq (&dev->lock);
1067 return retval;
1068}
1069
1070static struct usb_gadgetfs_event *
1071next_event (struct dev_data *dev, enum usb_gadgetfs_event_type type)
1072{
1073 struct usb_gadgetfs_event *event;
1074 unsigned i;
1075
1076 switch (type) {
1077 /* these events purge the queue */
1078 case GADGETFS_DISCONNECT:
David Brownell7489d142007-01-16 22:51:04 -08001079 if (dev->state == STATE_DEV_SETUP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 dev->setup_abort = 1;
1081 // FALL THROUGH
1082 case GADGETFS_CONNECT:
1083 dev->ev_next = 0;
1084 break;
1085 case GADGETFS_SETUP: /* previous request timed out */
1086 case GADGETFS_SUSPEND: /* same effect */
1087 /* these events can't be repeated */
1088 for (i = 0; i != dev->ev_next; i++) {
1089 if (dev->event [i].type != type)
1090 continue;
David Brownell0864c7a2007-01-16 22:53:58 -08001091 DBG(dev, "discard old event[%d] %d\n", i, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 dev->ev_next--;
1093 if (i == dev->ev_next)
1094 break;
1095 /* indices start at zero, for simplicity */
1096 memmove (&dev->event [i], &dev->event [i + 1],
1097 sizeof (struct usb_gadgetfs_event)
1098 * (dev->ev_next - i));
1099 }
1100 break;
1101 default:
1102 BUG ();
1103 }
David Brownell0864c7a2007-01-16 22:53:58 -08001104 VDEBUG(dev, "event[%d] = %d\n", dev->ev_next, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 event = &dev->event [dev->ev_next++];
1106 BUG_ON (dev->ev_next > N_EVENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 memset (event, 0, sizeof *event);
1108 event->type = type;
1109 return event;
1110}
1111
1112static ssize_t
1113ep0_write (struct file *fd, const char __user *buf, size_t len, loff_t *ptr)
1114{
1115 struct dev_data *dev = fd->private_data;
1116 ssize_t retval = -ESRCH;
1117
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 /* report fd mode change before acting on it */
1119 if (dev->setup_abort) {
1120 dev->setup_abort = 0;
1121 retval = -EIDRM;
1122
1123 /* data and/or status stage for control request */
David Brownell7489d142007-01-16 22:51:04 -08001124 } else if (dev->state == STATE_DEV_SETUP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
1126 /* IN DATA+STATUS caller makes len <= wLength */
1127 if (dev->setup_in) {
1128 retval = setup_req (dev->gadget->ep0, dev->req, len);
1129 if (retval == 0) {
David Brownell5b89db022007-01-16 22:56:26 -08001130 dev->state = STATE_DEV_CONNECTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 spin_unlock_irq (&dev->lock);
1132 if (copy_from_user (dev->req->buf, buf, len))
1133 retval = -EFAULT;
Alan Stern97906362006-01-03 10:30:31 -05001134 else {
1135 if (len < dev->setup_wLength)
1136 dev->req->zero = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 retval = usb_ep_queue (
1138 dev->gadget->ep0, dev->req,
1139 GFP_KERNEL);
Alan Stern97906362006-01-03 10:30:31 -05001140 }
David Eccherb7bd98b2015-12-11 22:13:55 +01001141 spin_lock_irq(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 if (retval < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 clean_req (dev->gadget->ep0, dev->req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 } else
1145 retval = len;
1146
1147 return retval;
1148 }
1149
1150 /* can stall some OUT transfers */
1151 } else if (dev->setup_can_stall) {
1152 VDEBUG(dev, "ep0out stall\n");
1153 (void) usb_ep_set_halt (dev->gadget->ep0);
1154 retval = -EL2HLT;
David Brownell7489d142007-01-16 22:51:04 -08001155 dev->state = STATE_DEV_CONNECTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 } else {
1157 DBG(dev, "bogus ep0out stall!\n");
1158 }
1159 } else
Harvey Harrison441b62c2008-03-03 16:08:34 -08001160 DBG (dev, "fail %s, state %d\n", __func__, dev->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 return retval;
1163}
1164
1165static int
1166ep0_fasync (int f, struct file *fd, int on)
1167{
1168 struct dev_data *dev = fd->private_data;
1169 // caller must F_SETOWN before signal delivery happens
Harvey Harrison441b62c2008-03-03 16:08:34 -08001170 VDEBUG (dev, "%s %s\n", __func__, on ? "on" : "off");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 return fasync_helper (f, fd, on, &dev->fasync);
1172}
1173
1174static struct usb_gadget_driver gadgetfs_driver;
1175
1176static int
1177dev_release (struct inode *inode, struct file *fd)
1178{
1179 struct dev_data *dev = fd->private_data;
1180
1181 /* closing ep0 === shutdown all */
1182
Marek Szyprowski7b0a2712016-02-18 08:59:26 +01001183 if (dev->gadget_registered)
1184 usb_gadget_unregister_driver (&gadgetfs_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
1186 /* at this point "good" hardware has disconnected the
1187 * device from USB; the host won't see it any more.
1188 * alternatively, all host requests will time out.
1189 */
1190
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 kfree (dev->buf);
1192 dev->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
Marcus Nutzingerf0cae932014-06-05 17:17:06 +02001194 /* other endpoints were all decoupled from this device */
1195 spin_lock_irq(&dev->lock);
1196 dev->state = STATE_DEV_DISABLED;
1197 spin_unlock_irq(&dev->lock);
1198
1199 put_dev (dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 return 0;
1201}
1202
Milan Svobodae22fc272006-08-08 22:23:12 -07001203static unsigned int
1204ep0_poll (struct file *fd, poll_table *wait)
1205{
1206 struct dev_data *dev = fd->private_data;
1207 int mask = 0;
1208
Alan Stern96b62a52015-03-04 10:31:50 -05001209 if (dev->state <= STATE_DEV_OPENED)
1210 return DEFAULT_POLLMASK;
1211
Milan Svobodae22fc272006-08-08 22:23:12 -07001212 poll_wait(fd, &dev->wait, wait);
1213
1214 spin_lock_irq (&dev->lock);
1215
1216 /* report fd mode change before acting on it */
1217 if (dev->setup_abort) {
1218 dev->setup_abort = 0;
1219 mask = POLLHUP;
1220 goto out;
1221 }
1222
David Brownell7489d142007-01-16 22:51:04 -08001223 if (dev->state == STATE_DEV_SETUP) {
Milan Svobodae22fc272006-08-08 22:23:12 -07001224 if (dev->setup_in || dev->setup_can_stall)
1225 mask = POLLOUT;
1226 } else {
1227 if (dev->ev_next != 0)
1228 mask = POLLIN;
1229 }
1230out:
1231 spin_unlock_irq(&dev->lock);
1232 return mask;
1233}
1234
Alan Cox44c389a2008-05-22 22:03:27 +01001235static long dev_ioctl (struct file *fd, unsigned code, unsigned long value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236{
1237 struct dev_data *dev = fd->private_data;
1238 struct usb_gadget *gadget = dev->gadget;
Alan Cox44c389a2008-05-22 22:03:27 +01001239 long ret = -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Arnd Bergmann1548b132010-06-01 23:04:44 +02001241 if (gadget->ops->ioctl)
Alan Cox44c389a2008-05-22 22:03:27 +01001242 ret = gadget->ops->ioctl (gadget, code, value);
Arnd Bergmann1548b132010-06-01 23:04:44 +02001243
Alan Cox44c389a2008-05-22 22:03:27 +01001244 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245}
1246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247/*----------------------------------------------------------------------*/
1248
1249/* The in-kernel gadget driver handles most ep0 issues, in particular
1250 * enumerating the single configuration (as provided from user space).
1251 *
1252 * Unrecognized ep0 requests may be handled in user space.
1253 */
1254
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255static void make_qualifier (struct dev_data *dev)
1256{
1257 struct usb_qualifier_descriptor qual;
1258 struct usb_device_descriptor *desc;
1259
1260 qual.bLength = sizeof qual;
1261 qual.bDescriptorType = USB_DT_DEVICE_QUALIFIER;
Harvey Harrison551509d2009-02-11 14:11:36 -08001262 qual.bcdUSB = cpu_to_le16 (0x0200);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
1264 desc = dev->dev;
1265 qual.bDeviceClass = desc->bDeviceClass;
1266 qual.bDeviceSubClass = desc->bDeviceSubClass;
1267 qual.bDeviceProtocol = desc->bDeviceProtocol;
1268
1269 /* assumes ep0 uses the same value for both speeds ... */
Sebastian Andrzej Siewior765f5b82011-06-23 14:26:11 +02001270 qual.bMaxPacketSize0 = dev->gadget->ep0->maxpacket;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
1272 qual.bNumConfigurations = 1;
1273 qual.bRESERVED = 0;
1274
1275 memcpy (dev->rbuf, &qual, sizeof qual);
1276}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
1278static int
1279config_buf (struct dev_data *dev, u8 type, unsigned index)
1280{
1281 int len;
David Brownella4e3ef52007-08-01 23:58:22 -07001282 int hs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
1284 /* only one configuration */
1285 if (index > 0)
1286 return -EINVAL;
1287
David Brownella4e3ef52007-08-01 23:58:22 -07001288 if (gadget_is_dualspeed(dev->gadget)) {
1289 hs = (dev->gadget->speed == USB_SPEED_HIGH);
1290 if (type == USB_DT_OTHER_SPEED_CONFIG)
1291 hs = !hs;
1292 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 if (hs) {
1294 dev->req->buf = dev->hs_config;
David Brownell01ee7d72007-05-25 20:40:14 -07001295 len = le16_to_cpu(dev->hs_config->wTotalLength);
David Brownella4e3ef52007-08-01 23:58:22 -07001296 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 dev->req->buf = dev->config;
David Brownell01ee7d72007-05-25 20:40:14 -07001298 len = le16_to_cpu(dev->config->wTotalLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 }
1300 ((u8 *)dev->req->buf) [1] = type;
1301 return len;
1302}
1303
1304static int
1305gadgetfs_setup (struct usb_gadget *gadget, const struct usb_ctrlrequest *ctrl)
1306{
1307 struct dev_data *dev = get_gadget_data (gadget);
1308 struct usb_request *req = dev->req;
1309 int value = -EOPNOTSUPP;
1310 struct usb_gadgetfs_event *event;
David Brownell1bbc1692005-05-07 13:05:13 -07001311 u16 w_value = le16_to_cpu(ctrl->wValue);
1312 u16 w_length = le16_to_cpu(ctrl->wLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
1314 spin_lock (&dev->lock);
1315 dev->setup_abort = 0;
David Brownell7489d142007-01-16 22:51:04 -08001316 if (dev->state == STATE_DEV_UNCONNECTED) {
David Brownella4e3ef52007-08-01 23:58:22 -07001317 if (gadget_is_dualspeed(gadget)
1318 && gadget->speed == USB_SPEED_HIGH
1319 && dev->hs_config == NULL) {
David Brownellce467942007-01-16 23:06:07 -08001320 spin_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 ERROR (dev, "no high speed config??\n");
1322 return -EINVAL;
1323 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
David Brownellce467942007-01-16 23:06:07 -08001325 dev->state = STATE_DEV_CONNECTED;
David Brownellce467942007-01-16 23:06:07 -08001326
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 INFO (dev, "connected\n");
1328 event = next_event (dev, GADGETFS_CONNECT);
1329 event->u.speed = gadget->speed;
1330 ep0_readable (dev);
1331
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 /* host may have given up waiting for response. we can miss control
1333 * requests handled lower down (device/endpoint status and features);
1334 * then ep0_{read,write} will report the wrong status. controller
1335 * driver will have aborted pending i/o.
1336 */
David Brownell7489d142007-01-16 22:51:04 -08001337 } else if (dev->state == STATE_DEV_SETUP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 dev->setup_abort = 1;
1339
1340 req->buf = dev->rbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 req->context = NULL;
1342 value = -EOPNOTSUPP;
1343 switch (ctrl->bRequest) {
1344
1345 case USB_REQ_GET_DESCRIPTOR:
1346 if (ctrl->bRequestType != USB_DIR_IN)
1347 goto unrecognized;
1348 switch (w_value >> 8) {
1349
1350 case USB_DT_DEVICE:
1351 value = min (w_length, (u16) sizeof *dev->dev);
Sebastian Andrzej Siewior765f5b82011-06-23 14:26:11 +02001352 dev->dev->bMaxPacketSize0 = dev->gadget->ep0->maxpacket;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 req->buf = dev->dev;
1354 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 case USB_DT_DEVICE_QUALIFIER:
1356 if (!dev->hs_config)
1357 break;
1358 value = min (w_length, (u16)
1359 sizeof (struct usb_qualifier_descriptor));
1360 make_qualifier (dev);
1361 break;
1362 case USB_DT_OTHER_SPEED_CONFIG:
1363 // FALLTHROUGH
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 case USB_DT_CONFIG:
1365 value = config_buf (dev,
1366 w_value >> 8,
1367 w_value & 0xff);
1368 if (value >= 0)
1369 value = min (w_length, (u16) value);
1370 break;
1371 case USB_DT_STRING:
1372 goto unrecognized;
1373
1374 default: // all others are errors
1375 break;
1376 }
1377 break;
1378
1379 /* currently one config, two speeds */
1380 case USB_REQ_SET_CONFIGURATION:
1381 if (ctrl->bRequestType != 0)
Roy Hashimoto12cd5b92008-03-12 13:55:31 -08001382 goto unrecognized;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 if (0 == (u8) w_value) {
1384 value = 0;
1385 dev->current_config = 0;
1386 usb_gadget_vbus_draw(gadget, 8 /* mA */ );
1387 // user mode expected to disable endpoints
1388 } else {
1389 u8 config, power;
David Brownella4e3ef52007-08-01 23:58:22 -07001390
1391 if (gadget_is_dualspeed(gadget)
1392 && gadget->speed == USB_SPEED_HIGH) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 config = dev->hs_config->bConfigurationValue;
1394 power = dev->hs_config->bMaxPower;
David Brownella4e3ef52007-08-01 23:58:22 -07001395 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 config = dev->config->bConfigurationValue;
1397 power = dev->config->bMaxPower;
1398 }
1399
1400 if (config == (u8) w_value) {
1401 value = 0;
1402 dev->current_config = config;
1403 usb_gadget_vbus_draw(gadget, 2 * power);
1404 }
1405 }
1406
1407 /* report SET_CONFIGURATION like any other control request,
1408 * except that usermode may not stall this. the next
1409 * request mustn't be allowed start until this finishes:
1410 * endpoints and threads set up, etc.
1411 *
1412 * NOTE: older PXA hardware (before PXA 255: without UDCCFR)
1413 * has bad/racey automagic that prevents synchronizing here.
1414 * even kernel mode drivers often miss them.
1415 */
1416 if (value == 0) {
1417 INFO (dev, "configuration #%d\n", dev->current_config);
Peter Chen6027f312014-04-29 13:26:28 +08001418 usb_gadget_set_state(gadget, USB_STATE_CONFIGURED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 if (dev->usermode_setup) {
1420 dev->setup_can_stall = 0;
1421 goto delegate;
1422 }
1423 }
1424 break;
1425
Paul Bolled30f2062014-05-26 23:37:09 +02001426#ifndef CONFIG_USB_PXA25X
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 /* PXA automagically handles this request too */
1428 case USB_REQ_GET_CONFIGURATION:
1429 if (ctrl->bRequestType != 0x80)
Roy Hashimoto12cd5b92008-03-12 13:55:31 -08001430 goto unrecognized;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 *(u8 *)req->buf = dev->current_config;
1432 value = min (w_length, (u16) 1);
1433 break;
1434#endif
1435
1436 default:
1437unrecognized:
1438 VDEBUG (dev, "%s req%02x.%02x v%04x i%04x l%d\n",
1439 dev->usermode_setup ? "delegate" : "fail",
1440 ctrl->bRequestType, ctrl->bRequest,
1441 w_value, le16_to_cpu(ctrl->wIndex), w_length);
1442
1443 /* if there's an ep0 reader, don't stall */
1444 if (dev->usermode_setup) {
1445 dev->setup_can_stall = 1;
1446delegate:
1447 dev->setup_in = (ctrl->bRequestType & USB_DIR_IN)
1448 ? 1 : 0;
Alan Stern97906362006-01-03 10:30:31 -05001449 dev->setup_wLength = w_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 dev->setup_out_ready = 0;
1451 dev->setup_out_error = 0;
1452 value = 0;
1453
1454 /* read DATA stage for OUT right away */
1455 if (unlikely (!dev->setup_in && w_length)) {
1456 value = setup_req (gadget->ep0, dev->req,
1457 w_length);
1458 if (value < 0)
1459 break;
1460 value = usb_ep_queue (gadget->ep0, dev->req,
1461 GFP_ATOMIC);
1462 if (value < 0) {
1463 clean_req (gadget->ep0, dev->req);
1464 break;
1465 }
1466
1467 /* we can't currently stall these */
1468 dev->setup_can_stall = 0;
1469 }
1470
1471 /* state changes when reader collects event */
1472 event = next_event (dev, GADGETFS_SETUP);
1473 event->u.setup = *ctrl;
1474 ep0_readable (dev);
1475 spin_unlock (&dev->lock);
1476 return 0;
1477 }
1478 }
1479
1480 /* proceed with data transfer and status phases? */
David Brownell7489d142007-01-16 22:51:04 -08001481 if (value >= 0 && dev->state != STATE_DEV_SETUP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 req->length = value;
1483 req->zero = value < w_length;
1484 value = usb_ep_queue (gadget->ep0, req, GFP_ATOMIC);
1485 if (value < 0) {
1486 DBG (dev, "ep_queue --> %d\n", value);
1487 req->status = 0;
1488 }
1489 }
1490
1491 /* device stalls when value < 0 */
1492 spin_unlock (&dev->lock);
1493 return value;
1494}
1495
1496static void destroy_ep_files (struct dev_data *dev)
1497{
Harvey Harrison441b62c2008-03-03 16:08:34 -08001498 DBG (dev, "%s %d\n", __func__, dev->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
1500 /* dev->state must prevent interference */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 spin_lock_irq (&dev->lock);
Al Viro104bb372012-01-08 16:13:28 -05001502 while (!list_empty(&dev->epfiles)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 struct ep_data *ep;
1504 struct inode *parent;
1505 struct dentry *dentry;
1506
1507 /* break link to FS */
Al Viro104bb372012-01-08 16:13:28 -05001508 ep = list_first_entry (&dev->epfiles, struct ep_data, epfiles);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 list_del_init (&ep->epfiles);
1510 dentry = ep->dentry;
1511 ep->dentry = NULL;
David Howells75c3cfa2015-03-17 22:26:12 +00001512 parent = d_inode(dentry->d_parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
1514 /* break link to controller */
1515 if (ep->state == STATE_EP_ENABLED)
1516 (void) usb_ep_disable (ep->ep);
1517 ep->state = STATE_EP_UNBOUND;
1518 usb_ep_free_request (ep->ep, ep->req);
1519 ep->ep = NULL;
1520 wake_up (&ep->wait);
1521 put_ep (ep);
1522
1523 spin_unlock_irq (&dev->lock);
1524
1525 /* break link to dcache */
Al Viro59551022016-01-22 15:40:57 -05001526 inode_lock(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 d_delete (dentry);
1528 dput (dentry);
Al Viro59551022016-01-22 15:40:57 -05001529 inode_unlock(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
Al Viro104bb372012-01-08 16:13:28 -05001531 spin_lock_irq (&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 }
1533 spin_unlock_irq (&dev->lock);
1534}
1535
1536
Al Virofb6c3222014-09-03 13:37:56 -04001537static struct dentry *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538gadgetfs_create_file (struct super_block *sb, char const *name,
Al Virofb6c3222014-09-03 13:37:56 -04001539 void *data, const struct file_operations *fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540
1541static int activate_ep_files (struct dev_data *dev)
1542{
1543 struct usb_ep *ep;
Alan Stern0ae4ea82006-05-22 12:27:38 -04001544 struct ep_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
1546 gadget_for_each_ep (ep, dev->gadget) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547
Eric Sesterhenn7039f422006-02-27 13:34:10 -08001548 data = kzalloc(sizeof(*data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 if (!data)
Alan Stern0ae4ea82006-05-22 12:27:38 -04001550 goto enomem0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 data->state = STATE_EP_DISABLED;
Thomas Gleixnera79df502010-01-29 20:38:59 +00001552 mutex_init(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 init_waitqueue_head (&data->wait);
1554
1555 strncpy (data->name, ep->name, sizeof (data->name) - 1);
1556 atomic_set (&data->count, 1);
1557 data->dev = dev;
1558 get_dev (dev);
1559
1560 data->ep = ep;
1561 ep->driver_data = data;
1562
1563 data->req = usb_ep_alloc_request (ep, GFP_KERNEL);
1564 if (!data->req)
Alan Stern0ae4ea82006-05-22 12:27:38 -04001565 goto enomem1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
Al Virofb6c3222014-09-03 13:37:56 -04001567 data->dentry = gadgetfs_create_file (dev->sb, data->name,
Al Virod4461a62015-03-03 08:39:34 +00001568 data, &ep_io_operations);
Al Virofb6c3222014-09-03 13:37:56 -04001569 if (!data->dentry)
Alan Stern0ae4ea82006-05-22 12:27:38 -04001570 goto enomem2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 list_add_tail (&data->epfiles, &dev->epfiles);
1572 }
1573 return 0;
1574
Alan Stern0ae4ea82006-05-22 12:27:38 -04001575enomem2:
1576 usb_ep_free_request (ep, data->req);
1577enomem1:
1578 put_dev (dev);
1579 kfree (data);
1580enomem0:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001581 DBG (dev, "%s enomem\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 destroy_ep_files (dev);
1583 return -ENOMEM;
1584}
1585
1586static void
1587gadgetfs_unbind (struct usb_gadget *gadget)
1588{
1589 struct dev_data *dev = get_gadget_data (gadget);
1590
Harvey Harrison441b62c2008-03-03 16:08:34 -08001591 DBG (dev, "%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
1593 spin_lock_irq (&dev->lock);
1594 dev->state = STATE_DEV_UNBOUND;
1595 spin_unlock_irq (&dev->lock);
1596
1597 destroy_ep_files (dev);
1598 gadget->ep0->driver_data = NULL;
1599 set_gadget_data (gadget, NULL);
1600
1601 /* we've already been disconnected ... no i/o is active */
1602 if (dev->req)
1603 usb_ep_free_request (gadget->ep0, dev->req);
Harvey Harrison441b62c2008-03-03 16:08:34 -08001604 DBG (dev, "%s done\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 put_dev (dev);
1606}
1607
1608static struct dev_data *the_device;
1609
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +02001610static int gadgetfs_bind(struct usb_gadget *gadget,
1611 struct usb_gadget_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612{
1613 struct dev_data *dev = the_device;
1614
1615 if (!dev)
1616 return -ESRCH;
1617 if (0 != strcmp (CHIP, gadget->name)) {
David Brownell00274922007-11-19 12:58:36 -08001618 pr_err("%s expected %s controller not %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 shortname, CHIP, gadget->name);
1620 return -ENODEV;
1621 }
1622
1623 set_gadget_data (gadget, dev);
1624 dev->gadget = gadget;
1625 gadget->ep0->driver_data = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
1627 /* preallocate control response and buffer */
1628 dev->req = usb_ep_alloc_request (gadget->ep0, GFP_KERNEL);
1629 if (!dev->req)
1630 goto enomem;
1631 dev->req->context = NULL;
1632 dev->req->complete = epio_complete;
1633
1634 if (activate_ep_files (dev) < 0)
1635 goto enomem;
1636
1637 INFO (dev, "bound to %s driver\n", gadget->name);
David Brownell7489d142007-01-16 22:51:04 -08001638 spin_lock_irq(&dev->lock);
1639 dev->state = STATE_DEV_UNCONNECTED;
1640 spin_unlock_irq(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 get_dev (dev);
1642 return 0;
1643
1644enomem:
1645 gadgetfs_unbind (gadget);
1646 return -ENOMEM;
1647}
1648
1649static void
1650gadgetfs_disconnect (struct usb_gadget *gadget)
1651{
1652 struct dev_data *dev = get_gadget_data (gadget);
Marc Kleine-Budde001428e2011-10-10 18:38:05 +02001653 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
Marc Kleine-Budde001428e2011-10-10 18:38:05 +02001655 spin_lock_irqsave (&dev->lock, flags);
David Brownell7489d142007-01-16 22:51:04 -08001656 if (dev->state == STATE_DEV_UNCONNECTED)
Milan Svoboda07cb7f22006-06-26 07:46:00 -07001657 goto exit;
David Brownell7489d142007-01-16 22:51:04 -08001658 dev->state = STATE_DEV_UNCONNECTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659
1660 INFO (dev, "disconnected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 next_event (dev, GADGETFS_DISCONNECT);
1662 ep0_readable (dev);
Milan Svoboda07cb7f22006-06-26 07:46:00 -07001663exit:
Marc Kleine-Budde001428e2011-10-10 18:38:05 +02001664 spin_unlock_irqrestore (&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665}
1666
1667static void
1668gadgetfs_suspend (struct usb_gadget *gadget)
1669{
1670 struct dev_data *dev = get_gadget_data (gadget);
1671
1672 INFO (dev, "suspended from state %d\n", dev->state);
1673 spin_lock (&dev->lock);
1674 switch (dev->state) {
David Brownell7489d142007-01-16 22:51:04 -08001675 case STATE_DEV_SETUP: // VERY odd... host died??
1676 case STATE_DEV_CONNECTED:
1677 case STATE_DEV_UNCONNECTED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 next_event (dev, GADGETFS_SUSPEND);
1679 ep0_readable (dev);
1680 /* FALLTHROUGH */
1681 default:
1682 break;
1683 }
1684 spin_unlock (&dev->lock);
1685}
1686
1687static struct usb_gadget_driver gadgetfs_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 .function = (char *) driver_desc,
Sebastian Andrzej Siewior93952952012-09-06 20:11:05 +02001689 .bind = gadgetfs_bind,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 .unbind = gadgetfs_unbind,
1691 .setup = gadgetfs_setup,
Peter Chen0eba4552014-09-09 08:56:51 +08001692 .reset = gadgetfs_disconnect,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 .disconnect = gadgetfs_disconnect,
1694 .suspend = gadgetfs_suspend,
1695
David Brownell25051072007-01-15 11:30:28 -08001696 .driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 .name = (char *) shortname,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 },
1699};
1700
1701/*----------------------------------------------------------------------*/
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702/* DEVICE INITIALIZATION
1703 *
1704 * fd = open ("/dev/gadget/$CHIP", O_RDWR)
1705 * status = write (fd, descriptors, sizeof descriptors)
1706 *
1707 * That write establishes the device configuration, so the kernel can
1708 * bind to the controller ... guaranteeing it can handle enumeration
1709 * at all necessary speeds. Descriptor order is:
1710 *
1711 * . message tag (u32, host order) ... for now, must be zero; it
1712 * would change to support features like multi-config devices
1713 * . full/low speed config ... all wTotalLength bytes (with interface,
1714 * class, altsetting, endpoint, and other descriptors)
1715 * . high speed config ... all descriptors, for high speed operation;
David Brownell25051072007-01-15 11:30:28 -08001716 * this one's optional except for high-speed hardware
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 * . device descriptor
1718 *
Phil Endecott511779f2007-01-15 11:35:01 -08001719 * Endpoints are not yet enabled. Drivers must wait until device
1720 * configuration and interface altsetting changes create
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 * the need to configure (or unconfigure) them.
1722 *
1723 * After initialization, the device stays active for as long as that
Phil Endecott511779f2007-01-15 11:35:01 -08001724 * $CHIP file is open. Events must then be read from that descriptor,
1725 * such as configuration notifications.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 */
1727
1728static int is_valid_config (struct usb_config_descriptor *config)
1729{
1730 return config->bDescriptorType == USB_DT_CONFIG
1731 && config->bLength == USB_DT_CONFIG_SIZE
1732 && config->bConfigurationValue != 0
1733 && (config->bmAttributes & USB_CONFIG_ATT_ONE) != 0
1734 && (config->bmAttributes & USB_CONFIG_ATT_WAKEUP) == 0;
1735 /* FIXME if gadget->is_otg, _must_ include an otg descriptor */
1736 /* FIXME check lengths: walk to end */
1737}
1738
1739static ssize_t
1740dev_config (struct file *fd, const char __user *buf, size_t len, loff_t *ptr)
1741{
1742 struct dev_data *dev = fd->private_data;
1743 ssize_t value = len, length = len;
1744 unsigned total;
1745 u32 tag;
1746 char *kbuf;
1747
Alan Stern96b62a52015-03-04 10:31:50 -05001748 spin_lock_irq(&dev->lock);
1749 if (dev->state > STATE_DEV_OPENED) {
1750 value = ep0_write(fd, buf, len, ptr);
1751 spin_unlock_irq(&dev->lock);
1752 return value;
1753 }
1754 spin_unlock_irq(&dev->lock);
1755
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 if (len < (USB_DT_CONFIG_SIZE + USB_DT_DEVICE_SIZE + 4))
1757 return -EINVAL;
1758
1759 /* we might need to change message format someday */
1760 if (copy_from_user (&tag, buf, 4))
1761 return -EFAULT;
1762 if (tag != 0)
1763 return -EINVAL;
1764 buf += 4;
1765 length -= 4;
1766
Julia Lawallbe8a0582010-05-22 10:26:22 +02001767 kbuf = memdup_user(buf, length);
1768 if (IS_ERR(kbuf))
1769 return PTR_ERR(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
1771 spin_lock_irq (&dev->lock);
1772 value = -EINVAL;
1773 if (dev->buf)
1774 goto fail;
1775 dev->buf = kbuf;
1776
1777 /* full or low speed config */
1778 dev->config = (void *) kbuf;
David Brownell01ee7d72007-05-25 20:40:14 -07001779 total = le16_to_cpu(dev->config->wTotalLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 if (!is_valid_config (dev->config) || total >= length)
1781 goto fail;
1782 kbuf += total;
1783 length -= total;
1784
1785 /* optional high speed config */
1786 if (kbuf [1] == USB_DT_CONFIG) {
1787 dev->hs_config = (void *) kbuf;
David Brownell01ee7d72007-05-25 20:40:14 -07001788 total = le16_to_cpu(dev->hs_config->wTotalLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 if (!is_valid_config (dev->hs_config) || total >= length)
1790 goto fail;
1791 kbuf += total;
1792 length -= total;
1793 }
1794
1795 /* could support multiple configs, using another encoding! */
1796
1797 /* device descriptor (tweaked for paranoia) */
1798 if (length != USB_DT_DEVICE_SIZE)
1799 goto fail;
1800 dev->dev = (void *)kbuf;
1801 if (dev->dev->bLength != USB_DT_DEVICE_SIZE
1802 || dev->dev->bDescriptorType != USB_DT_DEVICE
1803 || dev->dev->bNumConfigurations != 1)
1804 goto fail;
1805 dev->dev->bNumConfigurations = 1;
Harvey Harrison551509d2009-02-11 14:11:36 -08001806 dev->dev->bcdUSB = cpu_to_le16 (0x0200);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
1808 /* triggers gadgetfs_bind(); then we can enumerate. */
1809 spin_unlock_irq (&dev->lock);
Michal Nazarewicz85b86142012-08-24 20:46:18 +02001810 if (dev->hs_config)
1811 gadgetfs_driver.max_speed = USB_SPEED_HIGH;
1812 else
1813 gadgetfs_driver.max_speed = USB_SPEED_FULL;
Sebastian Andrzej Siewior93952952012-09-06 20:11:05 +02001814
1815 value = usb_gadget_probe_driver(&gadgetfs_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 if (value != 0) {
1817 kfree (dev->buf);
1818 dev->buf = NULL;
1819 } else {
1820 /* at this point "good" hardware has for the first time
1821 * let the USB the host see us. alternatively, if users
1822 * unplug/replug that will clear all the error state.
1823 *
1824 * note: everything running before here was guaranteed
1825 * to choke driver model style diagnostics. from here
1826 * on, they can work ... except in cleanup paths that
1827 * kick in after the ep0 descriptor is closed.
1828 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 value = len;
Marek Szyprowski7b0a2712016-02-18 08:59:26 +01001830 dev->gadget_registered = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 }
1832 return value;
1833
1834fail:
1835 spin_unlock_irq (&dev->lock);
Harvey Harrison441b62c2008-03-03 16:08:34 -08001836 pr_debug ("%s: %s fail %Zd, %p\n", shortname, __func__, value, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 kfree (dev->buf);
1838 dev->buf = NULL;
1839 return value;
1840}
1841
1842static int
1843dev_open (struct inode *inode, struct file *fd)
1844{
Theodore Ts'o8e18e292006-09-27 01:50:46 -07001845 struct dev_data *dev = inode->i_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 int value = -EBUSY;
1847
David Brownell7489d142007-01-16 22:51:04 -08001848 spin_lock_irq(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 if (dev->state == STATE_DEV_DISABLED) {
1850 dev->ev_next = 0;
David Brownell7489d142007-01-16 22:51:04 -08001851 dev->state = STATE_DEV_OPENED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 fd->private_data = dev;
1853 get_dev (dev);
1854 value = 0;
1855 }
David Brownell7489d142007-01-16 22:51:04 -08001856 spin_unlock_irq(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 return value;
1858}
1859
Alan Stern96b62a52015-03-04 10:31:50 -05001860static const struct file_operations ep0_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 .llseek = no_llseek,
1862
1863 .open = dev_open,
Alan Stern96b62a52015-03-04 10:31:50 -05001864 .read = ep0_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 .write = dev_config,
1866 .fasync = ep0_fasync,
Alan Stern96b62a52015-03-04 10:31:50 -05001867 .poll = ep0_poll,
Alan Cox44c389a2008-05-22 22:03:27 +01001868 .unlocked_ioctl = dev_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 .release = dev_release,
1870};
1871
1872/*----------------------------------------------------------------------*/
1873
1874/* FILESYSTEM AND SUPERBLOCK OPERATIONS
1875 *
1876 * Mounting the filesystem creates a controller file, used first for
1877 * device configuration then later for event monitoring.
1878 */
1879
1880
1881/* FIXME PAM etc could set this security policy without mount options
1882 * if epfiles inherited ownership and permissons from ep0 ...
1883 */
1884
1885static unsigned default_uid;
1886static unsigned default_gid;
1887static unsigned default_perm = S_IRUSR | S_IWUSR;
1888
1889module_param (default_uid, uint, 0644);
1890module_param (default_gid, uint, 0644);
1891module_param (default_perm, uint, 0644);
1892
1893
1894static struct inode *
1895gadgetfs_make_inode (struct super_block *sb,
Arjan van de Ven99ac48f2006-03-28 01:56:41 -08001896 void *data, const struct file_operations *fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 int mode)
1898{
1899 struct inode *inode = new_inode (sb);
1900
1901 if (inode) {
Christoph Hellwig85fe4022010-10-23 11:19:54 -04001902 inode->i_ino = get_next_ino();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 inode->i_mode = mode;
Eric W. Biederman32d639c2012-02-07 16:32:04 -08001904 inode->i_uid = make_kuid(&init_user_ns, default_uid);
1905 inode->i_gid = make_kgid(&init_user_ns, default_gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 inode->i_atime = inode->i_mtime = inode->i_ctime
1907 = CURRENT_TIME;
Theodore Ts'o8e18e292006-09-27 01:50:46 -07001908 inode->i_private = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 inode->i_fop = fops;
1910 }
1911 return inode;
1912}
1913
1914/* creates in fs root directory, so non-renamable and non-linkable.
1915 * so inode and dentry are paired, until device reconfig.
1916 */
Al Virofb6c3222014-09-03 13:37:56 -04001917static struct dentry *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918gadgetfs_create_file (struct super_block *sb, char const *name,
Al Virofb6c3222014-09-03 13:37:56 -04001919 void *data, const struct file_operations *fops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920{
1921 struct dentry *dentry;
1922 struct inode *inode;
1923
1924 dentry = d_alloc_name(sb->s_root, name);
1925 if (!dentry)
1926 return NULL;
1927
1928 inode = gadgetfs_make_inode (sb, data, fops,
1929 S_IFREG | (default_perm & S_IRWXUGO));
1930 if (!inode) {
1931 dput(dentry);
1932 return NULL;
1933 }
1934 d_add (dentry, inode);
Al Virofb6c3222014-09-03 13:37:56 -04001935 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936}
1937
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001938static const struct super_operations gadget_fs_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 .statfs = simple_statfs,
1940 .drop_inode = generic_delete_inode,
1941};
1942
1943static int
1944gadgetfs_fill_super (struct super_block *sb, void *opts, int silent)
1945{
1946 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 struct dev_data *dev;
1948
1949 if (the_device)
1950 return -ESRCH;
1951
Marek Szyprowski175f7122016-02-18 11:34:43 +01001952 CHIP = usb_get_gadget_udc_name();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 if (!CHIP)
1954 return -ENODEV;
1955
1956 /* superblock */
1957 sb->s_blocksize = PAGE_CACHE_SIZE;
1958 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
1959 sb->s_magic = GADGETFS_MAGIC;
1960 sb->s_op = &gadget_fs_operations;
1961 sb->s_time_gran = 1;
1962
1963 /* root inode */
1964 inode = gadgetfs_make_inode (sb,
1965 NULL, &simple_dir_operations,
1966 S_IFDIR | S_IRUGO | S_IXUGO);
1967 if (!inode)
Al Viro87da5b32012-01-08 15:59:45 -05001968 goto Enomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 inode->i_op = &simple_dir_inode_operations;
Al Viro48fde702012-01-08 22:15:13 -05001970 if (!(sb->s_root = d_make_root (inode)))
Al Viro87da5b32012-01-08 15:59:45 -05001971 goto Enomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
1973 /* the ep0 file is named after the controller we expect;
1974 * user mode code can use it for sanity checks, like we do.
1975 */
1976 dev = dev_new ();
1977 if (!dev)
Al Viro87da5b32012-01-08 15:59:45 -05001978 goto Enomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
1980 dev->sb = sb;
Alan Stern96b62a52015-03-04 10:31:50 -05001981 dev->dentry = gadgetfs_create_file(sb, CHIP, dev, &ep0_operations);
Al Virofb6c3222014-09-03 13:37:56 -04001982 if (!dev->dentry) {
Al Viro87da5b32012-01-08 15:59:45 -05001983 put_dev(dev);
1984 goto Enomem;
1985 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
1987 /* other endpoint files are available after hardware setup,
1988 * from binding to a controller.
1989 */
1990 the_device = dev;
1991 return 0;
Alan Stern0ae4ea82006-05-22 12:27:38 -04001992
Al Viro87da5b32012-01-08 15:59:45 -05001993Enomem:
Alan Stern0ae4ea82006-05-22 12:27:38 -04001994 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995}
1996
1997/* "mount -t gadgetfs path /dev/gadget" ends up here */
Al Virofc14f2f2010-07-25 01:48:30 +04001998static struct dentry *
1999gadgetfs_mount (struct file_system_type *t, int flags,
2000 const char *path, void *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001{
Al Virofc14f2f2010-07-25 01:48:30 +04002002 return mount_single (t, flags, opts, gadgetfs_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003}
2004
2005static void
2006gadgetfs_kill_sb (struct super_block *sb)
2007{
2008 kill_litter_super (sb);
2009 if (the_device) {
2010 put_dev (the_device);
2011 the_device = NULL;
2012 }
Marek Szyprowski175f7122016-02-18 11:34:43 +01002013 kfree(CHIP);
2014 CHIP = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015}
2016
2017/*----------------------------------------------------------------------*/
2018
2019static struct file_system_type gadgetfs_type = {
2020 .owner = THIS_MODULE,
2021 .name = shortname,
Al Virofc14f2f2010-07-25 01:48:30 +04002022 .mount = gadgetfs_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 .kill_sb = gadgetfs_kill_sb,
2024};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08002025MODULE_ALIAS_FS("gadgetfs");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
2027/*----------------------------------------------------------------------*/
2028
2029static int __init init (void)
2030{
2031 int status;
2032
2033 status = register_filesystem (&gadgetfs_type);
2034 if (status == 0)
2035 pr_info ("%s: %s, version " DRIVER_VERSION "\n",
2036 shortname, driver_desc);
2037 return status;
2038}
2039module_init (init);
2040
2041static void __exit cleanup (void)
2042{
2043 pr_debug ("unregister %s\n", shortname);
2044 unregister_filesystem (&gadgetfs_type);
2045}
2046module_exit (cleanup);
2047