userns: Stop oopsing in key_change_session_keyring
[deliverable/linux.git] / drivers / usb / gadget / inode.c
CommitLineData
1da177e4
LT
1/*
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.
1da177e4
LT
11 */
12
13
a4e3ef55 14/* #define VERBOSE_DEBUG */
1da177e4
LT
15
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>
a99bbaf5 24#include <linux/sched.h>
1da177e4 25#include <linux/slab.h>
e22fc27c 26#include <linux/poll.h>
1da177e4
LT
27
28#include <linux/device.h>
29#include <linux/moduleparam.h>
30
a5262dcf 31#include <linux/usb/gadgetfs.h>
9454a57a 32#include <linux/usb/gadget.h>
1da177e4
LT
33
34
35/*
36 * The gadgetfs API maps each endpoint to a file descriptor so that you
37 * can use standard synchronous read/write calls for I/O. There's some
38 * O_NONBLOCK and O_ASYNC/FASYNC style i/o support. Example usermode
39 * drivers show how this works in practice. You can also use AIO to
40 * eliminate I/O gaps between requests, to help when streaming data.
41 *
42 * Key parts that must be USB-specific are protocols defining how the
43 * read/write operations relate to the hardware state machines. There
44 * are two types of files. One type is for the device, implementing ep0.
45 * The other type is for each IN or OUT endpoint. In both cases, the
46 * user mode driver must configure the hardware before using it.
47 *
48 * - First, dev_config() is called when /dev/gadget/$CHIP is configured
49 * (by writing configuration and device descriptors). Afterwards it
50 * may serve as a source of device events, used to handle all control
51 * requests other than basic enumeration.
52 *
511779fd
PE
53 * - Then, after a SET_CONFIGURATION control request, ep_config() is
54 * called when each /dev/gadget/ep* file is configured (by writing
55 * endpoint descriptors). Afterwards these files are used to write()
56 * IN data or to read() OUT data. To halt the endpoint, a "wrong
57 * direction" request is issued (like reading an IN endpoint).
1da177e4
LT
58 *
59 * Unlike "usbfs" the only ioctl()s are for things that are rare, and maybe
60 * not possible on all hardware. For example, precise fault handling with
61 * respect to data left in endpoint fifos after aborted operations; or
62 * selective clearing of endpoint halts, to implement SET_INTERFACE.
63 */
64
65#define DRIVER_DESC "USB Gadget filesystem"
66#define DRIVER_VERSION "24 Aug 2004"
67
68static const char driver_desc [] = DRIVER_DESC;
69static const char shortname [] = "gadgetfs";
70
71MODULE_DESCRIPTION (DRIVER_DESC);
72MODULE_AUTHOR ("David Brownell");
73MODULE_LICENSE ("GPL");
74
75
76/*----------------------------------------------------------------------*/
77
78#define GADGETFS_MAGIC 0xaee71ee7
1da177e4
LT
79
80/* /dev/gadget/$CHIP represents ep0 and the whole device */
81enum ep0_state {
82 /* DISBLED is the initial state.
83 */
84 STATE_DEV_DISABLED = 0,
85
86 /* Only one open() of /dev/gadget/$CHIP; only one file tracks
87 * ep0/device i/o modes and binding to the controller. Driver
88 * must always write descriptors to initialize the device, then
89 * the device becomes UNCONNECTED until enumeration.
90 */
7489d149 91 STATE_DEV_OPENED,
1da177e4
LT
92
93 /* From then on, ep0 fd is in either of two basic modes:
94 * - (UN)CONNECTED: read usb_gadgetfs_event(s) from it
95 * - SETUP: read/write will transfer control data and succeed;
96 * or if "wrong direction", performs protocol stall
97 */
7489d149
DB
98 STATE_DEV_UNCONNECTED,
99 STATE_DEV_CONNECTED,
100 STATE_DEV_SETUP,
1da177e4
LT
101
102 /* UNBOUND means the driver closed ep0, so the device won't be
103 * accessible again (DEV_DISABLED) until all fds are closed.
104 */
105 STATE_DEV_UNBOUND,
106};
107
108/* enough for the whole queue: most events invalidate others */
109#define N_EVENT 5
110
111struct dev_data {
112 spinlock_t lock;
113 atomic_t count;
7489d149 114 enum ep0_state state; /* P: lock */
1da177e4
LT
115 struct usb_gadgetfs_event event [N_EVENT];
116 unsigned ev_next;
117 struct fasync_struct *fasync;
118 u8 current_config;
119
120 /* drivers reading ep0 MUST handle control requests (SETUP)
121 * reported that way; else the host will time out.
122 */
123 unsigned usermode_setup : 1,
124 setup_in : 1,
125 setup_can_stall : 1,
126 setup_out_ready : 1,
127 setup_out_error : 1,
128 setup_abort : 1;
97906369 129 unsigned setup_wLength;
1da177e4
LT
130
131 /* the rest is basically write-once */
132 struct usb_config_descriptor *config, *hs_config;
133 struct usb_device_descriptor *dev;
134 struct usb_request *req;
135 struct usb_gadget *gadget;
136 struct list_head epfiles;
137 void *buf;
138 wait_queue_head_t wait;
139 struct super_block *sb;
140 struct dentry *dentry;
141
142 /* except this scratch i/o buffer for ep0 */
143 u8 rbuf [256];
144};
145
146static inline void get_dev (struct dev_data *data)
147{
148 atomic_inc (&data->count);
149}
150
151static void put_dev (struct dev_data *data)
152{
153 if (likely (!atomic_dec_and_test (&data->count)))
154 return;
155 /* needs no more cleanup */
156 BUG_ON (waitqueue_active (&data->wait));
157 kfree (data);
158}
159
160static struct dev_data *dev_new (void)
161{
162 struct dev_data *dev;
163
7039f422 164 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
1da177e4
LT
165 if (!dev)
166 return NULL;
1da177e4
LT
167 dev->state = STATE_DEV_DISABLED;
168 atomic_set (&dev->count, 1);
169 spin_lock_init (&dev->lock);
170 INIT_LIST_HEAD (&dev->epfiles);
171 init_waitqueue_head (&dev->wait);
172 return dev;
173}
174
175/*----------------------------------------------------------------------*/
176
177/* other /dev/gadget/$ENDPOINT files represent endpoints */
178enum ep_state {
179 STATE_EP_DISABLED = 0,
180 STATE_EP_READY,
1da177e4
LT
181 STATE_EP_ENABLED,
182 STATE_EP_UNBOUND,
183};
184
185struct ep_data {
a79df50b 186 struct mutex lock;
1da177e4
LT
187 enum ep_state state;
188 atomic_t count;
189 struct dev_data *dev;
190 /* must hold dev->lock before accessing ep or req */
191 struct usb_ep *ep;
192 struct usb_request *req;
193 ssize_t status;
194 char name [16];
195 struct usb_endpoint_descriptor desc, hs_desc;
196 struct list_head epfiles;
197 wait_queue_head_t wait;
198 struct dentry *dentry;
199 struct inode *inode;
200};
201
202static inline void get_ep (struct ep_data *data)
203{
204 atomic_inc (&data->count);
205}
206
207static void put_ep (struct ep_data *data)
208{
209 if (likely (!atomic_dec_and_test (&data->count)))
210 return;
211 put_dev (data->dev);
212 /* needs no more cleanup */
213 BUG_ON (!list_empty (&data->epfiles));
214 BUG_ON (waitqueue_active (&data->wait));
1da177e4
LT
215 kfree (data);
216}
217
218/*----------------------------------------------------------------------*/
219
220/* most "how to use the hardware" policy choices are in userspace:
221 * mapping endpoint roles (which the driver needs) to the capabilities
222 * which the usb controller has. most of those capabilities are exposed
223 * implicitly, starting with the driver name and then endpoint names.
224 */
225
226static const char *CHIP;
227
228/*----------------------------------------------------------------------*/
229
230/* NOTE: don't use dev_printk calls before binding to the gadget
231 * at the end of ep0 configuration, or after unbind.
232 */
233
234/* too wordy: dev_printk(level , &(d)->gadget->dev , fmt , ## args) */
235#define xprintk(d,level,fmt,args...) \
236 printk(level "%s: " fmt , shortname , ## args)
237
238#ifdef DEBUG
239#define DBG(dev,fmt,args...) \
240 xprintk(dev , KERN_DEBUG , fmt , ## args)
241#else
242#define DBG(dev,fmt,args...) \
243 do { } while (0)
244#endif /* DEBUG */
245
a4e3ef55 246#ifdef VERBOSE_DEBUG
1da177e4
LT
247#define VDEBUG DBG
248#else
249#define VDEBUG(dev,fmt,args...) \
250 do { } while (0)
251#endif /* DEBUG */
252
253#define ERROR(dev,fmt,args...) \
254 xprintk(dev , KERN_ERR , fmt , ## args)
1da177e4
LT
255#define INFO(dev,fmt,args...) \
256 xprintk(dev , KERN_INFO , fmt , ## args)
257
258
259/*----------------------------------------------------------------------*/
260
261/* SYNCHRONOUS ENDPOINT OPERATIONS (bulk/intr/iso)
262 *
263 * After opening, configure non-control endpoints. Then use normal
264 * stream read() and write() requests; and maybe ioctl() to get more
093cf723 265 * precise FIFO status when recovering from cancellation.
1da177e4
LT
266 */
267
268static void epio_complete (struct usb_ep *ep, struct usb_request *req)
269{
270 struct ep_data *epdata = ep->driver_data;
271
272 if (!req->context)
273 return;
274 if (req->status)
275 epdata->status = req->status;
276 else
277 epdata->status = req->actual;
278 complete ((struct completion *)req->context);
279}
280
281/* tasklock endpoint, returning when it's connected.
282 * still need dev->lock to use epdata->ep.
283 */
284static int
285get_ready_ep (unsigned f_flags, struct ep_data *epdata)
286{
287 int val;
288
289 if (f_flags & O_NONBLOCK) {
a79df50b 290 if (!mutex_trylock(&epdata->lock))
1da177e4
LT
291 goto nonblock;
292 if (epdata->state != STATE_EP_ENABLED) {
a79df50b 293 mutex_unlock(&epdata->lock);
1da177e4
LT
294nonblock:
295 val = -EAGAIN;
296 } else
297 val = 0;
298 return val;
299 }
300
a79df50b
TG
301 val = mutex_lock_interruptible(&epdata->lock);
302 if (val < 0)
1da177e4 303 return val;
511779fd 304
1da177e4
LT
305 switch (epdata->state) {
306 case STATE_EP_ENABLED:
307 break;
1da177e4
LT
308 // case STATE_EP_DISABLED: /* "can't happen" */
309 // case STATE_EP_READY: /* "can't happen" */
310 default: /* error! */
311 pr_debug ("%s: ep %p not available, state %d\n",
312 shortname, epdata, epdata->state);
313 // FALLTHROUGH
314 case STATE_EP_UNBOUND: /* clean disconnect */
315 val = -ENODEV;
a79df50b 316 mutex_unlock(&epdata->lock);
1da177e4
LT
317 }
318 return val;
319}
320
321static ssize_t
322ep_io (struct ep_data *epdata, void *buf, unsigned len)
323{
6e9a4738 324 DECLARE_COMPLETION_ONSTACK (done);
1da177e4
LT
325 int value;
326
327 spin_lock_irq (&epdata->dev->lock);
328 if (likely (epdata->ep != NULL)) {
329 struct usb_request *req = epdata->req;
330
331 req->context = &done;
332 req->complete = epio_complete;
333 req->buf = buf;
334 req->length = len;
335 value = usb_ep_queue (epdata->ep, req, GFP_ATOMIC);
336 } else
337 value = -ENODEV;
338 spin_unlock_irq (&epdata->dev->lock);
339
340 if (likely (value == 0)) {
341 value = wait_event_interruptible (done.wait, done.done);
342 if (value != 0) {
343 spin_lock_irq (&epdata->dev->lock);
344 if (likely (epdata->ep != NULL)) {
345 DBG (epdata->dev, "%s i/o interrupted\n",
346 epdata->name);
347 usb_ep_dequeue (epdata->ep, epdata->req);
348 spin_unlock_irq (&epdata->dev->lock);
349
350 wait_event (done.wait, done.done);
351 if (epdata->status == -ECONNRESET)
352 epdata->status = -EINTR;
353 } else {
354 spin_unlock_irq (&epdata->dev->lock);
355
356 DBG (epdata->dev, "endpoint gone\n");
357 epdata->status = -ENODEV;
358 }
359 }
360 return epdata->status;
361 }
362 return value;
363}
364
365
366/* handle a synchronous OUT bulk/intr/iso transfer */
367static ssize_t
368ep_read (struct file *fd, char __user *buf, size_t len, loff_t *ptr)
369{
370 struct ep_data *data = fd->private_data;
371 void *kbuf;
372 ssize_t value;
373
374 if ((value = get_ready_ep (fd->f_flags, data)) < 0)
375 return value;
376
377 /* halt any endpoint by doing a "wrong direction" i/o call */
fa4c86a0 378 if (usb_endpoint_dir_in(&data->desc)) {
00cc7a5f
AK
379 if (usb_endpoint_xfer_isoc(&data->desc)) {
380 mutex_unlock(&data->lock);
1da177e4 381 return -EINVAL;
00cc7a5f 382 }
1da177e4
LT
383 DBG (data->dev, "%s halt\n", data->name);
384 spin_lock_irq (&data->dev->lock);
385 if (likely (data->ep != NULL))
386 usb_ep_set_halt (data->ep);
387 spin_unlock_irq (&data->dev->lock);
a79df50b 388 mutex_unlock(&data->lock);
1da177e4
LT
389 return -EBADMSG;
390 }
391
392 /* FIXME readahead for O_NONBLOCK and poll(); careful with ZLPs */
393
394 value = -ENOMEM;
e94b1766 395 kbuf = kmalloc (len, GFP_KERNEL);
1da177e4
LT
396 if (unlikely (!kbuf))
397 goto free1;
398
399 value = ep_io (data, kbuf, len);
1bbc1696
DB
400 VDEBUG (data->dev, "%s read %zu OUT, status %d\n",
401 data->name, len, (int) value);
1da177e4
LT
402 if (value >= 0 && copy_to_user (buf, kbuf, value))
403 value = -EFAULT;
404
405free1:
a79df50b 406 mutex_unlock(&data->lock);
1da177e4
LT
407 kfree (kbuf);
408 return value;
409}
410
411/* handle a synchronous IN bulk/intr/iso transfer */
412static ssize_t
413ep_write (struct file *fd, const char __user *buf, size_t len, loff_t *ptr)
414{
415 struct ep_data *data = fd->private_data;
416 void *kbuf;
417 ssize_t value;
418
419 if ((value = get_ready_ep (fd->f_flags, data)) < 0)
420 return value;
421
422 /* halt any endpoint by doing a "wrong direction" i/o call */
fa4c86a0 423 if (!usb_endpoint_dir_in(&data->desc)) {
38981158
AK
424 if (usb_endpoint_xfer_isoc(&data->desc)) {
425 mutex_unlock(&data->lock);
1da177e4 426 return -EINVAL;
38981158 427 }
1da177e4
LT
428 DBG (data->dev, "%s halt\n", data->name);
429 spin_lock_irq (&data->dev->lock);
430 if (likely (data->ep != NULL))
431 usb_ep_set_halt (data->ep);
432 spin_unlock_irq (&data->dev->lock);
a79df50b 433 mutex_unlock(&data->lock);
1da177e4
LT
434 return -EBADMSG;
435 }
436
437 /* FIXME writebehind for O_NONBLOCK and poll(), qlen = 1 */
438
439 value = -ENOMEM;
e94b1766 440 kbuf = kmalloc (len, GFP_KERNEL);
1da177e4
LT
441 if (!kbuf)
442 goto free1;
443 if (copy_from_user (kbuf, buf, len)) {
444 value = -EFAULT;
445 goto free1;
446 }
447
448 value = ep_io (data, kbuf, len);
1bbc1696
DB
449 VDEBUG (data->dev, "%s write %zu IN, status %d\n",
450 data->name, len, (int) value);
1da177e4 451free1:
a79df50b 452 mutex_unlock(&data->lock);
1da177e4
LT
453 kfree (kbuf);
454 return value;
455}
456
457static int
458ep_release (struct inode *inode, struct file *fd)
459{
460 struct ep_data *data = fd->private_data;
ba307f58
MS
461 int value;
462
a79df50b
TG
463 value = mutex_lock_interruptible(&data->lock);
464 if (value < 0)
ba307f58 465 return value;
1da177e4
LT
466
467 /* clean up if this can be reopened */
468 if (data->state != STATE_EP_UNBOUND) {
469 data->state = STATE_EP_DISABLED;
470 data->desc.bDescriptorType = 0;
471 data->hs_desc.bDescriptorType = 0;
4809ecc2 472 usb_ep_disable(data->ep);
1da177e4 473 }
a79df50b 474 mutex_unlock(&data->lock);
1da177e4
LT
475 put_ep (data);
476 return 0;
477}
478
44c389a0 479static long ep_ioctl(struct file *fd, unsigned code, unsigned long value)
1da177e4
LT
480{
481 struct ep_data *data = fd->private_data;
482 int status;
483
484 if ((status = get_ready_ep (fd->f_flags, data)) < 0)
485 return status;
486
487 spin_lock_irq (&data->dev->lock);
488 if (likely (data->ep != NULL)) {
489 switch (code) {
490 case GADGETFS_FIFO_STATUS:
491 status = usb_ep_fifo_status (data->ep);
492 break;
493 case GADGETFS_FIFO_FLUSH:
494 usb_ep_fifo_flush (data->ep);
495 break;
496 case GADGETFS_CLEAR_HALT:
497 status = usb_ep_clear_halt (data->ep);
498 break;
499 default:
500 status = -ENOTTY;
501 }
502 } else
503 status = -ENODEV;
504 spin_unlock_irq (&data->dev->lock);
a79df50b 505 mutex_unlock(&data->lock);
1da177e4
LT
506 return status;
507}
508
509/*----------------------------------------------------------------------*/
510
511/* ASYNCHRONOUS ENDPOINT I/O OPERATIONS (bulk/intr/iso) */
512
513struct kiocb_priv {
514 struct usb_request *req;
515 struct ep_data *epdata;
516 void *buf;
027445c3
BP
517 const struct iovec *iv;
518 unsigned long nr_segs;
1da177e4
LT
519 unsigned actual;
520};
521
522static int ep_aio_cancel(struct kiocb *iocb, struct io_event *e)
523{
524 struct kiocb_priv *priv = iocb->private;
525 struct ep_data *epdata;
526 int value;
527
528 local_irq_disable();
529 epdata = priv->epdata;
530 // spin_lock(&epdata->dev->lock);
531 kiocbSetCancelled(iocb);
532 if (likely(epdata && epdata->ep && priv->req))
533 value = usb_ep_dequeue (epdata->ep, priv->req);
534 else
535 value = -EINVAL;
536 // spin_unlock(&epdata->dev->lock);
537 local_irq_enable();
538
539 aio_put_req(iocb);
540 return value;
541}
542
543static ssize_t ep_aio_read_retry(struct kiocb *iocb)
544{
545 struct kiocb_priv *priv = iocb->private;
027445c3 546 ssize_t len, total;
50f97a1f 547 void *to_copy;
027445c3
BP
548 int i;
549
2505107d
DB
550 /* we "retry" to get the right mm context for this: */
551
552 /* copy stuff into user buffers */
553 total = priv->actual;
554 len = 0;
50f97a1f 555 to_copy = priv->buf;
2505107d
DB
556 for (i=0; i < priv->nr_segs; i++) {
557 ssize_t this = min((ssize_t)(priv->iv[i].iov_len), total);
558
50f97a1f 559 if (copy_to_user(priv->iv[i].iov_base, to_copy, this)) {
2505107d
DB
560 if (len == 0)
561 len = -EFAULT;
562 break;
563 }
564
565 total -= this;
566 len += this;
50f97a1f 567 to_copy += this;
2505107d
DB
568 if (total == 0)
569 break;
570 }
571 kfree(priv->buf);
572 kfree(priv);
2505107d 573 return len;
1da177e4
LT
574}
575
576static void ep_aio_complete(struct usb_ep *ep, struct usb_request *req)
577{
578 struct kiocb *iocb = req->context;
579 struct kiocb_priv *priv = iocb->private;
580 struct ep_data *epdata = priv->epdata;
581
582 /* lock against disconnect (and ideally, cancel) */
583 spin_lock(&epdata->dev->lock);
584 priv->req = NULL;
585 priv->epdata = NULL;
49631ca7
AS
586
587 /* if this was a write or a read returning no data then we
588 * don't need to copy anything to userspace, so we can
589 * complete the aio request immediately.
590 */
591 if (priv->iv == NULL || unlikely(req->actual == 0)) {
1da177e4
LT
592 kfree(req->buf);
593 kfree(priv);
594 iocb->private = NULL;
595 /* aio_complete() reports bytes-transferred _and_ faults */
49631ca7 596 aio_complete(iocb, req->actual ? req->actual : req->status,
1da177e4
LT
597 req->status);
598 } else {
599 /* retry() won't report both; so we hide some faults */
600 if (unlikely(0 != req->status))
601 DBG(epdata->dev, "%s fault %d len %d\n",
602 ep->name, req->status, req->actual);
603
604 priv->buf = req->buf;
605 priv->actual = req->actual;
606 kick_iocb(iocb);
607 }
608 spin_unlock(&epdata->dev->lock);
609
610 usb_ep_free_request(ep, req);
611 put_ep(epdata);
612}
613
614static ssize_t
615ep_aio_rwtail(
616 struct kiocb *iocb,
617 char *buf,
618 size_t len,
619 struct ep_data *epdata,
027445c3 620 const struct iovec *iv,
2505107d 621 unsigned long nr_segs
1da177e4
LT
622)
623{
83196b52 624 struct kiocb_priv *priv;
1da177e4
LT
625 struct usb_request *req;
626 ssize_t value;
627
628 priv = kmalloc(sizeof *priv, GFP_KERNEL);
629 if (!priv) {
630 value = -ENOMEM;
631fail:
632 kfree(buf);
633 return value;
634 }
635 iocb->private = priv;
027445c3
BP
636 priv->iv = iv;
637 priv->nr_segs = nr_segs;
1da177e4
LT
638
639 value = get_ready_ep(iocb->ki_filp->f_flags, epdata);
640 if (unlikely(value < 0)) {
641 kfree(priv);
642 goto fail;
643 }
644
645 iocb->ki_cancel = ep_aio_cancel;
646 get_ep(epdata);
647 priv->epdata = epdata;
648 priv->actual = 0;
649
650 /* each kiocb is coupled to one usb_request, but we can't
651 * allocate or submit those if the host disconnected.
652 */
653 spin_lock_irq(&epdata->dev->lock);
654 if (likely(epdata->ep)) {
655 req = usb_ep_alloc_request(epdata->ep, GFP_ATOMIC);
656 if (likely(req)) {
657 priv->req = req;
658 req->buf = buf;
659 req->length = len;
660 req->complete = ep_aio_complete;
661 req->context = iocb;
662 value = usb_ep_queue(epdata->ep, req, GFP_ATOMIC);
663 if (unlikely(0 != value))
664 usb_ep_free_request(epdata->ep, req);
665 } else
666 value = -EAGAIN;
667 } else
668 value = -ENODEV;
669 spin_unlock_irq(&epdata->dev->lock);
670
a79df50b 671 mutex_unlock(&epdata->lock);
1da177e4
LT
672
673 if (unlikely(value)) {
674 kfree(priv);
675 put_ep(epdata);
676 } else
027445c3 677 value = (iv ? -EIOCBRETRY : -EIOCBQUEUED);
1da177e4
LT
678 return value;
679}
680
681static ssize_t
027445c3
BP
682ep_aio_read(struct kiocb *iocb, const struct iovec *iov,
683 unsigned long nr_segs, loff_t o)
1da177e4
LT
684{
685 struct ep_data *epdata = iocb->ki_filp->private_data;
686 char *buf;
687
fa4c86a0 688 if (unlikely(usb_endpoint_dir_in(&epdata->desc)))
1da177e4 689 return -EINVAL;
027445c3
BP
690
691 buf = kmalloc(iocb->ki_left, GFP_KERNEL);
1da177e4
LT
692 if (unlikely(!buf))
693 return -ENOMEM;
027445c3 694
1da177e4 695 iocb->ki_retry = ep_aio_read_retry;
027445c3 696 return ep_aio_rwtail(iocb, buf, iocb->ki_left, epdata, iov, nr_segs);
1da177e4
LT
697}
698
699static ssize_t
027445c3
BP
700ep_aio_write(struct kiocb *iocb, const struct iovec *iov,
701 unsigned long nr_segs, loff_t o)
1da177e4
LT
702{
703 struct ep_data *epdata = iocb->ki_filp->private_data;
704 char *buf;
027445c3
BP
705 size_t len = 0;
706 int i = 0;
1da177e4 707
fa4c86a0 708 if (unlikely(!usb_endpoint_dir_in(&epdata->desc)))
1da177e4 709 return -EINVAL;
027445c3
BP
710
711 buf = kmalloc(iocb->ki_left, GFP_KERNEL);
1da177e4
LT
712 if (unlikely(!buf))
713 return -ENOMEM;
027445c3
BP
714
715 for (i=0; i < nr_segs; i++) {
716 if (unlikely(copy_from_user(&buf[len], iov[i].iov_base,
717 iov[i].iov_len) != 0)) {
718 kfree(buf);
719 return -EFAULT;
720 }
721 len += iov[i].iov_len;
1da177e4 722 }
027445c3 723 return ep_aio_rwtail(iocb, buf, len, epdata, NULL, 0);
1da177e4
LT
724}
725
726/*----------------------------------------------------------------------*/
727
728/* used after endpoint configuration */
066202dd 729static const struct file_operations ep_io_operations = {
1da177e4
LT
730 .owner = THIS_MODULE,
731 .llseek = no_llseek,
732
733 .read = ep_read,
734 .write = ep_write,
44c389a0 735 .unlocked_ioctl = ep_ioctl,
1da177e4
LT
736 .release = ep_release,
737
738 .aio_read = ep_aio_read,
739 .aio_write = ep_aio_write,
740};
741
742/* ENDPOINT INITIALIZATION
743 *
744 * fd = open ("/dev/gadget/$ENDPOINT", O_RDWR)
745 * status = write (fd, descriptors, sizeof descriptors)
746 *
747 * That write establishes the endpoint configuration, configuring
748 * the controller to process bulk, interrupt, or isochronous transfers
749 * at the right maxpacket size, and so on.
750 *
751 * The descriptors are message type 1, identified by a host order u32
752 * at the beginning of what's written. Descriptor order is: full/low
753 * speed descriptor, then optional high speed descriptor.
754 */
755static ssize_t
756ep_config (struct file *fd, const char __user *buf, size_t len, loff_t *ptr)
757{
758 struct ep_data *data = fd->private_data;
759 struct usb_ep *ep;
760 u32 tag;
8a7471ab 761 int value, length = len;
1da177e4 762
a79df50b
TG
763 value = mutex_lock_interruptible(&data->lock);
764 if (value < 0)
1da177e4
LT
765 return value;
766
767 if (data->state != STATE_EP_READY) {
768 value = -EL2HLT;
769 goto fail;
770 }
771
772 value = len;
773 if (len < USB_DT_ENDPOINT_SIZE + 4)
774 goto fail0;
775
776 /* we might need to change message format someday */
777 if (copy_from_user (&tag, buf, 4)) {
778 goto fail1;
779 }
780 if (tag != 1) {
781 DBG(data->dev, "config %s, bad tag %d\n", data->name, tag);
782 goto fail0;
783 }
784 buf += 4;
785 len -= 4;
786
787 /* NOTE: audio endpoint extensions not accepted here;
788 * just don't include the extra bytes.
789 */
790
791 /* full/low speed descriptor, then high speed */
792 if (copy_from_user (&data->desc, buf, USB_DT_ENDPOINT_SIZE)) {
793 goto fail1;
794 }
795 if (data->desc.bLength != USB_DT_ENDPOINT_SIZE
796 || data->desc.bDescriptorType != USB_DT_ENDPOINT)
797 goto fail0;
798 if (len != USB_DT_ENDPOINT_SIZE) {
799 if (len != 2 * USB_DT_ENDPOINT_SIZE)
800 goto fail0;
801 if (copy_from_user (&data->hs_desc, buf + USB_DT_ENDPOINT_SIZE,
802 USB_DT_ENDPOINT_SIZE)) {
803 goto fail1;
804 }
805 if (data->hs_desc.bLength != USB_DT_ENDPOINT_SIZE
806 || data->hs_desc.bDescriptorType
807 != USB_DT_ENDPOINT) {
808 DBG(data->dev, "config %s, bad hs length or type\n",
809 data->name);
810 goto fail0;
811 }
812 }
1da177e4
LT
813
814 spin_lock_irq (&data->dev->lock);
815 if (data->dev->state == STATE_DEV_UNBOUND) {
816 value = -ENOENT;
817 goto gone;
818 } else if ((ep = data->ep) == NULL) {
819 value = -ENODEV;
820 goto gone;
821 }
822 switch (data->dev->gadget->speed) {
823 case USB_SPEED_LOW:
824 case USB_SPEED_FULL:
72c973dd
TB
825 ep->desc = &data->desc;
826 value = usb_ep_enable(ep);
1da177e4
LT
827 if (value == 0)
828 data->state = STATE_EP_ENABLED;
829 break;
1da177e4
LT
830 case USB_SPEED_HIGH:
831 /* fails if caller didn't provide that descriptor... */
72c973dd
TB
832 ep->desc = &data->hs_desc;
833 value = usb_ep_enable(ep);
1da177e4
LT
834 if (value == 0)
835 data->state = STATE_EP_ENABLED;
836 break;
1da177e4 837 default:
511779fd 838 DBG(data->dev, "unconnected, %s init abandoned\n",
1da177e4 839 data->name);
511779fd 840 value = -EINVAL;
1da177e4 841 }
8a7471ab 842 if (value == 0) {
1da177e4 843 fd->f_op = &ep_io_operations;
8a7471ab
MS
844 value = length;
845 }
1da177e4
LT
846gone:
847 spin_unlock_irq (&data->dev->lock);
848 if (value < 0) {
849fail:
850 data->desc.bDescriptorType = 0;
851 data->hs_desc.bDescriptorType = 0;
852 }
a79df50b 853 mutex_unlock(&data->lock);
1da177e4
LT
854 return value;
855fail0:
856 value = -EINVAL;
857 goto fail;
858fail1:
859 value = -EFAULT;
860 goto fail;
861}
862
863static int
864ep_open (struct inode *inode, struct file *fd)
865{
8e18e294 866 struct ep_data *data = inode->i_private;
1da177e4
LT
867 int value = -EBUSY;
868
a79df50b 869 if (mutex_lock_interruptible(&data->lock) != 0)
1da177e4
LT
870 return -EINTR;
871 spin_lock_irq (&data->dev->lock);
872 if (data->dev->state == STATE_DEV_UNBOUND)
873 value = -ENOENT;
874 else if (data->state == STATE_EP_DISABLED) {
875 value = 0;
876 data->state = STATE_EP_READY;
877 get_ep (data);
878 fd->private_data = data;
879 VDEBUG (data->dev, "%s ready\n", data->name);
880 } else
881 DBG (data->dev, "%s state %d\n",
882 data->name, data->state);
883 spin_unlock_irq (&data->dev->lock);
a79df50b 884 mutex_unlock(&data->lock);
1da177e4
LT
885 return value;
886}
887
888/* used before endpoint configuration */
066202dd 889static const struct file_operations ep_config_operations = {
1da177e4
LT
890 .owner = THIS_MODULE,
891 .llseek = no_llseek,
892
893 .open = ep_open,
894 .write = ep_config,
895 .release = ep_release,
896};
897
898/*----------------------------------------------------------------------*/
899
900/* EP0 IMPLEMENTATION can be partly in userspace.
901 *
902 * Drivers that use this facility receive various events, including
903 * control requests the kernel doesn't handle. Drivers that don't
904 * use this facility may be too simple-minded for real applications.
905 */
906
907static inline void ep0_readable (struct dev_data *dev)
908{
909 wake_up (&dev->wait);
910 kill_fasync (&dev->fasync, SIGIO, POLL_IN);
911}
912
913static void clean_req (struct usb_ep *ep, struct usb_request *req)
914{
915 struct dev_data *dev = ep->driver_data;
916
917 if (req->buf != dev->rbuf) {
9d8bab58 918 kfree(req->buf);
1da177e4 919 req->buf = dev->rbuf;
1da177e4
LT
920 }
921 req->complete = epio_complete;
922 dev->setup_out_ready = 0;
923}
924
925static void ep0_complete (struct usb_ep *ep, struct usb_request *req)
926{
927 struct dev_data *dev = ep->driver_data;
5b89db02 928 unsigned long flags;
1da177e4
LT
929 int free = 1;
930
931 /* for control OUT, data must still get to userspace */
5b89db02 932 spin_lock_irqsave(&dev->lock, flags);
1da177e4
LT
933 if (!dev->setup_in) {
934 dev->setup_out_error = (req->status != 0);
935 if (!dev->setup_out_error)
936 free = 0;
937 dev->setup_out_ready = 1;
938 ep0_readable (dev);
7489d149 939 }
1da177e4
LT
940
941 /* clean up as appropriate */
942 if (free && req->buf != &dev->rbuf)
943 clean_req (ep, req);
944 req->complete = epio_complete;
5b89db02 945 spin_unlock_irqrestore(&dev->lock, flags);
1da177e4
LT
946}
947
948static int setup_req (struct usb_ep *ep, struct usb_request *req, u16 len)
949{
950 struct dev_data *dev = ep->driver_data;
951
952 if (dev->setup_out_ready) {
953 DBG (dev, "ep0 request busy!\n");
954 return -EBUSY;
955 }
956 if (len > sizeof (dev->rbuf))
9d8bab58 957 req->buf = kmalloc(len, GFP_ATOMIC);
a9475226 958 if (req->buf == NULL) {
1da177e4
LT
959 req->buf = dev->rbuf;
960 return -ENOMEM;
961 }
962 req->complete = ep0_complete;
963 req->length = len;
97906369 964 req->zero = 0;
1da177e4
LT
965 return 0;
966}
967
968static ssize_t
969ep0_read (struct file *fd, char __user *buf, size_t len, loff_t *ptr)
970{
971 struct dev_data *dev = fd->private_data;
972 ssize_t retval;
973 enum ep0_state state;
974
975 spin_lock_irq (&dev->lock);
976
977 /* report fd mode change before acting on it */
978 if (dev->setup_abort) {
979 dev->setup_abort = 0;
980 retval = -EIDRM;
981 goto done;
982 }
983
984 /* control DATA stage */
7489d149 985 if ((state = dev->state) == STATE_DEV_SETUP) {
1da177e4
LT
986
987 if (dev->setup_in) { /* stall IN */
988 VDEBUG(dev, "ep0in stall\n");
989 (void) usb_ep_set_halt (dev->gadget->ep0);
990 retval = -EL2HLT;
7489d149 991 dev->state = STATE_DEV_CONNECTED;
1da177e4
LT
992
993 } else if (len == 0) { /* ack SET_CONFIGURATION etc */
994 struct usb_ep *ep = dev->gadget->ep0;
995 struct usb_request *req = dev->req;
996
997 if ((retval = setup_req (ep, req, 0)) == 0)
998 retval = usb_ep_queue (ep, req, GFP_ATOMIC);
7489d149 999 dev->state = STATE_DEV_CONNECTED;
1da177e4
LT
1000
1001 /* assume that was SET_CONFIGURATION */
1002 if (dev->current_config) {
1003 unsigned power;
a4e3ef55
DB
1004
1005 if (gadget_is_dualspeed(dev->gadget)
1006 && (dev->gadget->speed
1007 == USB_SPEED_HIGH))
1da177e4
LT
1008 power = dev->hs_config->bMaxPower;
1009 else
1da177e4
LT
1010 power = dev->config->bMaxPower;
1011 usb_gadget_vbus_draw(dev->gadget, 2 * power);
1012 }
1013
1014 } else { /* collect OUT data */
1015 if ((fd->f_flags & O_NONBLOCK) != 0
1016 && !dev->setup_out_ready) {
1017 retval = -EAGAIN;
1018 goto done;
1019 }
1020 spin_unlock_irq (&dev->lock);
1021 retval = wait_event_interruptible (dev->wait,
1022 dev->setup_out_ready != 0);
1023
1024 /* FIXME state could change from under us */
1025 spin_lock_irq (&dev->lock);
1026 if (retval)
1027 goto done;
5b89db02
DB
1028
1029 if (dev->state != STATE_DEV_SETUP) {
1030 retval = -ECANCELED;
1031 goto done;
1032 }
1033 dev->state = STATE_DEV_CONNECTED;
1034
1da177e4
LT
1035 if (dev->setup_out_error)
1036 retval = -EIO;
1037 else {
1038 len = min (len, (size_t)dev->req->actual);
1039// FIXME don't call this with the spinlock held ...
997694de 1040 if (copy_to_user (buf, dev->req->buf, len))
1da177e4 1041 retval = -EFAULT;
85b4b3c8
TF
1042 else
1043 retval = len;
1da177e4
LT
1044 clean_req (dev->gadget->ep0, dev->req);
1045 /* NOTE userspace can't yet choose to stall */
1046 }
1047 }
1048 goto done;
1049 }
1050
1051 /* else normal: return event data */
1052 if (len < sizeof dev->event [0]) {
1053 retval = -EINVAL;
1054 goto done;
1055 }
1056 len -= len % sizeof (struct usb_gadgetfs_event);
1057 dev->usermode_setup = 1;
1058
1059scan:
1060 /* return queued events right away */
1061 if (dev->ev_next != 0) {
1062 unsigned i, n;
1da177e4 1063
1da177e4 1064 n = len / sizeof (struct usb_gadgetfs_event);
0864c7a9
DB
1065 if (dev->ev_next < n)
1066 n = dev->ev_next;
1da177e4 1067
0864c7a9 1068 /* ep0 i/o has special semantics during STATE_DEV_SETUP */
1da177e4
LT
1069 for (i = 0; i < n; i++) {
1070 if (dev->event [i].type == GADGETFS_SETUP) {
0864c7a9
DB
1071 dev->state = STATE_DEV_SETUP;
1072 n = i + 1;
1da177e4
LT
1073 break;
1074 }
1075 }
1076 spin_unlock_irq (&dev->lock);
0864c7a9 1077 len = n * sizeof (struct usb_gadgetfs_event);
1da177e4
LT
1078 if (copy_to_user (buf, &dev->event, len))
1079 retval = -EFAULT;
1080 else
1081 retval = len;
1082 if (len > 0) {
1da177e4
LT
1083 /* NOTE this doesn't guard against broken drivers;
1084 * concurrent ep0 readers may lose events.
1085 */
1086 spin_lock_irq (&dev->lock);
0864c7a9
DB
1087 if (dev->ev_next > n) {
1088 memmove(&dev->event[0], &dev->event[n],
1da177e4 1089 sizeof (struct usb_gadgetfs_event)
0864c7a9
DB
1090 * (dev->ev_next - n));
1091 }
1092 dev->ev_next -= n;
1da177e4
LT
1093 spin_unlock_irq (&dev->lock);
1094 }
1095 return retval;
1096 }
1097 if (fd->f_flags & O_NONBLOCK) {
1098 retval = -EAGAIN;
1099 goto done;
1100 }
1101
1102 switch (state) {
1103 default:
441b62c1 1104 DBG (dev, "fail %s, state %d\n", __func__, state);
1da177e4
LT
1105 retval = -ESRCH;
1106 break;
7489d149
DB
1107 case STATE_DEV_UNCONNECTED:
1108 case STATE_DEV_CONNECTED:
1da177e4 1109 spin_unlock_irq (&dev->lock);
441b62c1 1110 DBG (dev, "%s wait\n", __func__);
1da177e4
LT
1111
1112 /* wait for events */
1113 retval = wait_event_interruptible (dev->wait,
1114 dev->ev_next != 0);
1115 if (retval < 0)
1116 return retval;
1117 spin_lock_irq (&dev->lock);
1118 goto scan;
1119 }
1120
1121done:
1122 spin_unlock_irq (&dev->lock);
1123 return retval;
1124}
1125
1126static struct usb_gadgetfs_event *
1127next_event (struct dev_data *dev, enum usb_gadgetfs_event_type type)
1128{
1129 struct usb_gadgetfs_event *event;
1130 unsigned i;
1131
1132 switch (type) {
1133 /* these events purge the queue */
1134 case GADGETFS_DISCONNECT:
7489d149 1135 if (dev->state == STATE_DEV_SETUP)
1da177e4
LT
1136 dev->setup_abort = 1;
1137 // FALL THROUGH
1138 case GADGETFS_CONNECT:
1139 dev->ev_next = 0;
1140 break;
1141 case GADGETFS_SETUP: /* previous request timed out */
1142 case GADGETFS_SUSPEND: /* same effect */
1143 /* these events can't be repeated */
1144 for (i = 0; i != dev->ev_next; i++) {
1145 if (dev->event [i].type != type)
1146 continue;
0864c7a9 1147 DBG(dev, "discard old event[%d] %d\n", i, type);
1da177e4
LT
1148 dev->ev_next--;
1149 if (i == dev->ev_next)
1150 break;
1151 /* indices start at zero, for simplicity */
1152 memmove (&dev->event [i], &dev->event [i + 1],
1153 sizeof (struct usb_gadgetfs_event)
1154 * (dev->ev_next - i));
1155 }
1156 break;
1157 default:
1158 BUG ();
1159 }
0864c7a9 1160 VDEBUG(dev, "event[%d] = %d\n", dev->ev_next, type);
1da177e4
LT
1161 event = &dev->event [dev->ev_next++];
1162 BUG_ON (dev->ev_next > N_EVENT);
1da177e4
LT
1163 memset (event, 0, sizeof *event);
1164 event->type = type;
1165 return event;
1166}
1167
1168static ssize_t
1169ep0_write (struct file *fd, const char __user *buf, size_t len, loff_t *ptr)
1170{
1171 struct dev_data *dev = fd->private_data;
1172 ssize_t retval = -ESRCH;
1173
1174 spin_lock_irq (&dev->lock);
1175
1176 /* report fd mode change before acting on it */
1177 if (dev->setup_abort) {
1178 dev->setup_abort = 0;
1179 retval = -EIDRM;
1180
1181 /* data and/or status stage for control request */
7489d149 1182 } else if (dev->state == STATE_DEV_SETUP) {
1da177e4
LT
1183
1184 /* IN DATA+STATUS caller makes len <= wLength */
1185 if (dev->setup_in) {
1186 retval = setup_req (dev->gadget->ep0, dev->req, len);
1187 if (retval == 0) {
5b89db02 1188 dev->state = STATE_DEV_CONNECTED;
1da177e4
LT
1189 spin_unlock_irq (&dev->lock);
1190 if (copy_from_user (dev->req->buf, buf, len))
1191 retval = -EFAULT;
97906369
AS
1192 else {
1193 if (len < dev->setup_wLength)
1194 dev->req->zero = 1;
1da177e4
LT
1195 retval = usb_ep_queue (
1196 dev->gadget->ep0, dev->req,
1197 GFP_KERNEL);
97906369 1198 }
1da177e4
LT
1199 if (retval < 0) {
1200 spin_lock_irq (&dev->lock);
1201 clean_req (dev->gadget->ep0, dev->req);
1202 spin_unlock_irq (&dev->lock);
1203 } else
1204 retval = len;
1205
1206 return retval;
1207 }
1208
1209 /* can stall some OUT transfers */
1210 } else if (dev->setup_can_stall) {
1211 VDEBUG(dev, "ep0out stall\n");
1212 (void) usb_ep_set_halt (dev->gadget->ep0);
1213 retval = -EL2HLT;
7489d149 1214 dev->state = STATE_DEV_CONNECTED;
1da177e4
LT
1215 } else {
1216 DBG(dev, "bogus ep0out stall!\n");
1217 }
1218 } else
441b62c1 1219 DBG (dev, "fail %s, state %d\n", __func__, dev->state);
1da177e4
LT
1220
1221 spin_unlock_irq (&dev->lock);
1222 return retval;
1223}
1224
1225static int
1226ep0_fasync (int f, struct file *fd, int on)
1227{
1228 struct dev_data *dev = fd->private_data;
1229 // caller must F_SETOWN before signal delivery happens
441b62c1 1230 VDEBUG (dev, "%s %s\n", __func__, on ? "on" : "off");
1da177e4
LT
1231 return fasync_helper (f, fd, on, &dev->fasync);
1232}
1233
1234static struct usb_gadget_driver gadgetfs_driver;
1235
1236static int
1237dev_release (struct inode *inode, struct file *fd)
1238{
1239 struct dev_data *dev = fd->private_data;
1240
1241 /* closing ep0 === shutdown all */
1242
1243 usb_gadget_unregister_driver (&gadgetfs_driver);
1244
1245 /* at this point "good" hardware has disconnected the
1246 * device from USB; the host won't see it any more.
1247 * alternatively, all host requests will time out.
1248 */
1249
1da177e4
LT
1250 kfree (dev->buf);
1251 dev->buf = NULL;
1252 put_dev (dev);
1253
1254 /* other endpoints were all decoupled from this device */
7489d149 1255 spin_lock_irq(&dev->lock);
1da177e4 1256 dev->state = STATE_DEV_DISABLED;
7489d149 1257 spin_unlock_irq(&dev->lock);
1da177e4
LT
1258 return 0;
1259}
1260
e22fc27c
MS
1261static unsigned int
1262ep0_poll (struct file *fd, poll_table *wait)
1263{
1264 struct dev_data *dev = fd->private_data;
1265 int mask = 0;
1266
1267 poll_wait(fd, &dev->wait, wait);
1268
1269 spin_lock_irq (&dev->lock);
1270
1271 /* report fd mode change before acting on it */
1272 if (dev->setup_abort) {
1273 dev->setup_abort = 0;
1274 mask = POLLHUP;
1275 goto out;
1276 }
1277
7489d149 1278 if (dev->state == STATE_DEV_SETUP) {
e22fc27c
MS
1279 if (dev->setup_in || dev->setup_can_stall)
1280 mask = POLLOUT;
1281 } else {
1282 if (dev->ev_next != 0)
1283 mask = POLLIN;
1284 }
1285out:
1286 spin_unlock_irq(&dev->lock);
1287 return mask;
1288}
1289
44c389a0 1290static long dev_ioctl (struct file *fd, unsigned code, unsigned long value)
1da177e4
LT
1291{
1292 struct dev_data *dev = fd->private_data;
1293 struct usb_gadget *gadget = dev->gadget;
44c389a0 1294 long ret = -ENOTTY;
1da177e4 1295
1548b13b 1296 if (gadget->ops->ioctl)
44c389a0 1297 ret = gadget->ops->ioctl (gadget, code, value);
1548b13b 1298
44c389a0 1299 return ret;
1da177e4
LT
1300}
1301
1302/* used after device configuration */
066202dd 1303static const struct file_operations ep0_io_operations = {
1da177e4
LT
1304 .owner = THIS_MODULE,
1305 .llseek = no_llseek,
1306
1307 .read = ep0_read,
1308 .write = ep0_write,
1309 .fasync = ep0_fasync,
e22fc27c 1310 .poll = ep0_poll,
44c389a0 1311 .unlocked_ioctl = dev_ioctl,
1da177e4
LT
1312 .release = dev_release,
1313};
1314
1315/*----------------------------------------------------------------------*/
1316
1317/* The in-kernel gadget driver handles most ep0 issues, in particular
1318 * enumerating the single configuration (as provided from user space).
1319 *
1320 * Unrecognized ep0 requests may be handled in user space.
1321 */
1322
1da177e4
LT
1323static void make_qualifier (struct dev_data *dev)
1324{
1325 struct usb_qualifier_descriptor qual;
1326 struct usb_device_descriptor *desc;
1327
1328 qual.bLength = sizeof qual;
1329 qual.bDescriptorType = USB_DT_DEVICE_QUALIFIER;
551509d2 1330 qual.bcdUSB = cpu_to_le16 (0x0200);
1da177e4
LT
1331
1332 desc = dev->dev;
1333 qual.bDeviceClass = desc->bDeviceClass;
1334 qual.bDeviceSubClass = desc->bDeviceSubClass;
1335 qual.bDeviceProtocol = desc->bDeviceProtocol;
1336
1337 /* assumes ep0 uses the same value for both speeds ... */
765f5b83 1338 qual.bMaxPacketSize0 = dev->gadget->ep0->maxpacket;
1da177e4
LT
1339
1340 qual.bNumConfigurations = 1;
1341 qual.bRESERVED = 0;
1342
1343 memcpy (dev->rbuf, &qual, sizeof qual);
1344}
1da177e4
LT
1345
1346static int
1347config_buf (struct dev_data *dev, u8 type, unsigned index)
1348{
1349 int len;
a4e3ef55 1350 int hs = 0;
1da177e4
LT
1351
1352 /* only one configuration */
1353 if (index > 0)
1354 return -EINVAL;
1355
a4e3ef55
DB
1356 if (gadget_is_dualspeed(dev->gadget)) {
1357 hs = (dev->gadget->speed == USB_SPEED_HIGH);
1358 if (type == USB_DT_OTHER_SPEED_CONFIG)
1359 hs = !hs;
1360 }
1da177e4
LT
1361 if (hs) {
1362 dev->req->buf = dev->hs_config;
01ee7d70 1363 len = le16_to_cpu(dev->hs_config->wTotalLength);
a4e3ef55 1364 } else {
1da177e4 1365 dev->req->buf = dev->config;
01ee7d70 1366 len = le16_to_cpu(dev->config->wTotalLength);
1da177e4
LT
1367 }
1368 ((u8 *)dev->req->buf) [1] = type;
1369 return len;
1370}
1371
1372static int
1373gadgetfs_setup (struct usb_gadget *gadget, const struct usb_ctrlrequest *ctrl)
1374{
1375 struct dev_data *dev = get_gadget_data (gadget);
1376 struct usb_request *req = dev->req;
1377 int value = -EOPNOTSUPP;
1378 struct usb_gadgetfs_event *event;
1bbc1696
DB
1379 u16 w_value = le16_to_cpu(ctrl->wValue);
1380 u16 w_length = le16_to_cpu(ctrl->wLength);
1da177e4
LT
1381
1382 spin_lock (&dev->lock);
1383 dev->setup_abort = 0;
7489d149 1384 if (dev->state == STATE_DEV_UNCONNECTED) {
a4e3ef55
DB
1385 if (gadget_is_dualspeed(gadget)
1386 && gadget->speed == USB_SPEED_HIGH
1387 && dev->hs_config == NULL) {
ce46794f 1388 spin_unlock(&dev->lock);
1da177e4
LT
1389 ERROR (dev, "no high speed config??\n");
1390 return -EINVAL;
1391 }
1da177e4 1392
ce46794f 1393 dev->state = STATE_DEV_CONNECTED;
ce46794f 1394
1da177e4
LT
1395 INFO (dev, "connected\n");
1396 event = next_event (dev, GADGETFS_CONNECT);
1397 event->u.speed = gadget->speed;
1398 ep0_readable (dev);
1399
1da177e4
LT
1400 /* host may have given up waiting for response. we can miss control
1401 * requests handled lower down (device/endpoint status and features);
1402 * then ep0_{read,write} will report the wrong status. controller
1403 * driver will have aborted pending i/o.
1404 */
7489d149 1405 } else if (dev->state == STATE_DEV_SETUP)
1da177e4
LT
1406 dev->setup_abort = 1;
1407
1408 req->buf = dev->rbuf;
1da177e4
LT
1409 req->context = NULL;
1410 value = -EOPNOTSUPP;
1411 switch (ctrl->bRequest) {
1412
1413 case USB_REQ_GET_DESCRIPTOR:
1414 if (ctrl->bRequestType != USB_DIR_IN)
1415 goto unrecognized;
1416 switch (w_value >> 8) {
1417
1418 case USB_DT_DEVICE:
1419 value = min (w_length, (u16) sizeof *dev->dev);
765f5b83 1420 dev->dev->bMaxPacketSize0 = dev->gadget->ep0->maxpacket;
1da177e4
LT
1421 req->buf = dev->dev;
1422 break;
1da177e4
LT
1423 case USB_DT_DEVICE_QUALIFIER:
1424 if (!dev->hs_config)
1425 break;
1426 value = min (w_length, (u16)
1427 sizeof (struct usb_qualifier_descriptor));
1428 make_qualifier (dev);
1429 break;
1430 case USB_DT_OTHER_SPEED_CONFIG:
1431 // FALLTHROUGH
1da177e4
LT
1432 case USB_DT_CONFIG:
1433 value = config_buf (dev,
1434 w_value >> 8,
1435 w_value & 0xff);
1436 if (value >= 0)
1437 value = min (w_length, (u16) value);
1438 break;
1439 case USB_DT_STRING:
1440 goto unrecognized;
1441
1442 default: // all others are errors
1443 break;
1444 }
1445 break;
1446
1447 /* currently one config, two speeds */
1448 case USB_REQ_SET_CONFIGURATION:
1449 if (ctrl->bRequestType != 0)
12cd5b98 1450 goto unrecognized;
1da177e4
LT
1451 if (0 == (u8) w_value) {
1452 value = 0;
1453 dev->current_config = 0;
1454 usb_gadget_vbus_draw(gadget, 8 /* mA */ );
1455 // user mode expected to disable endpoints
1456 } else {
1457 u8 config, power;
a4e3ef55
DB
1458
1459 if (gadget_is_dualspeed(gadget)
1460 && gadget->speed == USB_SPEED_HIGH) {
1da177e4
LT
1461 config = dev->hs_config->bConfigurationValue;
1462 power = dev->hs_config->bMaxPower;
a4e3ef55 1463 } else {
1da177e4
LT
1464 config = dev->config->bConfigurationValue;
1465 power = dev->config->bMaxPower;
1466 }
1467
1468 if (config == (u8) w_value) {
1469 value = 0;
1470 dev->current_config = config;
1471 usb_gadget_vbus_draw(gadget, 2 * power);
1472 }
1473 }
1474
1475 /* report SET_CONFIGURATION like any other control request,
1476 * except that usermode may not stall this. the next
1477 * request mustn't be allowed start until this finishes:
1478 * endpoints and threads set up, etc.
1479 *
1480 * NOTE: older PXA hardware (before PXA 255: without UDCCFR)
1481 * has bad/racey automagic that prevents synchronizing here.
1482 * even kernel mode drivers often miss them.
1483 */
1484 if (value == 0) {
1485 INFO (dev, "configuration #%d\n", dev->current_config);
1486 if (dev->usermode_setup) {
1487 dev->setup_can_stall = 0;
1488 goto delegate;
1489 }
1490 }
1491 break;
1492
7a857620 1493#ifndef CONFIG_USB_GADGET_PXA25X
1da177e4
LT
1494 /* PXA automagically handles this request too */
1495 case USB_REQ_GET_CONFIGURATION:
1496 if (ctrl->bRequestType != 0x80)
12cd5b98 1497 goto unrecognized;
1da177e4
LT
1498 *(u8 *)req->buf = dev->current_config;
1499 value = min (w_length, (u16) 1);
1500 break;
1501#endif
1502
1503 default:
1504unrecognized:
1505 VDEBUG (dev, "%s req%02x.%02x v%04x i%04x l%d\n",
1506 dev->usermode_setup ? "delegate" : "fail",
1507 ctrl->bRequestType, ctrl->bRequest,
1508 w_value, le16_to_cpu(ctrl->wIndex), w_length);
1509
1510 /* if there's an ep0 reader, don't stall */
1511 if (dev->usermode_setup) {
1512 dev->setup_can_stall = 1;
1513delegate:
1514 dev->setup_in = (ctrl->bRequestType & USB_DIR_IN)
1515 ? 1 : 0;
97906369 1516 dev->setup_wLength = w_length;
1da177e4
LT
1517 dev->setup_out_ready = 0;
1518 dev->setup_out_error = 0;
1519 value = 0;
1520
1521 /* read DATA stage for OUT right away */
1522 if (unlikely (!dev->setup_in && w_length)) {
1523 value = setup_req (gadget->ep0, dev->req,
1524 w_length);
1525 if (value < 0)
1526 break;
1527 value = usb_ep_queue (gadget->ep0, dev->req,
1528 GFP_ATOMIC);
1529 if (value < 0) {
1530 clean_req (gadget->ep0, dev->req);
1531 break;
1532 }
1533
1534 /* we can't currently stall these */
1535 dev->setup_can_stall = 0;
1536 }
1537
1538 /* state changes when reader collects event */
1539 event = next_event (dev, GADGETFS_SETUP);
1540 event->u.setup = *ctrl;
1541 ep0_readable (dev);
1542 spin_unlock (&dev->lock);
1543 return 0;
1544 }
1545 }
1546
1547 /* proceed with data transfer and status phases? */
7489d149 1548 if (value >= 0 && dev->state != STATE_DEV_SETUP) {
1da177e4
LT
1549 req->length = value;
1550 req->zero = value < w_length;
1551 value = usb_ep_queue (gadget->ep0, req, GFP_ATOMIC);
1552 if (value < 0) {
1553 DBG (dev, "ep_queue --> %d\n", value);
1554 req->status = 0;
1555 }
1556 }
1557
1558 /* device stalls when value < 0 */
1559 spin_unlock (&dev->lock);
1560 return value;
1561}
1562
1563static void destroy_ep_files (struct dev_data *dev)
1564{
441b62c1 1565 DBG (dev, "%s %d\n", __func__, dev->state);
1da177e4
LT
1566
1567 /* dev->state must prevent interference */
1da177e4 1568 spin_lock_irq (&dev->lock);
104bb37d 1569 while (!list_empty(&dev->epfiles)) {
1da177e4
LT
1570 struct ep_data *ep;
1571 struct inode *parent;
1572 struct dentry *dentry;
1573
1574 /* break link to FS */
104bb37d 1575 ep = list_first_entry (&dev->epfiles, struct ep_data, epfiles);
1da177e4
LT
1576 list_del_init (&ep->epfiles);
1577 dentry = ep->dentry;
1578 ep->dentry = NULL;
1579 parent = dentry->d_parent->d_inode;
1580
1581 /* break link to controller */
1582 if (ep->state == STATE_EP_ENABLED)
1583 (void) usb_ep_disable (ep->ep);
1584 ep->state = STATE_EP_UNBOUND;
1585 usb_ep_free_request (ep->ep, ep->req);
1586 ep->ep = NULL;
1587 wake_up (&ep->wait);
1588 put_ep (ep);
1589
1590 spin_unlock_irq (&dev->lock);
1591
1592 /* break link to dcache */
1b1dcc1b 1593 mutex_lock (&parent->i_mutex);
1da177e4
LT
1594 d_delete (dentry);
1595 dput (dentry);
1b1dcc1b 1596 mutex_unlock (&parent->i_mutex);
1da177e4 1597
104bb37d 1598 spin_lock_irq (&dev->lock);
1da177e4
LT
1599 }
1600 spin_unlock_irq (&dev->lock);
1601}
1602
1603
1604static struct inode *
1605gadgetfs_create_file (struct super_block *sb, char const *name,
99ac48f5 1606 void *data, const struct file_operations *fops,
1da177e4
LT
1607 struct dentry **dentry_p);
1608
1609static int activate_ep_files (struct dev_data *dev)
1610{
1611 struct usb_ep *ep;
0ae4ea80 1612 struct ep_data *data;
1da177e4
LT
1613
1614 gadget_for_each_ep (ep, dev->gadget) {
1da177e4 1615
7039f422 1616 data = kzalloc(sizeof(*data), GFP_KERNEL);
1da177e4 1617 if (!data)
0ae4ea80 1618 goto enomem0;
1da177e4 1619 data->state = STATE_EP_DISABLED;
a79df50b 1620 mutex_init(&data->lock);
1da177e4
LT
1621 init_waitqueue_head (&data->wait);
1622
1623 strncpy (data->name, ep->name, sizeof (data->name) - 1);
1624 atomic_set (&data->count, 1);
1625 data->dev = dev;
1626 get_dev (dev);
1627
1628 data->ep = ep;
1629 ep->driver_data = data;
1630
1631 data->req = usb_ep_alloc_request (ep, GFP_KERNEL);
1632 if (!data->req)
0ae4ea80 1633 goto enomem1;
1da177e4
LT
1634
1635 data->inode = gadgetfs_create_file (dev->sb, data->name,
1636 data, &ep_config_operations,
1637 &data->dentry);
0ae4ea80
AS
1638 if (!data->inode)
1639 goto enomem2;
1da177e4
LT
1640 list_add_tail (&data->epfiles, &dev->epfiles);
1641 }
1642 return 0;
1643
0ae4ea80
AS
1644enomem2:
1645 usb_ep_free_request (ep, data->req);
1646enomem1:
1647 put_dev (dev);
1648 kfree (data);
1649enomem0:
441b62c1 1650 DBG (dev, "%s enomem\n", __func__);
1da177e4
LT
1651 destroy_ep_files (dev);
1652 return -ENOMEM;
1653}
1654
1655static void
1656gadgetfs_unbind (struct usb_gadget *gadget)
1657{
1658 struct dev_data *dev = get_gadget_data (gadget);
1659
441b62c1 1660 DBG (dev, "%s\n", __func__);
1da177e4
LT
1661
1662 spin_lock_irq (&dev->lock);
1663 dev->state = STATE_DEV_UNBOUND;
1664 spin_unlock_irq (&dev->lock);
1665
1666 destroy_ep_files (dev);
1667 gadget->ep0->driver_data = NULL;
1668 set_gadget_data (gadget, NULL);
1669
1670 /* we've already been disconnected ... no i/o is active */
1671 if (dev->req)
1672 usb_ep_free_request (gadget->ep0, dev->req);
441b62c1 1673 DBG (dev, "%s done\n", __func__);
1da177e4
LT
1674 put_dev (dev);
1675}
1676
1677static struct dev_data *the_device;
1678
ffe0b335
SAS
1679static int gadgetfs_bind(struct usb_gadget *gadget,
1680 struct usb_gadget_driver *driver)
1da177e4
LT
1681{
1682 struct dev_data *dev = the_device;
1683
1684 if (!dev)
1685 return -ESRCH;
1686 if (0 != strcmp (CHIP, gadget->name)) {
00274921 1687 pr_err("%s expected %s controller not %s\n",
1da177e4
LT
1688 shortname, CHIP, gadget->name);
1689 return -ENODEV;
1690 }
1691
1692 set_gadget_data (gadget, dev);
1693 dev->gadget = gadget;
1694 gadget->ep0->driver_data = dev;
1da177e4
LT
1695
1696 /* preallocate control response and buffer */
1697 dev->req = usb_ep_alloc_request (gadget->ep0, GFP_KERNEL);
1698 if (!dev->req)
1699 goto enomem;
1700 dev->req->context = NULL;
1701 dev->req->complete = epio_complete;
1702
1703 if (activate_ep_files (dev) < 0)
1704 goto enomem;
1705
1706 INFO (dev, "bound to %s driver\n", gadget->name);
7489d149
DB
1707 spin_lock_irq(&dev->lock);
1708 dev->state = STATE_DEV_UNCONNECTED;
1709 spin_unlock_irq(&dev->lock);
1da177e4
LT
1710 get_dev (dev);
1711 return 0;
1712
1713enomem:
1714 gadgetfs_unbind (gadget);
1715 return -ENOMEM;
1716}
1717
1718static void
1719gadgetfs_disconnect (struct usb_gadget *gadget)
1720{
1721 struct dev_data *dev = get_gadget_data (gadget);
001428e4 1722 unsigned long flags;
1da177e4 1723
001428e4 1724 spin_lock_irqsave (&dev->lock, flags);
7489d149 1725 if (dev->state == STATE_DEV_UNCONNECTED)
07cb7f23 1726 goto exit;
7489d149 1727 dev->state = STATE_DEV_UNCONNECTED;
1da177e4
LT
1728
1729 INFO (dev, "disconnected\n");
1da177e4
LT
1730 next_event (dev, GADGETFS_DISCONNECT);
1731 ep0_readable (dev);
07cb7f23 1732exit:
001428e4 1733 spin_unlock_irqrestore (&dev->lock, flags);
1da177e4
LT
1734}
1735
1736static void
1737gadgetfs_suspend (struct usb_gadget *gadget)
1738{
1739 struct dev_data *dev = get_gadget_data (gadget);
1740
1741 INFO (dev, "suspended from state %d\n", dev->state);
1742 spin_lock (&dev->lock);
1743 switch (dev->state) {
7489d149
DB
1744 case STATE_DEV_SETUP: // VERY odd... host died??
1745 case STATE_DEV_CONNECTED:
1746 case STATE_DEV_UNCONNECTED:
1da177e4
LT
1747 next_event (dev, GADGETFS_SUSPEND);
1748 ep0_readable (dev);
1749 /* FALLTHROUGH */
1750 default:
1751 break;
1752 }
1753 spin_unlock (&dev->lock);
1754}
1755
1756static struct usb_gadget_driver gadgetfs_driver = {
1da177e4 1757 .function = (char *) driver_desc,
93952956 1758 .bind = gadgetfs_bind,
1da177e4
LT
1759 .unbind = gadgetfs_unbind,
1760 .setup = gadgetfs_setup,
1761 .disconnect = gadgetfs_disconnect,
1762 .suspend = gadgetfs_suspend,
1763
2505107d 1764 .driver = {
1da177e4 1765 .name = (char *) shortname,
1da177e4
LT
1766 },
1767};
1768
1769/*----------------------------------------------------------------------*/
1770
1771static void gadgetfs_nop(struct usb_gadget *arg) { }
1772
ffe0b335
SAS
1773static int gadgetfs_probe(struct usb_gadget *gadget,
1774 struct usb_gadget_driver *driver)
1da177e4
LT
1775{
1776 CHIP = gadget->name;
1777 return -EISNAM;
1778}
1779
1780static struct usb_gadget_driver probe_driver = {
7177aed4 1781 .max_speed = USB_SPEED_HIGH,
93952956 1782 .bind = gadgetfs_probe,
1da177e4
LT
1783 .unbind = gadgetfs_nop,
1784 .setup = (void *)gadgetfs_nop,
1785 .disconnect = gadgetfs_nop,
2505107d 1786 .driver = {
1da177e4
LT
1787 .name = "nop",
1788 },
1789};
1790
1791
1792/* DEVICE INITIALIZATION
1793 *
1794 * fd = open ("/dev/gadget/$CHIP", O_RDWR)
1795 * status = write (fd, descriptors, sizeof descriptors)
1796 *
1797 * That write establishes the device configuration, so the kernel can
1798 * bind to the controller ... guaranteeing it can handle enumeration
1799 * at all necessary speeds. Descriptor order is:
1800 *
1801 * . message tag (u32, host order) ... for now, must be zero; it
1802 * would change to support features like multi-config devices
1803 * . full/low speed config ... all wTotalLength bytes (with interface,
1804 * class, altsetting, endpoint, and other descriptors)
1805 * . high speed config ... all descriptors, for high speed operation;
2505107d 1806 * this one's optional except for high-speed hardware
1da177e4
LT
1807 * . device descriptor
1808 *
511779fd
PE
1809 * Endpoints are not yet enabled. Drivers must wait until device
1810 * configuration and interface altsetting changes create
1da177e4
LT
1811 * the need to configure (or unconfigure) them.
1812 *
1813 * After initialization, the device stays active for as long as that
511779fd
PE
1814 * $CHIP file is open. Events must then be read from that descriptor,
1815 * such as configuration notifications.
1da177e4
LT
1816 */
1817
1818static int is_valid_config (struct usb_config_descriptor *config)
1819{
1820 return config->bDescriptorType == USB_DT_CONFIG
1821 && config->bLength == USB_DT_CONFIG_SIZE
1822 && config->bConfigurationValue != 0
1823 && (config->bmAttributes & USB_CONFIG_ATT_ONE) != 0
1824 && (config->bmAttributes & USB_CONFIG_ATT_WAKEUP) == 0;
1825 /* FIXME if gadget->is_otg, _must_ include an otg descriptor */
1826 /* FIXME check lengths: walk to end */
1827}
1828
1829static ssize_t
1830dev_config (struct file *fd, const char __user *buf, size_t len, loff_t *ptr)
1831{
1832 struct dev_data *dev = fd->private_data;
1833 ssize_t value = len, length = len;
1834 unsigned total;
1835 u32 tag;
1836 char *kbuf;
1837
1da177e4
LT
1838 if (len < (USB_DT_CONFIG_SIZE + USB_DT_DEVICE_SIZE + 4))
1839 return -EINVAL;
1840
1841 /* we might need to change message format someday */
1842 if (copy_from_user (&tag, buf, 4))
1843 return -EFAULT;
1844 if (tag != 0)
1845 return -EINVAL;
1846 buf += 4;
1847 length -= 4;
1848
be8a058b
JL
1849 kbuf = memdup_user(buf, length);
1850 if (IS_ERR(kbuf))
1851 return PTR_ERR(kbuf);
1da177e4
LT
1852
1853 spin_lock_irq (&dev->lock);
1854 value = -EINVAL;
1855 if (dev->buf)
1856 goto fail;
1857 dev->buf = kbuf;
1858
1859 /* full or low speed config */
1860 dev->config = (void *) kbuf;
01ee7d70 1861 total = le16_to_cpu(dev->config->wTotalLength);
1da177e4
LT
1862 if (!is_valid_config (dev->config) || total >= length)
1863 goto fail;
1864 kbuf += total;
1865 length -= total;
1866
1867 /* optional high speed config */
1868 if (kbuf [1] == USB_DT_CONFIG) {
1869 dev->hs_config = (void *) kbuf;
01ee7d70 1870 total = le16_to_cpu(dev->hs_config->wTotalLength);
1da177e4
LT
1871 if (!is_valid_config (dev->hs_config) || total >= length)
1872 goto fail;
1873 kbuf += total;
1874 length -= total;
1875 }
1876
1877 /* could support multiple configs, using another encoding! */
1878
1879 /* device descriptor (tweaked for paranoia) */
1880 if (length != USB_DT_DEVICE_SIZE)
1881 goto fail;
1882 dev->dev = (void *)kbuf;
1883 if (dev->dev->bLength != USB_DT_DEVICE_SIZE
1884 || dev->dev->bDescriptorType != USB_DT_DEVICE
1885 || dev->dev->bNumConfigurations != 1)
1886 goto fail;
1887 dev->dev->bNumConfigurations = 1;
551509d2 1888 dev->dev->bcdUSB = cpu_to_le16 (0x0200);
1da177e4
LT
1889
1890 /* triggers gadgetfs_bind(); then we can enumerate. */
1891 spin_unlock_irq (&dev->lock);
85b8614d
MN
1892 if (dev->hs_config)
1893 gadgetfs_driver.max_speed = USB_SPEED_HIGH;
1894 else
1895 gadgetfs_driver.max_speed = USB_SPEED_FULL;
93952956
SAS
1896
1897 value = usb_gadget_probe_driver(&gadgetfs_driver);
1da177e4
LT
1898 if (value != 0) {
1899 kfree (dev->buf);
1900 dev->buf = NULL;
1901 } else {
1902 /* at this point "good" hardware has for the first time
1903 * let the USB the host see us. alternatively, if users
1904 * unplug/replug that will clear all the error state.
1905 *
1906 * note: everything running before here was guaranteed
1907 * to choke driver model style diagnostics. from here
1908 * on, they can work ... except in cleanup paths that
1909 * kick in after the ep0 descriptor is closed.
1910 */
1911 fd->f_op = &ep0_io_operations;
1912 value = len;
1913 }
1914 return value;
1915
1916fail:
1917 spin_unlock_irq (&dev->lock);
441b62c1 1918 pr_debug ("%s: %s fail %Zd, %p\n", shortname, __func__, value, dev);
1da177e4
LT
1919 kfree (dev->buf);
1920 dev->buf = NULL;
1921 return value;
1922}
1923
1924static int
1925dev_open (struct inode *inode, struct file *fd)
1926{
8e18e294 1927 struct dev_data *dev = inode->i_private;
1da177e4
LT
1928 int value = -EBUSY;
1929
7489d149 1930 spin_lock_irq(&dev->lock);
1da177e4
LT
1931 if (dev->state == STATE_DEV_DISABLED) {
1932 dev->ev_next = 0;
7489d149 1933 dev->state = STATE_DEV_OPENED;
1da177e4
LT
1934 fd->private_data = dev;
1935 get_dev (dev);
1936 value = 0;
1937 }
7489d149 1938 spin_unlock_irq(&dev->lock);
1da177e4
LT
1939 return value;
1940}
1941
066202dd 1942static const struct file_operations dev_init_operations = {
1da177e4
LT
1943 .owner = THIS_MODULE,
1944 .llseek = no_llseek,
1945
1946 .open = dev_open,
1947 .write = dev_config,
1948 .fasync = ep0_fasync,
44c389a0 1949 .unlocked_ioctl = dev_ioctl,
1da177e4
LT
1950 .release = dev_release,
1951};
1952
1953/*----------------------------------------------------------------------*/
1954
1955/* FILESYSTEM AND SUPERBLOCK OPERATIONS
1956 *
1957 * Mounting the filesystem creates a controller file, used first for
1958 * device configuration then later for event monitoring.
1959 */
1960
1961
1962/* FIXME PAM etc could set this security policy without mount options
1963 * if epfiles inherited ownership and permissons from ep0 ...
1964 */
1965
1966static unsigned default_uid;
1967static unsigned default_gid;
1968static unsigned default_perm = S_IRUSR | S_IWUSR;
1969
1970module_param (default_uid, uint, 0644);
1971module_param (default_gid, uint, 0644);
1972module_param (default_perm, uint, 0644);
1973
1974
1975static struct inode *
1976gadgetfs_make_inode (struct super_block *sb,
99ac48f5 1977 void *data, const struct file_operations *fops,
1da177e4
LT
1978 int mode)
1979{
1980 struct inode *inode = new_inode (sb);
1981
1982 if (inode) {
85fe4025 1983 inode->i_ino = get_next_ino();
1da177e4 1984 inode->i_mode = mode;
32d639c6
EB
1985 inode->i_uid = make_kuid(&init_user_ns, default_uid);
1986 inode->i_gid = make_kgid(&init_user_ns, default_gid);
1da177e4
LT
1987 inode->i_atime = inode->i_mtime = inode->i_ctime
1988 = CURRENT_TIME;
8e18e294 1989 inode->i_private = data;
1da177e4
LT
1990 inode->i_fop = fops;
1991 }
1992 return inode;
1993}
1994
1995/* creates in fs root directory, so non-renamable and non-linkable.
1996 * so inode and dentry are paired, until device reconfig.
1997 */
1998static struct inode *
1999gadgetfs_create_file (struct super_block *sb, char const *name,
99ac48f5 2000 void *data, const struct file_operations *fops,
1da177e4
LT
2001 struct dentry **dentry_p)
2002{
2003 struct dentry *dentry;
2004 struct inode *inode;
2005
2006 dentry = d_alloc_name(sb->s_root, name);
2007 if (!dentry)
2008 return NULL;
2009
2010 inode = gadgetfs_make_inode (sb, data, fops,
2011 S_IFREG | (default_perm & S_IRWXUGO));
2012 if (!inode) {
2013 dput(dentry);
2014 return NULL;
2015 }
2016 d_add (dentry, inode);
2017 *dentry_p = dentry;
2018 return inode;
2019}
2020
b87221de 2021static const struct super_operations gadget_fs_operations = {
1da177e4
LT
2022 .statfs = simple_statfs,
2023 .drop_inode = generic_delete_inode,
2024};
2025
2026static int
2027gadgetfs_fill_super (struct super_block *sb, void *opts, int silent)
2028{
2029 struct inode *inode;
1da177e4
LT
2030 struct dev_data *dev;
2031
2032 if (the_device)
2033 return -ESRCH;
2034
2035 /* fake probe to determine $CHIP */
93952956 2036 usb_gadget_probe_driver(&probe_driver);
1da177e4
LT
2037 if (!CHIP)
2038 return -ENODEV;
2039
2040 /* superblock */
2041 sb->s_blocksize = PAGE_CACHE_SIZE;
2042 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
2043 sb->s_magic = GADGETFS_MAGIC;
2044 sb->s_op = &gadget_fs_operations;
2045 sb->s_time_gran = 1;
2046
2047 /* root inode */
2048 inode = gadgetfs_make_inode (sb,
2049 NULL, &simple_dir_operations,
2050 S_IFDIR | S_IRUGO | S_IXUGO);
2051 if (!inode)
87da5b32 2052 goto Enomem;
1da177e4 2053 inode->i_op = &simple_dir_inode_operations;
48fde701 2054 if (!(sb->s_root = d_make_root (inode)))
87da5b32 2055 goto Enomem;
1da177e4
LT
2056
2057 /* the ep0 file is named after the controller we expect;
2058 * user mode code can use it for sanity checks, like we do.
2059 */
2060 dev = dev_new ();
2061 if (!dev)
87da5b32 2062 goto Enomem;
1da177e4
LT
2063
2064 dev->sb = sb;
0ae4ea80 2065 if (!gadgetfs_create_file (sb, CHIP,
1da177e4 2066 dev, &dev_init_operations,
87da5b32
AV
2067 &dev->dentry)) {
2068 put_dev(dev);
2069 goto Enomem;
2070 }
1da177e4
LT
2071
2072 /* other endpoint files are available after hardware setup,
2073 * from binding to a controller.
2074 */
2075 the_device = dev;
2076 return 0;
0ae4ea80 2077
87da5b32 2078Enomem:
0ae4ea80 2079 return -ENOMEM;
1da177e4
LT
2080}
2081
2082/* "mount -t gadgetfs path /dev/gadget" ends up here */
fc14f2fe
AV
2083static struct dentry *
2084gadgetfs_mount (struct file_system_type *t, int flags,
2085 const char *path, void *opts)
1da177e4 2086{
fc14f2fe 2087 return mount_single (t, flags, opts, gadgetfs_fill_super);
1da177e4
LT
2088}
2089
2090static void
2091gadgetfs_kill_sb (struct super_block *sb)
2092{
2093 kill_litter_super (sb);
2094 if (the_device) {
2095 put_dev (the_device);
2096 the_device = NULL;
2097 }
2098}
2099
2100/*----------------------------------------------------------------------*/
2101
2102static struct file_system_type gadgetfs_type = {
2103 .owner = THIS_MODULE,
2104 .name = shortname,
fc14f2fe 2105 .mount = gadgetfs_mount,
1da177e4
LT
2106 .kill_sb = gadgetfs_kill_sb,
2107};
2108
2109/*----------------------------------------------------------------------*/
2110
2111static int __init init (void)
2112{
2113 int status;
2114
2115 status = register_filesystem (&gadgetfs_type);
2116 if (status == 0)
2117 pr_info ("%s: %s, version " DRIVER_VERSION "\n",
2118 shortname, driver_desc);
2119 return status;
2120}
2121module_init (init);
2122
2123static void __exit cleanup (void)
2124{
2125 pr_debug ("unregister %s\n", shortname);
2126 unregister_filesystem (&gadgetfs_type);
2127}
2128module_exit (cleanup);
2129
This page took 0.877363 seconds and 5 git commands to generate.