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