blob: 200f9a584064fd9199ba99ff75a2e26a33c788f7 [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
Al Virod4461a62015-03-03 08:39:34 +000077static int ep_open(struct inode *, struct file *);
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80/*----------------------------------------------------------------------*/
81
82#define GADGETFS_MAGIC 0xaee71ee7
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84/* /dev/gadget/$CHIP represents ep0 and the whole device */
85enum ep0_state {
86 /* DISBLED is the initial state.
87 */
88 STATE_DEV_DISABLED = 0,
89
90 /* Only one open() of /dev/gadget/$CHIP; only one file tracks
91 * ep0/device i/o modes and binding to the controller. Driver
92 * must always write descriptors to initialize the device, then
93 * the device becomes UNCONNECTED until enumeration.
94 */
David Brownell7489d142007-01-16 22:51:04 -080095 STATE_DEV_OPENED,
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97 /* From then on, ep0 fd is in either of two basic modes:
98 * - (UN)CONNECTED: read usb_gadgetfs_event(s) from it
99 * - SETUP: read/write will transfer control data and succeed;
100 * or if "wrong direction", performs protocol stall
101 */
David Brownell7489d142007-01-16 22:51:04 -0800102 STATE_DEV_UNCONNECTED,
103 STATE_DEV_CONNECTED,
104 STATE_DEV_SETUP,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106 /* UNBOUND means the driver closed ep0, so the device won't be
107 * accessible again (DEV_DISABLED) until all fds are closed.
108 */
109 STATE_DEV_UNBOUND,
110};
111
112/* enough for the whole queue: most events invalidate others */
113#define N_EVENT 5
114
115struct dev_data {
116 spinlock_t lock;
117 atomic_t count;
David Brownell7489d142007-01-16 22:51:04 -0800118 enum ep0_state state; /* P: lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 struct usb_gadgetfs_event event [N_EVENT];
120 unsigned ev_next;
121 struct fasync_struct *fasync;
122 u8 current_config;
123
124 /* drivers reading ep0 MUST handle control requests (SETUP)
125 * reported that way; else the host will time out.
126 */
127 unsigned usermode_setup : 1,
128 setup_in : 1,
129 setup_can_stall : 1,
130 setup_out_ready : 1,
131 setup_out_error : 1,
132 setup_abort : 1;
Alan Stern97906362006-01-03 10:30:31 -0500133 unsigned setup_wLength;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
135 /* the rest is basically write-once */
136 struct usb_config_descriptor *config, *hs_config;
137 struct usb_device_descriptor *dev;
138 struct usb_request *req;
139 struct usb_gadget *gadget;
140 struct list_head epfiles;
141 void *buf;
142 wait_queue_head_t wait;
143 struct super_block *sb;
144 struct dentry *dentry;
145
146 /* except this scratch i/o buffer for ep0 */
147 u8 rbuf [256];
148};
149
150static inline void get_dev (struct dev_data *data)
151{
152 atomic_inc (&data->count);
153}
154
155static void put_dev (struct dev_data *data)
156{
157 if (likely (!atomic_dec_and_test (&data->count)))
158 return;
159 /* needs no more cleanup */
160 BUG_ON (waitqueue_active (&data->wait));
161 kfree (data);
162}
163
164static struct dev_data *dev_new (void)
165{
166 struct dev_data *dev;
167
Eric Sesterhenn7039f422006-02-27 13:34:10 -0800168 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 if (!dev)
170 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 dev->state = STATE_DEV_DISABLED;
172 atomic_set (&dev->count, 1);
173 spin_lock_init (&dev->lock);
174 INIT_LIST_HEAD (&dev->epfiles);
175 init_waitqueue_head (&dev->wait);
176 return dev;
177}
178
179/*----------------------------------------------------------------------*/
180
181/* other /dev/gadget/$ENDPOINT files represent endpoints */
182enum ep_state {
183 STATE_EP_DISABLED = 0,
184 STATE_EP_READY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 STATE_EP_ENABLED,
186 STATE_EP_UNBOUND,
187};
188
189struct ep_data {
Thomas Gleixnera79df502010-01-29 20:38:59 +0000190 struct mutex lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 enum ep_state state;
192 atomic_t count;
193 struct dev_data *dev;
194 /* must hold dev->lock before accessing ep or req */
195 struct usb_ep *ep;
196 struct usb_request *req;
197 ssize_t status;
198 char name [16];
199 struct usb_endpoint_descriptor desc, hs_desc;
200 struct list_head epfiles;
201 wait_queue_head_t wait;
202 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203};
204
205static inline void get_ep (struct ep_data *data)
206{
207 atomic_inc (&data->count);
208}
209
210static void put_ep (struct ep_data *data)
211{
212 if (likely (!atomic_dec_and_test (&data->count)))
213 return;
214 put_dev (data->dev);
215 /* needs no more cleanup */
216 BUG_ON (!list_empty (&data->epfiles));
217 BUG_ON (waitqueue_active (&data->wait));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 kfree (data);
219}
220
221/*----------------------------------------------------------------------*/
222
223/* most "how to use the hardware" policy choices are in userspace:
224 * mapping endpoint roles (which the driver needs) to the capabilities
225 * which the usb controller has. most of those capabilities are exposed
226 * implicitly, starting with the driver name and then endpoint names.
227 */
228
229static const char *CHIP;
230
231/*----------------------------------------------------------------------*/
232
233/* NOTE: don't use dev_printk calls before binding to the gadget
234 * at the end of ep0 configuration, or after unbind.
235 */
236
237/* too wordy: dev_printk(level , &(d)->gadget->dev , fmt , ## args) */
238#define xprintk(d,level,fmt,args...) \
239 printk(level "%s: " fmt , shortname , ## args)
240
241#ifdef DEBUG
242#define DBG(dev,fmt,args...) \
243 xprintk(dev , KERN_DEBUG , fmt , ## args)
244#else
245#define DBG(dev,fmt,args...) \
246 do { } while (0)
247#endif /* DEBUG */
248
David Brownella4e3ef52007-08-01 23:58:22 -0700249#ifdef VERBOSE_DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250#define VDEBUG DBG
251#else
252#define VDEBUG(dev,fmt,args...) \
253 do { } while (0)
254#endif /* DEBUG */
255
256#define ERROR(dev,fmt,args...) \
257 xprintk(dev , KERN_ERR , fmt , ## args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258#define INFO(dev,fmt,args...) \
259 xprintk(dev , KERN_INFO , fmt , ## args)
260
261
262/*----------------------------------------------------------------------*/
263
264/* SYNCHRONOUS ENDPOINT OPERATIONS (bulk/intr/iso)
265 *
266 * After opening, configure non-control endpoints. Then use normal
267 * stream read() and write() requests; and maybe ioctl() to get more
Steven Cole093cf722005-05-03 19:07:24 -0600268 * precise FIFO status when recovering from cancellation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 */
270
271static void epio_complete (struct usb_ep *ep, struct usb_request *req)
272{
273 struct ep_data *epdata = ep->driver_data;
274
275 if (!req->context)
276 return;
277 if (req->status)
278 epdata->status = req->status;
279 else
280 epdata->status = req->actual;
281 complete ((struct completion *)req->context);
282}
283
284/* tasklock endpoint, returning when it's connected.
285 * still need dev->lock to use epdata->ep.
286 */
287static int
Al Virod4461a62015-03-03 08:39:34 +0000288get_ready_ep (unsigned f_flags, struct ep_data *epdata, bool is_write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
290 int val;
291
292 if (f_flags & O_NONBLOCK) {
Thomas Gleixnera79df502010-01-29 20:38:59 +0000293 if (!mutex_trylock(&epdata->lock))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 goto nonblock;
Al Virod4461a62015-03-03 08:39:34 +0000295 if (epdata->state != STATE_EP_ENABLED &&
296 (!is_write || epdata->state != STATE_EP_READY)) {
Thomas Gleixnera79df502010-01-29 20:38:59 +0000297 mutex_unlock(&epdata->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298nonblock:
299 val = -EAGAIN;
300 } else
301 val = 0;
302 return val;
303 }
304
Thomas Gleixnera79df502010-01-29 20:38:59 +0000305 val = mutex_lock_interruptible(&epdata->lock);
306 if (val < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 return val;
Phil Endecott511779f2007-01-15 11:35:01 -0800308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 switch (epdata->state) {
310 case STATE_EP_ENABLED:
Al Virod4461a62015-03-03 08:39:34 +0000311 return 0;
312 case STATE_EP_READY: /* not configured yet */
313 if (is_write)
314 return 0;
315 // FALLTHRU
316 case STATE_EP_UNBOUND: /* clean disconnect */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 // case STATE_EP_DISABLED: /* "can't happen" */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 default: /* error! */
320 pr_debug ("%s: ep %p not available, state %d\n",
321 shortname, epdata, epdata->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 }
Al Virod4461a62015-03-03 08:39:34 +0000323 mutex_unlock(&epdata->lock);
324 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
327static ssize_t
328ep_io (struct ep_data *epdata, void *buf, unsigned len)
329{
Peter Zijlstra6e9a4732006-09-30 23:28:10 -0700330 DECLARE_COMPLETION_ONSTACK (done);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 int value;
332
333 spin_lock_irq (&epdata->dev->lock);
334 if (likely (epdata->ep != NULL)) {
335 struct usb_request *req = epdata->req;
336
337 req->context = &done;
338 req->complete = epio_complete;
339 req->buf = buf;
340 req->length = len;
341 value = usb_ep_queue (epdata->ep, req, GFP_ATOMIC);
342 } else
343 value = -ENODEV;
344 spin_unlock_irq (&epdata->dev->lock);
345
346 if (likely (value == 0)) {
347 value = wait_event_interruptible (done.wait, done.done);
348 if (value != 0) {
349 spin_lock_irq (&epdata->dev->lock);
350 if (likely (epdata->ep != NULL)) {
351 DBG (epdata->dev, "%s i/o interrupted\n",
352 epdata->name);
353 usb_ep_dequeue (epdata->ep, epdata->req);
354 spin_unlock_irq (&epdata->dev->lock);
355
356 wait_event (done.wait, done.done);
357 if (epdata->status == -ECONNRESET)
358 epdata->status = -EINTR;
359 } else {
360 spin_unlock_irq (&epdata->dev->lock);
361
362 DBG (epdata->dev, "endpoint gone\n");
363 epdata->status = -ENODEV;
364 }
365 }
366 return epdata->status;
367 }
368 return value;
369}
370
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371static int
372ep_release (struct inode *inode, struct file *fd)
373{
374 struct ep_data *data = fd->private_data;
Milan Svobodaba307f52006-06-26 07:48:00 -0700375 int value;
376
Thomas Gleixnera79df502010-01-29 20:38:59 +0000377 value = mutex_lock_interruptible(&data->lock);
378 if (value < 0)
Milan Svobodaba307f52006-06-26 07:48:00 -0700379 return value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381 /* clean up if this can be reopened */
382 if (data->state != STATE_EP_UNBOUND) {
383 data->state = STATE_EP_DISABLED;
384 data->desc.bDescriptorType = 0;
385 data->hs_desc.bDescriptorType = 0;
Pavol Kurina4809ecc2005-09-07 09:49:34 -0700386 usb_ep_disable(data->ep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
Thomas Gleixnera79df502010-01-29 20:38:59 +0000388 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 put_ep (data);
390 return 0;
391}
392
Alan Cox44c389a2008-05-22 22:03:27 +0100393static long ep_ioctl(struct file *fd, unsigned code, unsigned long value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
395 struct ep_data *data = fd->private_data;
396 int status;
397
Al Virod4461a62015-03-03 08:39:34 +0000398 if ((status = get_ready_ep (fd->f_flags, data, false)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return status;
400
401 spin_lock_irq (&data->dev->lock);
402 if (likely (data->ep != NULL)) {
403 switch (code) {
404 case GADGETFS_FIFO_STATUS:
405 status = usb_ep_fifo_status (data->ep);
406 break;
407 case GADGETFS_FIFO_FLUSH:
408 usb_ep_fifo_flush (data->ep);
409 break;
410 case GADGETFS_CLEAR_HALT:
411 status = usb_ep_clear_halt (data->ep);
412 break;
413 default:
414 status = -ENOTTY;
415 }
416 } else
417 status = -ENODEV;
418 spin_unlock_irq (&data->dev->lock);
Thomas Gleixnera79df502010-01-29 20:38:59 +0000419 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 return status;
421}
422
423/*----------------------------------------------------------------------*/
424
425/* ASYNCHRONOUS ENDPOINT I/O OPERATIONS (bulk/intr/iso) */
426
427struct kiocb_priv {
428 struct usb_request *req;
429 struct ep_data *epdata;
Zach Browna80bf612013-05-07 16:18:23 -0700430 struct kiocb *iocb;
431 struct mm_struct *mm;
432 struct work_struct work;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 void *buf;
Al Viro7fe39762015-02-07 00:30:23 -0500434 struct iov_iter to;
435 const void *to_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 unsigned actual;
437};
438
Kent Overstreetbec68faa2013-05-13 14:45:08 -0700439static int ep_aio_cancel(struct kiocb *iocb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
441 struct kiocb_priv *priv = iocb->private;
442 struct ep_data *epdata;
443 int value;
444
445 local_irq_disable();
446 epdata = priv->epdata;
447 // spin_lock(&epdata->dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 if (likely(epdata && epdata->ep && priv->req))
449 value = usb_ep_dequeue (epdata->ep, priv->req);
450 else
451 value = -EINVAL;
452 // spin_unlock(&epdata->dev->lock);
453 local_irq_enable();
454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 return value;
456}
457
Zach Browna80bf612013-05-07 16:18:23 -0700458static void ep_user_copy_worker(struct work_struct *work)
459{
460 struct kiocb_priv *priv = container_of(work, struct kiocb_priv, work);
461 struct mm_struct *mm = priv->mm;
462 struct kiocb *iocb = priv->iocb;
463 size_t ret;
464
465 use_mm(mm);
Al Viro7fe39762015-02-07 00:30:23 -0500466 ret = copy_to_iter(priv->buf, priv->actual, &priv->to);
Zach Browna80bf612013-05-07 16:18:23 -0700467 unuse_mm(mm);
Al Viro7fe39762015-02-07 00:30:23 -0500468 if (!ret)
469 ret = -EFAULT;
Zach Browna80bf612013-05-07 16:18:23 -0700470
471 /* completing the iocb can drop the ctx and mm, don't touch mm after */
472 aio_complete(iocb, ret, ret);
473
David Brownell25051072007-01-15 11:30:28 -0800474 kfree(priv->buf);
Al Viro7fe39762015-02-07 00:30:23 -0500475 kfree(priv->to_free);
David Brownell25051072007-01-15 11:30:28 -0800476 kfree(priv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477}
478
479static void ep_aio_complete(struct usb_ep *ep, struct usb_request *req)
480{
481 struct kiocb *iocb = req->context;
482 struct kiocb_priv *priv = iocb->private;
483 struct ep_data *epdata = priv->epdata;
484
485 /* lock against disconnect (and ideally, cancel) */
486 spin_lock(&epdata->dev->lock);
487 priv->req = NULL;
488 priv->epdata = NULL;
Alan Stern49631ca2007-01-16 23:28:48 -0800489
490 /* if this was a write or a read returning no data then we
491 * don't need to copy anything to userspace, so we can
492 * complete the aio request immediately.
493 */
Al Viro7fe39762015-02-07 00:30:23 -0500494 if (priv->to_free == NULL || unlikely(req->actual == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 kfree(req->buf);
Al Viro7fe39762015-02-07 00:30:23 -0500496 kfree(priv->to_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 kfree(priv);
498 iocb->private = NULL;
499 /* aio_complete() reports bytes-transferred _and_ faults */
Alan Stern49631ca2007-01-16 23:28:48 -0800500 aio_complete(iocb, req->actual ? req->actual : req->status,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 req->status);
502 } else {
Zach Browna80bf612013-05-07 16:18:23 -0700503 /* ep_copy_to_user() won't report both; we hide some faults */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 if (unlikely(0 != req->status))
505 DBG(epdata->dev, "%s fault %d len %d\n",
506 ep->name, req->status, req->actual);
507
508 priv->buf = req->buf;
509 priv->actual = req->actual;
Al Viro7fe39762015-02-07 00:30:23 -0500510 INIT_WORK(&priv->work, ep_user_copy_worker);
Zach Browna80bf612013-05-07 16:18:23 -0700511 schedule_work(&priv->work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 }
513 spin_unlock(&epdata->dev->lock);
514
515 usb_ep_free_request(ep, req);
516 put_ep(epdata);
517}
518
Al Viro7fe39762015-02-07 00:30:23 -0500519static ssize_t ep_aio(struct kiocb *iocb,
520 struct kiocb_priv *priv,
521 struct ep_data *epdata,
522 char *buf,
523 size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
Al Viro7fe39762015-02-07 00:30:23 -0500525 struct usb_request *req;
526 ssize_t value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 iocb->private = priv;
Zach Browna80bf612013-05-07 16:18:23 -0700529 priv->iocb = iocb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Kent Overstreet0460fef2013-05-07 16:18:49 -0700531 kiocb_set_cancel_fn(iocb, ep_aio_cancel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 get_ep(epdata);
533 priv->epdata = epdata;
534 priv->actual = 0;
Zach Browna80bf612013-05-07 16:18:23 -0700535 priv->mm = current->mm; /* mm teardown waits for iocbs in exit_aio() */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537 /* each kiocb is coupled to one usb_request, but we can't
538 * allocate or submit those if the host disconnected.
539 */
540 spin_lock_irq(&epdata->dev->lock);
Al Viro7fe39762015-02-07 00:30:23 -0500541 value = -ENODEV;
542 if (unlikely(epdata->ep))
543 goto fail;
544
545 req = usb_ep_alloc_request(epdata->ep, GFP_ATOMIC);
546 value = -ENOMEM;
547 if (unlikely(!req))
548 goto fail;
549
550 priv->req = req;
551 req->buf = buf;
552 req->length = len;
553 req->complete = ep_aio_complete;
554 req->context = iocb;
555 value = usb_ep_queue(epdata->ep, req, GFP_ATOMIC);
556 if (unlikely(0 != value)) {
557 usb_ep_free_request(epdata->ep, req);
558 goto fail;
559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 spin_unlock_irq(&epdata->dev->lock);
Al Viro7fe39762015-02-07 00:30:23 -0500561 return -EIOCBQUEUED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Al Viro7fe39762015-02-07 00:30:23 -0500563fail:
564 spin_unlock_irq(&epdata->dev->lock);
565 kfree(priv->to_free);
566 kfree(priv);
567 put_ep(epdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 return value;
569}
570
571static ssize_t
Al Viro7fe39762015-02-07 00:30:23 -0500572ep_read_iter(struct kiocb *iocb, struct iov_iter *to)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573{
Al Viro7fe39762015-02-07 00:30:23 -0500574 struct file *file = iocb->ki_filp;
575 struct ep_data *epdata = file->private_data;
576 size_t len = iov_iter_count(to);
577 ssize_t value;
578 char *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
Al Virod4461a62015-03-03 08:39:34 +0000580 if ((value = get_ready_ep(file->f_flags, epdata, false)) < 0)
Al Viro7fe39762015-02-07 00:30:23 -0500581 return value;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700582
Al Viro7fe39762015-02-07 00:30:23 -0500583 /* halt any endpoint by doing a "wrong direction" i/o call */
584 if (usb_endpoint_dir_in(&epdata->desc)) {
585 if (usb_endpoint_xfer_isoc(&epdata->desc) ||
586 !is_sync_kiocb(iocb)) {
587 mutex_unlock(&epdata->lock);
588 return -EINVAL;
589 }
590 DBG (epdata->dev, "%s halt\n", epdata->name);
591 spin_lock_irq(&epdata->dev->lock);
592 if (likely(epdata->ep != NULL))
593 usb_ep_set_halt(epdata->ep);
594 spin_unlock_irq(&epdata->dev->lock);
595 mutex_unlock(&epdata->lock);
596 return -EBADMSG;
597 }
598
599 buf = kmalloc(len, GFP_KERNEL);
600 if (unlikely(!buf)) {
601 mutex_unlock(&epdata->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 return -ENOMEM;
Al Viro7fe39762015-02-07 00:30:23 -0500603 }
604 if (is_sync_kiocb(iocb)) {
605 value = ep_io(epdata, buf, len);
606 if (value >= 0 && copy_to_iter(buf, value, to))
607 value = -EFAULT;
608 } else {
609 struct kiocb_priv *priv = kzalloc(sizeof *priv, GFP_KERNEL);
610 value = -ENOMEM;
611 if (!priv)
612 goto fail;
613 priv->to_free = dup_iter(&priv->to, to, GFP_KERNEL);
614 if (!priv->to_free) {
615 kfree(priv);
616 goto fail;
617 }
618 value = ep_aio(iocb, priv, epdata, buf, len);
619 if (value == -EIOCBQUEUED)
620 buf = NULL;
621 }
622fail:
623 kfree(buf);
624 mutex_unlock(&epdata->lock);
625 return value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626}
627
Al Virod4461a62015-03-03 08:39:34 +0000628static ssize_t ep_config(struct ep_data *, const char *, size_t);
629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630static ssize_t
Al Viro7fe39762015-02-07 00:30:23 -0500631ep_write_iter(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
Al Viro7fe39762015-02-07 00:30:23 -0500633 struct file *file = iocb->ki_filp;
634 struct ep_data *epdata = file->private_data;
635 size_t len = iov_iter_count(from);
Al Virod4461a62015-03-03 08:39:34 +0000636 bool configured;
Al Viro7fe39762015-02-07 00:30:23 -0500637 ssize_t value;
638 char *buf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639
Al Virod4461a62015-03-03 08:39:34 +0000640 if ((value = get_ready_ep(file->f_flags, epdata, true)) < 0)
Al Viro7fe39762015-02-07 00:30:23 -0500641 return value;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700642
Al Virod4461a62015-03-03 08:39:34 +0000643 configured = epdata->state == STATE_EP_ENABLED;
644
Al Viro7fe39762015-02-07 00:30:23 -0500645 /* halt any endpoint by doing a "wrong direction" i/o call */
Al Virod4461a62015-03-03 08:39:34 +0000646 if (configured && !usb_endpoint_dir_in(&epdata->desc)) {
Al Viro7fe39762015-02-07 00:30:23 -0500647 if (usb_endpoint_xfer_isoc(&epdata->desc) ||
648 !is_sync_kiocb(iocb)) {
649 mutex_unlock(&epdata->lock);
650 return -EINVAL;
Badari Pulavarty027445c2006-09-30 23:28:46 -0700651 }
Al Viro7fe39762015-02-07 00:30:23 -0500652 DBG (epdata->dev, "%s halt\n", epdata->name);
653 spin_lock_irq(&epdata->dev->lock);
654 if (likely(epdata->ep != NULL))
655 usb_ep_set_halt(epdata->ep);
656 spin_unlock_irq(&epdata->dev->lock);
657 mutex_unlock(&epdata->lock);
658 return -EBADMSG;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 }
Al Viro7fe39762015-02-07 00:30:23 -0500660
661 buf = kmalloc(len, GFP_KERNEL);
662 if (unlikely(!buf)) {
663 mutex_unlock(&epdata->lock);
664 return -ENOMEM;
665 }
666
667 if (unlikely(copy_from_iter(buf, len, from) != len)) {
668 value = -EFAULT;
669 goto out;
670 }
671
Al Virod4461a62015-03-03 08:39:34 +0000672 if (unlikely(!configured)) {
673 value = ep_config(epdata, buf, len);
674 } else if (is_sync_kiocb(iocb)) {
Al Viro7fe39762015-02-07 00:30:23 -0500675 value = ep_io(epdata, buf, len);
676 } else {
677 struct kiocb_priv *priv = kzalloc(sizeof *priv, GFP_KERNEL);
678 value = -ENOMEM;
679 if (priv) {
680 value = ep_aio(iocb, priv, epdata, buf, len);
681 if (value == -EIOCBQUEUED)
682 buf = NULL;
683 }
684 }
685out:
686 kfree(buf);
687 mutex_unlock(&epdata->lock);
688 return value;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689}
690
691/*----------------------------------------------------------------------*/
692
693/* used after endpoint configuration */
Luiz Fernando N. Capitulino066202d2006-08-05 20:37:11 -0300694static const struct file_operations ep_io_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 .owner = THIS_MODULE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Al Virod4461a62015-03-03 08:39:34 +0000697 .open = ep_open,
698 .release = ep_release,
699 .llseek = no_llseek,
Al Viro7fe39762015-02-07 00:30:23 -0500700 .read = new_sync_read,
701 .write = new_sync_write,
Alan Cox44c389a2008-05-22 22:03:27 +0100702 .unlocked_ioctl = ep_ioctl,
Al Viro7fe39762015-02-07 00:30:23 -0500703 .read_iter = ep_read_iter,
704 .write_iter = ep_write_iter,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705};
706
707/* ENDPOINT INITIALIZATION
708 *
709 * fd = open ("/dev/gadget/$ENDPOINT", O_RDWR)
710 * status = write (fd, descriptors, sizeof descriptors)
711 *
712 * That write establishes the endpoint configuration, configuring
713 * the controller to process bulk, interrupt, or isochronous transfers
714 * at the right maxpacket size, and so on.
715 *
716 * The descriptors are message type 1, identified by a host order u32
717 * at the beginning of what's written. Descriptor order is: full/low
718 * speed descriptor, then optional high speed descriptor.
719 */
720static ssize_t
Al Virod4461a62015-03-03 08:39:34 +0000721ep_config (struct ep_data *data, const char *buf, size_t len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 struct usb_ep *ep;
724 u32 tag;
Milan Svoboda8a7471a2006-06-26 07:19:00 -0700725 int value, length = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 if (data->state != STATE_EP_READY) {
728 value = -EL2HLT;
729 goto fail;
730 }
731
732 value = len;
733 if (len < USB_DT_ENDPOINT_SIZE + 4)
734 goto fail0;
735
736 /* we might need to change message format someday */
Al Virod4461a62015-03-03 08:39:34 +0000737 memcpy(&tag, buf, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 if (tag != 1) {
739 DBG(data->dev, "config %s, bad tag %d\n", data->name, tag);
740 goto fail0;
741 }
742 buf += 4;
743 len -= 4;
744
745 /* NOTE: audio endpoint extensions not accepted here;
746 * just don't include the extra bytes.
747 */
748
749 /* full/low speed descriptor, then high speed */
Al Virod4461a62015-03-03 08:39:34 +0000750 memcpy(&data->desc, buf, USB_DT_ENDPOINT_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 if (data->desc.bLength != USB_DT_ENDPOINT_SIZE
752 || data->desc.bDescriptorType != USB_DT_ENDPOINT)
753 goto fail0;
754 if (len != USB_DT_ENDPOINT_SIZE) {
755 if (len != 2 * USB_DT_ENDPOINT_SIZE)
756 goto fail0;
Al Virod4461a62015-03-03 08:39:34 +0000757 memcpy(&data->hs_desc, buf + USB_DT_ENDPOINT_SIZE,
758 USB_DT_ENDPOINT_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 if (data->hs_desc.bLength != USB_DT_ENDPOINT_SIZE
760 || data->hs_desc.bDescriptorType
761 != USB_DT_ENDPOINT) {
762 DBG(data->dev, "config %s, bad hs length or type\n",
763 data->name);
764 goto fail0;
765 }
766 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
768 spin_lock_irq (&data->dev->lock);
769 if (data->dev->state == STATE_DEV_UNBOUND) {
770 value = -ENOENT;
771 goto gone;
772 } else if ((ep = data->ep) == NULL) {
773 value = -ENODEV;
774 goto gone;
775 }
776 switch (data->dev->gadget->speed) {
777 case USB_SPEED_LOW:
778 case USB_SPEED_FULL:
Tatyana Brokhman72c973d2011-06-28 16:33:48 +0300779 ep->desc = &data->desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 case USB_SPEED_HIGH:
782 /* fails if caller didn't provide that descriptor... */
Tatyana Brokhman72c973d2011-06-28 16:33:48 +0300783 ep->desc = &data->hs_desc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 default:
Phil Endecott511779f2007-01-15 11:35:01 -0800786 DBG(data->dev, "unconnected, %s init abandoned\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 data->name);
Phil Endecott511779f2007-01-15 11:35:01 -0800788 value = -EINVAL;
Al Virod4461a62015-03-03 08:39:34 +0000789 goto gone;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 }
Al Virod4461a62015-03-03 08:39:34 +0000791 value = usb_ep_enable(ep);
Milan Svoboda8a7471a2006-06-26 07:19:00 -0700792 if (value == 0) {
Al Virod4461a62015-03-03 08:39:34 +0000793 data->state = STATE_EP_ENABLED;
Milan Svoboda8a7471a2006-06-26 07:19:00 -0700794 value = length;
795 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796gone:
797 spin_unlock_irq (&data->dev->lock);
798 if (value < 0) {
799fail:
800 data->desc.bDescriptorType = 0;
801 data->hs_desc.bDescriptorType = 0;
802 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 return value;
804fail0:
805 value = -EINVAL;
806 goto fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807}
808
809static int
810ep_open (struct inode *inode, struct file *fd)
811{
Theodore Ts'o8e18e292006-09-27 01:50:46 -0700812 struct ep_data *data = inode->i_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 int value = -EBUSY;
814
Thomas Gleixnera79df502010-01-29 20:38:59 +0000815 if (mutex_lock_interruptible(&data->lock) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 return -EINTR;
817 spin_lock_irq (&data->dev->lock);
818 if (data->dev->state == STATE_DEV_UNBOUND)
819 value = -ENOENT;
820 else if (data->state == STATE_EP_DISABLED) {
821 value = 0;
822 data->state = STATE_EP_READY;
823 get_ep (data);
824 fd->private_data = data;
825 VDEBUG (data->dev, "%s ready\n", data->name);
826 } else
827 DBG (data->dev, "%s state %d\n",
828 data->name, data->state);
829 spin_unlock_irq (&data->dev->lock);
Thomas Gleixnera79df502010-01-29 20:38:59 +0000830 mutex_unlock(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 return value;
832}
833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834/*----------------------------------------------------------------------*/
835
836/* EP0 IMPLEMENTATION can be partly in userspace.
837 *
838 * Drivers that use this facility receive various events, including
839 * control requests the kernel doesn't handle. Drivers that don't
840 * use this facility may be too simple-minded for real applications.
841 */
842
843static inline void ep0_readable (struct dev_data *dev)
844{
845 wake_up (&dev->wait);
846 kill_fasync (&dev->fasync, SIGIO, POLL_IN);
847}
848
849static void clean_req (struct usb_ep *ep, struct usb_request *req)
850{
851 struct dev_data *dev = ep->driver_data;
852
853 if (req->buf != dev->rbuf) {
David Brownell9d8bab52007-07-01 11:04:54 -0700854 kfree(req->buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 req->buf = dev->rbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 }
857 req->complete = epio_complete;
858 dev->setup_out_ready = 0;
859}
860
861static void ep0_complete (struct usb_ep *ep, struct usb_request *req)
862{
863 struct dev_data *dev = ep->driver_data;
David Brownell5b89db022007-01-16 22:56:26 -0800864 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 int free = 1;
866
867 /* for control OUT, data must still get to userspace */
David Brownell5b89db022007-01-16 22:56:26 -0800868 spin_lock_irqsave(&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 if (!dev->setup_in) {
870 dev->setup_out_error = (req->status != 0);
871 if (!dev->setup_out_error)
872 free = 0;
873 dev->setup_out_ready = 1;
874 ep0_readable (dev);
David Brownell7489d142007-01-16 22:51:04 -0800875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
877 /* clean up as appropriate */
878 if (free && req->buf != &dev->rbuf)
879 clean_req (ep, req);
880 req->complete = epio_complete;
David Brownell5b89db022007-01-16 22:56:26 -0800881 spin_unlock_irqrestore(&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882}
883
884static int setup_req (struct usb_ep *ep, struct usb_request *req, u16 len)
885{
886 struct dev_data *dev = ep->driver_data;
887
888 if (dev->setup_out_ready) {
889 DBG (dev, "ep0 request busy!\n");
890 return -EBUSY;
891 }
892 if (len > sizeof (dev->rbuf))
David Brownell9d8bab52007-07-01 11:04:54 -0700893 req->buf = kmalloc(len, GFP_ATOMIC);
David Brownella9475222007-07-30 12:31:07 -0700894 if (req->buf == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 req->buf = dev->rbuf;
896 return -ENOMEM;
897 }
898 req->complete = ep0_complete;
899 req->length = len;
Alan Stern97906362006-01-03 10:30:31 -0500900 req->zero = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 return 0;
902}
903
904static ssize_t
905ep0_read (struct file *fd, char __user *buf, size_t len, loff_t *ptr)
906{
907 struct dev_data *dev = fd->private_data;
908 ssize_t retval;
909 enum ep0_state state;
910
911 spin_lock_irq (&dev->lock);
Alan Stern96b62a52015-03-04 10:31:50 -0500912 if (dev->state <= STATE_DEV_OPENED) {
913 retval = -EINVAL;
914 goto done;
915 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
917 /* report fd mode change before acting on it */
918 if (dev->setup_abort) {
919 dev->setup_abort = 0;
920 retval = -EIDRM;
921 goto done;
922 }
923
924 /* control DATA stage */
David Brownell7489d142007-01-16 22:51:04 -0800925 if ((state = dev->state) == STATE_DEV_SETUP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
927 if (dev->setup_in) { /* stall IN */
928 VDEBUG(dev, "ep0in stall\n");
929 (void) usb_ep_set_halt (dev->gadget->ep0);
930 retval = -EL2HLT;
David Brownell7489d142007-01-16 22:51:04 -0800931 dev->state = STATE_DEV_CONNECTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
933 } else if (len == 0) { /* ack SET_CONFIGURATION etc */
934 struct usb_ep *ep = dev->gadget->ep0;
935 struct usb_request *req = dev->req;
936
937 if ((retval = setup_req (ep, req, 0)) == 0)
938 retval = usb_ep_queue (ep, req, GFP_ATOMIC);
David Brownell7489d142007-01-16 22:51:04 -0800939 dev->state = STATE_DEV_CONNECTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 /* assume that was SET_CONFIGURATION */
942 if (dev->current_config) {
943 unsigned power;
David Brownella4e3ef52007-08-01 23:58:22 -0700944
945 if (gadget_is_dualspeed(dev->gadget)
946 && (dev->gadget->speed
947 == USB_SPEED_HIGH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 power = dev->hs_config->bMaxPower;
949 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 power = dev->config->bMaxPower;
951 usb_gadget_vbus_draw(dev->gadget, 2 * power);
952 }
953
954 } else { /* collect OUT data */
955 if ((fd->f_flags & O_NONBLOCK) != 0
956 && !dev->setup_out_ready) {
957 retval = -EAGAIN;
958 goto done;
959 }
960 spin_unlock_irq (&dev->lock);
961 retval = wait_event_interruptible (dev->wait,
962 dev->setup_out_ready != 0);
963
964 /* FIXME state could change from under us */
965 spin_lock_irq (&dev->lock);
966 if (retval)
967 goto done;
David Brownell5b89db022007-01-16 22:56:26 -0800968
969 if (dev->state != STATE_DEV_SETUP) {
970 retval = -ECANCELED;
971 goto done;
972 }
973 dev->state = STATE_DEV_CONNECTED;
974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 if (dev->setup_out_error)
976 retval = -EIO;
977 else {
978 len = min (len, (size_t)dev->req->actual);
979// FIXME don't call this with the spinlock held ...
Skip Hansen997694d2006-09-01 15:26:27 -0700980 if (copy_to_user (buf, dev->req->buf, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 retval = -EFAULT;
Thomas Faber85b4b3c2012-03-02 09:41:50 +0100982 else
983 retval = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 clean_req (dev->gadget->ep0, dev->req);
985 /* NOTE userspace can't yet choose to stall */
986 }
987 }
988 goto done;
989 }
990
991 /* else normal: return event data */
992 if (len < sizeof dev->event [0]) {
993 retval = -EINVAL;
994 goto done;
995 }
996 len -= len % sizeof (struct usb_gadgetfs_event);
997 dev->usermode_setup = 1;
998
999scan:
1000 /* return queued events right away */
1001 if (dev->ev_next != 0) {
1002 unsigned i, n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 n = len / sizeof (struct usb_gadgetfs_event);
David Brownell0864c7a2007-01-16 22:53:58 -08001005 if (dev->ev_next < n)
1006 n = dev->ev_next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
David Brownell0864c7a2007-01-16 22:53:58 -08001008 /* ep0 i/o has special semantics during STATE_DEV_SETUP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 for (i = 0; i < n; i++) {
1010 if (dev->event [i].type == GADGETFS_SETUP) {
David Brownell0864c7a2007-01-16 22:53:58 -08001011 dev->state = STATE_DEV_SETUP;
1012 n = i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 break;
1014 }
1015 }
1016 spin_unlock_irq (&dev->lock);
David Brownell0864c7a2007-01-16 22:53:58 -08001017 len = n * sizeof (struct usb_gadgetfs_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 if (copy_to_user (buf, &dev->event, len))
1019 retval = -EFAULT;
1020 else
1021 retval = len;
1022 if (len > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 /* NOTE this doesn't guard against broken drivers;
1024 * concurrent ep0 readers may lose events.
1025 */
1026 spin_lock_irq (&dev->lock);
David Brownell0864c7a2007-01-16 22:53:58 -08001027 if (dev->ev_next > n) {
1028 memmove(&dev->event[0], &dev->event[n],
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 sizeof (struct usb_gadgetfs_event)
David Brownell0864c7a2007-01-16 22:53:58 -08001030 * (dev->ev_next - n));
1031 }
1032 dev->ev_next -= n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 spin_unlock_irq (&dev->lock);
1034 }
1035 return retval;
1036 }
1037 if (fd->f_flags & O_NONBLOCK) {
1038 retval = -EAGAIN;
1039 goto done;
1040 }
1041
1042 switch (state) {
1043 default:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001044 DBG (dev, "fail %s, state %d\n", __func__, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 retval = -ESRCH;
1046 break;
David Brownell7489d142007-01-16 22:51:04 -08001047 case STATE_DEV_UNCONNECTED:
1048 case STATE_DEV_CONNECTED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 spin_unlock_irq (&dev->lock);
Harvey Harrison441b62c2008-03-03 16:08:34 -08001050 DBG (dev, "%s wait\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
1052 /* wait for events */
1053 retval = wait_event_interruptible (dev->wait,
1054 dev->ev_next != 0);
1055 if (retval < 0)
1056 return retval;
1057 spin_lock_irq (&dev->lock);
1058 goto scan;
1059 }
1060
1061done:
1062 spin_unlock_irq (&dev->lock);
1063 return retval;
1064}
1065
1066static struct usb_gadgetfs_event *
1067next_event (struct dev_data *dev, enum usb_gadgetfs_event_type type)
1068{
1069 struct usb_gadgetfs_event *event;
1070 unsigned i;
1071
1072 switch (type) {
1073 /* these events purge the queue */
1074 case GADGETFS_DISCONNECT:
David Brownell7489d142007-01-16 22:51:04 -08001075 if (dev->state == STATE_DEV_SETUP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 dev->setup_abort = 1;
1077 // FALL THROUGH
1078 case GADGETFS_CONNECT:
1079 dev->ev_next = 0;
1080 break;
1081 case GADGETFS_SETUP: /* previous request timed out */
1082 case GADGETFS_SUSPEND: /* same effect */
1083 /* these events can't be repeated */
1084 for (i = 0; i != dev->ev_next; i++) {
1085 if (dev->event [i].type != type)
1086 continue;
David Brownell0864c7a2007-01-16 22:53:58 -08001087 DBG(dev, "discard old event[%d] %d\n", i, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 dev->ev_next--;
1089 if (i == dev->ev_next)
1090 break;
1091 /* indices start at zero, for simplicity */
1092 memmove (&dev->event [i], &dev->event [i + 1],
1093 sizeof (struct usb_gadgetfs_event)
1094 * (dev->ev_next - i));
1095 }
1096 break;
1097 default:
1098 BUG ();
1099 }
David Brownell0864c7a2007-01-16 22:53:58 -08001100 VDEBUG(dev, "event[%d] = %d\n", dev->ev_next, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 event = &dev->event [dev->ev_next++];
1102 BUG_ON (dev->ev_next > N_EVENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 memset (event, 0, sizeof *event);
1104 event->type = type;
1105 return event;
1106}
1107
1108static ssize_t
1109ep0_write (struct file *fd, const char __user *buf, size_t len, loff_t *ptr)
1110{
1111 struct dev_data *dev = fd->private_data;
1112 ssize_t retval = -ESRCH;
1113
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 /* report fd mode change before acting on it */
1115 if (dev->setup_abort) {
1116 dev->setup_abort = 0;
1117 retval = -EIDRM;
1118
1119 /* data and/or status stage for control request */
David Brownell7489d142007-01-16 22:51:04 -08001120 } else if (dev->state == STATE_DEV_SETUP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
1122 /* IN DATA+STATUS caller makes len <= wLength */
1123 if (dev->setup_in) {
1124 retval = setup_req (dev->gadget->ep0, dev->req, len);
1125 if (retval == 0) {
David Brownell5b89db022007-01-16 22:56:26 -08001126 dev->state = STATE_DEV_CONNECTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 spin_unlock_irq (&dev->lock);
1128 if (copy_from_user (dev->req->buf, buf, len))
1129 retval = -EFAULT;
Alan Stern97906362006-01-03 10:30:31 -05001130 else {
1131 if (len < dev->setup_wLength)
1132 dev->req->zero = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 retval = usb_ep_queue (
1134 dev->gadget->ep0, dev->req,
1135 GFP_KERNEL);
Alan Stern97906362006-01-03 10:30:31 -05001136 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 if (retval < 0) {
1138 spin_lock_irq (&dev->lock);
1139 clean_req (dev->gadget->ep0, dev->req);
1140 spin_unlock_irq (&dev->lock);
1141 } else
1142 retval = len;
1143
1144 return retval;
1145 }
1146
1147 /* can stall some OUT transfers */
1148 } else if (dev->setup_can_stall) {
1149 VDEBUG(dev, "ep0out stall\n");
1150 (void) usb_ep_set_halt (dev->gadget->ep0);
1151 retval = -EL2HLT;
David Brownell7489d142007-01-16 22:51:04 -08001152 dev->state = STATE_DEV_CONNECTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 } else {
1154 DBG(dev, "bogus ep0out stall!\n");
1155 }
1156 } else
Harvey Harrison441b62c2008-03-03 16:08:34 -08001157 DBG (dev, "fail %s, state %d\n", __func__, dev->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 return retval;
1160}
1161
1162static int
1163ep0_fasync (int f, struct file *fd, int on)
1164{
1165 struct dev_data *dev = fd->private_data;
1166 // caller must F_SETOWN before signal delivery happens
Harvey Harrison441b62c2008-03-03 16:08:34 -08001167 VDEBUG (dev, "%s %s\n", __func__, on ? "on" : "off");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 return fasync_helper (f, fd, on, &dev->fasync);
1169}
1170
1171static struct usb_gadget_driver gadgetfs_driver;
1172
1173static int
1174dev_release (struct inode *inode, struct file *fd)
1175{
1176 struct dev_data *dev = fd->private_data;
1177
1178 /* closing ep0 === shutdown all */
1179
1180 usb_gadget_unregister_driver (&gadgetfs_driver);
1181
1182 /* at this point "good" hardware has disconnected the
1183 * device from USB; the host won't see it any more.
1184 * alternatively, all host requests will time out.
1185 */
1186
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 kfree (dev->buf);
1188 dev->buf = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
Marcus Nutzingerf0cae932014-06-05 17:17:06 +02001190 /* other endpoints were all decoupled from this device */
1191 spin_lock_irq(&dev->lock);
1192 dev->state = STATE_DEV_DISABLED;
1193 spin_unlock_irq(&dev->lock);
1194
1195 put_dev (dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 return 0;
1197}
1198
Milan Svobodae22fc272006-08-08 22:23:12 -07001199static unsigned int
1200ep0_poll (struct file *fd, poll_table *wait)
1201{
1202 struct dev_data *dev = fd->private_data;
1203 int mask = 0;
1204
Alan Stern96b62a52015-03-04 10:31:50 -05001205 if (dev->state <= STATE_DEV_OPENED)
1206 return DEFAULT_POLLMASK;
1207
Milan Svobodae22fc272006-08-08 22:23:12 -07001208 poll_wait(fd, &dev->wait, wait);
1209
1210 spin_lock_irq (&dev->lock);
1211
1212 /* report fd mode change before acting on it */
1213 if (dev->setup_abort) {
1214 dev->setup_abort = 0;
1215 mask = POLLHUP;
1216 goto out;
1217 }
1218
David Brownell7489d142007-01-16 22:51:04 -08001219 if (dev->state == STATE_DEV_SETUP) {
Milan Svobodae22fc272006-08-08 22:23:12 -07001220 if (dev->setup_in || dev->setup_can_stall)
1221 mask = POLLOUT;
1222 } else {
1223 if (dev->ev_next != 0)
1224 mask = POLLIN;
1225 }
1226out:
1227 spin_unlock_irq(&dev->lock);
1228 return mask;
1229}
1230
Alan Cox44c389a2008-05-22 22:03:27 +01001231static long dev_ioctl (struct file *fd, unsigned code, unsigned long value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232{
1233 struct dev_data *dev = fd->private_data;
1234 struct usb_gadget *gadget = dev->gadget;
Alan Cox44c389a2008-05-22 22:03:27 +01001235 long ret = -ENOTTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
Arnd Bergmann1548b132010-06-01 23:04:44 +02001237 if (gadget->ops->ioctl)
Alan Cox44c389a2008-05-22 22:03:27 +01001238 ret = gadget->ops->ioctl (gadget, code, value);
Arnd Bergmann1548b132010-06-01 23:04:44 +02001239
Alan Cox44c389a2008-05-22 22:03:27 +01001240 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241}
1242
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243/*----------------------------------------------------------------------*/
1244
1245/* The in-kernel gadget driver handles most ep0 issues, in particular
1246 * enumerating the single configuration (as provided from user space).
1247 *
1248 * Unrecognized ep0 requests may be handled in user space.
1249 */
1250
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251static void make_qualifier (struct dev_data *dev)
1252{
1253 struct usb_qualifier_descriptor qual;
1254 struct usb_device_descriptor *desc;
1255
1256 qual.bLength = sizeof qual;
1257 qual.bDescriptorType = USB_DT_DEVICE_QUALIFIER;
Harvey Harrison551509d2009-02-11 14:11:36 -08001258 qual.bcdUSB = cpu_to_le16 (0x0200);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
1260 desc = dev->dev;
1261 qual.bDeviceClass = desc->bDeviceClass;
1262 qual.bDeviceSubClass = desc->bDeviceSubClass;
1263 qual.bDeviceProtocol = desc->bDeviceProtocol;
1264
1265 /* assumes ep0 uses the same value for both speeds ... */
Sebastian Andrzej Siewior765f5b82011-06-23 14:26:11 +02001266 qual.bMaxPacketSize0 = dev->gadget->ep0->maxpacket;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
1268 qual.bNumConfigurations = 1;
1269 qual.bRESERVED = 0;
1270
1271 memcpy (dev->rbuf, &qual, sizeof qual);
1272}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273
1274static int
1275config_buf (struct dev_data *dev, u8 type, unsigned index)
1276{
1277 int len;
David Brownella4e3ef52007-08-01 23:58:22 -07001278 int hs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
1280 /* only one configuration */
1281 if (index > 0)
1282 return -EINVAL;
1283
David Brownella4e3ef52007-08-01 23:58:22 -07001284 if (gadget_is_dualspeed(dev->gadget)) {
1285 hs = (dev->gadget->speed == USB_SPEED_HIGH);
1286 if (type == USB_DT_OTHER_SPEED_CONFIG)
1287 hs = !hs;
1288 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 if (hs) {
1290 dev->req->buf = dev->hs_config;
David Brownell01ee7d72007-05-25 20:40:14 -07001291 len = le16_to_cpu(dev->hs_config->wTotalLength);
David Brownella4e3ef52007-08-01 23:58:22 -07001292 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 dev->req->buf = dev->config;
David Brownell01ee7d72007-05-25 20:40:14 -07001294 len = le16_to_cpu(dev->config->wTotalLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 }
1296 ((u8 *)dev->req->buf) [1] = type;
1297 return len;
1298}
1299
1300static int
1301gadgetfs_setup (struct usb_gadget *gadget, const struct usb_ctrlrequest *ctrl)
1302{
1303 struct dev_data *dev = get_gadget_data (gadget);
1304 struct usb_request *req = dev->req;
1305 int value = -EOPNOTSUPP;
1306 struct usb_gadgetfs_event *event;
David Brownell1bbc1692005-05-07 13:05:13 -07001307 u16 w_value = le16_to_cpu(ctrl->wValue);
1308 u16 w_length = le16_to_cpu(ctrl->wLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
1310 spin_lock (&dev->lock);
1311 dev->setup_abort = 0;
David Brownell7489d142007-01-16 22:51:04 -08001312 if (dev->state == STATE_DEV_UNCONNECTED) {
David Brownella4e3ef52007-08-01 23:58:22 -07001313 if (gadget_is_dualspeed(gadget)
1314 && gadget->speed == USB_SPEED_HIGH
1315 && dev->hs_config == NULL) {
David Brownellce467942007-01-16 23:06:07 -08001316 spin_unlock(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 ERROR (dev, "no high speed config??\n");
1318 return -EINVAL;
1319 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
David Brownellce467942007-01-16 23:06:07 -08001321 dev->state = STATE_DEV_CONNECTED;
David Brownellce467942007-01-16 23:06:07 -08001322
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 INFO (dev, "connected\n");
1324 event = next_event (dev, GADGETFS_CONNECT);
1325 event->u.speed = gadget->speed;
1326 ep0_readable (dev);
1327
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 /* host may have given up waiting for response. we can miss control
1329 * requests handled lower down (device/endpoint status and features);
1330 * then ep0_{read,write} will report the wrong status. controller
1331 * driver will have aborted pending i/o.
1332 */
David Brownell7489d142007-01-16 22:51:04 -08001333 } else if (dev->state == STATE_DEV_SETUP)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 dev->setup_abort = 1;
1335
1336 req->buf = dev->rbuf;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 req->context = NULL;
1338 value = -EOPNOTSUPP;
1339 switch (ctrl->bRequest) {
1340
1341 case USB_REQ_GET_DESCRIPTOR:
1342 if (ctrl->bRequestType != USB_DIR_IN)
1343 goto unrecognized;
1344 switch (w_value >> 8) {
1345
1346 case USB_DT_DEVICE:
1347 value = min (w_length, (u16) sizeof *dev->dev);
Sebastian Andrzej Siewior765f5b82011-06-23 14:26:11 +02001348 dev->dev->bMaxPacketSize0 = dev->gadget->ep0->maxpacket;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 req->buf = dev->dev;
1350 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 case USB_DT_DEVICE_QUALIFIER:
1352 if (!dev->hs_config)
1353 break;
1354 value = min (w_length, (u16)
1355 sizeof (struct usb_qualifier_descriptor));
1356 make_qualifier (dev);
1357 break;
1358 case USB_DT_OTHER_SPEED_CONFIG:
1359 // FALLTHROUGH
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 case USB_DT_CONFIG:
1361 value = config_buf (dev,
1362 w_value >> 8,
1363 w_value & 0xff);
1364 if (value >= 0)
1365 value = min (w_length, (u16) value);
1366 break;
1367 case USB_DT_STRING:
1368 goto unrecognized;
1369
1370 default: // all others are errors
1371 break;
1372 }
1373 break;
1374
1375 /* currently one config, two speeds */
1376 case USB_REQ_SET_CONFIGURATION:
1377 if (ctrl->bRequestType != 0)
Roy Hashimoto12cd5b92008-03-12 13:55:31 -08001378 goto unrecognized;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 if (0 == (u8) w_value) {
1380 value = 0;
1381 dev->current_config = 0;
1382 usb_gadget_vbus_draw(gadget, 8 /* mA */ );
1383 // user mode expected to disable endpoints
1384 } else {
1385 u8 config, power;
David Brownella4e3ef52007-08-01 23:58:22 -07001386
1387 if (gadget_is_dualspeed(gadget)
1388 && gadget->speed == USB_SPEED_HIGH) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 config = dev->hs_config->bConfigurationValue;
1390 power = dev->hs_config->bMaxPower;
David Brownella4e3ef52007-08-01 23:58:22 -07001391 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 config = dev->config->bConfigurationValue;
1393 power = dev->config->bMaxPower;
1394 }
1395
1396 if (config == (u8) w_value) {
1397 value = 0;
1398 dev->current_config = config;
1399 usb_gadget_vbus_draw(gadget, 2 * power);
1400 }
1401 }
1402
1403 /* report SET_CONFIGURATION like any other control request,
1404 * except that usermode may not stall this. the next
1405 * request mustn't be allowed start until this finishes:
1406 * endpoints and threads set up, etc.
1407 *
1408 * NOTE: older PXA hardware (before PXA 255: without UDCCFR)
1409 * has bad/racey automagic that prevents synchronizing here.
1410 * even kernel mode drivers often miss them.
1411 */
1412 if (value == 0) {
1413 INFO (dev, "configuration #%d\n", dev->current_config);
Peter Chen6027f312014-04-29 13:26:28 +08001414 usb_gadget_set_state(gadget, USB_STATE_CONFIGURED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 if (dev->usermode_setup) {
1416 dev->setup_can_stall = 0;
1417 goto delegate;
1418 }
1419 }
1420 break;
1421
Paul Bolled30f2062014-05-26 23:37:09 +02001422#ifndef CONFIG_USB_PXA25X
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 /* PXA automagically handles this request too */
1424 case USB_REQ_GET_CONFIGURATION:
1425 if (ctrl->bRequestType != 0x80)
Roy Hashimoto12cd5b92008-03-12 13:55:31 -08001426 goto unrecognized;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 *(u8 *)req->buf = dev->current_config;
1428 value = min (w_length, (u16) 1);
1429 break;
1430#endif
1431
1432 default:
1433unrecognized:
1434 VDEBUG (dev, "%s req%02x.%02x v%04x i%04x l%d\n",
1435 dev->usermode_setup ? "delegate" : "fail",
1436 ctrl->bRequestType, ctrl->bRequest,
1437 w_value, le16_to_cpu(ctrl->wIndex), w_length);
1438
1439 /* if there's an ep0 reader, don't stall */
1440 if (dev->usermode_setup) {
1441 dev->setup_can_stall = 1;
1442delegate:
1443 dev->setup_in = (ctrl->bRequestType & USB_DIR_IN)
1444 ? 1 : 0;
Alan Stern97906362006-01-03 10:30:31 -05001445 dev->setup_wLength = w_length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 dev->setup_out_ready = 0;
1447 dev->setup_out_error = 0;
1448 value = 0;
1449
1450 /* read DATA stage for OUT right away */
1451 if (unlikely (!dev->setup_in && w_length)) {
1452 value = setup_req (gadget->ep0, dev->req,
1453 w_length);
1454 if (value < 0)
1455 break;
1456 value = usb_ep_queue (gadget->ep0, dev->req,
1457 GFP_ATOMIC);
1458 if (value < 0) {
1459 clean_req (gadget->ep0, dev->req);
1460 break;
1461 }
1462
1463 /* we can't currently stall these */
1464 dev->setup_can_stall = 0;
1465 }
1466
1467 /* state changes when reader collects event */
1468 event = next_event (dev, GADGETFS_SETUP);
1469 event->u.setup = *ctrl;
1470 ep0_readable (dev);
1471 spin_unlock (&dev->lock);
1472 return 0;
1473 }
1474 }
1475
1476 /* proceed with data transfer and status phases? */
David Brownell7489d142007-01-16 22:51:04 -08001477 if (value >= 0 && dev->state != STATE_DEV_SETUP) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 req->length = value;
1479 req->zero = value < w_length;
1480 value = usb_ep_queue (gadget->ep0, req, GFP_ATOMIC);
1481 if (value < 0) {
1482 DBG (dev, "ep_queue --> %d\n", value);
1483 req->status = 0;
1484 }
1485 }
1486
1487 /* device stalls when value < 0 */
1488 spin_unlock (&dev->lock);
1489 return value;
1490}
1491
1492static void destroy_ep_files (struct dev_data *dev)
1493{
Harvey Harrison441b62c2008-03-03 16:08:34 -08001494 DBG (dev, "%s %d\n", __func__, dev->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
1496 /* dev->state must prevent interference */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 spin_lock_irq (&dev->lock);
Al Viro104bb372012-01-08 16:13:28 -05001498 while (!list_empty(&dev->epfiles)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 struct ep_data *ep;
1500 struct inode *parent;
1501 struct dentry *dentry;
1502
1503 /* break link to FS */
Al Viro104bb372012-01-08 16:13:28 -05001504 ep = list_first_entry (&dev->epfiles, struct ep_data, epfiles);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 list_del_init (&ep->epfiles);
1506 dentry = ep->dentry;
1507 ep->dentry = NULL;
1508 parent = dentry->d_parent->d_inode;
1509
1510 /* break link to controller */
1511 if (ep->state == STATE_EP_ENABLED)
1512 (void) usb_ep_disable (ep->ep);
1513 ep->state = STATE_EP_UNBOUND;
1514 usb_ep_free_request (ep->ep, ep->req);
1515 ep->ep = NULL;
1516 wake_up (&ep->wait);
1517 put_ep (ep);
1518
1519 spin_unlock_irq (&dev->lock);
1520
1521 /* break link to dcache */
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001522 mutex_lock (&parent->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 d_delete (dentry);
1524 dput (dentry);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001525 mutex_unlock (&parent->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
Al Viro104bb372012-01-08 16:13:28 -05001527 spin_lock_irq (&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 }
1529 spin_unlock_irq (&dev->lock);
1530}
1531
1532
Al Virofb6c3222014-09-03 13:37:56 -04001533static struct dentry *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534gadgetfs_create_file (struct super_block *sb, char const *name,
Al Virofb6c3222014-09-03 13:37:56 -04001535 void *data, const struct file_operations *fops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
1537static int activate_ep_files (struct dev_data *dev)
1538{
1539 struct usb_ep *ep;
Alan Stern0ae4ea82006-05-22 12:27:38 -04001540 struct ep_data *data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
1542 gadget_for_each_ep (ep, dev->gadget) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
Eric Sesterhenn7039f422006-02-27 13:34:10 -08001544 data = kzalloc(sizeof(*data), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 if (!data)
Alan Stern0ae4ea82006-05-22 12:27:38 -04001546 goto enomem0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 data->state = STATE_EP_DISABLED;
Thomas Gleixnera79df502010-01-29 20:38:59 +00001548 mutex_init(&data->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 init_waitqueue_head (&data->wait);
1550
1551 strncpy (data->name, ep->name, sizeof (data->name) - 1);
1552 atomic_set (&data->count, 1);
1553 data->dev = dev;
1554 get_dev (dev);
1555
1556 data->ep = ep;
1557 ep->driver_data = data;
1558
1559 data->req = usb_ep_alloc_request (ep, GFP_KERNEL);
1560 if (!data->req)
Alan Stern0ae4ea82006-05-22 12:27:38 -04001561 goto enomem1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
Al Virofb6c3222014-09-03 13:37:56 -04001563 data->dentry = gadgetfs_create_file (dev->sb, data->name,
Al Virod4461a62015-03-03 08:39:34 +00001564 data, &ep_io_operations);
Al Virofb6c3222014-09-03 13:37:56 -04001565 if (!data->dentry)
Alan Stern0ae4ea82006-05-22 12:27:38 -04001566 goto enomem2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 list_add_tail (&data->epfiles, &dev->epfiles);
1568 }
1569 return 0;
1570
Alan Stern0ae4ea82006-05-22 12:27:38 -04001571enomem2:
1572 usb_ep_free_request (ep, data->req);
1573enomem1:
1574 put_dev (dev);
1575 kfree (data);
1576enomem0:
Harvey Harrison441b62c2008-03-03 16:08:34 -08001577 DBG (dev, "%s enomem\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 destroy_ep_files (dev);
1579 return -ENOMEM;
1580}
1581
1582static void
1583gadgetfs_unbind (struct usb_gadget *gadget)
1584{
1585 struct dev_data *dev = get_gadget_data (gadget);
1586
Harvey Harrison441b62c2008-03-03 16:08:34 -08001587 DBG (dev, "%s\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588
1589 spin_lock_irq (&dev->lock);
1590 dev->state = STATE_DEV_UNBOUND;
1591 spin_unlock_irq (&dev->lock);
1592
1593 destroy_ep_files (dev);
1594 gadget->ep0->driver_data = NULL;
1595 set_gadget_data (gadget, NULL);
1596
1597 /* we've already been disconnected ... no i/o is active */
1598 if (dev->req)
1599 usb_ep_free_request (gadget->ep0, dev->req);
Harvey Harrison441b62c2008-03-03 16:08:34 -08001600 DBG (dev, "%s done\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 put_dev (dev);
1602}
1603
1604static struct dev_data *the_device;
1605
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +02001606static int gadgetfs_bind(struct usb_gadget *gadget,
1607 struct usb_gadget_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608{
1609 struct dev_data *dev = the_device;
1610
1611 if (!dev)
1612 return -ESRCH;
1613 if (0 != strcmp (CHIP, gadget->name)) {
David Brownell00274922007-11-19 12:58:36 -08001614 pr_err("%s expected %s controller not %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 shortname, CHIP, gadget->name);
1616 return -ENODEV;
1617 }
1618
1619 set_gadget_data (gadget, dev);
1620 dev->gadget = gadget;
1621 gadget->ep0->driver_data = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
1623 /* preallocate control response and buffer */
1624 dev->req = usb_ep_alloc_request (gadget->ep0, GFP_KERNEL);
1625 if (!dev->req)
1626 goto enomem;
1627 dev->req->context = NULL;
1628 dev->req->complete = epio_complete;
1629
1630 if (activate_ep_files (dev) < 0)
1631 goto enomem;
1632
1633 INFO (dev, "bound to %s driver\n", gadget->name);
David Brownell7489d142007-01-16 22:51:04 -08001634 spin_lock_irq(&dev->lock);
1635 dev->state = STATE_DEV_UNCONNECTED;
1636 spin_unlock_irq(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 get_dev (dev);
1638 return 0;
1639
1640enomem:
1641 gadgetfs_unbind (gadget);
1642 return -ENOMEM;
1643}
1644
1645static void
1646gadgetfs_disconnect (struct usb_gadget *gadget)
1647{
1648 struct dev_data *dev = get_gadget_data (gadget);
Marc Kleine-Budde001428e2011-10-10 18:38:05 +02001649 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
Marc Kleine-Budde001428e2011-10-10 18:38:05 +02001651 spin_lock_irqsave (&dev->lock, flags);
David Brownell7489d142007-01-16 22:51:04 -08001652 if (dev->state == STATE_DEV_UNCONNECTED)
Milan Svoboda07cb7f22006-06-26 07:46:00 -07001653 goto exit;
David Brownell7489d142007-01-16 22:51:04 -08001654 dev->state = STATE_DEV_UNCONNECTED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
1656 INFO (dev, "disconnected\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 next_event (dev, GADGETFS_DISCONNECT);
1658 ep0_readable (dev);
Milan Svoboda07cb7f22006-06-26 07:46:00 -07001659exit:
Marc Kleine-Budde001428e2011-10-10 18:38:05 +02001660 spin_unlock_irqrestore (&dev->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661}
1662
1663static void
1664gadgetfs_suspend (struct usb_gadget *gadget)
1665{
1666 struct dev_data *dev = get_gadget_data (gadget);
1667
1668 INFO (dev, "suspended from state %d\n", dev->state);
1669 spin_lock (&dev->lock);
1670 switch (dev->state) {
David Brownell7489d142007-01-16 22:51:04 -08001671 case STATE_DEV_SETUP: // VERY odd... host died??
1672 case STATE_DEV_CONNECTED:
1673 case STATE_DEV_UNCONNECTED:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 next_event (dev, GADGETFS_SUSPEND);
1675 ep0_readable (dev);
1676 /* FALLTHROUGH */
1677 default:
1678 break;
1679 }
1680 spin_unlock (&dev->lock);
1681}
1682
1683static struct usb_gadget_driver gadgetfs_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 .function = (char *) driver_desc,
Sebastian Andrzej Siewior93952952012-09-06 20:11:05 +02001685 .bind = gadgetfs_bind,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 .unbind = gadgetfs_unbind,
1687 .setup = gadgetfs_setup,
Peter Chen0eba4552014-09-09 08:56:51 +08001688 .reset = gadgetfs_disconnect,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 .disconnect = gadgetfs_disconnect,
1690 .suspend = gadgetfs_suspend,
1691
David Brownell25051072007-01-15 11:30:28 -08001692 .driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 .name = (char *) shortname,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 },
1695};
1696
1697/*----------------------------------------------------------------------*/
1698
1699static void gadgetfs_nop(struct usb_gadget *arg) { }
1700
Sebastian Andrzej Siewiorffe0b332012-09-07 09:53:17 +02001701static int gadgetfs_probe(struct usb_gadget *gadget,
1702 struct usb_gadget_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703{
1704 CHIP = gadget->name;
1705 return -EISNAM;
1706}
1707
1708static struct usb_gadget_driver probe_driver = {
Michal Nazarewicz7177aed2011-11-19 18:27:38 +01001709 .max_speed = USB_SPEED_HIGH,
Sebastian Andrzej Siewior93952952012-09-06 20:11:05 +02001710 .bind = gadgetfs_probe,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 .unbind = gadgetfs_nop,
1712 .setup = (void *)gadgetfs_nop,
1713 .disconnect = gadgetfs_nop,
David Brownell25051072007-01-15 11:30:28 -08001714 .driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 .name = "nop",
1716 },
1717};
1718
1719
1720/* DEVICE INITIALIZATION
1721 *
1722 * fd = open ("/dev/gadget/$CHIP", O_RDWR)
1723 * status = write (fd, descriptors, sizeof descriptors)
1724 *
1725 * That write establishes the device configuration, so the kernel can
1726 * bind to the controller ... guaranteeing it can handle enumeration
1727 * at all necessary speeds. Descriptor order is:
1728 *
1729 * . message tag (u32, host order) ... for now, must be zero; it
1730 * would change to support features like multi-config devices
1731 * . full/low speed config ... all wTotalLength bytes (with interface,
1732 * class, altsetting, endpoint, and other descriptors)
1733 * . high speed config ... all descriptors, for high speed operation;
David Brownell25051072007-01-15 11:30:28 -08001734 * this one's optional except for high-speed hardware
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 * . device descriptor
1736 *
Phil Endecott511779f2007-01-15 11:35:01 -08001737 * Endpoints are not yet enabled. Drivers must wait until device
1738 * configuration and interface altsetting changes create
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 * the need to configure (or unconfigure) them.
1740 *
1741 * After initialization, the device stays active for as long as that
Phil Endecott511779f2007-01-15 11:35:01 -08001742 * $CHIP file is open. Events must then be read from that descriptor,
1743 * such as configuration notifications.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 */
1745
1746static int is_valid_config (struct usb_config_descriptor *config)
1747{
1748 return config->bDescriptorType == USB_DT_CONFIG
1749 && config->bLength == USB_DT_CONFIG_SIZE
1750 && config->bConfigurationValue != 0
1751 && (config->bmAttributes & USB_CONFIG_ATT_ONE) != 0
1752 && (config->bmAttributes & USB_CONFIG_ATT_WAKEUP) == 0;
1753 /* FIXME if gadget->is_otg, _must_ include an otg descriptor */
1754 /* FIXME check lengths: walk to end */
1755}
1756
1757static ssize_t
1758dev_config (struct file *fd, const char __user *buf, size_t len, loff_t *ptr)
1759{
1760 struct dev_data *dev = fd->private_data;
1761 ssize_t value = len, length = len;
1762 unsigned total;
1763 u32 tag;
1764 char *kbuf;
1765
Alan Stern96b62a52015-03-04 10:31:50 -05001766 spin_lock_irq(&dev->lock);
1767 if (dev->state > STATE_DEV_OPENED) {
1768 value = ep0_write(fd, buf, len, ptr);
1769 spin_unlock_irq(&dev->lock);
1770 return value;
1771 }
1772 spin_unlock_irq(&dev->lock);
1773
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 if (len < (USB_DT_CONFIG_SIZE + USB_DT_DEVICE_SIZE + 4))
1775 return -EINVAL;
1776
1777 /* we might need to change message format someday */
1778 if (copy_from_user (&tag, buf, 4))
1779 return -EFAULT;
1780 if (tag != 0)
1781 return -EINVAL;
1782 buf += 4;
1783 length -= 4;
1784
Julia Lawallbe8a0582010-05-22 10:26:22 +02001785 kbuf = memdup_user(buf, length);
1786 if (IS_ERR(kbuf))
1787 return PTR_ERR(kbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
1789 spin_lock_irq (&dev->lock);
1790 value = -EINVAL;
1791 if (dev->buf)
1792 goto fail;
1793 dev->buf = kbuf;
1794
1795 /* full or low speed config */
1796 dev->config = (void *) kbuf;
David Brownell01ee7d72007-05-25 20:40:14 -07001797 total = le16_to_cpu(dev->config->wTotalLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 if (!is_valid_config (dev->config) || total >= length)
1799 goto fail;
1800 kbuf += total;
1801 length -= total;
1802
1803 /* optional high speed config */
1804 if (kbuf [1] == USB_DT_CONFIG) {
1805 dev->hs_config = (void *) kbuf;
David Brownell01ee7d72007-05-25 20:40:14 -07001806 total = le16_to_cpu(dev->hs_config->wTotalLength);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 if (!is_valid_config (dev->hs_config) || total >= length)
1808 goto fail;
1809 kbuf += total;
1810 length -= total;
1811 }
1812
1813 /* could support multiple configs, using another encoding! */
1814
1815 /* device descriptor (tweaked for paranoia) */
1816 if (length != USB_DT_DEVICE_SIZE)
1817 goto fail;
1818 dev->dev = (void *)kbuf;
1819 if (dev->dev->bLength != USB_DT_DEVICE_SIZE
1820 || dev->dev->bDescriptorType != USB_DT_DEVICE
1821 || dev->dev->bNumConfigurations != 1)
1822 goto fail;
1823 dev->dev->bNumConfigurations = 1;
Harvey Harrison551509d2009-02-11 14:11:36 -08001824 dev->dev->bcdUSB = cpu_to_le16 (0x0200);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
1826 /* triggers gadgetfs_bind(); then we can enumerate. */
1827 spin_unlock_irq (&dev->lock);
Michal Nazarewicz85b86142012-08-24 20:46:18 +02001828 if (dev->hs_config)
1829 gadgetfs_driver.max_speed = USB_SPEED_HIGH;
1830 else
1831 gadgetfs_driver.max_speed = USB_SPEED_FULL;
Sebastian Andrzej Siewior93952952012-09-06 20:11:05 +02001832
1833 value = usb_gadget_probe_driver(&gadgetfs_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 if (value != 0) {
1835 kfree (dev->buf);
1836 dev->buf = NULL;
1837 } else {
1838 /* at this point "good" hardware has for the first time
1839 * let the USB the host see us. alternatively, if users
1840 * unplug/replug that will clear all the error state.
1841 *
1842 * note: everything running before here was guaranteed
1843 * to choke driver model style diagnostics. from here
1844 * on, they can work ... except in cleanup paths that
1845 * kick in after the ep0 descriptor is closed.
1846 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 value = len;
1848 }
1849 return value;
1850
1851fail:
1852 spin_unlock_irq (&dev->lock);
Harvey Harrison441b62c2008-03-03 16:08:34 -08001853 pr_debug ("%s: %s fail %Zd, %p\n", shortname, __func__, value, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 kfree (dev->buf);
1855 dev->buf = NULL;
1856 return value;
1857}
1858
1859static int
1860dev_open (struct inode *inode, struct file *fd)
1861{
Theodore Ts'o8e18e292006-09-27 01:50:46 -07001862 struct dev_data *dev = inode->i_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 int value = -EBUSY;
1864
David Brownell7489d142007-01-16 22:51:04 -08001865 spin_lock_irq(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 if (dev->state == STATE_DEV_DISABLED) {
1867 dev->ev_next = 0;
David Brownell7489d142007-01-16 22:51:04 -08001868 dev->state = STATE_DEV_OPENED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 fd->private_data = dev;
1870 get_dev (dev);
1871 value = 0;
1872 }
David Brownell7489d142007-01-16 22:51:04 -08001873 spin_unlock_irq(&dev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 return value;
1875}
1876
Alan Stern96b62a52015-03-04 10:31:50 -05001877static const struct file_operations ep0_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 .llseek = no_llseek,
1879
1880 .open = dev_open,
Alan Stern96b62a52015-03-04 10:31:50 -05001881 .read = ep0_read,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 .write = dev_config,
1883 .fasync = ep0_fasync,
Alan Stern96b62a52015-03-04 10:31:50 -05001884 .poll = ep0_poll,
Alan Cox44c389a2008-05-22 22:03:27 +01001885 .unlocked_ioctl = dev_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 .release = dev_release,
1887};
1888
1889/*----------------------------------------------------------------------*/
1890
1891/* FILESYSTEM AND SUPERBLOCK OPERATIONS
1892 *
1893 * Mounting the filesystem creates a controller file, used first for
1894 * device configuration then later for event monitoring.
1895 */
1896
1897
1898/* FIXME PAM etc could set this security policy without mount options
1899 * if epfiles inherited ownership and permissons from ep0 ...
1900 */
1901
1902static unsigned default_uid;
1903static unsigned default_gid;
1904static unsigned default_perm = S_IRUSR | S_IWUSR;
1905
1906module_param (default_uid, uint, 0644);
1907module_param (default_gid, uint, 0644);
1908module_param (default_perm, uint, 0644);
1909
1910
1911static struct inode *
1912gadgetfs_make_inode (struct super_block *sb,
Arjan van de Ven99ac48f2006-03-28 01:56:41 -08001913 void *data, const struct file_operations *fops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 int mode)
1915{
1916 struct inode *inode = new_inode (sb);
1917
1918 if (inode) {
Christoph Hellwig85fe4022010-10-23 11:19:54 -04001919 inode->i_ino = get_next_ino();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 inode->i_mode = mode;
Eric W. Biederman32d639c2012-02-07 16:32:04 -08001921 inode->i_uid = make_kuid(&init_user_ns, default_uid);
1922 inode->i_gid = make_kgid(&init_user_ns, default_gid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 inode->i_atime = inode->i_mtime = inode->i_ctime
1924 = CURRENT_TIME;
Theodore Ts'o8e18e292006-09-27 01:50:46 -07001925 inode->i_private = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 inode->i_fop = fops;
1927 }
1928 return inode;
1929}
1930
1931/* creates in fs root directory, so non-renamable and non-linkable.
1932 * so inode and dentry are paired, until device reconfig.
1933 */
Al Virofb6c3222014-09-03 13:37:56 -04001934static struct dentry *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935gadgetfs_create_file (struct super_block *sb, char const *name,
Al Virofb6c3222014-09-03 13:37:56 -04001936 void *data, const struct file_operations *fops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937{
1938 struct dentry *dentry;
1939 struct inode *inode;
1940
1941 dentry = d_alloc_name(sb->s_root, name);
1942 if (!dentry)
1943 return NULL;
1944
1945 inode = gadgetfs_make_inode (sb, data, fops,
1946 S_IFREG | (default_perm & S_IRWXUGO));
1947 if (!inode) {
1948 dput(dentry);
1949 return NULL;
1950 }
1951 d_add (dentry, inode);
Al Virofb6c3222014-09-03 13:37:56 -04001952 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953}
1954
Alexey Dobriyanb87221d2009-09-21 17:01:09 -07001955static const struct super_operations gadget_fs_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 .statfs = simple_statfs,
1957 .drop_inode = generic_delete_inode,
1958};
1959
1960static int
1961gadgetfs_fill_super (struct super_block *sb, void *opts, int silent)
1962{
1963 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 struct dev_data *dev;
1965
1966 if (the_device)
1967 return -ESRCH;
1968
1969 /* fake probe to determine $CHIP */
Lubomir Rintel5cdf7d52014-03-27 08:09:21 +01001970 CHIP = NULL;
Sebastian Andrzej Siewior93952952012-09-06 20:11:05 +02001971 usb_gadget_probe_driver(&probe_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 if (!CHIP)
1973 return -ENODEV;
1974
1975 /* superblock */
1976 sb->s_blocksize = PAGE_CACHE_SIZE;
1977 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
1978 sb->s_magic = GADGETFS_MAGIC;
1979 sb->s_op = &gadget_fs_operations;
1980 sb->s_time_gran = 1;
1981
1982 /* root inode */
1983 inode = gadgetfs_make_inode (sb,
1984 NULL, &simple_dir_operations,
1985 S_IFDIR | S_IRUGO | S_IXUGO);
1986 if (!inode)
Al Viro87da5b32012-01-08 15:59:45 -05001987 goto Enomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 inode->i_op = &simple_dir_inode_operations;
Al Viro48fde702012-01-08 22:15:13 -05001989 if (!(sb->s_root = d_make_root (inode)))
Al Viro87da5b32012-01-08 15:59:45 -05001990 goto Enomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991
1992 /* the ep0 file is named after the controller we expect;
1993 * user mode code can use it for sanity checks, like we do.
1994 */
1995 dev = dev_new ();
1996 if (!dev)
Al Viro87da5b32012-01-08 15:59:45 -05001997 goto Enomem;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998
1999 dev->sb = sb;
Alan Stern96b62a52015-03-04 10:31:50 -05002000 dev->dentry = gadgetfs_create_file(sb, CHIP, dev, &ep0_operations);
Al Virofb6c3222014-09-03 13:37:56 -04002001 if (!dev->dentry) {
Al Viro87da5b32012-01-08 15:59:45 -05002002 put_dev(dev);
2003 goto Enomem;
2004 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005
2006 /* other endpoint files are available after hardware setup,
2007 * from binding to a controller.
2008 */
2009 the_device = dev;
2010 return 0;
Alan Stern0ae4ea82006-05-22 12:27:38 -04002011
Al Viro87da5b32012-01-08 15:59:45 -05002012Enomem:
Alan Stern0ae4ea82006-05-22 12:27:38 -04002013 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014}
2015
2016/* "mount -t gadgetfs path /dev/gadget" ends up here */
Al Virofc14f2f2010-07-25 01:48:30 +04002017static struct dentry *
2018gadgetfs_mount (struct file_system_type *t, int flags,
2019 const char *path, void *opts)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020{
Al Virofc14f2f2010-07-25 01:48:30 +04002021 return mount_single (t, flags, opts, gadgetfs_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022}
2023
2024static void
2025gadgetfs_kill_sb (struct super_block *sb)
2026{
2027 kill_litter_super (sb);
2028 if (the_device) {
2029 put_dev (the_device);
2030 the_device = NULL;
2031 }
2032}
2033
2034/*----------------------------------------------------------------------*/
2035
2036static struct file_system_type gadgetfs_type = {
2037 .owner = THIS_MODULE,
2038 .name = shortname,
Al Virofc14f2f2010-07-25 01:48:30 +04002039 .mount = gadgetfs_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 .kill_sb = gadgetfs_kill_sb,
2041};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08002042MODULE_ALIAS_FS("gadgetfs");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
2044/*----------------------------------------------------------------------*/
2045
2046static int __init init (void)
2047{
2048 int status;
2049
2050 status = register_filesystem (&gadgetfs_type);
2051 if (status == 0)
2052 pr_info ("%s: %s, version " DRIVER_VERSION "\n",
2053 shortname, driver_desc);
2054 return status;
2055}
2056module_init (init);
2057
2058static void __exit cleanup (void)
2059{
2060 pr_debug ("unregister %s\n", shortname);
2061 unregister_filesystem (&gadgetfs_type);
2062}
2063module_exit (cleanup);
2064