blob: 08048613eed6bcf53f928e50fc1b7054ff41d165 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30#include <linux/device.h>
31#include <linux/moduleparam.h>
32
David Brownella5262dc2007-05-14 19:36:41 -070033#include <linux/usb/gadgetfs.h>
David Brownell9454a572007-10-04 18:05:17 -070034#include <linux/usb/gadget.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36
37/*
38 * The gadgetfs API maps each endpoint to a file descriptor so that you
39 * can use standard synchronous read/write calls for I/O. There's some
40 * O_NONBLOCK and O_ASYNC/FASYNC style i/o support. Example usermode
41 * drivers show how this works in practice. You can also use AIO to
42 * eliminate I/O gaps between requests, to help when streaming data.
43 *
44 * Key parts that must be USB-specific are protocols defining how the
45 * read/write operations relate to the hardware state machines. There
46 * are two types of files. One type is for the device, implementing ep0.
47 * The other type is for each IN or OUT endpoint. In both cases, the
48 * user mode driver must configure the hardware before using it.
49 *
50 * - First, dev_config() is called when /dev/gadget/$CHIP is configured
51 * (by writing configuration and device descriptors). Afterwards it
52 * may serve as a source of device events, used to handle all control
53 * requests other than basic enumeration.
54 *
Phil Endecott511779f2007-01-15 11:35:01 -080055 * - Then, after a SET_CONFIGURATION control request, ep_config() is
56 * called when each /dev/gadget/ep* file is configured (by writing
57 * endpoint descriptors). Afterwards these files are used to write()
58 * IN data or to read() OUT data. To halt the endpoint, a "wrong
59 * direction" request is issued (like reading an IN endpoint).
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 *
61 * Unlike "usbfs" the only ioctl()s are for things that are rare, and maybe
62 * not possible on all hardware. For example, precise fault handling with
63 * respect to data left in endpoint fifos after aborted operations; or
64 * selective clearing of endpoint halts, to implement SET_INTERFACE.
65 */
66
67#define DRIVER_DESC "USB Gadget filesystem"
68#define DRIVER_VERSION "24 Aug 2004"
69
70static const char driver_desc [] = DRIVER_DESC;
71static const char shortname [] = "gadgetfs";
72
73MODULE_DESCRIPTION (DRIVER_DESC);
74MODULE_AUTHOR ("David Brownell");
75MODULE_LICENSE ("GPL");
76
77
78/*----------------------------------------------------------------------*/
79
80#define GADGETFS_MAGIC 0xaee71ee7
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82/* /dev/gadget/$CHIP represents ep0 and the whole device */
83enum ep0_state {
84 /* DISBLED is the initial state.
85 */
86 STATE_DEV_DISABLED = 0,
87
88 /* Only one open() of /dev/gadget/$CHIP; only one file tracks
89 * ep0/device i/o modes and binding to the controller. Driver
90 * must always write descriptors to initialize the device, then
91 * the device becomes UNCONNECTED until enumeration.
92 */
David Brownell7489d142007-01-16 22:51:04 -080093 STATE_DEV_OPENED,
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 /* From then on, ep0 fd is in either of two basic modes:
96 * - (UN)CONNECTED: read usb_gadgetfs_event(s) from it
97 * - SETUP: read/write will transfer control data and succeed;
98 * or if "wrong direction", performs protocol stall
99 */
David Brownell7489d142007-01-16 22:51:04 -0800100 STATE_DEV_UNCONNECTED,
101 STATE_DEV_CONNECTED,
102 STATE_DEV_SETUP,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104 /* UNBOUND means the driver closed ep0, so the device won't be
105 * accessible again (DEV_DISABLED) until all fds are closed.
106 */
107 STATE_DEV_UNBOUND,
108};
109
110/* enough for the whole queue: most events invalidate others */
111#define N_EVENT 5
112
113struct dev_data {
114 spinlock_t lock;
115 atomic_t count;
David Brownell7489d142007-01-16 22:51:04 -0800116 enum ep0_state state; /* P: lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 struct usb_gadgetfs_event event [N_EVENT];
118 unsigned ev_next;
119 struct fasync_struct *fasync;
120 u8 current_config;
121
122 /* drivers reading ep0 MUST handle control requests (SETUP)
123 * reported that way; else the host will time out.
124 */
125 unsigned usermode_setup : 1,
126 setup_in : 1,
127 setup_can_stall : 1,
128 setup_out_ready : 1,
129 setup_out_error : 1,
130 setup_abort : 1;
Alan Stern97906362006-01-03 10:30:31 -0500131 unsigned setup_wLength;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133 /* the rest is basically write-once */
134 struct usb_config_descriptor *config, *hs_config;
135 struct usb_device_descriptor *dev;
136 struct usb_request *req;
137 struct usb_gadget *gadget;
138 struct list_head epfiles;
139 void *buf;
140 wait_queue_head_t wait;
141 struct super_block *sb;
142 struct dentry *dentry;
143
144 /* except this scratch i/o buffer for ep0 */
145 u8 rbuf [256];
146};
147
148static inline void get_dev (struct dev_data *data)
149{
150 atomic_inc (&data->count);
151}
152
153static void put_dev (struct dev_data *data)
154{
155 if (likely (!atomic_dec_and_test (&data->count)))
156 return;
157 /* needs no more cleanup */
158 BUG_ON (waitqueue_active (&data->wait));
159 kfree (data);
160}
161
162static struct dev_data *dev_new (void)
163{
164 struct dev_data *dev;
165
Eric Sesterhenn7039f422006-02-27 13:34:10 -0800166 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 if (!dev)
168 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 dev->state = STATE_DEV_DISABLED;
170 atomic_set (&dev->count, 1);
171 spin_lock_init (&dev->lock);
172 INIT_LIST_HEAD (&dev->epfiles);
173 init_waitqueue_head (&dev->wait);
174 return dev;
175}
176
177/*----------------------------------------------------------------------*/
178
179/* other /dev/gadget/$ENDPOINT files represent endpoints */
180enum ep_state {
181 STATE_EP_DISABLED = 0,
182 STATE_EP_READY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 STATE_EP_ENABLED,
184 STATE_EP_UNBOUND,
185};
186
187struct ep_data {
Thomas Gleixnera79df502010-01-29 20:38:59 +0000188 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 enum ep_state state;
190 atomic_t count;
191 struct dev_data *dev;
192 /* must hold dev->lock before accessing ep or req */
193 struct usb_ep *ep;
194 struct usb_request *req;
195 ssize_t status;
196 char name [16];
197 struct usb_endpoint_descriptor desc, hs_desc;
198 struct list_head epfiles;
199 wait_queue_head_t wait;
200 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201};
202
203static inline void get_ep (struct ep_data *data)
204{
205 atomic_inc (&data->count);
206}
207
208static void put_ep (struct ep_data *data)
209{
210 if (likely (!atomic_dec_and_test (&data->count)))
211 return;
212 put_dev (data->dev);
213 /* needs no more cleanup */
214 BUG_ON (!list_empty (&data->epfiles));
215 BUG_ON (waitqueue_active (&data->wait));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 kfree (data);
217}
218
219/*----------------------------------------------------------------------*/
220
221/* most "how to use the hardware" policy choices are in userspace:
222 * mapping endpoint roles (which the driver needs) to the capabilities
223 * which the usb controller has. most of those capabilities are exposed
224 * implicitly, starting with the driver name and then endpoint names.
225 */
226
227static const char *CHIP;
228
229/*----------------------------------------------------------------------*/
230
231/* NOTE: don't use dev_printk calls before binding to the gadget
232 * at the end of ep0 configuration, or after unbind.
233 */
234
235/* too wordy: dev_printk(level , &(d)->gadget->dev , fmt , ## args) */
236#define xprintk(d,level,fmt,args...) \
237 printk(level "%s: " fmt , shortname , ## args)
238
239#ifdef DEBUG
240#define DBG(dev,fmt,args...) \
241 xprintk(dev , KERN_DEBUG , fmt , ## args)
242#else
243#define DBG(dev,fmt,args...) \
244 do { } while (0)
245#endif /* DEBUG */
246
David Brownella4e3ef52007-08-01 23:58:22 -0700247#ifdef VERBOSE_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248#define VDEBUG DBG
249#else
250#define VDEBUG(dev,fmt,args...) \
251 do { } while (0)
252#endif /* DEBUG */
253
254#define ERROR(dev,fmt,args...) \
255 xprintk(dev , KERN_ERR , fmt , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256#define INFO(dev,fmt,args...) \
257 xprintk(dev , KERN_INFO , fmt , ## args)
258
259
260/*----------------------------------------------------------------------*/
261
262/* SYNCHRONOUS ENDPOINT OPERATIONS (bulk/intr/iso)
263 *
264 * After opening, configure non-control endpoints. Then use normal
265 * stream read() and write() requests; and maybe ioctl() to get more
Steven Cole093cf722005-05-03 19:07:24 -0600266 * precise FIFO status when recovering from cancellation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 */
268
269static void epio_complete (struct usb_ep *ep, struct usb_request *req)
270{
271 struct ep_data *epdata = ep->driver_data;
272
273 if (!req->context)
274 return;
275 if (req->status)
276 epdata->status = req->status;
277 else
278 epdata->status = req->actual;
279 complete ((struct completion *)req->context);
280}
281
282/* tasklock endpoint, returning when it's connected.
283 * still need dev->lock to use epdata->ep.
284 */
285static int
286get_ready_ep (unsigned f_flags, struct ep_data *epdata)
287{
288 int val;
289
290 if (f_flags & O_NONBLOCK) {
Thomas Gleixnera79df502010-01-29 20:38:59 +0000291 if (!mutex_trylock(&epdata->lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 goto nonblock;
293 if (epdata->state != STATE_EP_ENABLED) {
Thomas Gleixnera79df502010-01-29 20:38:59 +0000294 mutex_unlock(&epdata->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295nonblock:
296 val = -EAGAIN;
297 } else
298 val = 0;
299 return val;
300 }
301
Thomas Gleixnera79df502010-01-29 20:38:59 +0000302 val = mutex_lock_interruptible(&epdata->lock);
303 if (val < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 return val;
Phil Endecott511779f2007-01-15 11:35:01 -0800305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 switch (epdata->state) {
307 case STATE_EP_ENABLED:
308 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 // case STATE_EP_DISABLED: /* "can't happen" */
310 // case STATE_EP_READY: /* "can't happen" */
311 default: /* error! */
312 pr_debug ("%s: ep %p not available, state %d\n",
313 shortname, epdata, epdata->state);
314 // FALLTHROUGH
315 case STATE_EP_UNBOUND: /* clean disconnect */
316 val = -ENODEV;
Thomas Gleixnera79df502010-01-29 20:38:59 +0000317 mutex_unlock(&epdata->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 }
319 return val;
320}
321
322static ssize_t
323ep_io (struct ep_data *epdata, void *buf, unsigned len)
324{
Peter Zijlstra6e9a4732006-09-30 23:28:10 -0700325 DECLARE_COMPLETION_ONSTACK (done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 int value;
327
328 spin_lock_irq (&epdata->dev->lock);
329 if (likely (epdata->ep != NULL)) {
330 struct usb_request *req = epdata->req;
331
332 req->context = &done;
333 req->complete = epio_complete;
334 req->buf = buf;
335 req->length = len;
336 value = usb_ep_queue (epdata->ep, req, GFP_ATOMIC);
337 } else
338 value = -ENODEV;
339 spin_unlock_irq (&epdata->dev->lock);
340
341 if (likely (value == 0)) {
342 value = wait_event_interruptible (done.wait, done.done);
343 if (value != 0) {
344 spin_lock_irq (&epdata->dev->lock);
345 if (likely (epdata->ep != NULL)) {
346 DBG (epdata->dev, "%s i/o interrupted\n",
347 epdata->name);
348 usb_ep_dequeue (epdata->ep, epdata->req);
349 spin_unlock_irq (&epdata->dev->lock);
350
351 wait_event (done.wait, done.done);
352 if (epdata->status == -ECONNRESET)
353 epdata->status = -EINTR;
354 } else {
355 spin_unlock_irq (&epdata->dev->lock);
356
357 DBG (epdata->dev, "endpoint gone\n");
358 epdata->status = -ENODEV;
359 }
360 }
361 return epdata->status;
362 }
363 return value;
364}
365
366
367/* handle a synchronous OUT bulk/intr/iso transfer */
368static ssize_t
369ep_read (struct file *fd, char __user *buf, size_t len, loff_t *ptr)
370{
371 struct ep_data *data = fd->private_data;
372 void *kbuf;
373 ssize_t value;
374
375 if ((value = get_ready_ep (fd->f_flags, data)) < 0)
376 return value;
377
378 /* halt any endpoint by doing a "wrong direction" i/o call */
Matthias Kaehlckefa4c86a2009-04-15 22:28:32 +0200379 if (usb_endpoint_dir_in(&data->desc)) {
Alexey Khoroshilov00cc7a52011-03-16 21:54:05 +0200380 if (usb_endpoint_xfer_isoc(&data->desc)) {
381 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return -EINVAL;
Alexey Khoroshilov00cc7a52011-03-16 21:54:05 +0200383 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 DBG (data->dev, "%s halt\n", data->name);
385 spin_lock_irq (&data->dev->lock);
386 if (likely (data->ep != NULL))
387 usb_ep_set_halt (data->ep);
388 spin_unlock_irq (&data->dev->lock);
Thomas Gleixnera79df502010-01-29 20:38:59 +0000389 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 return -EBADMSG;
391 }
392
393 /* FIXME readahead for O_NONBLOCK and poll(); careful with ZLPs */
394
395 value = -ENOMEM;
Christoph Lametere94b1762006-12-06 20:33:17 -0800396 kbuf = kmalloc (len, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 if (unlikely (!kbuf))
398 goto free1;
399
400 value = ep_io (data, kbuf, len);
David Brownell1bbc1692005-05-07 13:05:13 -0700401 VDEBUG (data->dev, "%s read %zu OUT, status %d\n",
402 data->name, len, (int) value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 if (value >= 0 && copy_to_user (buf, kbuf, value))
404 value = -EFAULT;
405
406free1:
Thomas Gleixnera79df502010-01-29 20:38:59 +0000407 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 kfree (kbuf);
409 return value;
410}
411
412/* handle a synchronous IN bulk/intr/iso transfer */
413static ssize_t
414ep_write (struct file *fd, const char __user *buf, size_t len, loff_t *ptr)
415{
416 struct ep_data *data = fd->private_data;
417 void *kbuf;
418 ssize_t value;
419
420 if ((value = get_ready_ep (fd->f_flags, data)) < 0)
421 return value;
422
423 /* halt any endpoint by doing a "wrong direction" i/o call */
Matthias Kaehlckefa4c86a2009-04-15 22:28:32 +0200424 if (!usb_endpoint_dir_in(&data->desc)) {
Alexey Khoroshilov38981152011-05-27 08:37:40 +0400425 if (usb_endpoint_xfer_isoc(&data->desc)) {
426 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 return -EINVAL;
Alexey Khoroshilov38981152011-05-27 08:37:40 +0400428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 DBG (data->dev, "%s halt\n", data->name);
430 spin_lock_irq (&data->dev->lock);
431 if (likely (data->ep != NULL))
432 usb_ep_set_halt (data->ep);
433 spin_unlock_irq (&data->dev->lock);
Thomas Gleixnera79df502010-01-29 20:38:59 +0000434 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 return -EBADMSG;
436 }
437
438 /* FIXME writebehind for O_NONBLOCK and poll(), qlen = 1 */
439
440 value = -ENOMEM;
Felipe Balbi3b74c732014-03-10 13:30:55 -0500441 kbuf = memdup_user(buf, len);
Wei Yongjun7042e8f2014-07-20 11:42:07 +0800442 if (IS_ERR(kbuf)) {
Felipe Balbi3b74c732014-03-10 13:30:55 -0500443 value = PTR_ERR(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 goto free1;
445 }
446
447 value = ep_io (data, kbuf, len);
David Brownell1bbc1692005-05-07 13:05:13 -0700448 VDEBUG (data->dev, "%s write %zu IN, status %d\n",
449 data->name, len, (int) value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450free1:
Thomas Gleixnera79df502010-01-29 20:38:59 +0000451 mutex_unlock(&data->lock);
Mario Schuknechtb44be242014-12-16 08:58:57 +0100452 kfree (kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 return value;
454}
455
456static int
457ep_release (struct inode *inode, struct file *fd)
458{
459 struct ep_data *data = fd->private_data;
Milan Svobodaba307f52006-06-26 07:48:00 -0700460 int value;
461
Thomas Gleixnera79df502010-01-29 20:38:59 +0000462 value = mutex_lock_interruptible(&data->lock);
463 if (value < 0)
Milan Svobodaba307f52006-06-26 07:48:00 -0700464 return value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466 /* clean up if this can be reopened */
467 if (data->state != STATE_EP_UNBOUND) {
468 data->state = STATE_EP_DISABLED;
469 data->desc.bDescriptorType = 0;
470 data->hs_desc.bDescriptorType = 0;
Pavol Kurina4809ecc2005-09-07 09:49:34 -0700471 usb_ep_disable(data->ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 }
Thomas Gleixnera79df502010-01-29 20:38:59 +0000473 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 put_ep (data);
475 return 0;
476}
477
Alan Cox44c389a2008-05-22 22:03:27 +0100478static long ep_ioctl(struct file *fd, unsigned code, unsigned long value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
480 struct ep_data *data = fd->private_data;
481 int status;
482
483 if ((status = get_ready_ep (fd->f_flags, data)) < 0)
484 return status;
485
486 spin_lock_irq (&data->dev->lock);
487 if (likely (data->ep != NULL)) {
488 switch (code) {
489 case GADGETFS_FIFO_STATUS:
490 status = usb_ep_fifo_status (data->ep);
491 break;
492 case GADGETFS_FIFO_FLUSH:
493 usb_ep_fifo_flush (data->ep);
494 break;
495 case GADGETFS_CLEAR_HALT:
496 status = usb_ep_clear_halt (data->ep);
497 break;
498 default:
499 status = -ENOTTY;
500 }
501 } else
502 status = -ENODEV;
503 spin_unlock_irq (&data->dev->lock);
Thomas Gleixnera79df502010-01-29 20:38:59 +0000504 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 return status;
506}
507
508/*----------------------------------------------------------------------*/
509
510/* ASYNCHRONOUS ENDPOINT I/O OPERATIONS (bulk/intr/iso) */
511
512struct kiocb_priv {
513 struct usb_request *req;
514 struct ep_data *epdata;
Zach Browna80bf612013-05-07 16:18:23 -0700515 struct kiocb *iocb;
516 struct mm_struct *mm;
517 struct work_struct work;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 void *buf;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700519 const struct iovec *iv;
520 unsigned long nr_segs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 unsigned actual;
522};
523
Kent Overstreetbec68faa2013-05-13 14:45:08 -0700524static int ep_aio_cancel(struct kiocb *iocb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
526 struct kiocb_priv *priv = iocb->private;
527 struct ep_data *epdata;
528 int value;
529
530 local_irq_disable();
531 epdata = priv->epdata;
532 // spin_lock(&epdata->dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 if (likely(epdata && epdata->ep && priv->req))
534 value = usb_ep_dequeue (epdata->ep, priv->req);
535 else
536 value = -EINVAL;
537 // spin_unlock(&epdata->dev->lock);
538 local_irq_enable();
539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 return value;
541}
542
Zach Browna80bf612013-05-07 16:18:23 -0700543static ssize_t ep_copy_to_user(struct kiocb_priv *priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
Badari Pulavarty027445c2006-09-30 23:28:46 -0700545 ssize_t len, total;
Sarah Bailey50f97a12007-02-22 22:36:21 -0800546 void *to_copy;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700547 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548
David Brownell25051072007-01-15 11:30:28 -0800549 /* copy stuff into user buffers */
550 total = priv->actual;
551 len = 0;
Sarah Bailey50f97a12007-02-22 22:36:21 -0800552 to_copy = priv->buf;
David Brownell25051072007-01-15 11:30:28 -0800553 for (i=0; i < priv->nr_segs; i++) {
554 ssize_t this = min((ssize_t)(priv->iv[i].iov_len), total);
Badari Pulavarty027445c2006-09-30 23:28:46 -0700555
Sarah Bailey50f97a12007-02-22 22:36:21 -0800556 if (copy_to_user(priv->iv[i].iov_base, to_copy, this)) {
David Brownell25051072007-01-15 11:30:28 -0800557 if (len == 0)
558 len = -EFAULT;
559 break;
560 }
Badari Pulavarty027445c2006-09-30 23:28:46 -0700561
David Brownell25051072007-01-15 11:30:28 -0800562 total -= this;
563 len += this;
Sarah Bailey50f97a12007-02-22 22:36:21 -0800564 to_copy += this;
David Brownell25051072007-01-15 11:30:28 -0800565 if (total == 0)
566 break;
567 }
Zach Browna80bf612013-05-07 16:18:23 -0700568
569 return len;
570}
571
572static void ep_user_copy_worker(struct work_struct *work)
573{
574 struct kiocb_priv *priv = container_of(work, struct kiocb_priv, work);
575 struct mm_struct *mm = priv->mm;
576 struct kiocb *iocb = priv->iocb;
577 size_t ret;
578
579 use_mm(mm);
580 ret = ep_copy_to_user(priv);
581 unuse_mm(mm);
582
583 /* completing the iocb can drop the ctx and mm, don't touch mm after */
584 aio_complete(iocb, ret, ret);
585
David Brownell25051072007-01-15 11:30:28 -0800586 kfree(priv->buf);
587 kfree(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588}
589
590static void ep_aio_complete(struct usb_ep *ep, struct usb_request *req)
591{
592 struct kiocb *iocb = req->context;
593 struct kiocb_priv *priv = iocb->private;
594 struct ep_data *epdata = priv->epdata;
595
596 /* lock against disconnect (and ideally, cancel) */
597 spin_lock(&epdata->dev->lock);
598 priv->req = NULL;
599 priv->epdata = NULL;
Alan Stern49631ca2007-01-16 23:28:48 -0800600
601 /* if this was a write or a read returning no data then we
602 * don't need to copy anything to userspace, so we can
603 * complete the aio request immediately.
604 */
605 if (priv->iv == NULL || unlikely(req->actual == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 kfree(req->buf);
607 kfree(priv);
608 iocb->private = NULL;
609 /* aio_complete() reports bytes-transferred _and_ faults */
Alan Stern49631ca2007-01-16 23:28:48 -0800610 aio_complete(iocb, req->actual ? req->actual : req->status,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 req->status);
612 } else {
Zach Browna80bf612013-05-07 16:18:23 -0700613 /* ep_copy_to_user() won't report both; we hide some faults */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 if (unlikely(0 != req->status))
615 DBG(epdata->dev, "%s fault %d len %d\n",
616 ep->name, req->status, req->actual);
617
618 priv->buf = req->buf;
619 priv->actual = req->actual;
Zach Browna80bf612013-05-07 16:18:23 -0700620 schedule_work(&priv->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 }
622 spin_unlock(&epdata->dev->lock);
623
624 usb_ep_free_request(ep, req);
625 put_ep(epdata);
626}
627
628static ssize_t
629ep_aio_rwtail(
630 struct kiocb *iocb,
631 char *buf,
632 size_t len,
633 struct ep_data *epdata,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700634 const struct iovec *iv,
David Brownell25051072007-01-15 11:30:28 -0800635 unsigned long nr_segs
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636)
637{
Alan Stern83196b52006-05-22 12:26:31 -0400638 struct kiocb_priv *priv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 struct usb_request *req;
640 ssize_t value;
641
642 priv = kmalloc(sizeof *priv, GFP_KERNEL);
643 if (!priv) {
644 value = -ENOMEM;
645fail:
646 kfree(buf);
647 return value;
648 }
649 iocb->private = priv;
Zach Browna80bf612013-05-07 16:18:23 -0700650 priv->iocb = iocb;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700651 priv->iv = iv;
652 priv->nr_segs = nr_segs;
Zach Browna80bf612013-05-07 16:18:23 -0700653 INIT_WORK(&priv->work, ep_user_copy_worker);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
655 value = get_ready_ep(iocb->ki_filp->f_flags, epdata);
656 if (unlikely(value < 0)) {
657 kfree(priv);
658 goto fail;
659 }
660
Kent Overstreet0460fef2013-05-07 16:18:49 -0700661 kiocb_set_cancel_fn(iocb, ep_aio_cancel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 get_ep(epdata);
663 priv->epdata = epdata;
664 priv->actual = 0;
Zach Browna80bf612013-05-07 16:18:23 -0700665 priv->mm = current->mm; /* mm teardown waits for iocbs in exit_aio() */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
667 /* each kiocb is coupled to one usb_request, but we can't
668 * allocate or submit those if the host disconnected.
669 */
670 spin_lock_irq(&epdata->dev->lock);
671 if (likely(epdata->ep)) {
672 req = usb_ep_alloc_request(epdata->ep, GFP_ATOMIC);
673 if (likely(req)) {
674 priv->req = req;
675 req->buf = buf;
676 req->length = len;
677 req->complete = ep_aio_complete;
678 req->context = iocb;
679 value = usb_ep_queue(epdata->ep, req, GFP_ATOMIC);
680 if (unlikely(0 != value))
681 usb_ep_free_request(epdata->ep, req);
682 } else
683 value = -EAGAIN;
684 } else
685 value = -ENODEV;
686 spin_unlock_irq(&epdata->dev->lock);
687
Thomas Gleixnera79df502010-01-29 20:38:59 +0000688 mutex_unlock(&epdata->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690 if (unlikely(value)) {
691 kfree(priv);
692 put_ep(epdata);
693 } else
Zach Browna80bf612013-05-07 16:18:23 -0700694 value = -EIOCBQUEUED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 return value;
696}
697
698static ssize_t
Badari Pulavarty027445c2006-09-30 23:28:46 -0700699ep_aio_read(struct kiocb *iocb, const struct iovec *iov,
700 unsigned long nr_segs, loff_t o)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
702 struct ep_data *epdata = iocb->ki_filp->private_data;
703 char *buf;
704
Matthias Kaehlckefa4c86a2009-04-15 22:28:32 +0200705 if (unlikely(usb_endpoint_dir_in(&epdata->desc)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 return -EINVAL;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700707
Kent Overstreet73a70752013-05-09 15:03:42 -0700708 buf = kmalloc(iocb->ki_nbytes, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 if (unlikely(!buf))
710 return -ENOMEM;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700711
Kent Overstreet73a70752013-05-09 15:03:42 -0700712 return ep_aio_rwtail(iocb, buf, iocb->ki_nbytes, epdata, iov, nr_segs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713}
714
715static ssize_t
Badari Pulavarty027445c2006-09-30 23:28:46 -0700716ep_aio_write(struct kiocb *iocb, const struct iovec *iov,
717 unsigned long nr_segs, loff_t o)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718{
719 struct ep_data *epdata = iocb->ki_filp->private_data;
720 char *buf;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700721 size_t len = 0;
722 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Matthias Kaehlckefa4c86a2009-04-15 22:28:32 +0200724 if (unlikely(!usb_endpoint_dir_in(&epdata->desc)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 return -EINVAL;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700726
Kent Overstreet73a70752013-05-09 15:03:42 -0700727 buf = kmalloc(iocb->ki_nbytes, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 if (unlikely(!buf))
729 return -ENOMEM;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700730
731 for (i=0; i < nr_segs; i++) {
732 if (unlikely(copy_from_user(&buf[len], iov[i].iov_base,
733 iov[i].iov_len) != 0)) {
734 kfree(buf);
735 return -EFAULT;
736 }
737 len += iov[i].iov_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 }
Badari Pulavarty027445c2006-09-30 23:28:46 -0700739 return ep_aio_rwtail(iocb, buf, len, epdata, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740}
741
742/*----------------------------------------------------------------------*/
743
744/* used after endpoint configuration */
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300745static const struct file_operations ep_io_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 .owner = THIS_MODULE,
747 .llseek = no_llseek,
748
749 .read = ep_read,
750 .write = ep_write,
Alan Cox44c389a2008-05-22 22:03:27 +0100751 .unlocked_ioctl = ep_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 .release = ep_release,
753
754 .aio_read = ep_aio_read,
755 .aio_write = ep_aio_write,
756};
757
758/* ENDPOINT INITIALIZATION
759 *
760 * fd = open ("/dev/gadget/$ENDPOINT", O_RDWR)
761 * status = write (fd, descriptors, sizeof descriptors)
762 *
763 * That write establishes the endpoint configuration, configuring
764 * the controller to process bulk, interrupt, or isochronous transfers
765 * at the right maxpacket size, and so on.
766 *
767 * The descriptors are message type 1, identified by a host order u32
768 * at the beginning of what's written. Descriptor order is: full/low
769 * speed descriptor, then optional high speed descriptor.
770 */
771static ssize_t
772ep_config (struct file *fd, const char __user *buf, size_t len, loff_t *ptr)
773{
774 struct ep_data *data = fd->private_data;
775 struct usb_ep *ep;
776 u32 tag;
Milan Svoboda8a7471a2006-06-26 07:19:00 -0700777 int value, length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Thomas Gleixnera79df502010-01-29 20:38:59 +0000779 value = mutex_lock_interruptible(&data->lock);
780 if (value < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 return value;
782
783 if (data->state != STATE_EP_READY) {
784 value = -EL2HLT;
785 goto fail;
786 }
787
788 value = len;
789 if (len < USB_DT_ENDPOINT_SIZE + 4)
790 goto fail0;
791
792 /* we might need to change message format someday */
793 if (copy_from_user (&tag, buf, 4)) {
794 goto fail1;
795 }
796 if (tag != 1) {
797 DBG(data->dev, "config %s, bad tag %d\n", data->name, tag);
798 goto fail0;
799 }
800 buf += 4;
801 len -= 4;
802
803 /* NOTE: audio endpoint extensions not accepted here;
804 * just don't include the extra bytes.
805 */
806
807 /* full/low speed descriptor, then high speed */
808 if (copy_from_user (&data->desc, buf, USB_DT_ENDPOINT_SIZE)) {
809 goto fail1;
810 }
811 if (data->desc.bLength != USB_DT_ENDPOINT_SIZE
812 || data->desc.bDescriptorType != USB_DT_ENDPOINT)
813 goto fail0;
814 if (len != USB_DT_ENDPOINT_SIZE) {
815 if (len != 2 * USB_DT_ENDPOINT_SIZE)
816 goto fail0;
817 if (copy_from_user (&data->hs_desc, buf + USB_DT_ENDPOINT_SIZE,
818 USB_DT_ENDPOINT_SIZE)) {
819 goto fail1;
820 }
821 if (data->hs_desc.bLength != USB_DT_ENDPOINT_SIZE
822 || data->hs_desc.bDescriptorType
823 != USB_DT_ENDPOINT) {
824 DBG(data->dev, "config %s, bad hs length or type\n",
825 data->name);
826 goto fail0;
827 }
828 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829
830 spin_lock_irq (&data->dev->lock);
831 if (data->dev->state == STATE_DEV_UNBOUND) {
832 value = -ENOENT;
833 goto gone;
834 } else if ((ep = data->ep) == NULL) {
835 value = -ENODEV;
836 goto gone;
837 }
838 switch (data->dev->gadget->speed) {
839 case USB_SPEED_LOW:
840 case USB_SPEED_FULL:
Tatyana Brokhman72c973d2011-06-28 16:33:48 +0300841 ep->desc = &data->desc;
842 value = usb_ep_enable(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 if (value == 0)
844 data->state = STATE_EP_ENABLED;
845 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 case USB_SPEED_HIGH:
847 /* fails if caller didn't provide that descriptor... */
Tatyana Brokhman72c973d2011-06-28 16:33:48 +0300848 ep->desc = &data->hs_desc;
849 value = usb_ep_enable(ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 if (value == 0)
851 data->state = STATE_EP_ENABLED;
852 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 default:
Phil Endecott511779f2007-01-15 11:35:01 -0800854 DBG(data->dev, "unconnected, %s init abandoned\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 data->name);
Phil Endecott511779f2007-01-15 11:35:01 -0800856 value = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 }
Milan Svoboda8a7471a2006-06-26 07:19:00 -0700858 if (value == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 fd->f_op = &ep_io_operations;
Milan Svoboda8a7471a2006-06-26 07:19:00 -0700860 value = length;
861 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862gone:
863 spin_unlock_irq (&data->dev->lock);
864 if (value < 0) {
865fail:
866 data->desc.bDescriptorType = 0;
867 data->hs_desc.bDescriptorType = 0;
868 }
Thomas Gleixnera79df502010-01-29 20:38:59 +0000869 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 return value;
871fail0:
872 value = -EINVAL;
873 goto fail;
874fail1:
875 value = -EFAULT;
876 goto fail;
877}
878
879static int
880ep_open (struct inode *inode, struct file *fd)
881{
Theodore Ts'o8e18e292006-09-27 01:50:46 -0700882 struct ep_data *data = inode->i_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 int value = -EBUSY;
884
Thomas Gleixnera79df502010-01-29 20:38:59 +0000885 if (mutex_lock_interruptible(&data->lock) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 return -EINTR;
887 spin_lock_irq (&data->dev->lock);
888 if (data->dev->state == STATE_DEV_UNBOUND)
889 value = -ENOENT;
890 else if (data->state == STATE_EP_DISABLED) {
891 value = 0;
892 data->state = STATE_EP_READY;
893 get_ep (data);
894 fd->private_data = data;
895 VDEBUG (data->dev, "%s ready\n", data->name);
896 } else
897 DBG (data->dev, "%s state %d\n",
898 data->name, data->state);
899 spin_unlock_irq (&data->dev->lock);
Thomas Gleixnera79df502010-01-29 20:38:59 +0000900 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 return value;
902}
903
904/* used before endpoint configuration */
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300905static const struct file_operations ep_config_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 .llseek = no_llseek,
907
908 .open = ep_open,
909 .write = ep_config,
910 .release = ep_release,
911};
912
913/*----------------------------------------------------------------------*/
914
915/* EP0 IMPLEMENTATION can be partly in userspace.
916 *
917 * Drivers that use this facility receive various events, including
918 * control requests the kernel doesn't handle. Drivers that don't
919 * use this facility may be too simple-minded for real applications.
920 */
921
922static inline void ep0_readable (struct dev_data *dev)
923{
924 wake_up (&dev->wait);
925 kill_fasync (&dev->fasync, SIGIO, POLL_IN);
926}
927
928static void clean_req (struct usb_ep *ep, struct usb_request *req)
929{
930 struct dev_data *dev = ep->driver_data;
931
932 if (req->buf != dev->rbuf) {
David Brownell9d8bab52007-07-01 11:04:54 -0700933 kfree(req->buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 req->buf = dev->rbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 }
936 req->complete = epio_complete;
937 dev->setup_out_ready = 0;
938}
939
940static void ep0_complete (struct usb_ep *ep, struct usb_request *req)
941{
942 struct dev_data *dev = ep->driver_data;
David Brownell5b89db022007-01-16 22:56:26 -0800943 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 int free = 1;
945
946 /* for control OUT, data must still get to userspace */
David Brownell5b89db022007-01-16 22:56:26 -0800947 spin_lock_irqsave(&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 if (!dev->setup_in) {
949 dev->setup_out_error = (req->status != 0);
950 if (!dev->setup_out_error)
951 free = 0;
952 dev->setup_out_ready = 1;
953 ep0_readable (dev);
David Brownell7489d142007-01-16 22:51:04 -0800954 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
956 /* clean up as appropriate */
957 if (free && req->buf != &dev->rbuf)
958 clean_req (ep, req);
959 req->complete = epio_complete;
David Brownell5b89db022007-01-16 22:56:26 -0800960 spin_unlock_irqrestore(&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961}
962
963static int setup_req (struct usb_ep *ep, struct usb_request *req, u16 len)
964{
965 struct dev_data *dev = ep->driver_data;
966
967 if (dev->setup_out_ready) {
968 DBG (dev, "ep0 request busy!\n");
969 return -EBUSY;
970 }
971 if (len > sizeof (dev->rbuf))
David Brownell9d8bab52007-07-01 11:04:54 -0700972 req->buf = kmalloc(len, GFP_ATOMIC);
David Brownella9475222007-07-30 12:31:07 -0700973 if (req->buf == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 req->buf = dev->rbuf;
975 return -ENOMEM;
976 }
977 req->complete = ep0_complete;
978 req->length = len;
Alan Stern97906362006-01-03 10:30:31 -0500979 req->zero = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 return 0;
981}
982
983static ssize_t
984ep0_read (struct file *fd, char __user *buf, size_t len, loff_t *ptr)
985{
986 struct dev_data *dev = fd->private_data;
987 ssize_t retval;
988 enum ep0_state state;
989
990 spin_lock_irq (&dev->lock);
991
992 /* report fd mode change before acting on it */
993 if (dev->setup_abort) {
994 dev->setup_abort = 0;
995 retval = -EIDRM;
996 goto done;
997 }
998
999 /* control DATA stage */
David Brownell7489d142007-01-16 22:51:04 -08001000 if ((state = dev->state) == STATE_DEV_SETUP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
1002 if (dev->setup_in) { /* stall IN */
1003 VDEBUG(dev, "ep0in stall\n");
1004 (void) usb_ep_set_halt (dev->gadget->ep0);
1005 retval = -EL2HLT;
David Brownell7489d142007-01-16 22:51:04 -08001006 dev->state = STATE_DEV_CONNECTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
1008 } else if (len == 0) { /* ack SET_CONFIGURATION etc */
1009 struct usb_ep *ep = dev->gadget->ep0;
1010 struct usb_request *req = dev->req;
1011
1012 if ((retval = setup_req (ep, req, 0)) == 0)
1013 retval = usb_ep_queue (ep, req, GFP_ATOMIC);
David Brownell7489d142007-01-16 22:51:04 -08001014 dev->state = STATE_DEV_CONNECTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
1016 /* assume that was SET_CONFIGURATION */
1017 if (dev->current_config) {
1018 unsigned power;
David Brownella4e3ef52007-08-01 23:58:22 -07001019
1020 if (gadget_is_dualspeed(dev->gadget)
1021 && (dev->gadget->speed
1022 == USB_SPEED_HIGH))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 power = dev->hs_config->bMaxPower;
1024 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 power = dev->config->bMaxPower;
1026 usb_gadget_vbus_draw(dev->gadget, 2 * power);
1027 }
1028
1029 } else { /* collect OUT data */
1030 if ((fd->f_flags & O_NONBLOCK) != 0
1031 && !dev->setup_out_ready) {
1032 retval = -EAGAIN;
1033 goto done;
1034 }
1035 spin_unlock_irq (&dev->lock);
1036 retval = wait_event_interruptible (dev->wait,
1037 dev->setup_out_ready != 0);
1038
1039 /* FIXME state could change from under us */
1040 spin_lock_irq (&dev->lock);
1041 if (retval)
1042 goto done;
David Brownell5b89db022007-01-16 22:56:26 -08001043
1044 if (dev->state != STATE_DEV_SETUP) {
1045 retval = -ECANCELED;
1046 goto done;
1047 }
1048 dev->state = STATE_DEV_CONNECTED;
1049
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 if (dev->setup_out_error)
1051 retval = -EIO;
1052 else {
1053 len = min (len, (size_t)dev->req->actual);
1054// FIXME don't call this with the spinlock held ...
Skip Hansen997694d2006-09-01 15:26:27 -07001055 if (copy_to_user (buf, dev->req->buf, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 retval = -EFAULT;
Thomas Faber85b4b3c2012-03-02 09:41:50 +01001057 else
1058 retval = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 clean_req (dev->gadget->ep0, dev->req);
1060 /* NOTE userspace can't yet choose to stall */
1061 }
1062 }
1063 goto done;
1064 }
1065
1066 /* else normal: return event data */
1067 if (len < sizeof dev->event [0]) {
1068 retval = -EINVAL;
1069 goto done;
1070 }
1071 len -= len % sizeof (struct usb_gadgetfs_event);
1072 dev->usermode_setup = 1;
1073
1074scan:
1075 /* return queued events right away */
1076 if (dev->ev_next != 0) {
1077 unsigned i, n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 n = len / sizeof (struct usb_gadgetfs_event);
David Brownell0864c7a2007-01-16 22:53:58 -08001080 if (dev->ev_next < n)
1081 n = dev->ev_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
David Brownell0864c7a2007-01-16 22:53:58 -08001083 /* ep0 i/o has special semantics during STATE_DEV_SETUP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 for (i = 0; i < n; i++) {
1085 if (dev->event [i].type == GADGETFS_SETUP) {
David Brownell0864c7a2007-01-16 22:53:58 -08001086 dev->state = STATE_DEV_SETUP;
1087 n = i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 break;
1089 }
1090 }
1091 spin_unlock_irq (&dev->lock);
David Brownell0864c7a2007-01-16 22:53:58 -08001092 len = n * sizeof (struct usb_gadgetfs_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 if (copy_to_user (buf, &dev->event, len))
1094 retval = -EFAULT;
1095 else
1096 retval = len;
1097 if (len > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 /* NOTE this doesn't guard against broken drivers;
1099 * concurrent ep0 readers may lose events.
1100 */
1101 spin_lock_irq (&dev->lock);
David Brownell0864c7a2007-01-16 22:53:58 -08001102 if (dev->ev_next > n) {
1103 memmove(&dev->event[0], &dev->event[n],
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 sizeof (struct usb_gadgetfs_event)
David Brownell0864c7a2007-01-16 22:53:58 -08001105 * (dev->ev_next - n));
1106 }
1107 dev->ev_next -= n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 spin_unlock_irq (&dev->lock);
1109 }
1110 return retval;
1111 }
1112 if (fd->f_flags & O_NONBLOCK) {
1113 retval = -EAGAIN;
1114 goto done;
1115 }
1116
1117 switch (state) {
1118 default:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001119 DBG (dev, "fail %s, state %d\n", __func__, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 retval = -ESRCH;
1121 break;
David Brownell7489d142007-01-16 22:51:04 -08001122 case STATE_DEV_UNCONNECTED:
1123 case STATE_DEV_CONNECTED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 spin_unlock_irq (&dev->lock);
Harvey Harrison441b62c2008-03-03 16:08:34 -08001125 DBG (dev, "%s wait\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
1127 /* wait for events */
1128 retval = wait_event_interruptible (dev->wait,
1129 dev->ev_next != 0);
1130 if (retval < 0)
1131 return retval;
1132 spin_lock_irq (&dev->lock);
1133 goto scan;
1134 }
1135
1136done:
1137 spin_unlock_irq (&dev->lock);
1138 return retval;
1139}
1140
1141static struct usb_gadgetfs_event *
1142next_event (struct dev_data *dev, enum usb_gadgetfs_event_type type)
1143{
1144 struct usb_gadgetfs_event *event;
1145 unsigned i;
1146
1147 switch (type) {
1148 /* these events purge the queue */
1149 case GADGETFS_DISCONNECT:
David Brownell7489d142007-01-16 22:51:04 -08001150 if (dev->state == STATE_DEV_SETUP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 dev->setup_abort = 1;
1152 // FALL THROUGH
1153 case GADGETFS_CONNECT:
1154 dev->ev_next = 0;
1155 break;
1156 case GADGETFS_SETUP: /* previous request timed out */
1157 case GADGETFS_SUSPEND: /* same effect */
1158 /* these events can't be repeated */
1159 for (i = 0; i != dev->ev_next; i++) {
1160 if (dev->event [i].type != type)
1161 continue;
David Brownell0864c7a2007-01-16 22:53:58 -08001162 DBG(dev, "discard old event[%d] %d\n", i, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 dev->ev_next--;
1164 if (i == dev->ev_next)
1165 break;
1166 /* indices start at zero, for simplicity */
1167 memmove (&dev->event [i], &dev->event [i + 1],
1168 sizeof (struct usb_gadgetfs_event)
1169 * (dev->ev_next - i));
1170 }
1171 break;
1172 default:
1173 BUG ();
1174 }
David Brownell0864c7a2007-01-16 22:53:58 -08001175 VDEBUG(dev, "event[%d] = %d\n", dev->ev_next, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 event = &dev->event [dev->ev_next++];
1177 BUG_ON (dev->ev_next > N_EVENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 memset (event, 0, sizeof *event);
1179 event->type = type;
1180 return event;
1181}
1182
1183static ssize_t
1184ep0_write (struct file *fd, const char __user *buf, size_t len, loff_t *ptr)
1185{
1186 struct dev_data *dev = fd->private_data;
1187 ssize_t retval = -ESRCH;
1188
1189 spin_lock_irq (&dev->lock);
1190
1191 /* report fd mode change before acting on it */
1192 if (dev->setup_abort) {
1193 dev->setup_abort = 0;
1194 retval = -EIDRM;
1195
1196 /* data and/or status stage for control request */
David Brownell7489d142007-01-16 22:51:04 -08001197 } else if (dev->state == STATE_DEV_SETUP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
1199 /* IN DATA+STATUS caller makes len <= wLength */
1200 if (dev->setup_in) {
1201 retval = setup_req (dev->gadget->ep0, dev->req, len);
1202 if (retval == 0) {
David Brownell5b89db022007-01-16 22:56:26 -08001203 dev->state = STATE_DEV_CONNECTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 spin_unlock_irq (&dev->lock);
1205 if (copy_from_user (dev->req->buf, buf, len))
1206 retval = -EFAULT;
Alan Stern97906362006-01-03 10:30:31 -05001207 else {
1208 if (len < dev->setup_wLength)
1209 dev->req->zero = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 retval = usb_ep_queue (
1211 dev->gadget->ep0, dev->req,
1212 GFP_KERNEL);
Alan Stern97906362006-01-03 10:30:31 -05001213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 if (retval < 0) {
1215 spin_lock_irq (&dev->lock);
1216 clean_req (dev->gadget->ep0, dev->req);
1217 spin_unlock_irq (&dev->lock);
1218 } else
1219 retval = len;
1220
1221 return retval;
1222 }
1223
1224 /* can stall some OUT transfers */
1225 } else if (dev->setup_can_stall) {
1226 VDEBUG(dev, "ep0out stall\n");
1227 (void) usb_ep_set_halt (dev->gadget->ep0);
1228 retval = -EL2HLT;
David Brownell7489d142007-01-16 22:51:04 -08001229 dev->state = STATE_DEV_CONNECTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 } else {
1231 DBG(dev, "bogus ep0out stall!\n");
1232 }
1233 } else
Harvey Harrison441b62c2008-03-03 16:08:34 -08001234 DBG (dev, "fail %s, state %d\n", __func__, dev->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
1236 spin_unlock_irq (&dev->lock);
1237 return retval;
1238}
1239
1240static int
1241ep0_fasync (int f, struct file *fd, int on)
1242{
1243 struct dev_data *dev = fd->private_data;
1244 // caller must F_SETOWN before signal delivery happens
Harvey Harrison441b62c2008-03-03 16:08:34 -08001245 VDEBUG (dev, "%s %s\n", __func__, on ? "on" : "off");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 return fasync_helper (f, fd, on, &dev->fasync);
1247}
1248
1249static struct usb_gadget_driver gadgetfs_driver;
1250
1251static int
1252dev_release (struct inode *inode, struct file *fd)
1253{
1254 struct dev_data *dev = fd->private_data;
1255
1256 /* closing ep0 === shutdown all */
1257
1258 usb_gadget_unregister_driver (&gadgetfs_driver);
1259
1260 /* at this point "good" hardware has disconnected the
1261 * device from USB; the host won't see it any more.
1262 * alternatively, all host requests will time out.
1263 */
1264
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 kfree (dev->buf);
1266 dev->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Marcus Nutzingerf0cae932014-06-05 17:17:06 +02001268 /* other endpoints were all decoupled from this device */
1269 spin_lock_irq(&dev->lock);
1270 dev->state = STATE_DEV_DISABLED;
1271 spin_unlock_irq(&dev->lock);
1272
1273 put_dev (dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 return 0;
1275}
1276
Milan Svobodae22fc272006-08-08 22:23:12 -07001277static unsigned int
1278ep0_poll (struct file *fd, poll_table *wait)
1279{
1280 struct dev_data *dev = fd->private_data;
1281 int mask = 0;
1282
1283 poll_wait(fd, &dev->wait, wait);
1284
1285 spin_lock_irq (&dev->lock);
1286
1287 /* report fd mode change before acting on it */
1288 if (dev->setup_abort) {
1289 dev->setup_abort = 0;
1290 mask = POLLHUP;
1291 goto out;
1292 }
1293
David Brownell7489d142007-01-16 22:51:04 -08001294 if (dev->state == STATE_DEV_SETUP) {
Milan Svobodae22fc272006-08-08 22:23:12 -07001295 if (dev->setup_in || dev->setup_can_stall)
1296 mask = POLLOUT;
1297 } else {
1298 if (dev->ev_next != 0)
1299 mask = POLLIN;
1300 }
1301out:
1302 spin_unlock_irq(&dev->lock);
1303 return mask;
1304}
1305
Alan Cox44c389a2008-05-22 22:03:27 +01001306static long dev_ioctl (struct file *fd, unsigned code, unsigned long value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307{
1308 struct dev_data *dev = fd->private_data;
1309 struct usb_gadget *gadget = dev->gadget;
Alan Cox44c389a2008-05-22 22:03:27 +01001310 long ret = -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
Arnd Bergmann1548b132010-06-01 23:04:44 +02001312 if (gadget->ops->ioctl)
Alan Cox44c389a2008-05-22 22:03:27 +01001313 ret = gadget->ops->ioctl (gadget, code, value);
Arnd Bergmann1548b132010-06-01 23:04:44 +02001314
Alan Cox44c389a2008-05-22 22:03:27 +01001315 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316}
1317
1318/* used after device configuration */
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -03001319static const struct file_operations ep0_io_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 .owner = THIS_MODULE,
1321 .llseek = no_llseek,
1322
1323 .read = ep0_read,
1324 .write = ep0_write,
1325 .fasync = ep0_fasync,
Milan Svobodae22fc272006-08-08 22:23:12 -07001326 .poll = ep0_poll,
Alan Cox44c389a2008-05-22 22:03:27 +01001327 .unlocked_ioctl = dev_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 .release = dev_release,
1329};
1330
1331/*----------------------------------------------------------------------*/
1332
1333/* The in-kernel gadget driver handles most ep0 issues, in particular
1334 * enumerating the single configuration (as provided from user space).
1335 *
1336 * Unrecognized ep0 requests may be handled in user space.
1337 */
1338
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339static void make_qualifier (struct dev_data *dev)
1340{
1341 struct usb_qualifier_descriptor qual;
1342 struct usb_device_descriptor *desc;
1343
1344 qual.bLength = sizeof qual;
1345 qual.bDescriptorType = USB_DT_DEVICE_QUALIFIER;
Harvey Harrison551509d2009-02-11 14:11:36 -08001346 qual.bcdUSB = cpu_to_le16 (0x0200);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
1348 desc = dev->dev;
1349 qual.bDeviceClass = desc->bDeviceClass;
1350 qual.bDeviceSubClass = desc->bDeviceSubClass;
1351 qual.bDeviceProtocol = desc->bDeviceProtocol;
1352
1353 /* assumes ep0 uses the same value for both speeds ... */
Sebastian Andrzej Siewior765f5b82011-06-23 14:26:11 +02001354 qual.bMaxPacketSize0 = dev->gadget->ep0->maxpacket;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
1356 qual.bNumConfigurations = 1;
1357 qual.bRESERVED = 0;
1358
1359 memcpy (dev->rbuf, &qual, sizeof qual);
1360}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
1362static int
1363config_buf (struct dev_data *dev, u8 type, unsigned index)
1364{
1365 int len;
David Brownella4e3ef52007-08-01 23:58:22 -07001366 int hs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
1368 /* only one configuration */
1369 if (index > 0)
1370 return -EINVAL;
1371
David Brownella4e3ef52007-08-01 23:58:22 -07001372 if (gadget_is_dualspeed(dev->gadget)) {
1373 hs = (dev->gadget->speed == USB_SPEED_HIGH);
1374 if (type == USB_DT_OTHER_SPEED_CONFIG)
1375 hs = !hs;
1376 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 if (hs) {
1378 dev->req->buf = dev->hs_config;
David Brownell01ee7d72007-05-25 20:40:14 -07001379 len = le16_to_cpu(dev->hs_config->wTotalLength);
David Brownella4e3ef52007-08-01 23:58:22 -07001380 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 dev->req->buf = dev->config;
David Brownell01ee7d72007-05-25 20:40:14 -07001382 len = le16_to_cpu(dev->config->wTotalLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 }
1384 ((u8 *)dev->req->buf) [1] = type;
1385 return len;
1386}
1387
1388static int
1389gadgetfs_setup (struct usb_gadget *gadget, const struct usb_ctrlrequest *ctrl)
1390{
1391 struct dev_data *dev = get_gadget_data (gadget);
1392 struct usb_request *req = dev->req;
1393 int value = -EOPNOTSUPP;
1394 struct usb_gadgetfs_event *event;
David Brownell1bbc1692005-05-07 13:05:13 -07001395 u16 w_value = le16_to_cpu(ctrl->wValue);
1396 u16 w_length = le16_to_cpu(ctrl->wLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
1398 spin_lock (&dev->lock);
1399 dev->setup_abort = 0;
David Brownell7489d142007-01-16 22:51:04 -08001400 if (dev->state == STATE_DEV_UNCONNECTED) {
David Brownella4e3ef52007-08-01 23:58:22 -07001401 if (gadget_is_dualspeed(gadget)
1402 && gadget->speed == USB_SPEED_HIGH
1403 && dev->hs_config == NULL) {
David Brownellce467942007-01-16 23:06:07 -08001404 spin_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 ERROR (dev, "no high speed config??\n");
1406 return -EINVAL;
1407 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
David Brownellce467942007-01-16 23:06:07 -08001409 dev->state = STATE_DEV_CONNECTED;
David Brownellce467942007-01-16 23:06:07 -08001410
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 INFO (dev, "connected\n");
1412 event = next_event (dev, GADGETFS_CONNECT);
1413 event->u.speed = gadget->speed;
1414 ep0_readable (dev);
1415
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 /* host may have given up waiting for response. we can miss control
1417 * requests handled lower down (device/endpoint status and features);
1418 * then ep0_{read,write} will report the wrong status. controller
1419 * driver will have aborted pending i/o.
1420 */
David Brownell7489d142007-01-16 22:51:04 -08001421 } else if (dev->state == STATE_DEV_SETUP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 dev->setup_abort = 1;
1423
1424 req->buf = dev->rbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 req->context = NULL;
1426 value = -EOPNOTSUPP;
1427 switch (ctrl->bRequest) {
1428
1429 case USB_REQ_GET_DESCRIPTOR:
1430 if (ctrl->bRequestType != USB_DIR_IN)
1431 goto unrecognized;
1432 switch (w_value >> 8) {
1433
1434 case USB_DT_DEVICE:
1435 value = min (w_length, (u16) sizeof *dev->dev);
Sebastian Andrzej Siewior765f5b82011-06-23 14:26:11 +02001436 dev->dev->bMaxPacketSize0 = dev->gadget->ep0->maxpacket;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 req->buf = dev->dev;
1438 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 case USB_DT_DEVICE_QUALIFIER:
1440 if (!dev->hs_config)
1441 break;
1442 value = min (w_length, (u16)
1443 sizeof (struct usb_qualifier_descriptor));
1444 make_qualifier (dev);
1445 break;
1446 case USB_DT_OTHER_SPEED_CONFIG:
1447 // FALLTHROUGH
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 case USB_DT_CONFIG:
1449 value = config_buf (dev,
1450 w_value >> 8,
1451 w_value & 0xff);
1452 if (value >= 0)
1453 value = min (w_length, (u16) value);
1454 break;
1455 case USB_DT_STRING:
1456 goto unrecognized;
1457
1458 default: // all others are errors
1459 break;
1460 }
1461 break;
1462
1463 /* currently one config, two speeds */
1464 case USB_REQ_SET_CONFIGURATION:
1465 if (ctrl->bRequestType != 0)
Roy Hashimoto12cd5b92008-03-12 13:55:31 -08001466 goto unrecognized;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 if (0 == (u8) w_value) {
1468 value = 0;
1469 dev->current_config = 0;
1470 usb_gadget_vbus_draw(gadget, 8 /* mA */ );
1471 // user mode expected to disable endpoints
1472 } else {
1473 u8 config, power;
David Brownella4e3ef52007-08-01 23:58:22 -07001474
1475 if (gadget_is_dualspeed(gadget)
1476 && gadget->speed == USB_SPEED_HIGH) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 config = dev->hs_config->bConfigurationValue;
1478 power = dev->hs_config->bMaxPower;
David Brownella4e3ef52007-08-01 23:58:22 -07001479 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 config = dev->config->bConfigurationValue;
1481 power = dev->config->bMaxPower;
1482 }
1483
1484 if (config == (u8) w_value) {
1485 value = 0;
1486 dev->current_config = config;
1487 usb_gadget_vbus_draw(gadget, 2 * power);
1488 }
1489 }
1490
1491 /* report SET_CONFIGURATION like any other control request,
1492 * except that usermode may not stall this. the next
1493 * request mustn't be allowed start until this finishes:
1494 * endpoints and threads set up, etc.
1495 *
1496 * NOTE: older PXA hardware (before PXA 255: without UDCCFR)
1497 * has bad/racey automagic that prevents synchronizing here.
1498 * even kernel mode drivers often miss them.
1499 */
1500 if (value == 0) {
1501 INFO (dev, "configuration #%d\n", dev->current_config);
Peter Chen6027f312014-04-29 13:26:28 +08001502 usb_gadget_set_state(gadget, USB_STATE_CONFIGURED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 if (dev->usermode_setup) {
1504 dev->setup_can_stall = 0;
1505 goto delegate;
1506 }
1507 }
1508 break;
1509
Paul Bolled30f2062014-05-26 23:37:09 +02001510#ifndef CONFIG_USB_PXA25X
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 /* PXA automagically handles this request too */
1512 case USB_REQ_GET_CONFIGURATION:
1513 if (ctrl->bRequestType != 0x80)
Roy Hashimoto12cd5b92008-03-12 13:55:31 -08001514 goto unrecognized;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 *(u8 *)req->buf = dev->current_config;
1516 value = min (w_length, (u16) 1);
1517 break;
1518#endif
1519
1520 default:
1521unrecognized:
1522 VDEBUG (dev, "%s req%02x.%02x v%04x i%04x l%d\n",
1523 dev->usermode_setup ? "delegate" : "fail",
1524 ctrl->bRequestType, ctrl->bRequest,
1525 w_value, le16_to_cpu(ctrl->wIndex), w_length);
1526
1527 /* if there's an ep0 reader, don't stall */
1528 if (dev->usermode_setup) {
1529 dev->setup_can_stall = 1;
1530delegate:
1531 dev->setup_in = (ctrl->bRequestType & USB_DIR_IN)
1532 ? 1 : 0;
Alan Stern97906362006-01-03 10:30:31 -05001533 dev->setup_wLength = w_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 dev->setup_out_ready = 0;
1535 dev->setup_out_error = 0;
1536 value = 0;
1537
1538 /* read DATA stage for OUT right away */
1539 if (unlikely (!dev->setup_in && w_length)) {
1540 value = setup_req (gadget->ep0, dev->req,
1541 w_length);
1542 if (value < 0)
1543 break;
1544 value = usb_ep_queue (gadget->ep0, dev->req,
1545 GFP_ATOMIC);
1546 if (value < 0) {
1547 clean_req (gadget->ep0, dev->req);
1548 break;
1549 }
1550
1551 /* we can't currently stall these */
1552 dev->setup_can_stall = 0;
1553 }
1554
1555 /* state changes when reader collects event */
1556 event = next_event (dev, GADGETFS_SETUP);
1557 event->u.setup = *ctrl;
1558 ep0_readable (dev);
1559 spin_unlock (&dev->lock);
1560 return 0;
1561 }
1562 }
1563
1564 /* proceed with data transfer and status phases? */
David Brownell7489d142007-01-16 22:51:04 -08001565 if (value >= 0 && dev->state != STATE_DEV_SETUP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 req->length = value;
1567 req->zero = value < w_length;
1568 value = usb_ep_queue (gadget->ep0, req, GFP_ATOMIC);
1569 if (value < 0) {
1570 DBG (dev, "ep_queue --> %d\n", value);
1571 req->status = 0;
1572 }
1573 }
1574
1575 /* device stalls when value < 0 */
1576 spin_unlock (&dev->lock);
1577 return value;
1578}
1579
1580static void destroy_ep_files (struct dev_data *dev)
1581{
Harvey Harrison441b62c2008-03-03 16:08:34 -08001582 DBG (dev, "%s %d\n", __func__, dev->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583
1584 /* dev->state must prevent interference */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 spin_lock_irq (&dev->lock);
Al Viro104bb372012-01-08 16:13:28 -05001586 while (!list_empty(&dev->epfiles)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 struct ep_data *ep;
1588 struct inode *parent;
1589 struct dentry *dentry;
1590
1591 /* break link to FS */
Al Viro104bb372012-01-08 16:13:28 -05001592 ep = list_first_entry (&dev->epfiles, struct ep_data, epfiles);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 list_del_init (&ep->epfiles);
1594 dentry = ep->dentry;
1595 ep->dentry = NULL;
1596 parent = dentry->d_parent->d_inode;
1597
1598 /* break link to controller */
1599 if (ep->state == STATE_EP_ENABLED)
1600 (void) usb_ep_disable (ep->ep);
1601 ep->state = STATE_EP_UNBOUND;
1602 usb_ep_free_request (ep->ep, ep->req);
1603 ep->ep = NULL;
1604 wake_up (&ep->wait);
1605 put_ep (ep);
1606
1607 spin_unlock_irq (&dev->lock);
1608
1609 /* break link to dcache */
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001610 mutex_lock (&parent->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 d_delete (dentry);
1612 dput (dentry);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001613 mutex_unlock (&parent->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
Al Viro104bb372012-01-08 16:13:28 -05001615 spin_lock_irq (&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 }
1617 spin_unlock_irq (&dev->lock);
1618}
1619
1620
Al Virofb6c3222014-09-03 13:37:56 -04001621static struct dentry *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622gadgetfs_create_file (struct super_block *sb, char const *name,
Al Virofb6c3222014-09-03 13:37:56 -04001623 void *data, const struct file_operations *fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
1625static int activate_ep_files (struct dev_data *dev)
1626{
1627 struct usb_ep *ep;
Alan Stern0ae4ea82006-05-22 12:27:38 -04001628 struct ep_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
1630 gadget_for_each_ep (ep, dev->gadget) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
Eric Sesterhenn7039f422006-02-27 13:34:10 -08001632 data = kzalloc(sizeof(*data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 if (!data)
Alan Stern0ae4ea82006-05-22 12:27:38 -04001634 goto enomem0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 data->state = STATE_EP_DISABLED;
Thomas Gleixnera79df502010-01-29 20:38:59 +00001636 mutex_init(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 init_waitqueue_head (&data->wait);
1638
1639 strncpy (data->name, ep->name, sizeof (data->name) - 1);
1640 atomic_set (&data->count, 1);
1641 data->dev = dev;
1642 get_dev (dev);
1643
1644 data->ep = ep;
1645 ep->driver_data = data;
1646
1647 data->req = usb_ep_alloc_request (ep, GFP_KERNEL);
1648 if (!data->req)
Alan Stern0ae4ea82006-05-22 12:27:38 -04001649 goto enomem1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
Al Virofb6c3222014-09-03 13:37:56 -04001651 data->dentry = gadgetfs_create_file (dev->sb, data->name,
1652 data, &ep_config_operations);
1653 if (!data->dentry)
Alan Stern0ae4ea82006-05-22 12:27:38 -04001654 goto enomem2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 list_add_tail (&data->epfiles, &dev->epfiles);
1656 }
1657 return 0;
1658
Alan Stern0ae4ea82006-05-22 12:27:38 -04001659enomem2:
1660 usb_ep_free_request (ep, data->req);
1661enomem1:
1662 put_dev (dev);
1663 kfree (data);
1664enomem0:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001665 DBG (dev, "%s enomem\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 destroy_ep_files (dev);
1667 return -ENOMEM;
1668}
1669
1670static void
1671gadgetfs_unbind (struct usb_gadget *gadget)
1672{
1673 struct dev_data *dev = get_gadget_data (gadget);
1674
Harvey Harrison441b62c2008-03-03 16:08:34 -08001675 DBG (dev, "%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
1677 spin_lock_irq (&dev->lock);
1678 dev->state = STATE_DEV_UNBOUND;
1679 spin_unlock_irq (&dev->lock);
1680
1681 destroy_ep_files (dev);
1682 gadget->ep0->driver_data = NULL;
1683 set_gadget_data (gadget, NULL);
1684
1685 /* we've already been disconnected ... no i/o is active */
1686 if (dev->req)
1687 usb_ep_free_request (gadget->ep0, dev->req);
Harvey Harrison441b62c2008-03-03 16:08:34 -08001688 DBG (dev, "%s done\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 put_dev (dev);
1690}
1691
1692static struct dev_data *the_device;
1693
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +02001694static int gadgetfs_bind(struct usb_gadget *gadget,
1695 struct usb_gadget_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696{
1697 struct dev_data *dev = the_device;
1698
1699 if (!dev)
1700 return -ESRCH;
1701 if (0 != strcmp (CHIP, gadget->name)) {
David Brownell00274922007-11-19 12:58:36 -08001702 pr_err("%s expected %s controller not %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 shortname, CHIP, gadget->name);
1704 return -ENODEV;
1705 }
1706
1707 set_gadget_data (gadget, dev);
1708 dev->gadget = gadget;
1709 gadget->ep0->driver_data = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
1711 /* preallocate control response and buffer */
1712 dev->req = usb_ep_alloc_request (gadget->ep0, GFP_KERNEL);
1713 if (!dev->req)
1714 goto enomem;
1715 dev->req->context = NULL;
1716 dev->req->complete = epio_complete;
1717
1718 if (activate_ep_files (dev) < 0)
1719 goto enomem;
1720
1721 INFO (dev, "bound to %s driver\n", gadget->name);
David Brownell7489d142007-01-16 22:51:04 -08001722 spin_lock_irq(&dev->lock);
1723 dev->state = STATE_DEV_UNCONNECTED;
1724 spin_unlock_irq(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 get_dev (dev);
1726 return 0;
1727
1728enomem:
1729 gadgetfs_unbind (gadget);
1730 return -ENOMEM;
1731}
1732
1733static void
1734gadgetfs_disconnect (struct usb_gadget *gadget)
1735{
1736 struct dev_data *dev = get_gadget_data (gadget);
Marc Kleine-Budde001428e2011-10-10 18:38:05 +02001737 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
Marc Kleine-Budde001428e2011-10-10 18:38:05 +02001739 spin_lock_irqsave (&dev->lock, flags);
David Brownell7489d142007-01-16 22:51:04 -08001740 if (dev->state == STATE_DEV_UNCONNECTED)
Milan Svoboda07cb7f22006-06-26 07:46:00 -07001741 goto exit;
David Brownell7489d142007-01-16 22:51:04 -08001742 dev->state = STATE_DEV_UNCONNECTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
1744 INFO (dev, "disconnected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 next_event (dev, GADGETFS_DISCONNECT);
1746 ep0_readable (dev);
Milan Svoboda07cb7f22006-06-26 07:46:00 -07001747exit:
Marc Kleine-Budde001428e2011-10-10 18:38:05 +02001748 spin_unlock_irqrestore (&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749}
1750
1751static void
1752gadgetfs_suspend (struct usb_gadget *gadget)
1753{
1754 struct dev_data *dev = get_gadget_data (gadget);
1755
1756 INFO (dev, "suspended from state %d\n", dev->state);
1757 spin_lock (&dev->lock);
1758 switch (dev->state) {
David Brownell7489d142007-01-16 22:51:04 -08001759 case STATE_DEV_SETUP: // VERY odd... host died??
1760 case STATE_DEV_CONNECTED:
1761 case STATE_DEV_UNCONNECTED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 next_event (dev, GADGETFS_SUSPEND);
1763 ep0_readable (dev);
1764 /* FALLTHROUGH */
1765 default:
1766 break;
1767 }
1768 spin_unlock (&dev->lock);
1769}
1770
1771static struct usb_gadget_driver gadgetfs_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 .function = (char *) driver_desc,
Sebastian Andrzej Siewior93952952012-09-06 20:11:05 +02001773 .bind = gadgetfs_bind,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 .unbind = gadgetfs_unbind,
1775 .setup = gadgetfs_setup,
Peter Chen0eba4552014-09-09 08:56:51 +08001776 .reset = gadgetfs_disconnect,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 .disconnect = gadgetfs_disconnect,
1778 .suspend = gadgetfs_suspend,
1779
David Brownell25051072007-01-15 11:30:28 -08001780 .driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 .name = (char *) shortname,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 },
1783};
1784
1785/*----------------------------------------------------------------------*/
1786
1787static void gadgetfs_nop(struct usb_gadget *arg) { }
1788
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +02001789static int gadgetfs_probe(struct usb_gadget *gadget,
1790 struct usb_gadget_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791{
1792 CHIP = gadget->name;
1793 return -EISNAM;
1794}
1795
1796static struct usb_gadget_driver probe_driver = {
Michal Nazarewicz7177aed2011-11-19 18:27:38 +01001797 .max_speed = USB_SPEED_HIGH,
Sebastian Andrzej Siewior93952952012-09-06 20:11:05 +02001798 .bind = gadgetfs_probe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 .unbind = gadgetfs_nop,
1800 .setup = (void *)gadgetfs_nop,
1801 .disconnect = gadgetfs_nop,
David Brownell25051072007-01-15 11:30:28 -08001802 .driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 .name = "nop",
1804 },
1805};
1806
1807
1808/* DEVICE INITIALIZATION
1809 *
1810 * fd = open ("/dev/gadget/$CHIP", O_RDWR)
1811 * status = write (fd, descriptors, sizeof descriptors)
1812 *
1813 * That write establishes the device configuration, so the kernel can
1814 * bind to the controller ... guaranteeing it can handle enumeration
1815 * at all necessary speeds. Descriptor order is:
1816 *
1817 * . message tag (u32, host order) ... for now, must be zero; it
1818 * would change to support features like multi-config devices
1819 * . full/low speed config ... all wTotalLength bytes (with interface,
1820 * class, altsetting, endpoint, and other descriptors)
1821 * . high speed config ... all descriptors, for high speed operation;
David Brownell25051072007-01-15 11:30:28 -08001822 * this one's optional except for high-speed hardware
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 * . device descriptor
1824 *
Phil Endecott511779f2007-01-15 11:35:01 -08001825 * Endpoints are not yet enabled. Drivers must wait until device
1826 * configuration and interface altsetting changes create
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 * the need to configure (or unconfigure) them.
1828 *
1829 * After initialization, the device stays active for as long as that
Phil Endecott511779f2007-01-15 11:35:01 -08001830 * $CHIP file is open. Events must then be read from that descriptor,
1831 * such as configuration notifications.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 */
1833
1834static int is_valid_config (struct usb_config_descriptor *config)
1835{
1836 return config->bDescriptorType == USB_DT_CONFIG
1837 && config->bLength == USB_DT_CONFIG_SIZE
1838 && config->bConfigurationValue != 0
1839 && (config->bmAttributes & USB_CONFIG_ATT_ONE) != 0
1840 && (config->bmAttributes & USB_CONFIG_ATT_WAKEUP) == 0;
1841 /* FIXME if gadget->is_otg, _must_ include an otg descriptor */
1842 /* FIXME check lengths: walk to end */
1843}
1844
1845static ssize_t
1846dev_config (struct file *fd, const char __user *buf, size_t len, loff_t *ptr)
1847{
1848 struct dev_data *dev = fd->private_data;
1849 ssize_t value = len, length = len;
1850 unsigned total;
1851 u32 tag;
1852 char *kbuf;
1853
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 if (len < (USB_DT_CONFIG_SIZE + USB_DT_DEVICE_SIZE + 4))
1855 return -EINVAL;
1856
1857 /* we might need to change message format someday */
1858 if (copy_from_user (&tag, buf, 4))
1859 return -EFAULT;
1860 if (tag != 0)
1861 return -EINVAL;
1862 buf += 4;
1863 length -= 4;
1864
Julia Lawallbe8a0582010-05-22 10:26:22 +02001865 kbuf = memdup_user(buf, length);
1866 if (IS_ERR(kbuf))
1867 return PTR_ERR(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
1869 spin_lock_irq (&dev->lock);
1870 value = -EINVAL;
1871 if (dev->buf)
1872 goto fail;
1873 dev->buf = kbuf;
1874
1875 /* full or low speed config */
1876 dev->config = (void *) kbuf;
David Brownell01ee7d72007-05-25 20:40:14 -07001877 total = le16_to_cpu(dev->config->wTotalLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 if (!is_valid_config (dev->config) || total >= length)
1879 goto fail;
1880 kbuf += total;
1881 length -= total;
1882
1883 /* optional high speed config */
1884 if (kbuf [1] == USB_DT_CONFIG) {
1885 dev->hs_config = (void *) kbuf;
David Brownell01ee7d72007-05-25 20:40:14 -07001886 total = le16_to_cpu(dev->hs_config->wTotalLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 if (!is_valid_config (dev->hs_config) || total >= length)
1888 goto fail;
1889 kbuf += total;
1890 length -= total;
1891 }
1892
1893 /* could support multiple configs, using another encoding! */
1894
1895 /* device descriptor (tweaked for paranoia) */
1896 if (length != USB_DT_DEVICE_SIZE)
1897 goto fail;
1898 dev->dev = (void *)kbuf;
1899 if (dev->dev->bLength != USB_DT_DEVICE_SIZE
1900 || dev->dev->bDescriptorType != USB_DT_DEVICE
1901 || dev->dev->bNumConfigurations != 1)
1902 goto fail;
1903 dev->dev->bNumConfigurations = 1;
Harvey Harrison551509d2009-02-11 14:11:36 -08001904 dev->dev->bcdUSB = cpu_to_le16 (0x0200);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
1906 /* triggers gadgetfs_bind(); then we can enumerate. */
1907 spin_unlock_irq (&dev->lock);
Michal Nazarewicz85b86142012-08-24 20:46:18 +02001908 if (dev->hs_config)
1909 gadgetfs_driver.max_speed = USB_SPEED_HIGH;
1910 else
1911 gadgetfs_driver.max_speed = USB_SPEED_FULL;
Sebastian Andrzej Siewior93952952012-09-06 20:11:05 +02001912
1913 value = usb_gadget_probe_driver(&gadgetfs_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 if (value != 0) {
1915 kfree (dev->buf);
1916 dev->buf = NULL;
1917 } else {
1918 /* at this point "good" hardware has for the first time
1919 * let the USB the host see us. alternatively, if users
1920 * unplug/replug that will clear all the error state.
1921 *
1922 * note: everything running before here was guaranteed
1923 * to choke driver model style diagnostics. from here
1924 * on, they can work ... except in cleanup paths that
1925 * kick in after the ep0 descriptor is closed.
1926 */
1927 fd->f_op = &ep0_io_operations;
1928 value = len;
1929 }
1930 return value;
1931
1932fail:
1933 spin_unlock_irq (&dev->lock);
Harvey Harrison441b62c2008-03-03 16:08:34 -08001934 pr_debug ("%s: %s fail %Zd, %p\n", shortname, __func__, value, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 kfree (dev->buf);
1936 dev->buf = NULL;
1937 return value;
1938}
1939
1940static int
1941dev_open (struct inode *inode, struct file *fd)
1942{
Theodore Ts'o8e18e292006-09-27 01:50:46 -07001943 struct dev_data *dev = inode->i_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 int value = -EBUSY;
1945
David Brownell7489d142007-01-16 22:51:04 -08001946 spin_lock_irq(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 if (dev->state == STATE_DEV_DISABLED) {
1948 dev->ev_next = 0;
David Brownell7489d142007-01-16 22:51:04 -08001949 dev->state = STATE_DEV_OPENED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 fd->private_data = dev;
1951 get_dev (dev);
1952 value = 0;
1953 }
David Brownell7489d142007-01-16 22:51:04 -08001954 spin_unlock_irq(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 return value;
1956}
1957
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -03001958static const struct file_operations dev_init_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 .llseek = no_llseek,
1960
1961 .open = dev_open,
1962 .write = dev_config,
1963 .fasync = ep0_fasync,
Alan Cox44c389a2008-05-22 22:03:27 +01001964 .unlocked_ioctl = dev_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 .release = dev_release,
1966};
1967
1968/*----------------------------------------------------------------------*/
1969
1970/* FILESYSTEM AND SUPERBLOCK OPERATIONS
1971 *
1972 * Mounting the filesystem creates a controller file, used first for
1973 * device configuration then later for event monitoring.
1974 */
1975
1976
1977/* FIXME PAM etc could set this security policy without mount options
1978 * if epfiles inherited ownership and permissons from ep0 ...
1979 */
1980
1981static unsigned default_uid;
1982static unsigned default_gid;
1983static unsigned default_perm = S_IRUSR | S_IWUSR;
1984
1985module_param (default_uid, uint, 0644);
1986module_param (default_gid, uint, 0644);
1987module_param (default_perm, uint, 0644);
1988
1989
1990static struct inode *
1991gadgetfs_make_inode (struct super_block *sb,
Arjan van de Ven99ac48f2006-03-28 01:56:41 -08001992 void *data, const struct file_operations *fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 int mode)
1994{
1995 struct inode *inode = new_inode (sb);
1996
1997 if (inode) {
Christoph Hellwig85fe4022010-10-23 11:19:54 -04001998 inode->i_ino = get_next_ino();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 inode->i_mode = mode;
Eric W. Biederman32d639c2012-02-07 16:32:04 -08002000 inode->i_uid = make_kuid(&init_user_ns, default_uid);
2001 inode->i_gid = make_kgid(&init_user_ns, default_gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 inode->i_atime = inode->i_mtime = inode->i_ctime
2003 = CURRENT_TIME;
Theodore Ts'o8e18e292006-09-27 01:50:46 -07002004 inode->i_private = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 inode->i_fop = fops;
2006 }
2007 return inode;
2008}
2009
2010/* creates in fs root directory, so non-renamable and non-linkable.
2011 * so inode and dentry are paired, until device reconfig.
2012 */
Al Virofb6c3222014-09-03 13:37:56 -04002013static struct dentry *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014gadgetfs_create_file (struct super_block *sb, char const *name,
Al Virofb6c3222014-09-03 13:37:56 -04002015 void *data, const struct file_operations *fops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016{
2017 struct dentry *dentry;
2018 struct inode *inode;
2019
2020 dentry = d_alloc_name(sb->s_root, name);
2021 if (!dentry)
2022 return NULL;
2023
2024 inode = gadgetfs_make_inode (sb, data, fops,
2025 S_IFREG | (default_perm & S_IRWXUGO));
2026 if (!inode) {
2027 dput(dentry);
2028 return NULL;
2029 }
2030 d_add (dentry, inode);
Al Virofb6c3222014-09-03 13:37:56 -04002031 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032}
2033
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07002034static const struct super_operations gadget_fs_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 .statfs = simple_statfs,
2036 .drop_inode = generic_delete_inode,
2037};
2038
2039static int
2040gadgetfs_fill_super (struct super_block *sb, void *opts, int silent)
2041{
2042 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 struct dev_data *dev;
2044
2045 if (the_device)
2046 return -ESRCH;
2047
2048 /* fake probe to determine $CHIP */
Lubomir Rintel5cdf7d52014-03-27 08:09:21 +01002049 CHIP = NULL;
Sebastian Andrzej Siewior93952952012-09-06 20:11:05 +02002050 usb_gadget_probe_driver(&probe_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 if (!CHIP)
2052 return -ENODEV;
2053
2054 /* superblock */
2055 sb->s_blocksize = PAGE_CACHE_SIZE;
2056 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
2057 sb->s_magic = GADGETFS_MAGIC;
2058 sb->s_op = &gadget_fs_operations;
2059 sb->s_time_gran = 1;
2060
2061 /* root inode */
2062 inode = gadgetfs_make_inode (sb,
2063 NULL, &simple_dir_operations,
2064 S_IFDIR | S_IRUGO | S_IXUGO);
2065 if (!inode)
Al Viro87da5b32012-01-08 15:59:45 -05002066 goto Enomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 inode->i_op = &simple_dir_inode_operations;
Al Viro48fde702012-01-08 22:15:13 -05002068 if (!(sb->s_root = d_make_root (inode)))
Al Viro87da5b32012-01-08 15:59:45 -05002069 goto Enomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
2071 /* the ep0 file is named after the controller we expect;
2072 * user mode code can use it for sanity checks, like we do.
2073 */
2074 dev = dev_new ();
2075 if (!dev)
Al Viro87da5b32012-01-08 15:59:45 -05002076 goto Enomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077
2078 dev->sb = sb;
Al Virofb6c3222014-09-03 13:37:56 -04002079 dev->dentry = gadgetfs_create_file(sb, CHIP, dev, &dev_init_operations);
2080 if (!dev->dentry) {
Al Viro87da5b32012-01-08 15:59:45 -05002081 put_dev(dev);
2082 goto Enomem;
2083 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
2085 /* other endpoint files are available after hardware setup,
2086 * from binding to a controller.
2087 */
2088 the_device = dev;
2089 return 0;
Alan Stern0ae4ea82006-05-22 12:27:38 -04002090
Al Viro87da5b32012-01-08 15:59:45 -05002091Enomem:
Alan Stern0ae4ea82006-05-22 12:27:38 -04002092 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093}
2094
2095/* "mount -t gadgetfs path /dev/gadget" ends up here */
Al Virofc14f2f2010-07-25 01:48:30 +04002096static struct dentry *
2097gadgetfs_mount (struct file_system_type *t, int flags,
2098 const char *path, void *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099{
Al Virofc14f2f2010-07-25 01:48:30 +04002100 return mount_single (t, flags, opts, gadgetfs_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101}
2102
2103static void
2104gadgetfs_kill_sb (struct super_block *sb)
2105{
2106 kill_litter_super (sb);
2107 if (the_device) {
2108 put_dev (the_device);
2109 the_device = NULL;
2110 }
2111}
2112
2113/*----------------------------------------------------------------------*/
2114
2115static struct file_system_type gadgetfs_type = {
2116 .owner = THIS_MODULE,
2117 .name = shortname,
Al Virofc14f2f2010-07-25 01:48:30 +04002118 .mount = gadgetfs_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 .kill_sb = gadgetfs_kill_sb,
2120};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08002121MODULE_ALIAS_FS("gadgetfs");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122
2123/*----------------------------------------------------------------------*/
2124
2125static int __init init (void)
2126{
2127 int status;
2128
2129 status = register_filesystem (&gadgetfs_type);
2130 if (status == 0)
2131 pr_info ("%s: %s, version " DRIVER_VERSION "\n",
2132 shortname, driver_desc);
2133 return status;
2134}
2135module_init (init);
2136
2137static void __exit cleanup (void)
2138{
2139 pr_debug ("unregister %s\n", shortname);
2140 unregister_filesystem (&gadgetfs_type);
2141}
2142module_exit (cleanup);
2143