Upgrade to 4.4.50-rt62
[kvmfornfv.git] / kernel / drivers / usb / gadget / function / f_fs.c
1 /*
2  * f_fs.c -- user mode file system API for USB composite function controllers
3  *
4  * Copyright (C) 2010 Samsung Electronics
5  * Author: Michal Nazarewicz <mina86@mina86.com>
6  *
7  * Based on inode.c (GadgetFS) which was:
8  * Copyright (C) 2003-2004 David Brownell
9  * Copyright (C) 2003 Agilent Technologies
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  */
16
17
18 /* #define DEBUG */
19 /* #define VERBOSE_DEBUG */
20
21 #include <linux/blkdev.h>
22 #include <linux/pagemap.h>
23 #include <linux/export.h>
24 #include <linux/hid.h>
25 #include <linux/module.h>
26 #include <linux/uio.h>
27 #include <asm/unaligned.h>
28
29 #include <linux/usb/composite.h>
30 #include <linux/usb/functionfs.h>
31
32 #include <linux/aio.h>
33 #include <linux/mmu_context.h>
34 #include <linux/poll.h>
35 #include <linux/eventfd.h>
36
37 #include "u_fs.h"
38 #include "u_f.h"
39 #include "u_os_desc.h"
40 #include "configfs.h"
41
42 #define FUNCTIONFS_MAGIC        0xa647361 /* Chosen by a honest dice roll ;) */
43
44 /* Reference counter handling */
45 static void ffs_data_get(struct ffs_data *ffs);
46 static void ffs_data_put(struct ffs_data *ffs);
47 /* Creates new ffs_data object. */
48 static struct ffs_data *__must_check ffs_data_new(void) __attribute__((malloc));
49
50 /* Opened counter handling. */
51 static void ffs_data_opened(struct ffs_data *ffs);
52 static void ffs_data_closed(struct ffs_data *ffs);
53
54 /* Called with ffs->mutex held; take over ownership of data. */
55 static int __must_check
56 __ffs_data_got_descs(struct ffs_data *ffs, char *data, size_t len);
57 static int __must_check
58 __ffs_data_got_strings(struct ffs_data *ffs, char *data, size_t len);
59
60
61 /* The function structure ***************************************************/
62
63 struct ffs_ep;
64
65 struct ffs_function {
66         struct usb_configuration        *conf;
67         struct usb_gadget               *gadget;
68         struct ffs_data                 *ffs;
69
70         struct ffs_ep                   *eps;
71         u8                              eps_revmap[16];
72         short                           *interfaces_nums;
73
74         struct usb_function             function;
75 };
76
77
78 static struct ffs_function *ffs_func_from_usb(struct usb_function *f)
79 {
80         return container_of(f, struct ffs_function, function);
81 }
82
83
84 static inline enum ffs_setup_state
85 ffs_setup_state_clear_cancelled(struct ffs_data *ffs)
86 {
87         return (enum ffs_setup_state)
88                 cmpxchg(&ffs->setup_state, FFS_SETUP_CANCELLED, FFS_NO_SETUP);
89 }
90
91
92 static void ffs_func_eps_disable(struct ffs_function *func);
93 static int __must_check ffs_func_eps_enable(struct ffs_function *func);
94
95 static int ffs_func_bind(struct usb_configuration *,
96                          struct usb_function *);
97 static int ffs_func_set_alt(struct usb_function *, unsigned, unsigned);
98 static void ffs_func_disable(struct usb_function *);
99 static int ffs_func_setup(struct usb_function *,
100                           const struct usb_ctrlrequest *);
101 static void ffs_func_suspend(struct usb_function *);
102 static void ffs_func_resume(struct usb_function *);
103
104
105 static int ffs_func_revmap_ep(struct ffs_function *func, u8 num);
106 static int ffs_func_revmap_intf(struct ffs_function *func, u8 intf);
107
108
109 /* The endpoints structures *************************************************/
110
111 struct ffs_ep {
112         struct usb_ep                   *ep;    /* P: ffs->eps_lock */
113         struct usb_request              *req;   /* P: epfile->mutex */
114
115         /* [0]: full speed, [1]: high speed, [2]: super speed */
116         struct usb_endpoint_descriptor  *descs[3];
117
118         u8                              num;
119
120         int                             status; /* P: epfile->mutex */
121 };
122
123 struct ffs_epfile {
124         /* Protects ep->ep and ep->req. */
125         struct mutex                    mutex;
126         wait_queue_head_t               wait;
127
128         struct ffs_data                 *ffs;
129         struct ffs_ep                   *ep;    /* P: ffs->eps_lock */
130
131         struct dentry                   *dentry;
132
133         char                            name[5];
134
135         unsigned char                   in;     /* P: ffs->eps_lock */
136         unsigned char                   isoc;   /* P: ffs->eps_lock */
137
138         unsigned char                   _pad;
139 };
140
141 /*  ffs_io_data structure ***************************************************/
142
143 struct ffs_io_data {
144         bool aio;
145         bool read;
146
147         struct kiocb *kiocb;
148         struct iov_iter data;
149         const void *to_free;
150         char *buf;
151
152         struct mm_struct *mm;
153         struct work_struct work;
154
155         struct usb_ep *ep;
156         struct usb_request *req;
157
158         struct ffs_data *ffs;
159 };
160
161 struct ffs_desc_helper {
162         struct ffs_data *ffs;
163         unsigned interfaces_count;
164         unsigned eps_count;
165 };
166
167 static int  __must_check ffs_epfiles_create(struct ffs_data *ffs);
168 static void ffs_epfiles_destroy(struct ffs_epfile *epfiles, unsigned count);
169
170 static struct dentry *
171 ffs_sb_create_file(struct super_block *sb, const char *name, void *data,
172                    const struct file_operations *fops);
173
174 /* Devices management *******************************************************/
175
176 DEFINE_MUTEX(ffs_lock);
177 EXPORT_SYMBOL_GPL(ffs_lock);
178
179 static struct ffs_dev *_ffs_find_dev(const char *name);
180 static struct ffs_dev *_ffs_alloc_dev(void);
181 static int _ffs_name_dev(struct ffs_dev *dev, const char *name);
182 static void _ffs_free_dev(struct ffs_dev *dev);
183 static void *ffs_acquire_dev(const char *dev_name);
184 static void ffs_release_dev(struct ffs_data *ffs_data);
185 static int ffs_ready(struct ffs_data *ffs);
186 static void ffs_closed(struct ffs_data *ffs);
187
188 /* Misc helper functions ****************************************************/
189
190 static int ffs_mutex_lock(struct mutex *mutex, unsigned nonblock)
191         __attribute__((warn_unused_result, nonnull));
192 static char *ffs_prepare_buffer(const char __user *buf, size_t len)
193         __attribute__((warn_unused_result, nonnull));
194
195
196 /* Control file aka ep0 *****************************************************/
197
198 static void ffs_ep0_complete(struct usb_ep *ep, struct usb_request *req)
199 {
200         struct ffs_data *ffs = req->context;
201
202         complete_all(&ffs->ep0req_completion);
203 }
204
205 static int __ffs_ep0_queue_wait(struct ffs_data *ffs, char *data, size_t len)
206 {
207         struct usb_request *req = ffs->ep0req;
208         int ret;
209
210         req->zero     = len < le16_to_cpu(ffs->ev.setup.wLength);
211
212         spin_unlock_irq(&ffs->ev.waitq.lock);
213
214         req->buf      = data;
215         req->length   = len;
216
217         /*
218          * UDC layer requires to provide a buffer even for ZLP, but should
219          * not use it at all. Let's provide some poisoned pointer to catch
220          * possible bug in the driver.
221          */
222         if (req->buf == NULL)
223                 req->buf = (void *)0xDEADBABE;
224
225         reinit_completion(&ffs->ep0req_completion);
226
227         ret = usb_ep_queue(ffs->gadget->ep0, req, GFP_ATOMIC);
228         if (unlikely(ret < 0))
229                 return ret;
230
231         ret = wait_for_completion_interruptible(&ffs->ep0req_completion);
232         if (unlikely(ret)) {
233                 usb_ep_dequeue(ffs->gadget->ep0, req);
234                 return -EINTR;
235         }
236
237         ffs->setup_state = FFS_NO_SETUP;
238         return req->status ? req->status : req->actual;
239 }
240
241 static int __ffs_ep0_stall(struct ffs_data *ffs)
242 {
243         if (ffs->ev.can_stall) {
244                 pr_vdebug("ep0 stall\n");
245                 usb_ep_set_halt(ffs->gadget->ep0);
246                 ffs->setup_state = FFS_NO_SETUP;
247                 return -EL2HLT;
248         } else {
249                 pr_debug("bogus ep0 stall!\n");
250                 return -ESRCH;
251         }
252 }
253
254 static ssize_t ffs_ep0_write(struct file *file, const char __user *buf,
255                              size_t len, loff_t *ptr)
256 {
257         struct ffs_data *ffs = file->private_data;
258         ssize_t ret;
259         char *data;
260
261         ENTER();
262
263         /* Fast check if setup was canceled */
264         if (ffs_setup_state_clear_cancelled(ffs) == FFS_SETUP_CANCELLED)
265                 return -EIDRM;
266
267         /* Acquire mutex */
268         ret = ffs_mutex_lock(&ffs->mutex, file->f_flags & O_NONBLOCK);
269         if (unlikely(ret < 0))
270                 return ret;
271
272         /* Check state */
273         switch (ffs->state) {
274         case FFS_READ_DESCRIPTORS:
275         case FFS_READ_STRINGS:
276                 /* Copy data */
277                 if (unlikely(len < 16)) {
278                         ret = -EINVAL;
279                         break;
280                 }
281
282                 data = ffs_prepare_buffer(buf, len);
283                 if (IS_ERR(data)) {
284                         ret = PTR_ERR(data);
285                         break;
286                 }
287
288                 /* Handle data */
289                 if (ffs->state == FFS_READ_DESCRIPTORS) {
290                         pr_info("read descriptors\n");
291                         ret = __ffs_data_got_descs(ffs, data, len);
292                         if (unlikely(ret < 0))
293                                 break;
294
295                         ffs->state = FFS_READ_STRINGS;
296                         ret = len;
297                 } else {
298                         pr_info("read strings\n");
299                         ret = __ffs_data_got_strings(ffs, data, len);
300                         if (unlikely(ret < 0))
301                                 break;
302
303                         ret = ffs_epfiles_create(ffs);
304                         if (unlikely(ret)) {
305                                 ffs->state = FFS_CLOSING;
306                                 break;
307                         }
308
309                         ffs->state = FFS_ACTIVE;
310                         mutex_unlock(&ffs->mutex);
311
312                         ret = ffs_ready(ffs);
313                         if (unlikely(ret < 0)) {
314                                 ffs->state = FFS_CLOSING;
315                                 return ret;
316                         }
317
318                         return len;
319                 }
320                 break;
321
322         case FFS_ACTIVE:
323                 data = NULL;
324                 /*
325                  * We're called from user space, we can use _irq
326                  * rather then _irqsave
327                  */
328                 spin_lock_irq(&ffs->ev.waitq.lock);
329                 switch (ffs_setup_state_clear_cancelled(ffs)) {
330                 case FFS_SETUP_CANCELLED:
331                         ret = -EIDRM;
332                         goto done_spin;
333
334                 case FFS_NO_SETUP:
335                         ret = -ESRCH;
336                         goto done_spin;
337
338                 case FFS_SETUP_PENDING:
339                         break;
340                 }
341
342                 /* FFS_SETUP_PENDING */
343                 if (!(ffs->ev.setup.bRequestType & USB_DIR_IN)) {
344                         spin_unlock_irq(&ffs->ev.waitq.lock);
345                         ret = __ffs_ep0_stall(ffs);
346                         break;
347                 }
348
349                 /* FFS_SETUP_PENDING and not stall */
350                 len = min(len, (size_t)le16_to_cpu(ffs->ev.setup.wLength));
351
352                 spin_unlock_irq(&ffs->ev.waitq.lock);
353
354                 data = ffs_prepare_buffer(buf, len);
355                 if (IS_ERR(data)) {
356                         ret = PTR_ERR(data);
357                         break;
358                 }
359
360                 spin_lock_irq(&ffs->ev.waitq.lock);
361
362                 /*
363                  * We are guaranteed to be still in FFS_ACTIVE state
364                  * but the state of setup could have changed from
365                  * FFS_SETUP_PENDING to FFS_SETUP_CANCELLED so we need
366                  * to check for that.  If that happened we copied data
367                  * from user space in vain but it's unlikely.
368                  *
369                  * For sure we are not in FFS_NO_SETUP since this is
370                  * the only place FFS_SETUP_PENDING -> FFS_NO_SETUP
371                  * transition can be performed and it's protected by
372                  * mutex.
373                  */
374                 if (ffs_setup_state_clear_cancelled(ffs) ==
375                     FFS_SETUP_CANCELLED) {
376                         ret = -EIDRM;
377 done_spin:
378                         spin_unlock_irq(&ffs->ev.waitq.lock);
379                 } else {
380                         /* unlocks spinlock */
381                         ret = __ffs_ep0_queue_wait(ffs, data, len);
382                 }
383                 kfree(data);
384                 break;
385
386         default:
387                 ret = -EBADFD;
388                 break;
389         }
390
391         mutex_unlock(&ffs->mutex);
392         return ret;
393 }
394
395 /* Called with ffs->ev.waitq.lock and ffs->mutex held, both released on exit. */
396 static ssize_t __ffs_ep0_read_events(struct ffs_data *ffs, char __user *buf,
397                                      size_t n)
398 {
399         /*
400          * n cannot be bigger than ffs->ev.count, which cannot be bigger than
401          * size of ffs->ev.types array (which is four) so that's how much space
402          * we reserve.
403          */
404         struct usb_functionfs_event events[ARRAY_SIZE(ffs->ev.types)];
405         const size_t size = n * sizeof *events;
406         unsigned i = 0;
407
408         memset(events, 0, size);
409
410         do {
411                 events[i].type = ffs->ev.types[i];
412                 if (events[i].type == FUNCTIONFS_SETUP) {
413                         events[i].u.setup = ffs->ev.setup;
414                         ffs->setup_state = FFS_SETUP_PENDING;
415                 }
416         } while (++i < n);
417
418         ffs->ev.count -= n;
419         if (ffs->ev.count)
420                 memmove(ffs->ev.types, ffs->ev.types + n,
421                         ffs->ev.count * sizeof *ffs->ev.types);
422
423         spin_unlock_irq(&ffs->ev.waitq.lock);
424         mutex_unlock(&ffs->mutex);
425
426         return unlikely(copy_to_user(buf, events, size)) ? -EFAULT : size;
427 }
428
429 static ssize_t ffs_ep0_read(struct file *file, char __user *buf,
430                             size_t len, loff_t *ptr)
431 {
432         struct ffs_data *ffs = file->private_data;
433         char *data = NULL;
434         size_t n;
435         int ret;
436
437         ENTER();
438
439         /* Fast check if setup was canceled */
440         if (ffs_setup_state_clear_cancelled(ffs) == FFS_SETUP_CANCELLED)
441                 return -EIDRM;
442
443         /* Acquire mutex */
444         ret = ffs_mutex_lock(&ffs->mutex, file->f_flags & O_NONBLOCK);
445         if (unlikely(ret < 0))
446                 return ret;
447
448         /* Check state */
449         if (ffs->state != FFS_ACTIVE) {
450                 ret = -EBADFD;
451                 goto done_mutex;
452         }
453
454         /*
455          * We're called from user space, we can use _irq rather then
456          * _irqsave
457          */
458         spin_lock_irq(&ffs->ev.waitq.lock);
459
460         switch (ffs_setup_state_clear_cancelled(ffs)) {
461         case FFS_SETUP_CANCELLED:
462                 ret = -EIDRM;
463                 break;
464
465         case FFS_NO_SETUP:
466                 n = len / sizeof(struct usb_functionfs_event);
467                 if (unlikely(!n)) {
468                         ret = -EINVAL;
469                         break;
470                 }
471
472                 if ((file->f_flags & O_NONBLOCK) && !ffs->ev.count) {
473                         ret = -EAGAIN;
474                         break;
475                 }
476
477                 if (wait_event_interruptible_exclusive_locked_irq(ffs->ev.waitq,
478                                                         ffs->ev.count)) {
479                         ret = -EINTR;
480                         break;
481                 }
482
483                 return __ffs_ep0_read_events(ffs, buf,
484                                              min(n, (size_t)ffs->ev.count));
485
486         case FFS_SETUP_PENDING:
487                 if (ffs->ev.setup.bRequestType & USB_DIR_IN) {
488                         spin_unlock_irq(&ffs->ev.waitq.lock);
489                         ret = __ffs_ep0_stall(ffs);
490                         goto done_mutex;
491                 }
492
493                 len = min(len, (size_t)le16_to_cpu(ffs->ev.setup.wLength));
494
495                 spin_unlock_irq(&ffs->ev.waitq.lock);
496
497                 if (likely(len)) {
498                         data = kmalloc(len, GFP_KERNEL);
499                         if (unlikely(!data)) {
500                                 ret = -ENOMEM;
501                                 goto done_mutex;
502                         }
503                 }
504
505                 spin_lock_irq(&ffs->ev.waitq.lock);
506
507                 /* See ffs_ep0_write() */
508                 if (ffs_setup_state_clear_cancelled(ffs) ==
509                     FFS_SETUP_CANCELLED) {
510                         ret = -EIDRM;
511                         break;
512                 }
513
514                 /* unlocks spinlock */
515                 ret = __ffs_ep0_queue_wait(ffs, data, len);
516                 if (likely(ret > 0) && unlikely(copy_to_user(buf, data, len)))
517                         ret = -EFAULT;
518                 goto done_mutex;
519
520         default:
521                 ret = -EBADFD;
522                 break;
523         }
524
525         spin_unlock_irq(&ffs->ev.waitq.lock);
526 done_mutex:
527         mutex_unlock(&ffs->mutex);
528         kfree(data);
529         return ret;
530 }
531
532 static int ffs_ep0_open(struct inode *inode, struct file *file)
533 {
534         struct ffs_data *ffs = inode->i_private;
535
536         ENTER();
537
538         if (unlikely(ffs->state == FFS_CLOSING))
539                 return -EBUSY;
540
541         file->private_data = ffs;
542         ffs_data_opened(ffs);
543
544         return 0;
545 }
546
547 static int ffs_ep0_release(struct inode *inode, struct file *file)
548 {
549         struct ffs_data *ffs = file->private_data;
550
551         ENTER();
552
553         ffs_data_closed(ffs);
554
555         return 0;
556 }
557
558 static long ffs_ep0_ioctl(struct file *file, unsigned code, unsigned long value)
559 {
560         struct ffs_data *ffs = file->private_data;
561         struct usb_gadget *gadget = ffs->gadget;
562         long ret;
563
564         ENTER();
565
566         if (code == FUNCTIONFS_INTERFACE_REVMAP) {
567                 struct ffs_function *func = ffs->func;
568                 ret = func ? ffs_func_revmap_intf(func, value) : -ENODEV;
569         } else if (gadget && gadget->ops->ioctl) {
570                 ret = gadget->ops->ioctl(gadget, code, value);
571         } else {
572                 ret = -ENOTTY;
573         }
574
575         return ret;
576 }
577
578 static unsigned int ffs_ep0_poll(struct file *file, poll_table *wait)
579 {
580         struct ffs_data *ffs = file->private_data;
581         unsigned int mask = POLLWRNORM;
582         int ret;
583
584         poll_wait(file, &ffs->ev.waitq, wait);
585
586         ret = ffs_mutex_lock(&ffs->mutex, file->f_flags & O_NONBLOCK);
587         if (unlikely(ret < 0))
588                 return mask;
589
590         switch (ffs->state) {
591         case FFS_READ_DESCRIPTORS:
592         case FFS_READ_STRINGS:
593                 mask |= POLLOUT;
594                 break;
595
596         case FFS_ACTIVE:
597                 switch (ffs->setup_state) {
598                 case FFS_NO_SETUP:
599                         if (ffs->ev.count)
600                                 mask |= POLLIN;
601                         break;
602
603                 case FFS_SETUP_PENDING:
604                 case FFS_SETUP_CANCELLED:
605                         mask |= (POLLIN | POLLOUT);
606                         break;
607                 }
608         case FFS_CLOSING:
609                 break;
610         case FFS_DEACTIVATED:
611                 break;
612         }
613
614         mutex_unlock(&ffs->mutex);
615
616         return mask;
617 }
618
619 static const struct file_operations ffs_ep0_operations = {
620         .llseek =       no_llseek,
621
622         .open =         ffs_ep0_open,
623         .write =        ffs_ep0_write,
624         .read =         ffs_ep0_read,
625         .release =      ffs_ep0_release,
626         .unlocked_ioctl =       ffs_ep0_ioctl,
627         .poll =         ffs_ep0_poll,
628 };
629
630
631 /* "Normal" endpoints operations ********************************************/
632
633 static void ffs_epfile_io_complete(struct usb_ep *_ep, struct usb_request *req)
634 {
635         ENTER();
636         if (likely(req->context)) {
637                 struct ffs_ep *ep = _ep->driver_data;
638                 ep->status = req->status ? req->status : req->actual;
639                 complete(req->context);
640         }
641 }
642
643 static void ffs_user_copy_worker(struct work_struct *work)
644 {
645         struct ffs_io_data *io_data = container_of(work, struct ffs_io_data,
646                                                    work);
647         int ret = io_data->req->status ? io_data->req->status :
648                                          io_data->req->actual;
649         bool kiocb_has_eventfd = io_data->kiocb->ki_flags & IOCB_EVENTFD;
650
651         if (io_data->read && ret > 0) {
652                 use_mm(io_data->mm);
653                 ret = copy_to_iter(io_data->buf, ret, &io_data->data);
654                 if (ret != io_data->req->actual && iov_iter_count(&io_data->data))
655                         ret = -EFAULT;
656                 unuse_mm(io_data->mm);
657         }
658
659         io_data->kiocb->ki_complete(io_data->kiocb, ret, ret);
660
661         if (io_data->ffs->ffs_eventfd && !kiocb_has_eventfd)
662                 eventfd_signal(io_data->ffs->ffs_eventfd, 1);
663
664         usb_ep_free_request(io_data->ep, io_data->req);
665
666         if (io_data->read)
667                 kfree(io_data->to_free);
668         kfree(io_data->buf);
669         kfree(io_data);
670 }
671
672 static void ffs_epfile_async_io_complete(struct usb_ep *_ep,
673                                          struct usb_request *req)
674 {
675         struct ffs_io_data *io_data = req->context;
676
677         ENTER();
678
679         INIT_WORK(&io_data->work, ffs_user_copy_worker);
680         schedule_work(&io_data->work);
681 }
682
683 static ssize_t ffs_epfile_io(struct file *file, struct ffs_io_data *io_data)
684 {
685         struct ffs_epfile *epfile = file->private_data;
686         struct ffs_ep *ep;
687         char *data = NULL;
688         ssize_t ret, data_len = -EINVAL;
689         int halt;
690
691         /* Are we still active? */
692         if (WARN_ON(epfile->ffs->state != FFS_ACTIVE)) {
693                 ret = -ENODEV;
694                 goto error;
695         }
696
697         /* Wait for endpoint to be enabled */
698         ep = epfile->ep;
699         if (!ep) {
700                 if (file->f_flags & O_NONBLOCK) {
701                         ret = -EAGAIN;
702                         goto error;
703                 }
704
705                 ret = wait_event_interruptible(epfile->wait, (ep = epfile->ep));
706                 if (ret) {
707                         ret = -EINTR;
708                         goto error;
709                 }
710         }
711
712         /* Do we halt? */
713         halt = (!io_data->read == !epfile->in);
714         if (halt && epfile->isoc) {
715                 ret = -EINVAL;
716                 goto error;
717         }
718
719         /* Allocate & copy */
720         if (!halt) {
721                 /*
722                  * if we _do_ wait above, the epfile->ffs->gadget might be NULL
723                  * before the waiting completes, so do not assign to 'gadget' earlier
724                  */
725                 struct usb_gadget *gadget = epfile->ffs->gadget;
726                 size_t copied;
727
728                 spin_lock_irq(&epfile->ffs->eps_lock);
729                 /* In the meantime, endpoint got disabled or changed. */
730                 if (epfile->ep != ep) {
731                         spin_unlock_irq(&epfile->ffs->eps_lock);
732                         return -ESHUTDOWN;
733                 }
734                 data_len = iov_iter_count(&io_data->data);
735                 /*
736                  * Controller may require buffer size to be aligned to
737                  * maxpacketsize of an out endpoint.
738                  */
739                 if (io_data->read)
740                         data_len = usb_ep_align_maybe(gadget, ep->ep, data_len);
741                 spin_unlock_irq(&epfile->ffs->eps_lock);
742
743                 data = kmalloc(data_len, GFP_KERNEL);
744                 if (unlikely(!data))
745                         return -ENOMEM;
746                 if (!io_data->read) {
747                         copied = copy_from_iter(data, data_len, &io_data->data);
748                         if (copied != data_len) {
749                                 ret = -EFAULT;
750                                 goto error;
751                         }
752                 }
753         }
754
755         /* We will be using request */
756         ret = ffs_mutex_lock(&epfile->mutex, file->f_flags & O_NONBLOCK);
757         if (unlikely(ret))
758                 goto error;
759
760         spin_lock_irq(&epfile->ffs->eps_lock);
761
762         if (epfile->ep != ep) {
763                 /* In the meantime, endpoint got disabled or changed. */
764                 ret = -ESHUTDOWN;
765                 spin_unlock_irq(&epfile->ffs->eps_lock);
766         } else if (halt) {
767                 /* Halt */
768                 if (likely(epfile->ep == ep) && !WARN_ON(!ep->ep))
769                         usb_ep_set_halt(ep->ep);
770                 spin_unlock_irq(&epfile->ffs->eps_lock);
771                 ret = -EBADMSG;
772         } else {
773                 /* Fire the request */
774                 struct usb_request *req;
775
776                 /*
777                  * Sanity Check: even though data_len can't be used
778                  * uninitialized at the time I write this comment, some
779                  * compilers complain about this situation.
780                  * In order to keep the code clean from warnings, data_len is
781                  * being initialized to -EINVAL during its declaration, which
782                  * means we can't rely on compiler anymore to warn no future
783                  * changes won't result in data_len being used uninitialized.
784                  * For such reason, we're adding this redundant sanity check
785                  * here.
786                  */
787                 if (unlikely(data_len == -EINVAL)) {
788                         WARN(1, "%s: data_len == -EINVAL\n", __func__);
789                         ret = -EINVAL;
790                         goto error_lock;
791                 }
792
793                 if (io_data->aio) {
794                         req = usb_ep_alloc_request(ep->ep, GFP_KERNEL);
795                         if (unlikely(!req))
796                                 goto error_lock;
797
798                         req->buf      = data;
799                         req->length   = data_len;
800
801                         io_data->buf = data;
802                         io_data->ep = ep->ep;
803                         io_data->req = req;
804                         io_data->ffs = epfile->ffs;
805
806                         req->context  = io_data;
807                         req->complete = ffs_epfile_async_io_complete;
808
809                         ret = usb_ep_queue(ep->ep, req, GFP_ATOMIC);
810                         if (unlikely(ret)) {
811                                 usb_ep_free_request(ep->ep, req);
812                                 goto error_lock;
813                         }
814                         ret = -EIOCBQUEUED;
815
816                         spin_unlock_irq(&epfile->ffs->eps_lock);
817                 } else {
818                         DECLARE_COMPLETION_ONSTACK(done);
819
820                         req = ep->req;
821                         req->buf      = data;
822                         req->length   = data_len;
823
824                         req->context  = &done;
825                         req->complete = ffs_epfile_io_complete;
826
827                         ret = usb_ep_queue(ep->ep, req, GFP_ATOMIC);
828
829                         spin_unlock_irq(&epfile->ffs->eps_lock);
830
831                         if (unlikely(ret < 0)) {
832                                 /* nop */
833                         } else if (unlikely(
834                                    wait_for_completion_interruptible(&done))) {
835                                 ret = -EINTR;
836                                 usb_ep_dequeue(ep->ep, req);
837                         } else {
838                                 /*
839                                  * XXX We may end up silently droping data
840                                  * here.  Since data_len (i.e. req->length) may
841                                  * be bigger than len (after being rounded up
842                                  * to maxpacketsize), we may end up with more
843                                  * data then user space has space for.
844                                  */
845                                 ret = ep->status;
846                                 if (io_data->read && ret > 0) {
847                                         ret = copy_to_iter(data, ret, &io_data->data);
848                                         if (!ret)
849                                                 ret = -EFAULT;
850                                 }
851                         }
852                         kfree(data);
853                 }
854         }
855
856         mutex_unlock(&epfile->mutex);
857         return ret;
858
859 error_lock:
860         spin_unlock_irq(&epfile->ffs->eps_lock);
861         mutex_unlock(&epfile->mutex);
862 error:
863         kfree(data);
864         return ret;
865 }
866
867 static int
868 ffs_epfile_open(struct inode *inode, struct file *file)
869 {
870         struct ffs_epfile *epfile = inode->i_private;
871
872         ENTER();
873
874         if (WARN_ON(epfile->ffs->state != FFS_ACTIVE))
875                 return -ENODEV;
876
877         file->private_data = epfile;
878         ffs_data_opened(epfile->ffs);
879
880         return 0;
881 }
882
883 static int ffs_aio_cancel(struct kiocb *kiocb)
884 {
885         struct ffs_io_data *io_data = kiocb->private;
886         struct ffs_epfile *epfile = kiocb->ki_filp->private_data;
887         int value;
888
889         ENTER();
890
891         spin_lock_irq(&epfile->ffs->eps_lock);
892
893         if (likely(io_data && io_data->ep && io_data->req))
894                 value = usb_ep_dequeue(io_data->ep, io_data->req);
895         else
896                 value = -EINVAL;
897
898         spin_unlock_irq(&epfile->ffs->eps_lock);
899
900         return value;
901 }
902
903 static ssize_t ffs_epfile_write_iter(struct kiocb *kiocb, struct iov_iter *from)
904 {
905         struct ffs_io_data io_data, *p = &io_data;
906         ssize_t res;
907
908         ENTER();
909
910         if (!is_sync_kiocb(kiocb)) {
911                 p = kmalloc(sizeof(io_data), GFP_KERNEL);
912                 if (unlikely(!p))
913                         return -ENOMEM;
914                 p->aio = true;
915         } else {
916                 p->aio = false;
917         }
918
919         p->read = false;
920         p->kiocb = kiocb;
921         p->data = *from;
922         p->mm = current->mm;
923
924         kiocb->private = p;
925
926         if (p->aio)
927                 kiocb_set_cancel_fn(kiocb, ffs_aio_cancel);
928
929         res = ffs_epfile_io(kiocb->ki_filp, p);
930         if (res == -EIOCBQUEUED)
931                 return res;
932         if (p->aio)
933                 kfree(p);
934         else
935                 *from = p->data;
936         return res;
937 }
938
939 static ssize_t ffs_epfile_read_iter(struct kiocb *kiocb, struct iov_iter *to)
940 {
941         struct ffs_io_data io_data, *p = &io_data;
942         ssize_t res;
943
944         ENTER();
945
946         if (!is_sync_kiocb(kiocb)) {
947                 p = kmalloc(sizeof(io_data), GFP_KERNEL);
948                 if (unlikely(!p))
949                         return -ENOMEM;
950                 p->aio = true;
951         } else {
952                 p->aio = false;
953         }
954
955         p->read = true;
956         p->kiocb = kiocb;
957         if (p->aio) {
958                 p->to_free = dup_iter(&p->data, to, GFP_KERNEL);
959                 if (!p->to_free) {
960                         kfree(p);
961                         return -ENOMEM;
962                 }
963         } else {
964                 p->data = *to;
965                 p->to_free = NULL;
966         }
967         p->mm = current->mm;
968
969         kiocb->private = p;
970
971         if (p->aio)
972                 kiocb_set_cancel_fn(kiocb, ffs_aio_cancel);
973
974         res = ffs_epfile_io(kiocb->ki_filp, p);
975         if (res == -EIOCBQUEUED)
976                 return res;
977
978         if (p->aio) {
979                 kfree(p->to_free);
980                 kfree(p);
981         } else {
982                 *to = p->data;
983         }
984         return res;
985 }
986
987 static int
988 ffs_epfile_release(struct inode *inode, struct file *file)
989 {
990         struct ffs_epfile *epfile = inode->i_private;
991
992         ENTER();
993
994         ffs_data_closed(epfile->ffs);
995
996         return 0;
997 }
998
999 static long ffs_epfile_ioctl(struct file *file, unsigned code,
1000                              unsigned long value)
1001 {
1002         struct ffs_epfile *epfile = file->private_data;
1003         int ret;
1004
1005         ENTER();
1006
1007         if (WARN_ON(epfile->ffs->state != FFS_ACTIVE))
1008                 return -ENODEV;
1009
1010         spin_lock_irq(&epfile->ffs->eps_lock);
1011         if (likely(epfile->ep)) {
1012                 switch (code) {
1013                 case FUNCTIONFS_FIFO_STATUS:
1014                         ret = usb_ep_fifo_status(epfile->ep->ep);
1015                         break;
1016                 case FUNCTIONFS_FIFO_FLUSH:
1017                         usb_ep_fifo_flush(epfile->ep->ep);
1018                         ret = 0;
1019                         break;
1020                 case FUNCTIONFS_CLEAR_HALT:
1021                         ret = usb_ep_clear_halt(epfile->ep->ep);
1022                         break;
1023                 case FUNCTIONFS_ENDPOINT_REVMAP:
1024                         ret = epfile->ep->num;
1025                         break;
1026                 case FUNCTIONFS_ENDPOINT_DESC:
1027                 {
1028                         int desc_idx;
1029                         struct usb_endpoint_descriptor *desc;
1030
1031                         switch (epfile->ffs->gadget->speed) {
1032                         case USB_SPEED_SUPER:
1033                                 desc_idx = 2;
1034                                 break;
1035                         case USB_SPEED_HIGH:
1036                                 desc_idx = 1;
1037                                 break;
1038                         default:
1039                                 desc_idx = 0;
1040                         }
1041                         desc = epfile->ep->descs[desc_idx];
1042
1043                         spin_unlock_irq(&epfile->ffs->eps_lock);
1044                         ret = copy_to_user((void *)value, desc, sizeof(*desc));
1045                         if (ret)
1046                                 ret = -EFAULT;
1047                         return ret;
1048                 }
1049                 default:
1050                         ret = -ENOTTY;
1051                 }
1052         } else {
1053                 ret = -ENODEV;
1054         }
1055         spin_unlock_irq(&epfile->ffs->eps_lock);
1056
1057         return ret;
1058 }
1059
1060 static const struct file_operations ffs_epfile_operations = {
1061         .llseek =       no_llseek,
1062
1063         .open =         ffs_epfile_open,
1064         .write_iter =   ffs_epfile_write_iter,
1065         .read_iter =    ffs_epfile_read_iter,
1066         .release =      ffs_epfile_release,
1067         .unlocked_ioctl =       ffs_epfile_ioctl,
1068 };
1069
1070
1071 /* File system and super block operations ***********************************/
1072
1073 /*
1074  * Mounting the file system creates a controller file, used first for
1075  * function configuration then later for event monitoring.
1076  */
1077
1078 static struct inode *__must_check
1079 ffs_sb_make_inode(struct super_block *sb, void *data,
1080                   const struct file_operations *fops,
1081                   const struct inode_operations *iops,
1082                   struct ffs_file_perms *perms)
1083 {
1084         struct inode *inode;
1085
1086         ENTER();
1087
1088         inode = new_inode(sb);
1089
1090         if (likely(inode)) {
1091                 struct timespec current_time = CURRENT_TIME;
1092
1093                 inode->i_ino     = get_next_ino();
1094                 inode->i_mode    = perms->mode;
1095                 inode->i_uid     = perms->uid;
1096                 inode->i_gid     = perms->gid;
1097                 inode->i_atime   = current_time;
1098                 inode->i_mtime   = current_time;
1099                 inode->i_ctime   = current_time;
1100                 inode->i_private = data;
1101                 if (fops)
1102                         inode->i_fop = fops;
1103                 if (iops)
1104                         inode->i_op  = iops;
1105         }
1106
1107         return inode;
1108 }
1109
1110 /* Create "regular" file */
1111 static struct dentry *ffs_sb_create_file(struct super_block *sb,
1112                                         const char *name, void *data,
1113                                         const struct file_operations *fops)
1114 {
1115         struct ffs_data *ffs = sb->s_fs_info;
1116         struct dentry   *dentry;
1117         struct inode    *inode;
1118
1119         ENTER();
1120
1121         dentry = d_alloc_name(sb->s_root, name);
1122         if (unlikely(!dentry))
1123                 return NULL;
1124
1125         inode = ffs_sb_make_inode(sb, data, fops, NULL, &ffs->file_perms);
1126         if (unlikely(!inode)) {
1127                 dput(dentry);
1128                 return NULL;
1129         }
1130
1131         d_add(dentry, inode);
1132         return dentry;
1133 }
1134
1135 /* Super block */
1136 static const struct super_operations ffs_sb_operations = {
1137         .statfs =       simple_statfs,
1138         .drop_inode =   generic_delete_inode,
1139 };
1140
1141 struct ffs_sb_fill_data {
1142         struct ffs_file_perms perms;
1143         umode_t root_mode;
1144         const char *dev_name;
1145         bool no_disconnect;
1146         struct ffs_data *ffs_data;
1147 };
1148
1149 static int ffs_sb_fill(struct super_block *sb, void *_data, int silent)
1150 {
1151         struct ffs_sb_fill_data *data = _data;
1152         struct inode    *inode;
1153         struct ffs_data *ffs = data->ffs_data;
1154
1155         ENTER();
1156
1157         ffs->sb              = sb;
1158         data->ffs_data       = NULL;
1159         sb->s_fs_info        = ffs;
1160         sb->s_blocksize      = PAGE_CACHE_SIZE;
1161         sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
1162         sb->s_magic          = FUNCTIONFS_MAGIC;
1163         sb->s_op             = &ffs_sb_operations;
1164         sb->s_time_gran      = 1;
1165
1166         /* Root inode */
1167         data->perms.mode = data->root_mode;
1168         inode = ffs_sb_make_inode(sb, NULL,
1169                                   &simple_dir_operations,
1170                                   &simple_dir_inode_operations,
1171                                   &data->perms);
1172         sb->s_root = d_make_root(inode);
1173         if (unlikely(!sb->s_root))
1174                 return -ENOMEM;
1175
1176         /* EP0 file */
1177         if (unlikely(!ffs_sb_create_file(sb, "ep0", ffs,
1178                                          &ffs_ep0_operations)))
1179                 return -ENOMEM;
1180
1181         return 0;
1182 }
1183
1184 static int ffs_fs_parse_opts(struct ffs_sb_fill_data *data, char *opts)
1185 {
1186         ENTER();
1187
1188         if (!opts || !*opts)
1189                 return 0;
1190
1191         for (;;) {
1192                 unsigned long value;
1193                 char *eq, *comma;
1194
1195                 /* Option limit */
1196                 comma = strchr(opts, ',');
1197                 if (comma)
1198                         *comma = 0;
1199
1200                 /* Value limit */
1201                 eq = strchr(opts, '=');
1202                 if (unlikely(!eq)) {
1203                         pr_err("'=' missing in %s\n", opts);
1204                         return -EINVAL;
1205                 }
1206                 *eq = 0;
1207
1208                 /* Parse value */
1209                 if (kstrtoul(eq + 1, 0, &value)) {
1210                         pr_err("%s: invalid value: %s\n", opts, eq + 1);
1211                         return -EINVAL;
1212                 }
1213
1214                 /* Interpret option */
1215                 switch (eq - opts) {
1216                 case 13:
1217                         if (!memcmp(opts, "no_disconnect", 13))
1218                                 data->no_disconnect = !!value;
1219                         else
1220                                 goto invalid;
1221                         break;
1222                 case 5:
1223                         if (!memcmp(opts, "rmode", 5))
1224                                 data->root_mode  = (value & 0555) | S_IFDIR;
1225                         else if (!memcmp(opts, "fmode", 5))
1226                                 data->perms.mode = (value & 0666) | S_IFREG;
1227                         else
1228                                 goto invalid;
1229                         break;
1230
1231                 case 4:
1232                         if (!memcmp(opts, "mode", 4)) {
1233                                 data->root_mode  = (value & 0555) | S_IFDIR;
1234                                 data->perms.mode = (value & 0666) | S_IFREG;
1235                         } else {
1236                                 goto invalid;
1237                         }
1238                         break;
1239
1240                 case 3:
1241                         if (!memcmp(opts, "uid", 3)) {
1242                                 data->perms.uid = make_kuid(current_user_ns(), value);
1243                                 if (!uid_valid(data->perms.uid)) {
1244                                         pr_err("%s: unmapped value: %lu\n", opts, value);
1245                                         return -EINVAL;
1246                                 }
1247                         } else if (!memcmp(opts, "gid", 3)) {
1248                                 data->perms.gid = make_kgid(current_user_ns(), value);
1249                                 if (!gid_valid(data->perms.gid)) {
1250                                         pr_err("%s: unmapped value: %lu\n", opts, value);
1251                                         return -EINVAL;
1252                                 }
1253                         } else {
1254                                 goto invalid;
1255                         }
1256                         break;
1257
1258                 default:
1259 invalid:
1260                         pr_err("%s: invalid option\n", opts);
1261                         return -EINVAL;
1262                 }
1263
1264                 /* Next iteration */
1265                 if (!comma)
1266                         break;
1267                 opts = comma + 1;
1268         }
1269
1270         return 0;
1271 }
1272
1273 /* "mount -t functionfs dev_name /dev/function" ends up here */
1274
1275 static struct dentry *
1276 ffs_fs_mount(struct file_system_type *t, int flags,
1277               const char *dev_name, void *opts)
1278 {
1279         struct ffs_sb_fill_data data = {
1280                 .perms = {
1281                         .mode = S_IFREG | 0600,
1282                         .uid = GLOBAL_ROOT_UID,
1283                         .gid = GLOBAL_ROOT_GID,
1284                 },
1285                 .root_mode = S_IFDIR | 0500,
1286                 .no_disconnect = false,
1287         };
1288         struct dentry *rv;
1289         int ret;
1290         void *ffs_dev;
1291         struct ffs_data *ffs;
1292
1293         ENTER();
1294
1295         ret = ffs_fs_parse_opts(&data, opts);
1296         if (unlikely(ret < 0))
1297                 return ERR_PTR(ret);
1298
1299         ffs = ffs_data_new();
1300         if (unlikely(!ffs))
1301                 return ERR_PTR(-ENOMEM);
1302         ffs->file_perms = data.perms;
1303         ffs->no_disconnect = data.no_disconnect;
1304
1305         ffs->dev_name = kstrdup(dev_name, GFP_KERNEL);
1306         if (unlikely(!ffs->dev_name)) {
1307                 ffs_data_put(ffs);
1308                 return ERR_PTR(-ENOMEM);
1309         }
1310
1311         ffs_dev = ffs_acquire_dev(dev_name);
1312         if (IS_ERR(ffs_dev)) {
1313                 ffs_data_put(ffs);
1314                 return ERR_CAST(ffs_dev);
1315         }
1316         ffs->private_data = ffs_dev;
1317         data.ffs_data = ffs;
1318
1319         rv = mount_nodev(t, flags, &data, ffs_sb_fill);
1320         if (IS_ERR(rv) && data.ffs_data) {
1321                 ffs_release_dev(data.ffs_data);
1322                 ffs_data_put(data.ffs_data);
1323         }
1324         return rv;
1325 }
1326
1327 static void
1328 ffs_fs_kill_sb(struct super_block *sb)
1329 {
1330         ENTER();
1331
1332         kill_litter_super(sb);
1333         if (sb->s_fs_info) {
1334                 ffs_release_dev(sb->s_fs_info);
1335                 ffs_data_closed(sb->s_fs_info);
1336                 ffs_data_put(sb->s_fs_info);
1337         }
1338 }
1339
1340 static struct file_system_type ffs_fs_type = {
1341         .owner          = THIS_MODULE,
1342         .name           = "functionfs",
1343         .mount          = ffs_fs_mount,
1344         .kill_sb        = ffs_fs_kill_sb,
1345 };
1346 MODULE_ALIAS_FS("functionfs");
1347
1348
1349 /* Driver's main init/cleanup functions *************************************/
1350
1351 static int functionfs_init(void)
1352 {
1353         int ret;
1354
1355         ENTER();
1356
1357         ret = register_filesystem(&ffs_fs_type);
1358         if (likely(!ret))
1359                 pr_info("file system registered\n");
1360         else
1361                 pr_err("failed registering file system (%d)\n", ret);
1362
1363         return ret;
1364 }
1365
1366 static void functionfs_cleanup(void)
1367 {
1368         ENTER();
1369
1370         pr_info("unloading\n");
1371         unregister_filesystem(&ffs_fs_type);
1372 }
1373
1374
1375 /* ffs_data and ffs_function construction and destruction code **************/
1376
1377 static void ffs_data_clear(struct ffs_data *ffs);
1378 static void ffs_data_reset(struct ffs_data *ffs);
1379
1380 static void ffs_data_get(struct ffs_data *ffs)
1381 {
1382         ENTER();
1383
1384         atomic_inc(&ffs->ref);
1385 }
1386
1387 static void ffs_data_opened(struct ffs_data *ffs)
1388 {
1389         ENTER();
1390
1391         atomic_inc(&ffs->ref);
1392         if (atomic_add_return(1, &ffs->opened) == 1 &&
1393                         ffs->state == FFS_DEACTIVATED) {
1394                 ffs->state = FFS_CLOSING;
1395                 ffs_data_reset(ffs);
1396         }
1397 }
1398
1399 static void ffs_data_put(struct ffs_data *ffs)
1400 {
1401         ENTER();
1402
1403         if (unlikely(atomic_dec_and_test(&ffs->ref))) {
1404                 pr_info("%s(): freeing\n", __func__);
1405                 ffs_data_clear(ffs);
1406                 BUG_ON(waitqueue_active(&ffs->ev.waitq) ||
1407                        swait_active(&ffs->ep0req_completion.wait));
1408                 kfree(ffs->dev_name);
1409                 kfree(ffs);
1410         }
1411 }
1412
1413 static void ffs_data_closed(struct ffs_data *ffs)
1414 {
1415         ENTER();
1416
1417         if (atomic_dec_and_test(&ffs->opened)) {
1418                 if (ffs->no_disconnect) {
1419                         ffs->state = FFS_DEACTIVATED;
1420                         if (ffs->epfiles) {
1421                                 ffs_epfiles_destroy(ffs->epfiles,
1422                                                    ffs->eps_count);
1423                                 ffs->epfiles = NULL;
1424                         }
1425                         if (ffs->setup_state == FFS_SETUP_PENDING)
1426                                 __ffs_ep0_stall(ffs);
1427                 } else {
1428                         ffs->state = FFS_CLOSING;
1429                         ffs_data_reset(ffs);
1430                 }
1431         }
1432         if (atomic_read(&ffs->opened) < 0) {
1433                 ffs->state = FFS_CLOSING;
1434                 ffs_data_reset(ffs);
1435         }
1436
1437         ffs_data_put(ffs);
1438 }
1439
1440 static struct ffs_data *ffs_data_new(void)
1441 {
1442         struct ffs_data *ffs = kzalloc(sizeof *ffs, GFP_KERNEL);
1443         if (unlikely(!ffs))
1444                 return NULL;
1445
1446         ENTER();
1447
1448         atomic_set(&ffs->ref, 1);
1449         atomic_set(&ffs->opened, 0);
1450         ffs->state = FFS_READ_DESCRIPTORS;
1451         mutex_init(&ffs->mutex);
1452         spin_lock_init(&ffs->eps_lock);
1453         init_waitqueue_head(&ffs->ev.waitq);
1454         init_completion(&ffs->ep0req_completion);
1455
1456         /* XXX REVISIT need to update it in some places, or do we? */
1457         ffs->ev.can_stall = 1;
1458
1459         return ffs;
1460 }
1461
1462 static void ffs_data_clear(struct ffs_data *ffs)
1463 {
1464         ENTER();
1465
1466         ffs_closed(ffs);
1467
1468         BUG_ON(ffs->gadget);
1469
1470         if (ffs->epfiles)
1471                 ffs_epfiles_destroy(ffs->epfiles, ffs->eps_count);
1472
1473         if (ffs->ffs_eventfd)
1474                 eventfd_ctx_put(ffs->ffs_eventfd);
1475
1476         kfree(ffs->raw_descs_data);
1477         kfree(ffs->raw_strings);
1478         kfree(ffs->stringtabs);
1479 }
1480
1481 static void ffs_data_reset(struct ffs_data *ffs)
1482 {
1483         ENTER();
1484
1485         ffs_data_clear(ffs);
1486
1487         ffs->epfiles = NULL;
1488         ffs->raw_descs_data = NULL;
1489         ffs->raw_descs = NULL;
1490         ffs->raw_strings = NULL;
1491         ffs->stringtabs = NULL;
1492
1493         ffs->raw_descs_length = 0;
1494         ffs->fs_descs_count = 0;
1495         ffs->hs_descs_count = 0;
1496         ffs->ss_descs_count = 0;
1497
1498         ffs->strings_count = 0;
1499         ffs->interfaces_count = 0;
1500         ffs->eps_count = 0;
1501
1502         ffs->ev.count = 0;
1503
1504         ffs->state = FFS_READ_DESCRIPTORS;
1505         ffs->setup_state = FFS_NO_SETUP;
1506         ffs->flags = 0;
1507 }
1508
1509
1510 static int functionfs_bind(struct ffs_data *ffs, struct usb_composite_dev *cdev)
1511 {
1512         struct usb_gadget_strings **lang;
1513         int first_id;
1514
1515         ENTER();
1516
1517         if (WARN_ON(ffs->state != FFS_ACTIVE
1518                  || test_and_set_bit(FFS_FL_BOUND, &ffs->flags)))
1519                 return -EBADFD;
1520
1521         first_id = usb_string_ids_n(cdev, ffs->strings_count);
1522         if (unlikely(first_id < 0))
1523                 return first_id;
1524
1525         ffs->ep0req = usb_ep_alloc_request(cdev->gadget->ep0, GFP_KERNEL);
1526         if (unlikely(!ffs->ep0req))
1527                 return -ENOMEM;
1528         ffs->ep0req->complete = ffs_ep0_complete;
1529         ffs->ep0req->context = ffs;
1530
1531         lang = ffs->stringtabs;
1532         if (lang) {
1533                 for (; *lang; ++lang) {
1534                         struct usb_string *str = (*lang)->strings;
1535                         int id = first_id;
1536                         for (; str->s; ++id, ++str)
1537                                 str->id = id;
1538                 }
1539         }
1540
1541         ffs->gadget = cdev->gadget;
1542         ffs_data_get(ffs);
1543         return 0;
1544 }
1545
1546 static void functionfs_unbind(struct ffs_data *ffs)
1547 {
1548         ENTER();
1549
1550         if (!WARN_ON(!ffs->gadget)) {
1551                 usb_ep_free_request(ffs->gadget->ep0, ffs->ep0req);
1552                 ffs->ep0req = NULL;
1553                 ffs->gadget = NULL;
1554                 clear_bit(FFS_FL_BOUND, &ffs->flags);
1555                 ffs_data_put(ffs);
1556         }
1557 }
1558
1559 static int ffs_epfiles_create(struct ffs_data *ffs)
1560 {
1561         struct ffs_epfile *epfile, *epfiles;
1562         unsigned i, count;
1563
1564         ENTER();
1565
1566         count = ffs->eps_count;
1567         epfiles = kcalloc(count, sizeof(*epfiles), GFP_KERNEL);
1568         if (!epfiles)
1569                 return -ENOMEM;
1570
1571         epfile = epfiles;
1572         for (i = 1; i <= count; ++i, ++epfile) {
1573                 epfile->ffs = ffs;
1574                 mutex_init(&epfile->mutex);
1575                 init_waitqueue_head(&epfile->wait);
1576                 if (ffs->user_flags & FUNCTIONFS_VIRTUAL_ADDR)
1577                         sprintf(epfile->name, "ep%02x", ffs->eps_addrmap[i]);
1578                 else
1579                         sprintf(epfile->name, "ep%u", i);
1580                 epfile->dentry = ffs_sb_create_file(ffs->sb, epfile->name,
1581                                                  epfile,
1582                                                  &ffs_epfile_operations);
1583                 if (unlikely(!epfile->dentry)) {
1584                         ffs_epfiles_destroy(epfiles, i - 1);
1585                         return -ENOMEM;
1586                 }
1587         }
1588
1589         ffs->epfiles = epfiles;
1590         return 0;
1591 }
1592
1593 static void ffs_epfiles_destroy(struct ffs_epfile *epfiles, unsigned count)
1594 {
1595         struct ffs_epfile *epfile = epfiles;
1596
1597         ENTER();
1598
1599         for (; count; --count, ++epfile) {
1600                 BUG_ON(mutex_is_locked(&epfile->mutex) ||
1601                        waitqueue_active(&epfile->wait));
1602                 if (epfile->dentry) {
1603                         d_delete(epfile->dentry);
1604                         dput(epfile->dentry);
1605                         epfile->dentry = NULL;
1606                 }
1607         }
1608
1609         kfree(epfiles);
1610 }
1611
1612 static void ffs_func_eps_disable(struct ffs_function *func)
1613 {
1614         struct ffs_ep *ep         = func->eps;
1615         struct ffs_epfile *epfile = func->ffs->epfiles;
1616         unsigned count            = func->ffs->eps_count;
1617         unsigned long flags;
1618
1619         spin_lock_irqsave(&func->ffs->eps_lock, flags);
1620         do {
1621                 /* pending requests get nuked */
1622                 if (likely(ep->ep))
1623                         usb_ep_disable(ep->ep);
1624                 ++ep;
1625
1626                 if (epfile) {
1627                         epfile->ep = NULL;
1628                         ++epfile;
1629                 }
1630         } while (--count);
1631         spin_unlock_irqrestore(&func->ffs->eps_lock, flags);
1632 }
1633
1634 static int ffs_func_eps_enable(struct ffs_function *func)
1635 {
1636         struct ffs_data *ffs      = func->ffs;
1637         struct ffs_ep *ep         = func->eps;
1638         struct ffs_epfile *epfile = ffs->epfiles;
1639         unsigned count            = ffs->eps_count;
1640         unsigned long flags;
1641         int ret = 0;
1642
1643         spin_lock_irqsave(&func->ffs->eps_lock, flags);
1644         do {
1645                 struct usb_endpoint_descriptor *ds;
1646                 int desc_idx;
1647
1648                 if (ffs->gadget->speed == USB_SPEED_SUPER)
1649                         desc_idx = 2;
1650                 else if (ffs->gadget->speed == USB_SPEED_HIGH)
1651                         desc_idx = 1;
1652                 else
1653                         desc_idx = 0;
1654
1655                 /* fall-back to lower speed if desc missing for current speed */
1656                 do {
1657                         ds = ep->descs[desc_idx];
1658                 } while (!ds && --desc_idx >= 0);
1659
1660                 if (!ds) {
1661                         ret = -EINVAL;
1662                         break;
1663                 }
1664
1665                 ep->ep->driver_data = ep;
1666                 ep->ep->desc = ds;
1667                 ret = usb_ep_enable(ep->ep);
1668                 if (likely(!ret)) {
1669                         epfile->ep = ep;
1670                         epfile->in = usb_endpoint_dir_in(ds);
1671                         epfile->isoc = usb_endpoint_xfer_isoc(ds);
1672                 } else {
1673                         break;
1674                 }
1675
1676                 wake_up(&epfile->wait);
1677
1678                 ++ep;
1679                 ++epfile;
1680         } while (--count);
1681         spin_unlock_irqrestore(&func->ffs->eps_lock, flags);
1682
1683         return ret;
1684 }
1685
1686
1687 /* Parsing and building descriptors and strings *****************************/
1688
1689 /*
1690  * This validates if data pointed by data is a valid USB descriptor as
1691  * well as record how many interfaces, endpoints and strings are
1692  * required by given configuration.  Returns address after the
1693  * descriptor or NULL if data is invalid.
1694  */
1695
1696 enum ffs_entity_type {
1697         FFS_DESCRIPTOR, FFS_INTERFACE, FFS_STRING, FFS_ENDPOINT
1698 };
1699
1700 enum ffs_os_desc_type {
1701         FFS_OS_DESC, FFS_OS_DESC_EXT_COMPAT, FFS_OS_DESC_EXT_PROP
1702 };
1703
1704 typedef int (*ffs_entity_callback)(enum ffs_entity_type entity,
1705                                    u8 *valuep,
1706                                    struct usb_descriptor_header *desc,
1707                                    void *priv);
1708
1709 typedef int (*ffs_os_desc_callback)(enum ffs_os_desc_type entity,
1710                                     struct usb_os_desc_header *h, void *data,
1711                                     unsigned len, void *priv);
1712
1713 static int __must_check ffs_do_single_desc(char *data, unsigned len,
1714                                            ffs_entity_callback entity,
1715                                            void *priv)
1716 {
1717         struct usb_descriptor_header *_ds = (void *)data;
1718         u8 length;
1719         int ret;
1720
1721         ENTER();
1722
1723         /* At least two bytes are required: length and type */
1724         if (len < 2) {
1725                 pr_vdebug("descriptor too short\n");
1726                 return -EINVAL;
1727         }
1728
1729         /* If we have at least as many bytes as the descriptor takes? */
1730         length = _ds->bLength;
1731         if (len < length) {
1732                 pr_vdebug("descriptor longer then available data\n");
1733                 return -EINVAL;
1734         }
1735
1736 #define __entity_check_INTERFACE(val)  1
1737 #define __entity_check_STRING(val)     (val)
1738 #define __entity_check_ENDPOINT(val)   ((val) & USB_ENDPOINT_NUMBER_MASK)
1739 #define __entity(type, val) do {                                        \
1740                 pr_vdebug("entity " #type "(%02x)\n", (val));           \
1741                 if (unlikely(!__entity_check_ ##type(val))) {           \
1742                         pr_vdebug("invalid entity's value\n");          \
1743                         return -EINVAL;                                 \
1744                 }                                                       \
1745                 ret = entity(FFS_ ##type, &val, _ds, priv);             \
1746                 if (unlikely(ret < 0)) {                                \
1747                         pr_debug("entity " #type "(%02x); ret = %d\n",  \
1748                                  (val), ret);                           \
1749                         return ret;                                     \
1750                 }                                                       \
1751         } while (0)
1752
1753         /* Parse descriptor depending on type. */
1754         switch (_ds->bDescriptorType) {
1755         case USB_DT_DEVICE:
1756         case USB_DT_CONFIG:
1757         case USB_DT_STRING:
1758         case USB_DT_DEVICE_QUALIFIER:
1759                 /* function can't have any of those */
1760                 pr_vdebug("descriptor reserved for gadget: %d\n",
1761                       _ds->bDescriptorType);
1762                 return -EINVAL;
1763
1764         case USB_DT_INTERFACE: {
1765                 struct usb_interface_descriptor *ds = (void *)_ds;
1766                 pr_vdebug("interface descriptor\n");
1767                 if (length != sizeof *ds)
1768                         goto inv_length;
1769
1770                 __entity(INTERFACE, ds->bInterfaceNumber);
1771                 if (ds->iInterface)
1772                         __entity(STRING, ds->iInterface);
1773         }
1774                 break;
1775
1776         case USB_DT_ENDPOINT: {
1777                 struct usb_endpoint_descriptor *ds = (void *)_ds;
1778                 pr_vdebug("endpoint descriptor\n");
1779                 if (length != USB_DT_ENDPOINT_SIZE &&
1780                     length != USB_DT_ENDPOINT_AUDIO_SIZE)
1781                         goto inv_length;
1782                 __entity(ENDPOINT, ds->bEndpointAddress);
1783         }
1784                 break;
1785
1786         case HID_DT_HID:
1787                 pr_vdebug("hid descriptor\n");
1788                 if (length != sizeof(struct hid_descriptor))
1789                         goto inv_length;
1790                 break;
1791
1792         case USB_DT_OTG:
1793                 if (length != sizeof(struct usb_otg_descriptor))
1794                         goto inv_length;
1795                 break;
1796
1797         case USB_DT_INTERFACE_ASSOCIATION: {
1798                 struct usb_interface_assoc_descriptor *ds = (void *)_ds;
1799                 pr_vdebug("interface association descriptor\n");
1800                 if (length != sizeof *ds)
1801                         goto inv_length;
1802                 if (ds->iFunction)
1803                         __entity(STRING, ds->iFunction);
1804         }
1805                 break;
1806
1807         case USB_DT_SS_ENDPOINT_COMP:
1808                 pr_vdebug("EP SS companion descriptor\n");
1809                 if (length != sizeof(struct usb_ss_ep_comp_descriptor))
1810                         goto inv_length;
1811                 break;
1812
1813         case USB_DT_OTHER_SPEED_CONFIG:
1814         case USB_DT_INTERFACE_POWER:
1815         case USB_DT_DEBUG:
1816         case USB_DT_SECURITY:
1817         case USB_DT_CS_RADIO_CONTROL:
1818                 /* TODO */
1819                 pr_vdebug("unimplemented descriptor: %d\n", _ds->bDescriptorType);
1820                 return -EINVAL;
1821
1822         default:
1823                 /* We should never be here */
1824                 pr_vdebug("unknown descriptor: %d\n", _ds->bDescriptorType);
1825                 return -EINVAL;
1826
1827 inv_length:
1828                 pr_vdebug("invalid length: %d (descriptor %d)\n",
1829                           _ds->bLength, _ds->bDescriptorType);
1830                 return -EINVAL;
1831         }
1832
1833 #undef __entity
1834 #undef __entity_check_DESCRIPTOR
1835 #undef __entity_check_INTERFACE
1836 #undef __entity_check_STRING
1837 #undef __entity_check_ENDPOINT
1838
1839         return length;
1840 }
1841
1842 static int __must_check ffs_do_descs(unsigned count, char *data, unsigned len,
1843                                      ffs_entity_callback entity, void *priv)
1844 {
1845         const unsigned _len = len;
1846         unsigned long num = 0;
1847
1848         ENTER();
1849
1850         for (;;) {
1851                 int ret;
1852
1853                 if (num == count)
1854                         data = NULL;
1855
1856                 /* Record "descriptor" entity */
1857                 ret = entity(FFS_DESCRIPTOR, (u8 *)num, (void *)data, priv);
1858                 if (unlikely(ret < 0)) {
1859                         pr_debug("entity DESCRIPTOR(%02lx); ret = %d\n",
1860                                  num, ret);
1861                         return ret;
1862                 }
1863
1864                 if (!data)
1865                         return _len - len;
1866
1867                 ret = ffs_do_single_desc(data, len, entity, priv);
1868                 if (unlikely(ret < 0)) {
1869                         pr_debug("%s returns %d\n", __func__, ret);
1870                         return ret;
1871                 }
1872
1873                 len -= ret;
1874                 data += ret;
1875                 ++num;
1876         }
1877 }
1878
1879 static int __ffs_data_do_entity(enum ffs_entity_type type,
1880                                 u8 *valuep, struct usb_descriptor_header *desc,
1881                                 void *priv)
1882 {
1883         struct ffs_desc_helper *helper = priv;
1884         struct usb_endpoint_descriptor *d;
1885
1886         ENTER();
1887
1888         switch (type) {
1889         case FFS_DESCRIPTOR:
1890                 break;
1891
1892         case FFS_INTERFACE:
1893                 /*
1894                  * Interfaces are indexed from zero so if we
1895                  * encountered interface "n" then there are at least
1896                  * "n+1" interfaces.
1897                  */
1898                 if (*valuep >= helper->interfaces_count)
1899                         helper->interfaces_count = *valuep + 1;
1900                 break;
1901
1902         case FFS_STRING:
1903                 /*
1904                  * Strings are indexed from 1 (0 is magic ;) reserved
1905                  * for languages list or some such)
1906                  */
1907                 if (*valuep > helper->ffs->strings_count)
1908                         helper->ffs->strings_count = *valuep;
1909                 break;
1910
1911         case FFS_ENDPOINT:
1912                 d = (void *)desc;
1913                 helper->eps_count++;
1914                 if (helper->eps_count >= 15)
1915                         return -EINVAL;
1916                 /* Check if descriptors for any speed were already parsed */
1917                 if (!helper->ffs->eps_count && !helper->ffs->interfaces_count)
1918                         helper->ffs->eps_addrmap[helper->eps_count] =
1919                                 d->bEndpointAddress;
1920                 else if (helper->ffs->eps_addrmap[helper->eps_count] !=
1921                                 d->bEndpointAddress)
1922                         return -EINVAL;
1923                 break;
1924         }
1925
1926         return 0;
1927 }
1928
1929 static int __ffs_do_os_desc_header(enum ffs_os_desc_type *next_type,
1930                                    struct usb_os_desc_header *desc)
1931 {
1932         u16 bcd_version = le16_to_cpu(desc->bcdVersion);
1933         u16 w_index = le16_to_cpu(desc->wIndex);
1934
1935         if (bcd_version != 1) {
1936                 pr_vdebug("unsupported os descriptors version: %d",
1937                           bcd_version);
1938                 return -EINVAL;
1939         }
1940         switch (w_index) {
1941         case 0x4:
1942                 *next_type = FFS_OS_DESC_EXT_COMPAT;
1943                 break;
1944         case 0x5:
1945                 *next_type = FFS_OS_DESC_EXT_PROP;
1946                 break;
1947         default:
1948                 pr_vdebug("unsupported os descriptor type: %d", w_index);
1949                 return -EINVAL;
1950         }
1951
1952         return sizeof(*desc);
1953 }
1954
1955 /*
1956  * Process all extended compatibility/extended property descriptors
1957  * of a feature descriptor
1958  */
1959 static int __must_check ffs_do_single_os_desc(char *data, unsigned len,
1960                                               enum ffs_os_desc_type type,
1961                                               u16 feature_count,
1962                                               ffs_os_desc_callback entity,
1963                                               void *priv,
1964                                               struct usb_os_desc_header *h)
1965 {
1966         int ret;
1967         const unsigned _len = len;
1968
1969         ENTER();
1970
1971         /* loop over all ext compat/ext prop descriptors */
1972         while (feature_count--) {
1973                 ret = entity(type, h, data, len, priv);
1974                 if (unlikely(ret < 0)) {
1975                         pr_debug("bad OS descriptor, type: %d\n", type);
1976                         return ret;
1977                 }
1978                 data += ret;
1979                 len -= ret;
1980         }
1981         return _len - len;
1982 }
1983
1984 /* Process a number of complete Feature Descriptors (Ext Compat or Ext Prop) */
1985 static int __must_check ffs_do_os_descs(unsigned count,
1986                                         char *data, unsigned len,
1987                                         ffs_os_desc_callback entity, void *priv)
1988 {
1989         const unsigned _len = len;
1990         unsigned long num = 0;
1991
1992         ENTER();
1993
1994         for (num = 0; num < count; ++num) {
1995                 int ret;
1996                 enum ffs_os_desc_type type;
1997                 u16 feature_count;
1998                 struct usb_os_desc_header *desc = (void *)data;
1999
2000                 if (len < sizeof(*desc))
2001                         return -EINVAL;
2002
2003                 /*
2004                  * Record "descriptor" entity.
2005                  * Process dwLength, bcdVersion, wIndex, get b/wCount.
2006                  * Move the data pointer to the beginning of extended
2007                  * compatibilities proper or extended properties proper
2008                  * portions of the data
2009                  */
2010                 if (le32_to_cpu(desc->dwLength) > len)
2011                         return -EINVAL;
2012
2013                 ret = __ffs_do_os_desc_header(&type, desc);
2014                 if (unlikely(ret < 0)) {
2015                         pr_debug("entity OS_DESCRIPTOR(%02lx); ret = %d\n",
2016                                  num, ret);
2017                         return ret;
2018                 }
2019                 /*
2020                  * 16-bit hex "?? 00" Little Endian looks like 8-bit hex "??"
2021                  */
2022                 feature_count = le16_to_cpu(desc->wCount);
2023                 if (type == FFS_OS_DESC_EXT_COMPAT &&
2024                     (feature_count > 255 || desc->Reserved))
2025                                 return -EINVAL;
2026                 len -= ret;
2027                 data += ret;
2028
2029                 /*
2030                  * Process all function/property descriptors
2031                  * of this Feature Descriptor
2032                  */
2033                 ret = ffs_do_single_os_desc(data, len, type,
2034                                             feature_count, entity, priv, desc);
2035                 if (unlikely(ret < 0)) {
2036                         pr_debug("%s returns %d\n", __func__, ret);
2037                         return ret;
2038                 }
2039
2040                 len -= ret;
2041                 data += ret;
2042         }
2043         return _len - len;
2044 }
2045
2046 /**
2047  * Validate contents of the buffer from userspace related to OS descriptors.
2048  */
2049 static int __ffs_data_do_os_desc(enum ffs_os_desc_type type,
2050                                  struct usb_os_desc_header *h, void *data,
2051                                  unsigned len, void *priv)
2052 {
2053         struct ffs_data *ffs = priv;
2054         u8 length;
2055
2056         ENTER();
2057
2058         switch (type) {
2059         case FFS_OS_DESC_EXT_COMPAT: {
2060                 struct usb_ext_compat_desc *d = data;
2061                 int i;
2062
2063                 if (len < sizeof(*d) ||
2064                     d->bFirstInterfaceNumber >= ffs->interfaces_count ||
2065                     d->Reserved1)
2066                         return -EINVAL;
2067                 for (i = 0; i < ARRAY_SIZE(d->Reserved2); ++i)
2068                         if (d->Reserved2[i])
2069                                 return -EINVAL;
2070
2071                 length = sizeof(struct usb_ext_compat_desc);
2072         }
2073                 break;
2074         case FFS_OS_DESC_EXT_PROP: {
2075                 struct usb_ext_prop_desc *d = data;
2076                 u32 type, pdl;
2077                 u16 pnl;
2078
2079                 if (len < sizeof(*d) || h->interface >= ffs->interfaces_count)
2080                         return -EINVAL;
2081                 length = le32_to_cpu(d->dwSize);
2082                 if (len < length)
2083                         return -EINVAL;
2084                 type = le32_to_cpu(d->dwPropertyDataType);
2085                 if (type < USB_EXT_PROP_UNICODE ||
2086                     type > USB_EXT_PROP_UNICODE_MULTI) {
2087                         pr_vdebug("unsupported os descriptor property type: %d",
2088                                   type);
2089                         return -EINVAL;
2090                 }
2091                 pnl = le16_to_cpu(d->wPropertyNameLength);
2092                 if (length < 14 + pnl) {
2093                         pr_vdebug("invalid os descriptor length: %d pnl:%d (descriptor %d)\n",
2094                                   length, pnl, type);
2095                         return -EINVAL;
2096                 }
2097                 pdl = le32_to_cpu(*(u32 *)((u8 *)data + 10 + pnl));
2098                 if (length != 14 + pnl + pdl) {
2099                         pr_vdebug("invalid os descriptor length: %d pnl:%d pdl:%d (descriptor %d)\n",
2100                                   length, pnl, pdl, type);
2101                         return -EINVAL;
2102                 }
2103                 ++ffs->ms_os_descs_ext_prop_count;
2104                 /* property name reported to the host as "WCHAR"s */
2105                 ffs->ms_os_descs_ext_prop_name_len += pnl * 2;
2106                 ffs->ms_os_descs_ext_prop_data_len += pdl;
2107         }
2108                 break;
2109         default:
2110                 pr_vdebug("unknown descriptor: %d\n", type);
2111                 return -EINVAL;
2112         }
2113         return length;
2114 }
2115
2116 static int __ffs_data_got_descs(struct ffs_data *ffs,
2117                                 char *const _data, size_t len)
2118 {
2119         char *data = _data, *raw_descs;
2120         unsigned os_descs_count = 0, counts[3], flags;
2121         int ret = -EINVAL, i;
2122         struct ffs_desc_helper helper;
2123
2124         ENTER();
2125
2126         if (get_unaligned_le32(data + 4) != len)
2127                 goto error;
2128
2129         switch (get_unaligned_le32(data)) {
2130         case FUNCTIONFS_DESCRIPTORS_MAGIC:
2131                 flags = FUNCTIONFS_HAS_FS_DESC | FUNCTIONFS_HAS_HS_DESC;
2132                 data += 8;
2133                 len  -= 8;
2134                 break;
2135         case FUNCTIONFS_DESCRIPTORS_MAGIC_V2:
2136                 flags = get_unaligned_le32(data + 8);
2137                 ffs->user_flags = flags;
2138                 if (flags & ~(FUNCTIONFS_HAS_FS_DESC |
2139                               FUNCTIONFS_HAS_HS_DESC |
2140                               FUNCTIONFS_HAS_SS_DESC |
2141                               FUNCTIONFS_HAS_MS_OS_DESC |
2142                               FUNCTIONFS_VIRTUAL_ADDR |
2143                               FUNCTIONFS_EVENTFD)) {
2144                         ret = -ENOSYS;
2145                         goto error;
2146                 }
2147                 data += 12;
2148                 len  -= 12;
2149                 break;
2150         default:
2151                 goto error;
2152         }
2153
2154         if (flags & FUNCTIONFS_EVENTFD) {
2155                 if (len < 4)
2156                         goto error;
2157                 ffs->ffs_eventfd =
2158                         eventfd_ctx_fdget((int)get_unaligned_le32(data));
2159                 if (IS_ERR(ffs->ffs_eventfd)) {
2160                         ret = PTR_ERR(ffs->ffs_eventfd);
2161                         ffs->ffs_eventfd = NULL;
2162                         goto error;
2163                 }
2164                 data += 4;
2165                 len  -= 4;
2166         }
2167
2168         /* Read fs_count, hs_count and ss_count (if present) */
2169         for (i = 0; i < 3; ++i) {
2170                 if (!(flags & (1 << i))) {
2171                         counts[i] = 0;
2172                 } else if (len < 4) {
2173                         goto error;
2174                 } else {
2175                         counts[i] = get_unaligned_le32(data);
2176                         data += 4;
2177                         len  -= 4;
2178                 }
2179         }
2180         if (flags & (1 << i)) {
2181                 if (len < 4) {
2182                         goto error;
2183                 }
2184                 os_descs_count = get_unaligned_le32(data);
2185                 data += 4;
2186                 len -= 4;
2187         };
2188
2189         /* Read descriptors */
2190         raw_descs = data;
2191         helper.ffs = ffs;
2192         for (i = 0; i < 3; ++i) {
2193                 if (!counts[i])
2194                         continue;
2195                 helper.interfaces_count = 0;
2196                 helper.eps_count = 0;
2197                 ret = ffs_do_descs(counts[i], data, len,
2198                                    __ffs_data_do_entity, &helper);
2199                 if (ret < 0)
2200                         goto error;
2201                 if (!ffs->eps_count && !ffs->interfaces_count) {
2202                         ffs->eps_count = helper.eps_count;
2203                         ffs->interfaces_count = helper.interfaces_count;
2204                 } else {
2205                         if (ffs->eps_count != helper.eps_count) {
2206                                 ret = -EINVAL;
2207                                 goto error;
2208                         }
2209                         if (ffs->interfaces_count != helper.interfaces_count) {
2210                                 ret = -EINVAL;
2211                                 goto error;
2212                         }
2213                 }
2214                 data += ret;
2215                 len  -= ret;
2216         }
2217         if (os_descs_count) {
2218                 ret = ffs_do_os_descs(os_descs_count, data, len,
2219                                       __ffs_data_do_os_desc, ffs);
2220                 if (ret < 0)
2221                         goto error;
2222                 data += ret;
2223                 len -= ret;
2224         }
2225
2226         if (raw_descs == data || len) {
2227                 ret = -EINVAL;
2228                 goto error;
2229         }
2230
2231         ffs->raw_descs_data     = _data;
2232         ffs->raw_descs          = raw_descs;
2233         ffs->raw_descs_length   = data - raw_descs;
2234         ffs->fs_descs_count     = counts[0];
2235         ffs->hs_descs_count     = counts[1];
2236         ffs->ss_descs_count     = counts[2];
2237         ffs->ms_os_descs_count  = os_descs_count;
2238
2239         return 0;
2240
2241 error:
2242         kfree(_data);
2243         return ret;
2244 }
2245
2246 static int __ffs_data_got_strings(struct ffs_data *ffs,
2247                                   char *const _data, size_t len)
2248 {
2249         u32 str_count, needed_count, lang_count;
2250         struct usb_gadget_strings **stringtabs, *t;
2251         struct usb_string *strings, *s;
2252         const char *data = _data;
2253
2254         ENTER();
2255
2256         if (unlikely(len < 16 ||
2257                      get_unaligned_le32(data) != FUNCTIONFS_STRINGS_MAGIC ||
2258                      get_unaligned_le32(data + 4) != len))
2259                 goto error;
2260         str_count  = get_unaligned_le32(data + 8);
2261         lang_count = get_unaligned_le32(data + 12);
2262
2263         /* if one is zero the other must be zero */
2264         if (unlikely(!str_count != !lang_count))
2265                 goto error;
2266
2267         /* Do we have at least as many strings as descriptors need? */
2268         needed_count = ffs->strings_count;
2269         if (unlikely(str_count < needed_count))
2270                 goto error;
2271
2272         /*
2273          * If we don't need any strings just return and free all
2274          * memory.
2275          */
2276         if (!needed_count) {
2277                 kfree(_data);
2278                 return 0;
2279         }
2280
2281         /* Allocate everything in one chunk so there's less maintenance. */
2282         {
2283                 unsigned i = 0;
2284                 vla_group(d);
2285                 vla_item(d, struct usb_gadget_strings *, stringtabs,
2286                         lang_count + 1);
2287                 vla_item(d, struct usb_gadget_strings, stringtab, lang_count);
2288                 vla_item(d, struct usb_string, strings,
2289                         lang_count*(needed_count+1));
2290
2291                 char *vlabuf = kmalloc(vla_group_size(d), GFP_KERNEL);
2292
2293                 if (unlikely(!vlabuf)) {
2294                         kfree(_data);
2295                         return -ENOMEM;
2296                 }
2297
2298                 /* Initialize the VLA pointers */
2299                 stringtabs = vla_ptr(vlabuf, d, stringtabs);
2300                 t = vla_ptr(vlabuf, d, stringtab);
2301                 i = lang_count;
2302                 do {
2303                         *stringtabs++ = t++;
2304                 } while (--i);
2305                 *stringtabs = NULL;
2306
2307                 /* stringtabs = vlabuf = d_stringtabs for later kfree */
2308                 stringtabs = vla_ptr(vlabuf, d, stringtabs);
2309                 t = vla_ptr(vlabuf, d, stringtab);
2310                 s = vla_ptr(vlabuf, d, strings);
2311                 strings = s;
2312         }
2313
2314         /* For each language */
2315         data += 16;
2316         len -= 16;
2317
2318         do { /* lang_count > 0 so we can use do-while */
2319                 unsigned needed = needed_count;
2320
2321                 if (unlikely(len < 3))
2322                         goto error_free;
2323                 t->language = get_unaligned_le16(data);
2324                 t->strings  = s;
2325                 ++t;
2326
2327                 data += 2;
2328                 len -= 2;
2329
2330                 /* For each string */
2331                 do { /* str_count > 0 so we can use do-while */
2332                         size_t length = strnlen(data, len);
2333
2334                         if (unlikely(length == len))
2335                                 goto error_free;
2336
2337                         /*
2338                          * User may provide more strings then we need,
2339                          * if that's the case we simply ignore the
2340                          * rest
2341                          */
2342                         if (likely(needed)) {
2343                                 /*
2344                                  * s->id will be set while adding
2345                                  * function to configuration so for
2346                                  * now just leave garbage here.
2347                                  */
2348                                 s->s = data;
2349                                 --needed;
2350                                 ++s;
2351                         }
2352
2353                         data += length + 1;
2354                         len -= length + 1;
2355                 } while (--str_count);
2356
2357                 s->id = 0;   /* terminator */
2358                 s->s = NULL;
2359                 ++s;
2360
2361         } while (--lang_count);
2362
2363         /* Some garbage left? */
2364         if (unlikely(len))
2365                 goto error_free;
2366
2367         /* Done! */
2368         ffs->stringtabs = stringtabs;
2369         ffs->raw_strings = _data;
2370
2371         return 0;
2372
2373 error_free:
2374         kfree(stringtabs);
2375 error:
2376         kfree(_data);
2377         return -EINVAL;
2378 }
2379
2380
2381 /* Events handling and management *******************************************/
2382
2383 static void __ffs_event_add(struct ffs_data *ffs,
2384                             enum usb_functionfs_event_type type)
2385 {
2386         enum usb_functionfs_event_type rem_type1, rem_type2 = type;
2387         int neg = 0;
2388
2389         /*
2390          * Abort any unhandled setup
2391          *
2392          * We do not need to worry about some cmpxchg() changing value
2393          * of ffs->setup_state without holding the lock because when
2394          * state is FFS_SETUP_PENDING cmpxchg() in several places in
2395          * the source does nothing.
2396          */
2397         if (ffs->setup_state == FFS_SETUP_PENDING)
2398                 ffs->setup_state = FFS_SETUP_CANCELLED;
2399
2400         /*
2401          * Logic of this function guarantees that there are at most four pending
2402          * evens on ffs->ev.types queue.  This is important because the queue
2403          * has space for four elements only and __ffs_ep0_read_events function
2404          * depends on that limit as well.  If more event types are added, those
2405          * limits have to be revisited or guaranteed to still hold.
2406          */
2407         switch (type) {
2408         case FUNCTIONFS_RESUME:
2409                 rem_type2 = FUNCTIONFS_SUSPEND;
2410                 /* FALL THROUGH */
2411         case FUNCTIONFS_SUSPEND:
2412         case FUNCTIONFS_SETUP:
2413                 rem_type1 = type;
2414                 /* Discard all similar events */
2415                 break;
2416
2417         case FUNCTIONFS_BIND:
2418         case FUNCTIONFS_UNBIND:
2419         case FUNCTIONFS_DISABLE:
2420         case FUNCTIONFS_ENABLE:
2421                 /* Discard everything other then power management. */
2422                 rem_type1 = FUNCTIONFS_SUSPEND;
2423                 rem_type2 = FUNCTIONFS_RESUME;
2424                 neg = 1;
2425                 break;
2426
2427         default:
2428                 WARN(1, "%d: unknown event, this should not happen\n", type);
2429                 return;
2430         }
2431
2432         {
2433                 u8 *ev  = ffs->ev.types, *out = ev;
2434                 unsigned n = ffs->ev.count;
2435                 for (; n; --n, ++ev)
2436                         if ((*ev == rem_type1 || *ev == rem_type2) == neg)
2437                                 *out++ = *ev;
2438                         else
2439                                 pr_vdebug("purging event %d\n", *ev);
2440                 ffs->ev.count = out - ffs->ev.types;
2441         }
2442
2443         pr_vdebug("adding event %d\n", type);
2444         ffs->ev.types[ffs->ev.count++] = type;
2445         wake_up_locked(&ffs->ev.waitq);
2446         if (ffs->ffs_eventfd)
2447                 eventfd_signal(ffs->ffs_eventfd, 1);
2448 }
2449
2450 static void ffs_event_add(struct ffs_data *ffs,
2451                           enum usb_functionfs_event_type type)
2452 {
2453         unsigned long flags;
2454         spin_lock_irqsave(&ffs->ev.waitq.lock, flags);
2455         __ffs_event_add(ffs, type);
2456         spin_unlock_irqrestore(&ffs->ev.waitq.lock, flags);
2457 }
2458
2459 /* Bind/unbind USB function hooks *******************************************/
2460
2461 static int ffs_ep_addr2idx(struct ffs_data *ffs, u8 endpoint_address)
2462 {
2463         int i;
2464
2465         for (i = 1; i < ARRAY_SIZE(ffs->eps_addrmap); ++i)
2466                 if (ffs->eps_addrmap[i] == endpoint_address)
2467                         return i;
2468         return -ENOENT;
2469 }
2470
2471 static int __ffs_func_bind_do_descs(enum ffs_entity_type type, u8 *valuep,
2472                                     struct usb_descriptor_header *desc,
2473                                     void *priv)
2474 {
2475         struct usb_endpoint_descriptor *ds = (void *)desc;
2476         struct ffs_function *func = priv;
2477         struct ffs_ep *ffs_ep;
2478         unsigned ep_desc_id;
2479         int idx;
2480         static const char *speed_names[] = { "full", "high", "super" };
2481
2482         if (type != FFS_DESCRIPTOR)
2483                 return 0;
2484
2485         /*
2486          * If ss_descriptors is not NULL, we are reading super speed
2487          * descriptors; if hs_descriptors is not NULL, we are reading high
2488          * speed descriptors; otherwise, we are reading full speed
2489          * descriptors.
2490          */
2491         if (func->function.ss_descriptors) {
2492                 ep_desc_id = 2;
2493                 func->function.ss_descriptors[(long)valuep] = desc;
2494         } else if (func->function.hs_descriptors) {
2495                 ep_desc_id = 1;
2496                 func->function.hs_descriptors[(long)valuep] = desc;
2497         } else {
2498                 ep_desc_id = 0;
2499                 func->function.fs_descriptors[(long)valuep]    = desc;
2500         }
2501
2502         if (!desc || desc->bDescriptorType != USB_DT_ENDPOINT)
2503                 return 0;
2504
2505         idx = ffs_ep_addr2idx(func->ffs, ds->bEndpointAddress) - 1;
2506         if (idx < 0)
2507                 return idx;
2508
2509         ffs_ep = func->eps + idx;
2510
2511         if (unlikely(ffs_ep->descs[ep_desc_id])) {
2512                 pr_err("two %sspeed descriptors for EP %d\n",
2513                           speed_names[ep_desc_id],
2514                           ds->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
2515                 return -EINVAL;
2516         }
2517         ffs_ep->descs[ep_desc_id] = ds;
2518
2519         ffs_dump_mem(": Original  ep desc", ds, ds->bLength);
2520         if (ffs_ep->ep) {
2521                 ds->bEndpointAddress = ffs_ep->descs[0]->bEndpointAddress;
2522                 if (!ds->wMaxPacketSize)
2523                         ds->wMaxPacketSize = ffs_ep->descs[0]->wMaxPacketSize;
2524         } else {
2525                 struct usb_request *req;
2526                 struct usb_ep *ep;
2527                 u8 bEndpointAddress;
2528
2529                 /*
2530                  * We back up bEndpointAddress because autoconfig overwrites
2531                  * it with physical endpoint address.
2532                  */
2533                 bEndpointAddress = ds->bEndpointAddress;
2534                 pr_vdebug("autoconfig\n");
2535                 ep = usb_ep_autoconfig(func->gadget, ds);
2536                 if (unlikely(!ep))
2537                         return -ENOTSUPP;
2538                 ep->driver_data = func->eps + idx;
2539
2540                 req = usb_ep_alloc_request(ep, GFP_KERNEL);
2541                 if (unlikely(!req))
2542                         return -ENOMEM;
2543
2544                 ffs_ep->ep  = ep;
2545                 ffs_ep->req = req;
2546                 func->eps_revmap[ds->bEndpointAddress &
2547                                  USB_ENDPOINT_NUMBER_MASK] = idx + 1;
2548                 /*
2549                  * If we use virtual address mapping, we restore
2550                  * original bEndpointAddress value.
2551                  */
2552                 if (func->ffs->user_flags & FUNCTIONFS_VIRTUAL_ADDR)
2553                         ds->bEndpointAddress = bEndpointAddress;
2554         }
2555         ffs_dump_mem(": Rewritten ep desc", ds, ds->bLength);
2556
2557         return 0;
2558 }
2559
2560 static int __ffs_func_bind_do_nums(enum ffs_entity_type type, u8 *valuep,
2561                                    struct usb_descriptor_header *desc,
2562                                    void *priv)
2563 {
2564         struct ffs_function *func = priv;
2565         unsigned idx;
2566         u8 newValue;
2567
2568         switch (type) {
2569         default:
2570         case FFS_DESCRIPTOR:
2571                 /* Handled in previous pass by __ffs_func_bind_do_descs() */
2572                 return 0;
2573
2574         case FFS_INTERFACE:
2575                 idx = *valuep;
2576                 if (func->interfaces_nums[idx] < 0) {
2577                         int id = usb_interface_id(func->conf, &func->function);
2578                         if (unlikely(id < 0))
2579                                 return id;
2580                         func->interfaces_nums[idx] = id;
2581                 }
2582                 newValue = func->interfaces_nums[idx];
2583                 break;
2584
2585         case FFS_STRING:
2586                 /* String' IDs are allocated when fsf_data is bound to cdev */
2587                 newValue = func->ffs->stringtabs[0]->strings[*valuep - 1].id;
2588                 break;
2589
2590         case FFS_ENDPOINT:
2591                 /*
2592                  * USB_DT_ENDPOINT are handled in
2593                  * __ffs_func_bind_do_descs().
2594                  */
2595                 if (desc->bDescriptorType == USB_DT_ENDPOINT)
2596                         return 0;
2597
2598                 idx = (*valuep & USB_ENDPOINT_NUMBER_MASK) - 1;
2599                 if (unlikely(!func->eps[idx].ep))
2600                         return -EINVAL;
2601
2602                 {
2603                         struct usb_endpoint_descriptor **descs;
2604                         descs = func->eps[idx].descs;
2605                         newValue = descs[descs[0] ? 0 : 1]->bEndpointAddress;
2606                 }
2607                 break;
2608         }
2609
2610         pr_vdebug("%02x -> %02x\n", *valuep, newValue);
2611         *valuep = newValue;
2612         return 0;
2613 }
2614
2615 static int __ffs_func_bind_do_os_desc(enum ffs_os_desc_type type,
2616                                       struct usb_os_desc_header *h, void *data,
2617                                       unsigned len, void *priv)
2618 {
2619         struct ffs_function *func = priv;
2620         u8 length = 0;
2621
2622         switch (type) {
2623         case FFS_OS_DESC_EXT_COMPAT: {
2624                 struct usb_ext_compat_desc *desc = data;
2625                 struct usb_os_desc_table *t;
2626
2627                 t = &func->function.os_desc_table[desc->bFirstInterfaceNumber];
2628                 t->if_id = func->interfaces_nums[desc->bFirstInterfaceNumber];
2629                 memcpy(t->os_desc->ext_compat_id, &desc->CompatibleID,
2630                        ARRAY_SIZE(desc->CompatibleID) +
2631                        ARRAY_SIZE(desc->SubCompatibleID));
2632                 length = sizeof(*desc);
2633         }
2634                 break;
2635         case FFS_OS_DESC_EXT_PROP: {
2636                 struct usb_ext_prop_desc *desc = data;
2637                 struct usb_os_desc_table *t;
2638                 struct usb_os_desc_ext_prop *ext_prop;
2639                 char *ext_prop_name;
2640                 char *ext_prop_data;
2641
2642                 t = &func->function.os_desc_table[h->interface];
2643                 t->if_id = func->interfaces_nums[h->interface];
2644
2645                 ext_prop = func->ffs->ms_os_descs_ext_prop_avail;
2646                 func->ffs->ms_os_descs_ext_prop_avail += sizeof(*ext_prop);
2647
2648                 ext_prop->type = le32_to_cpu(desc->dwPropertyDataType);
2649                 ext_prop->name_len = le16_to_cpu(desc->wPropertyNameLength);
2650                 ext_prop->data_len = le32_to_cpu(*(u32 *)
2651                         usb_ext_prop_data_len_ptr(data, ext_prop->name_len));
2652                 length = ext_prop->name_len + ext_prop->data_len + 14;
2653
2654                 ext_prop_name = func->ffs->ms_os_descs_ext_prop_name_avail;
2655                 func->ffs->ms_os_descs_ext_prop_name_avail +=
2656                         ext_prop->name_len;
2657
2658                 ext_prop_data = func->ffs->ms_os_descs_ext_prop_data_avail;
2659                 func->ffs->ms_os_descs_ext_prop_data_avail +=
2660                         ext_prop->data_len;
2661                 memcpy(ext_prop_data,
2662                        usb_ext_prop_data_ptr(data, ext_prop->name_len),
2663                        ext_prop->data_len);
2664                 /* unicode data reported to the host as "WCHAR"s */
2665                 switch (ext_prop->type) {
2666                 case USB_EXT_PROP_UNICODE:
2667                 case USB_EXT_PROP_UNICODE_ENV:
2668                 case USB_EXT_PROP_UNICODE_LINK:
2669                 case USB_EXT_PROP_UNICODE_MULTI:
2670                         ext_prop->data_len *= 2;
2671                         break;
2672                 }
2673                 ext_prop->data = ext_prop_data;
2674
2675                 memcpy(ext_prop_name, usb_ext_prop_name_ptr(data),
2676                        ext_prop->name_len);
2677                 /* property name reported to the host as "WCHAR"s */
2678                 ext_prop->name_len *= 2;
2679                 ext_prop->name = ext_prop_name;
2680
2681                 t->os_desc->ext_prop_len +=
2682                         ext_prop->name_len + ext_prop->data_len + 14;
2683                 ++t->os_desc->ext_prop_count;
2684                 list_add_tail(&ext_prop->entry, &t->os_desc->ext_prop);
2685         }
2686                 break;
2687         default:
2688                 pr_vdebug("unknown descriptor: %d\n", type);
2689         }
2690
2691         return length;
2692 }
2693
2694 static inline struct f_fs_opts *ffs_do_functionfs_bind(struct usb_function *f,
2695                                                 struct usb_configuration *c)
2696 {
2697         struct ffs_function *func = ffs_func_from_usb(f);
2698         struct f_fs_opts *ffs_opts =
2699                 container_of(f->fi, struct f_fs_opts, func_inst);
2700         int ret;
2701
2702         ENTER();
2703
2704         /*
2705          * Legacy gadget triggers binding in functionfs_ready_callback,
2706          * which already uses locking; taking the same lock here would
2707          * cause a deadlock.
2708          *
2709          * Configfs-enabled gadgets however do need ffs_dev_lock.
2710          */
2711         if (!ffs_opts->no_configfs)
2712                 ffs_dev_lock();
2713         ret = ffs_opts->dev->desc_ready ? 0 : -ENODEV;
2714         func->ffs = ffs_opts->dev->ffs_data;
2715         if (!ffs_opts->no_configfs)
2716                 ffs_dev_unlock();
2717         if (ret)
2718                 return ERR_PTR(ret);
2719
2720         func->conf = c;
2721         func->gadget = c->cdev->gadget;
2722
2723         /*
2724          * in drivers/usb/gadget/configfs.c:configfs_composite_bind()
2725          * configurations are bound in sequence with list_for_each_entry,
2726          * in each configuration its functions are bound in sequence
2727          * with list_for_each_entry, so we assume no race condition
2728          * with regard to ffs_opts->bound access
2729          */
2730         if (!ffs_opts->refcnt) {
2731                 ret = functionfs_bind(func->ffs, c->cdev);
2732                 if (ret)
2733                         return ERR_PTR(ret);
2734         }
2735         ffs_opts->refcnt++;
2736         func->function.strings = func->ffs->stringtabs;
2737
2738         return ffs_opts;
2739 }
2740
2741 static int _ffs_func_bind(struct usb_configuration *c,
2742                           struct usb_function *f)
2743 {
2744         struct ffs_function *func = ffs_func_from_usb(f);
2745         struct ffs_data *ffs = func->ffs;
2746
2747         const int full = !!func->ffs->fs_descs_count;
2748         const int high = gadget_is_dualspeed(func->gadget) &&
2749                 func->ffs->hs_descs_count;
2750         const int super = gadget_is_superspeed(func->gadget) &&
2751                 func->ffs->ss_descs_count;
2752
2753         int fs_len, hs_len, ss_len, ret, i;
2754         struct ffs_ep *eps_ptr;
2755
2756         /* Make it a single chunk, less management later on */
2757         vla_group(d);
2758         vla_item_with_sz(d, struct ffs_ep, eps, ffs->eps_count);
2759         vla_item_with_sz(d, struct usb_descriptor_header *, fs_descs,
2760                 full ? ffs->fs_descs_count + 1 : 0);
2761         vla_item_with_sz(d, struct usb_descriptor_header *, hs_descs,
2762                 high ? ffs->hs_descs_count + 1 : 0);
2763         vla_item_with_sz(d, struct usb_descriptor_header *, ss_descs,
2764                 super ? ffs->ss_descs_count + 1 : 0);
2765         vla_item_with_sz(d, short, inums, ffs->interfaces_count);
2766         vla_item_with_sz(d, struct usb_os_desc_table, os_desc_table,
2767                          c->cdev->use_os_string ? ffs->interfaces_count : 0);
2768         vla_item_with_sz(d, char[16], ext_compat,
2769                          c->cdev->use_os_string ? ffs->interfaces_count : 0);
2770         vla_item_with_sz(d, struct usb_os_desc, os_desc,
2771                          c->cdev->use_os_string ? ffs->interfaces_count : 0);
2772         vla_item_with_sz(d, struct usb_os_desc_ext_prop, ext_prop,
2773                          ffs->ms_os_descs_ext_prop_count);
2774         vla_item_with_sz(d, char, ext_prop_name,
2775                          ffs->ms_os_descs_ext_prop_name_len);
2776         vla_item_with_sz(d, char, ext_prop_data,
2777                          ffs->ms_os_descs_ext_prop_data_len);
2778         vla_item_with_sz(d, char, raw_descs, ffs->raw_descs_length);
2779         char *vlabuf;
2780
2781         ENTER();
2782
2783         /* Has descriptors only for speeds gadget does not support */
2784         if (unlikely(!(full | high | super)))
2785                 return -ENOTSUPP;
2786
2787         /* Allocate a single chunk, less management later on */
2788         vlabuf = kzalloc(vla_group_size(d), GFP_KERNEL);
2789         if (unlikely(!vlabuf))
2790                 return -ENOMEM;
2791
2792         ffs->ms_os_descs_ext_prop_avail = vla_ptr(vlabuf, d, ext_prop);
2793         ffs->ms_os_descs_ext_prop_name_avail =
2794                 vla_ptr(vlabuf, d, ext_prop_name);
2795         ffs->ms_os_descs_ext_prop_data_avail =
2796                 vla_ptr(vlabuf, d, ext_prop_data);
2797
2798         /* Copy descriptors  */
2799         memcpy(vla_ptr(vlabuf, d, raw_descs), ffs->raw_descs,
2800                ffs->raw_descs_length);
2801
2802         memset(vla_ptr(vlabuf, d, inums), 0xff, d_inums__sz);
2803         eps_ptr = vla_ptr(vlabuf, d, eps);
2804         for (i = 0; i < ffs->eps_count; i++)
2805                 eps_ptr[i].num = -1;
2806
2807         /* Save pointers
2808          * d_eps == vlabuf, func->eps used to kfree vlabuf later
2809         */
2810         func->eps             = vla_ptr(vlabuf, d, eps);
2811         func->interfaces_nums = vla_ptr(vlabuf, d, inums);
2812
2813         /*
2814          * Go through all the endpoint descriptors and allocate
2815          * endpoints first, so that later we can rewrite the endpoint
2816          * numbers without worrying that it may be described later on.
2817          */
2818         if (likely(full)) {
2819                 func->function.fs_descriptors = vla_ptr(vlabuf, d, fs_descs);
2820                 fs_len = ffs_do_descs(ffs->fs_descs_count,
2821                                       vla_ptr(vlabuf, d, raw_descs),
2822                                       d_raw_descs__sz,
2823                                       __ffs_func_bind_do_descs, func);
2824                 if (unlikely(fs_len < 0)) {
2825                         ret = fs_len;
2826                         goto error;
2827                 }
2828         } else {
2829                 fs_len = 0;
2830         }
2831
2832         if (likely(high)) {
2833                 func->function.hs_descriptors = vla_ptr(vlabuf, d, hs_descs);
2834                 hs_len = ffs_do_descs(ffs->hs_descs_count,
2835                                       vla_ptr(vlabuf, d, raw_descs) + fs_len,
2836                                       d_raw_descs__sz - fs_len,
2837                                       __ffs_func_bind_do_descs, func);
2838                 if (unlikely(hs_len < 0)) {
2839                         ret = hs_len;
2840                         goto error;
2841                 }
2842         } else {
2843                 hs_len = 0;
2844         }
2845
2846         if (likely(super)) {
2847                 func->function.ss_descriptors = vla_ptr(vlabuf, d, ss_descs);
2848                 ss_len = ffs_do_descs(ffs->ss_descs_count,
2849                                 vla_ptr(vlabuf, d, raw_descs) + fs_len + hs_len,
2850                                 d_raw_descs__sz - fs_len - hs_len,
2851                                 __ffs_func_bind_do_descs, func);
2852                 if (unlikely(ss_len < 0)) {
2853                         ret = ss_len;
2854                         goto error;
2855                 }
2856         } else {
2857                 ss_len = 0;
2858         }
2859
2860         /*
2861          * Now handle interface numbers allocation and interface and
2862          * endpoint numbers rewriting.  We can do that in one go
2863          * now.
2864          */
2865         ret = ffs_do_descs(ffs->fs_descs_count +
2866                            (high ? ffs->hs_descs_count : 0) +
2867                            (super ? ffs->ss_descs_count : 0),
2868                            vla_ptr(vlabuf, d, raw_descs), d_raw_descs__sz,
2869                            __ffs_func_bind_do_nums, func);
2870         if (unlikely(ret < 0))
2871                 goto error;
2872
2873         func->function.os_desc_table = vla_ptr(vlabuf, d, os_desc_table);
2874         if (c->cdev->use_os_string)
2875                 for (i = 0; i < ffs->interfaces_count; ++i) {
2876                         struct usb_os_desc *desc;
2877
2878                         desc = func->function.os_desc_table[i].os_desc =
2879                                 vla_ptr(vlabuf, d, os_desc) +
2880                                 i * sizeof(struct usb_os_desc);
2881                         desc->ext_compat_id =
2882                                 vla_ptr(vlabuf, d, ext_compat) + i * 16;
2883                         INIT_LIST_HEAD(&desc->ext_prop);
2884                 }
2885         ret = ffs_do_os_descs(ffs->ms_os_descs_count,
2886                               vla_ptr(vlabuf, d, raw_descs) +
2887                               fs_len + hs_len + ss_len,
2888                               d_raw_descs__sz - fs_len - hs_len - ss_len,
2889                               __ffs_func_bind_do_os_desc, func);
2890         if (unlikely(ret < 0))
2891                 goto error;
2892         func->function.os_desc_n =
2893                 c->cdev->use_os_string ? ffs->interfaces_count : 0;
2894
2895         /* And we're done */
2896         ffs_event_add(ffs, FUNCTIONFS_BIND);
2897         return 0;
2898
2899 error:
2900         /* XXX Do we need to release all claimed endpoints here? */
2901         return ret;
2902 }
2903
2904 static int ffs_func_bind(struct usb_configuration *c,
2905                          struct usb_function *f)
2906 {
2907         struct f_fs_opts *ffs_opts = ffs_do_functionfs_bind(f, c);
2908         struct ffs_function *func = ffs_func_from_usb(f);
2909         int ret;
2910
2911         if (IS_ERR(ffs_opts))
2912                 return PTR_ERR(ffs_opts);
2913
2914         ret = _ffs_func_bind(c, f);
2915         if (ret && !--ffs_opts->refcnt)
2916                 functionfs_unbind(func->ffs);
2917
2918         return ret;
2919 }
2920
2921
2922 /* Other USB function hooks *************************************************/
2923
2924 static void ffs_reset_work(struct work_struct *work)
2925 {
2926         struct ffs_data *ffs = container_of(work,
2927                 struct ffs_data, reset_work);
2928         ffs_data_reset(ffs);
2929 }
2930
2931 static int ffs_func_set_alt(struct usb_function *f,
2932                             unsigned interface, unsigned alt)
2933 {
2934         struct ffs_function *func = ffs_func_from_usb(f);
2935         struct ffs_data *ffs = func->ffs;
2936         int ret = 0, intf;
2937
2938         if (alt != (unsigned)-1) {
2939                 intf = ffs_func_revmap_intf(func, interface);
2940                 if (unlikely(intf < 0))
2941                         return intf;
2942         }
2943
2944         if (ffs->func)
2945                 ffs_func_eps_disable(ffs->func);
2946
2947         if (ffs->state == FFS_DEACTIVATED) {
2948                 ffs->state = FFS_CLOSING;
2949                 INIT_WORK(&ffs->reset_work, ffs_reset_work);
2950                 schedule_work(&ffs->reset_work);
2951                 return -ENODEV;
2952         }
2953
2954         if (ffs->state != FFS_ACTIVE)
2955                 return -ENODEV;
2956
2957         if (alt == (unsigned)-1) {
2958                 ffs->func = NULL;
2959                 ffs_event_add(ffs, FUNCTIONFS_DISABLE);
2960                 return 0;
2961         }
2962
2963         ffs->func = func;
2964         ret = ffs_func_eps_enable(func);
2965         if (likely(ret >= 0))
2966                 ffs_event_add(ffs, FUNCTIONFS_ENABLE);
2967         return ret;
2968 }
2969
2970 static void ffs_func_disable(struct usb_function *f)
2971 {
2972         ffs_func_set_alt(f, 0, (unsigned)-1);
2973 }
2974
2975 static int ffs_func_setup(struct usb_function *f,
2976                           const struct usb_ctrlrequest *creq)
2977 {
2978         struct ffs_function *func = ffs_func_from_usb(f);
2979         struct ffs_data *ffs = func->ffs;
2980         unsigned long flags;
2981         int ret;
2982
2983         ENTER();
2984
2985         pr_vdebug("creq->bRequestType = %02x\n", creq->bRequestType);
2986         pr_vdebug("creq->bRequest     = %02x\n", creq->bRequest);
2987         pr_vdebug("creq->wValue       = %04x\n", le16_to_cpu(creq->wValue));
2988         pr_vdebug("creq->wIndex       = %04x\n", le16_to_cpu(creq->wIndex));
2989         pr_vdebug("creq->wLength      = %04x\n", le16_to_cpu(creq->wLength));
2990
2991         /*
2992          * Most requests directed to interface go through here
2993          * (notable exceptions are set/get interface) so we need to
2994          * handle them.  All other either handled by composite or
2995          * passed to usb_configuration->setup() (if one is set).  No
2996          * matter, we will handle requests directed to endpoint here
2997          * as well (as it's straightforward) but what to do with any
2998          * other request?
2999          */
3000         if (ffs->state != FFS_ACTIVE)
3001                 return -ENODEV;
3002
3003         switch (creq->bRequestType & USB_RECIP_MASK) {
3004         case USB_RECIP_INTERFACE:
3005                 ret = ffs_func_revmap_intf(func, le16_to_cpu(creq->wIndex));
3006                 if (unlikely(ret < 0))
3007                         return ret;
3008                 break;
3009
3010         case USB_RECIP_ENDPOINT:
3011                 ret = ffs_func_revmap_ep(func, le16_to_cpu(creq->wIndex));
3012                 if (unlikely(ret < 0))
3013                         return ret;
3014                 if (func->ffs->user_flags & FUNCTIONFS_VIRTUAL_ADDR)
3015                         ret = func->ffs->eps_addrmap[ret];
3016                 break;
3017
3018         default:
3019                 return -EOPNOTSUPP;
3020         }
3021
3022         spin_lock_irqsave(&ffs->ev.waitq.lock, flags);
3023         ffs->ev.setup = *creq;
3024         ffs->ev.setup.wIndex = cpu_to_le16(ret);
3025         __ffs_event_add(ffs, FUNCTIONFS_SETUP);
3026         spin_unlock_irqrestore(&ffs->ev.waitq.lock, flags);
3027
3028         return 0;
3029 }
3030
3031 static void ffs_func_suspend(struct usb_function *f)
3032 {
3033         ENTER();
3034         ffs_event_add(ffs_func_from_usb(f)->ffs, FUNCTIONFS_SUSPEND);
3035 }
3036
3037 static void ffs_func_resume(struct usb_function *f)
3038 {
3039         ENTER();
3040         ffs_event_add(ffs_func_from_usb(f)->ffs, FUNCTIONFS_RESUME);
3041 }
3042
3043
3044 /* Endpoint and interface numbers reverse mapping ***************************/
3045
3046 static int ffs_func_revmap_ep(struct ffs_function *func, u8 num)
3047 {
3048         num = func->eps_revmap[num & USB_ENDPOINT_NUMBER_MASK];
3049         return num ? num : -EDOM;
3050 }
3051
3052 static int ffs_func_revmap_intf(struct ffs_function *func, u8 intf)
3053 {
3054         short *nums = func->interfaces_nums;
3055         unsigned count = func->ffs->interfaces_count;
3056
3057         for (; count; --count, ++nums) {
3058                 if (*nums >= 0 && *nums == intf)
3059                         return nums - func->interfaces_nums;
3060         }
3061
3062         return -EDOM;
3063 }
3064
3065
3066 /* Devices management *******************************************************/
3067
3068 static LIST_HEAD(ffs_devices);
3069
3070 static struct ffs_dev *_ffs_do_find_dev(const char *name)
3071 {
3072         struct ffs_dev *dev;
3073
3074         list_for_each_entry(dev, &ffs_devices, entry) {
3075                 if (!dev->name || !name)
3076                         continue;
3077                 if (strcmp(dev->name, name) == 0)
3078                         return dev;
3079         }
3080
3081         return NULL;
3082 }
3083
3084 /*
3085  * ffs_lock must be taken by the caller of this function
3086  */
3087 static struct ffs_dev *_ffs_get_single_dev(void)
3088 {
3089         struct ffs_dev *dev;
3090
3091         if (list_is_singular(&ffs_devices)) {
3092                 dev = list_first_entry(&ffs_devices, struct ffs_dev, entry);
3093                 if (dev->single)
3094                         return dev;
3095         }
3096
3097         return NULL;
3098 }
3099
3100 /*
3101  * ffs_lock must be taken by the caller of this function
3102  */
3103 static struct ffs_dev *_ffs_find_dev(const char *name)
3104 {
3105         struct ffs_dev *dev;
3106
3107         dev = _ffs_get_single_dev();
3108         if (dev)
3109                 return dev;
3110
3111         return _ffs_do_find_dev(name);
3112 }
3113
3114 /* Configfs support *********************************************************/
3115
3116 static inline struct f_fs_opts *to_ffs_opts(struct config_item *item)
3117 {
3118         return container_of(to_config_group(item), struct f_fs_opts,
3119                             func_inst.group);
3120 }
3121
3122 static void ffs_attr_release(struct config_item *item)
3123 {
3124         struct f_fs_opts *opts = to_ffs_opts(item);
3125
3126         usb_put_function_instance(&opts->func_inst);
3127 }
3128
3129 static struct configfs_item_operations ffs_item_ops = {
3130         .release        = ffs_attr_release,
3131 };
3132
3133 static struct config_item_type ffs_func_type = {
3134         .ct_item_ops    = &ffs_item_ops,
3135         .ct_owner       = THIS_MODULE,
3136 };
3137
3138
3139 /* Function registration interface ******************************************/
3140
3141 static void ffs_free_inst(struct usb_function_instance *f)
3142 {
3143         struct f_fs_opts *opts;
3144
3145         opts = to_f_fs_opts(f);
3146         ffs_dev_lock();
3147         _ffs_free_dev(opts->dev);
3148         ffs_dev_unlock();
3149         kfree(opts);
3150 }
3151
3152 #define MAX_INST_NAME_LEN       40
3153
3154 static int ffs_set_inst_name(struct usb_function_instance *fi, const char *name)
3155 {
3156         struct f_fs_opts *opts;
3157         char *ptr;
3158         const char *tmp;
3159         int name_len, ret;
3160
3161         name_len = strlen(name) + 1;
3162         if (name_len > MAX_INST_NAME_LEN)
3163                 return -ENAMETOOLONG;
3164
3165         ptr = kstrndup(name, name_len, GFP_KERNEL);
3166         if (!ptr)
3167                 return -ENOMEM;
3168
3169         opts = to_f_fs_opts(fi);
3170         tmp = NULL;
3171
3172         ffs_dev_lock();
3173
3174         tmp = opts->dev->name_allocated ? opts->dev->name : NULL;
3175         ret = _ffs_name_dev(opts->dev, ptr);
3176         if (ret) {
3177                 kfree(ptr);
3178                 ffs_dev_unlock();
3179                 return ret;
3180         }
3181         opts->dev->name_allocated = true;
3182
3183         ffs_dev_unlock();
3184
3185         kfree(tmp);
3186
3187         return 0;
3188 }
3189
3190 static struct usb_function_instance *ffs_alloc_inst(void)
3191 {
3192         struct f_fs_opts *opts;
3193         struct ffs_dev *dev;
3194
3195         opts = kzalloc(sizeof(*opts), GFP_KERNEL);
3196         if (!opts)
3197                 return ERR_PTR(-ENOMEM);
3198
3199         opts->func_inst.set_inst_name = ffs_set_inst_name;
3200         opts->func_inst.free_func_inst = ffs_free_inst;
3201         ffs_dev_lock();
3202         dev = _ffs_alloc_dev();
3203         ffs_dev_unlock();
3204         if (IS_ERR(dev)) {
3205                 kfree(opts);
3206                 return ERR_CAST(dev);
3207         }
3208         opts->dev = dev;
3209         dev->opts = opts;
3210
3211         config_group_init_type_name(&opts->func_inst.group, "",
3212                                     &ffs_func_type);
3213         return &opts->func_inst;
3214 }
3215
3216 static void ffs_free(struct usb_function *f)
3217 {
3218         kfree(ffs_func_from_usb(f));
3219 }
3220
3221 static void ffs_func_unbind(struct usb_configuration *c,
3222                             struct usb_function *f)
3223 {
3224         struct ffs_function *func = ffs_func_from_usb(f);
3225         struct ffs_data *ffs = func->ffs;
3226         struct f_fs_opts *opts =
3227                 container_of(f->fi, struct f_fs_opts, func_inst);
3228         struct ffs_ep *ep = func->eps;
3229         unsigned count = ffs->eps_count;
3230         unsigned long flags;
3231
3232         ENTER();
3233         if (ffs->func == func) {
3234                 ffs_func_eps_disable(func);
3235                 ffs->func = NULL;
3236         }
3237
3238         if (!--opts->refcnt)
3239                 functionfs_unbind(ffs);
3240
3241         /* cleanup after autoconfig */
3242         spin_lock_irqsave(&func->ffs->eps_lock, flags);
3243         do {
3244                 if (ep->ep && ep->req)
3245                         usb_ep_free_request(ep->ep, ep->req);
3246                 ep->req = NULL;
3247                 ++ep;
3248         } while (--count);
3249         spin_unlock_irqrestore(&func->ffs->eps_lock, flags);
3250         kfree(func->eps);
3251         func->eps = NULL;
3252         /*
3253          * eps, descriptors and interfaces_nums are allocated in the
3254          * same chunk so only one free is required.
3255          */
3256         func->function.fs_descriptors = NULL;
3257         func->function.hs_descriptors = NULL;
3258         func->function.ss_descriptors = NULL;
3259         func->interfaces_nums = NULL;
3260
3261         ffs_event_add(ffs, FUNCTIONFS_UNBIND);
3262 }
3263
3264 static struct usb_function *ffs_alloc(struct usb_function_instance *fi)
3265 {
3266         struct ffs_function *func;
3267
3268         ENTER();
3269
3270         func = kzalloc(sizeof(*func), GFP_KERNEL);
3271         if (unlikely(!func))
3272                 return ERR_PTR(-ENOMEM);
3273
3274         func->function.name    = "Function FS Gadget";
3275
3276         func->function.bind    = ffs_func_bind;
3277         func->function.unbind  = ffs_func_unbind;
3278         func->function.set_alt = ffs_func_set_alt;
3279         func->function.disable = ffs_func_disable;
3280         func->function.setup   = ffs_func_setup;
3281         func->function.suspend = ffs_func_suspend;
3282         func->function.resume  = ffs_func_resume;
3283         func->function.free_func = ffs_free;
3284
3285         return &func->function;
3286 }
3287
3288 /*
3289  * ffs_lock must be taken by the caller of this function
3290  */
3291 static struct ffs_dev *_ffs_alloc_dev(void)
3292 {
3293         struct ffs_dev *dev;
3294         int ret;
3295
3296         if (_ffs_get_single_dev())
3297                         return ERR_PTR(-EBUSY);
3298
3299         dev = kzalloc(sizeof(*dev), GFP_KERNEL);
3300         if (!dev)
3301                 return ERR_PTR(-ENOMEM);
3302
3303         if (list_empty(&ffs_devices)) {
3304                 ret = functionfs_init();
3305                 if (ret) {
3306                         kfree(dev);
3307                         return ERR_PTR(ret);
3308                 }
3309         }
3310
3311         list_add(&dev->entry, &ffs_devices);
3312
3313         return dev;
3314 }
3315
3316 /*
3317  * ffs_lock must be taken by the caller of this function
3318  * The caller is responsible for "name" being available whenever f_fs needs it
3319  */
3320 static int _ffs_name_dev(struct ffs_dev *dev, const char *name)
3321 {
3322         struct ffs_dev *existing;
3323
3324         existing = _ffs_do_find_dev(name);
3325         if (existing)
3326                 return -EBUSY;
3327
3328         dev->name = name;
3329
3330         return 0;
3331 }
3332
3333 /*
3334  * The caller is responsible for "name" being available whenever f_fs needs it
3335  */
3336 int ffs_name_dev(struct ffs_dev *dev, const char *name)
3337 {
3338         int ret;
3339
3340         ffs_dev_lock();
3341         ret = _ffs_name_dev(dev, name);
3342         ffs_dev_unlock();
3343
3344         return ret;
3345 }
3346 EXPORT_SYMBOL_GPL(ffs_name_dev);
3347
3348 int ffs_single_dev(struct ffs_dev *dev)
3349 {
3350         int ret;
3351
3352         ret = 0;
3353         ffs_dev_lock();
3354
3355         if (!list_is_singular(&ffs_devices))
3356                 ret = -EBUSY;
3357         else
3358                 dev->single = true;
3359
3360         ffs_dev_unlock();
3361         return ret;
3362 }
3363 EXPORT_SYMBOL_GPL(ffs_single_dev);
3364
3365 /*
3366  * ffs_lock must be taken by the caller of this function
3367  */
3368 static void _ffs_free_dev(struct ffs_dev *dev)
3369 {
3370         list_del(&dev->entry);
3371         if (dev->name_allocated)
3372                 kfree(dev->name);
3373         kfree(dev);
3374         if (list_empty(&ffs_devices))
3375                 functionfs_cleanup();
3376 }
3377
3378 static void *ffs_acquire_dev(const char *dev_name)
3379 {
3380         struct ffs_dev *ffs_dev;
3381
3382         ENTER();
3383         ffs_dev_lock();
3384
3385         ffs_dev = _ffs_find_dev(dev_name);
3386         if (!ffs_dev)
3387                 ffs_dev = ERR_PTR(-ENOENT);
3388         else if (ffs_dev->mounted)
3389                 ffs_dev = ERR_PTR(-EBUSY);
3390         else if (ffs_dev->ffs_acquire_dev_callback &&
3391             ffs_dev->ffs_acquire_dev_callback(ffs_dev))
3392                 ffs_dev = ERR_PTR(-ENOENT);
3393         else
3394                 ffs_dev->mounted = true;
3395
3396         ffs_dev_unlock();
3397         return ffs_dev;
3398 }
3399
3400 static void ffs_release_dev(struct ffs_data *ffs_data)
3401 {
3402         struct ffs_dev *ffs_dev;
3403
3404         ENTER();
3405         ffs_dev_lock();
3406
3407         ffs_dev = ffs_data->private_data;
3408         if (ffs_dev) {
3409                 ffs_dev->mounted = false;
3410
3411                 if (ffs_dev->ffs_release_dev_callback)
3412                         ffs_dev->ffs_release_dev_callback(ffs_dev);
3413         }
3414
3415         ffs_dev_unlock();
3416 }
3417
3418 static int ffs_ready(struct ffs_data *ffs)
3419 {
3420         struct ffs_dev *ffs_obj;
3421         int ret = 0;
3422
3423         ENTER();
3424         ffs_dev_lock();
3425
3426         ffs_obj = ffs->private_data;
3427         if (!ffs_obj) {
3428                 ret = -EINVAL;
3429                 goto done;
3430         }
3431         if (WARN_ON(ffs_obj->desc_ready)) {
3432                 ret = -EBUSY;
3433                 goto done;
3434         }
3435
3436         ffs_obj->desc_ready = true;
3437         ffs_obj->ffs_data = ffs;
3438
3439         if (ffs_obj->ffs_ready_callback) {
3440                 ret = ffs_obj->ffs_ready_callback(ffs);
3441                 if (ret)
3442                         goto done;
3443         }
3444
3445         set_bit(FFS_FL_CALL_CLOSED_CALLBACK, &ffs->flags);
3446 done:
3447         ffs_dev_unlock();
3448         return ret;
3449 }
3450
3451 static void ffs_closed(struct ffs_data *ffs)
3452 {
3453         struct ffs_dev *ffs_obj;
3454         struct f_fs_opts *opts;
3455
3456         ENTER();
3457         ffs_dev_lock();
3458
3459         ffs_obj = ffs->private_data;
3460         if (!ffs_obj)
3461                 goto done;
3462
3463         ffs_obj->desc_ready = false;
3464
3465         if (test_and_clear_bit(FFS_FL_CALL_CLOSED_CALLBACK, &ffs->flags) &&
3466             ffs_obj->ffs_closed_callback)
3467                 ffs_obj->ffs_closed_callback(ffs);
3468
3469         if (ffs_obj->opts)
3470                 opts = ffs_obj->opts;
3471         else
3472                 goto done;
3473
3474         if (opts->no_configfs || !opts->func_inst.group.cg_item.ci_parent
3475             || !atomic_read(&opts->func_inst.group.cg_item.ci_kref.refcount))
3476                 goto done;
3477
3478         unregister_gadget_item(ffs_obj->opts->
3479                                func_inst.group.cg_item.ci_parent->ci_parent);
3480 done:
3481         ffs_dev_unlock();
3482 }
3483
3484 /* Misc helper functions ****************************************************/
3485
3486 static int ffs_mutex_lock(struct mutex *mutex, unsigned nonblock)
3487 {
3488         return nonblock
3489                 ? likely(mutex_trylock(mutex)) ? 0 : -EAGAIN
3490                 : mutex_lock_interruptible(mutex);
3491 }
3492
3493 static char *ffs_prepare_buffer(const char __user *buf, size_t len)
3494 {
3495         char *data;
3496
3497         if (unlikely(!len))
3498                 return NULL;
3499
3500         data = kmalloc(len, GFP_KERNEL);
3501         if (unlikely(!data))
3502                 return ERR_PTR(-ENOMEM);
3503
3504         if (unlikely(copy_from_user(data, buf, len))) {
3505                 kfree(data);
3506                 return ERR_PTR(-EFAULT);
3507         }
3508
3509         pr_vdebug("Buffer from user space:\n");
3510         ffs_dump_mem("", data, len);
3511
3512         return data;
3513 }
3514
3515 DECLARE_USB_FUNCTION_INIT(ffs, ffs_alloc_inst, ffs_alloc);
3516 MODULE_LICENSE("GPL");
3517 MODULE_AUTHOR("Michal Nazarewicz");