2 * f_fs.c -- user mode file system API for USB composite function controllers
4 * Copyright (C) 2010 Samsung Electronics
5 * Author: Michal Nazarewicz <m.nazarewicz@samsung.com>
7 * Based on inode.c (GadgetFS) which was:
8 * Copyright (C) 2003-2004 David Brownell
9 * Copyright (C) 2003 Agilent Technologies
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
19 /* #define VERBOSE_DEBUG */
21 #include <linux/blkdev.h>
22 #include <linux/pagemap.h>
23 #include <linux/export.h>
24 #include <asm/unaligned.h>
26 #include <linux/usb/composite.h>
27 #include <linux/usb/functionfs.h>
30 #define FUNCTIONFS_MAGIC 0xa647361 /* Chosen by a honest dice roll ;) */
33 /* Debugging ****************************************************************/
36 # define pr_vdebug pr_debug
37 # define ffs_dump_mem(prefix, ptr, len) \
38 print_hex_dump_bytes(pr_fmt(prefix ": "), DUMP_PREFIX_NONE, ptr, len)
40 # define pr_vdebug(...) do { } while (0)
41 # define ffs_dump_mem(prefix, ptr, len) do { } while (0)
42 #endif /* VERBOSE_DEBUG */
44 #define ENTER() pr_vdebug("%s()\n", __func__)
47 /* The data structure and setup file ****************************************/
51 * Waiting for descriptors and strings.
53 * In this state no open(2), read(2) or write(2) on epfiles
54 * may succeed (which should not be the problem as there
55 * should be no such files opened in the first place).
61 * We've got descriptors and strings. We are or have called
62 * functionfs_ready_callback(). functionfs_bind() may have
63 * been called but we don't know.
65 * This is the only state in which operations on epfiles may
71 * All endpoints have been closed. This state is also set if
72 * we encounter an unrecoverable error. The only
73 * unrecoverable error is situation when after reading strings
74 * from user space we fail to initialise epfiles or
75 * functionfs_ready_callback() returns with error (<0).
77 * In this state no open(2), read(2) or write(2) (both on ep0
78 * as well as epfile) may succeed (at this point epfiles are
79 * unlinked and all closed so this is not a problem; ep0 is
80 * also closed but ep0 file exists and so open(2) on ep0 must
87 enum ffs_setup_state
{
88 /* There is no setup request pending. */
91 * User has read events and there was a setup request event
92 * there. The next read/write on ep0 will handle the
97 * There was event pending but before user space handled it
98 * some other event was introduced which canceled existing
99 * setup. If this state is set read/write on ep0 return
100 * -EIDRM. This state is only set when adding event.
111 struct usb_gadget
*gadget
;
114 * Protect access read/write operations, only one read/write
115 * at a time. As a consequence protects ep0req and company.
116 * While setup request is being processed (queued) this is
122 * Protect access to endpoint related structures (basically
123 * usb_ep_queue(), usb_ep_dequeue(), etc. calls) except for
129 * XXX REVISIT do we need our own request? Since we are not
130 * handling setup requests immediately user space may be so
131 * slow that another setup will be sent to the gadget but this
132 * time not to us but another function and then there could be
133 * a race. Is that the case? Or maybe we can use cdev->req
134 * after all, maybe we just need some spinlock for that?
136 struct usb_request
*ep0req
; /* P: mutex */
137 struct completion ep0req_completion
; /* P: mutex */
138 int ep0req_status
; /* P: mutex */
140 /* reference counter */
142 /* how many files are opened (EP0 and others) */
146 enum ffs_state state
;
149 * Possible transitions:
150 * + FFS_NO_SETUP -> FFS_SETUP_PENDING -- P: ev.waitq.lock
151 * happens only in ep0 read which is P: mutex
152 * + FFS_SETUP_PENDING -> FFS_NO_SETUP -- P: ev.waitq.lock
153 * happens only in ep0 i/o which is P: mutex
154 * + FFS_SETUP_PENDING -> FFS_SETUP_CANCELED -- P: ev.waitq.lock
155 * + FFS_SETUP_CANCELED -> FFS_NO_SETUP -- cmpxchg
157 enum ffs_setup_state setup_state
;
159 #define FFS_SETUP_STATE(ffs) \
160 ((enum ffs_setup_state)cmpxchg(&(ffs)->setup_state, \
161 FFS_SETUP_CANCELED, FFS_NO_SETUP))
166 unsigned short count
;
167 /* XXX REVISIT need to update it in some places, or do we? */
168 unsigned short can_stall
;
169 struct usb_ctrlrequest setup
;
171 wait_queue_head_t waitq
;
172 } ev
; /* the whole structure, P: ev.waitq.lock */
176 #define FFS_FL_CALL_CLOSED_CALLBACK 0
177 #define FFS_FL_BOUND 1
179 /* Active function */
180 struct ffs_function
*func
;
183 * Device name, write once when file system is mounted.
184 * Intended for user to read if she wants.
186 const char *dev_name
;
187 /* Private data for our user (ie. gadget). Managed by user. */
190 /* filled by __ffs_data_got_descs() */
192 * Real descriptors are 16 bytes after raw_descs (so you need
193 * to skip 16 bytes (ie. ffs->raw_descs + 16) to get to the
194 * first full speed descriptor). raw_descs_length and
195 * raw_fs_descs_length do not have those 16 bytes added.
197 const void *raw_descs
;
198 unsigned raw_descs_length
;
199 unsigned raw_fs_descs_length
;
200 unsigned fs_descs_count
;
201 unsigned hs_descs_count
;
203 unsigned short strings_count
;
204 unsigned short interfaces_count
;
205 unsigned short eps_count
;
206 unsigned short _pad1
;
208 /* filled by __ffs_data_got_strings() */
209 /* ids in stringtabs are set in functionfs_bind() */
210 const void *raw_strings
;
211 struct usb_gadget_strings
**stringtabs
;
214 * File system's super block, write once when file system is
217 struct super_block
*sb
;
219 /* File permissions, written once when fs is mounted */
220 struct ffs_file_perms
{
227 * The endpoint files, filled by ffs_epfiles_create(),
228 * destroyed by ffs_epfiles_destroy().
230 struct ffs_epfile
*epfiles
;
233 /* Reference counter handling */
234 static void ffs_data_get(struct ffs_data
*ffs
);
235 static void ffs_data_put(struct ffs_data
*ffs
);
236 /* Creates new ffs_data object. */
237 static struct ffs_data
*__must_check
ffs_data_new(void) __attribute__((malloc
));
239 /* Opened counter handling. */
240 static void ffs_data_opened(struct ffs_data
*ffs
);
241 static void ffs_data_closed(struct ffs_data
*ffs
);
243 /* Called with ffs->mutex held; take over ownership of data. */
244 static int __must_check
245 __ffs_data_got_descs(struct ffs_data
*ffs
, char *data
, size_t len
);
246 static int __must_check
247 __ffs_data_got_strings(struct ffs_data
*ffs
, char *data
, size_t len
);
250 /* The function structure ***************************************************/
254 struct ffs_function
{
255 struct usb_configuration
*conf
;
256 struct usb_gadget
*gadget
;
257 struct ffs_data
*ffs
;
261 short *interfaces_nums
;
263 struct usb_function function
;
267 static struct ffs_function
*ffs_func_from_usb(struct usb_function
*f
)
269 return container_of(f
, struct ffs_function
, function
);
272 static void ffs_func_free(struct ffs_function
*func
);
274 static void ffs_func_eps_disable(struct ffs_function
*func
);
275 static int __must_check
ffs_func_eps_enable(struct ffs_function
*func
);
277 static int ffs_func_bind(struct usb_configuration
*,
278 struct usb_function
*);
279 static void ffs_func_unbind(struct usb_configuration
*,
280 struct usb_function
*);
281 static int ffs_func_set_alt(struct usb_function
*, unsigned, unsigned);
282 static void ffs_func_disable(struct usb_function
*);
283 static int ffs_func_setup(struct usb_function
*,
284 const struct usb_ctrlrequest
*);
285 static void ffs_func_suspend(struct usb_function
*);
286 static void ffs_func_resume(struct usb_function
*);
289 static int ffs_func_revmap_ep(struct ffs_function
*func
, u8 num
);
290 static int ffs_func_revmap_intf(struct ffs_function
*func
, u8 intf
);
293 /* The endpoints structures *************************************************/
296 struct usb_ep
*ep
; /* P: ffs->eps_lock */
297 struct usb_request
*req
; /* P: epfile->mutex */
299 /* [0]: full speed, [1]: high speed */
300 struct usb_endpoint_descriptor
*descs
[2];
304 int status
; /* P: epfile->mutex */
308 /* Protects ep->ep and ep->req. */
310 wait_queue_head_t wait
;
312 struct ffs_data
*ffs
;
313 struct ffs_ep
*ep
; /* P: ffs->eps_lock */
315 struct dentry
*dentry
;
319 unsigned char in
; /* P: ffs->eps_lock */
320 unsigned char isoc
; /* P: ffs->eps_lock */
325 static int __must_check
ffs_epfiles_create(struct ffs_data
*ffs
);
326 static void ffs_epfiles_destroy(struct ffs_epfile
*epfiles
, unsigned count
);
328 static struct inode
*__must_check
329 ffs_sb_create_file(struct super_block
*sb
, const char *name
, void *data
,
330 const struct file_operations
*fops
,
331 struct dentry
**dentry_p
);
334 /* Misc helper functions ****************************************************/
336 static int ffs_mutex_lock(struct mutex
*mutex
, unsigned nonblock
)
337 __attribute__((warn_unused_result
, nonnull
));
338 static char *ffs_prepare_buffer(const char * __user buf
, size_t len
)
339 __attribute__((warn_unused_result
, nonnull
));
342 /* Control file aka ep0 *****************************************************/
344 static void ffs_ep0_complete(struct usb_ep
*ep
, struct usb_request
*req
)
346 struct ffs_data
*ffs
= req
->context
;
348 complete_all(&ffs
->ep0req_completion
);
351 static int __ffs_ep0_queue_wait(struct ffs_data
*ffs
, char *data
, size_t len
)
353 struct usb_request
*req
= ffs
->ep0req
;
356 req
->zero
= len
< le16_to_cpu(ffs
->ev
.setup
.wLength
);
358 spin_unlock_irq(&ffs
->ev
.waitq
.lock
);
364 * UDC layer requires to provide a buffer even for ZLP, but should
365 * not use it at all. Let's provide some poisoned pointer to catch
366 * possible bug in the driver.
368 if (req
->buf
== NULL
)
369 req
->buf
= (void *)0xDEADBABE;
371 INIT_COMPLETION(ffs
->ep0req_completion
);
373 ret
= usb_ep_queue(ffs
->gadget
->ep0
, req
, GFP_ATOMIC
);
374 if (unlikely(ret
< 0))
377 ret
= wait_for_completion_interruptible(&ffs
->ep0req_completion
);
379 usb_ep_dequeue(ffs
->gadget
->ep0
, req
);
383 ffs
->setup_state
= FFS_NO_SETUP
;
384 return ffs
->ep0req_status
;
387 static int __ffs_ep0_stall(struct ffs_data
*ffs
)
389 if (ffs
->ev
.can_stall
) {
390 pr_vdebug("ep0 stall\n");
391 usb_ep_set_halt(ffs
->gadget
->ep0
);
392 ffs
->setup_state
= FFS_NO_SETUP
;
395 pr_debug("bogus ep0 stall!\n");
400 static ssize_t
ffs_ep0_write(struct file
*file
, const char __user
*buf
,
401 size_t len
, loff_t
*ptr
)
403 struct ffs_data
*ffs
= file
->private_data
;
409 /* Fast check if setup was canceled */
410 if (FFS_SETUP_STATE(ffs
) == FFS_SETUP_CANCELED
)
414 ret
= ffs_mutex_lock(&ffs
->mutex
, file
->f_flags
& O_NONBLOCK
);
415 if (unlikely(ret
< 0))
419 switch (ffs
->state
) {
420 case FFS_READ_DESCRIPTORS
:
421 case FFS_READ_STRINGS
:
423 if (unlikely(len
< 16)) {
428 data
= ffs_prepare_buffer(buf
, len
);
435 if (ffs
->state
== FFS_READ_DESCRIPTORS
) {
436 pr_info("read descriptors\n");
437 ret
= __ffs_data_got_descs(ffs
, data
, len
);
438 if (unlikely(ret
< 0))
441 ffs
->state
= FFS_READ_STRINGS
;
444 pr_info("read strings\n");
445 ret
= __ffs_data_got_strings(ffs
, data
, len
);
446 if (unlikely(ret
< 0))
449 ret
= ffs_epfiles_create(ffs
);
451 ffs
->state
= FFS_CLOSING
;
455 ffs
->state
= FFS_ACTIVE
;
456 mutex_unlock(&ffs
->mutex
);
458 ret
= functionfs_ready_callback(ffs
);
459 if (unlikely(ret
< 0)) {
460 ffs
->state
= FFS_CLOSING
;
464 set_bit(FFS_FL_CALL_CLOSED_CALLBACK
, &ffs
->flags
);
472 * We're called from user space, we can use _irq
473 * rather then _irqsave
475 spin_lock_irq(&ffs
->ev
.waitq
.lock
);
476 switch (FFS_SETUP_STATE(ffs
)) {
477 case FFS_SETUP_CANCELED
:
485 case FFS_SETUP_PENDING
:
489 /* FFS_SETUP_PENDING */
490 if (!(ffs
->ev
.setup
.bRequestType
& USB_DIR_IN
)) {
491 spin_unlock_irq(&ffs
->ev
.waitq
.lock
);
492 ret
= __ffs_ep0_stall(ffs
);
496 /* FFS_SETUP_PENDING and not stall */
497 len
= min(len
, (size_t)le16_to_cpu(ffs
->ev
.setup
.wLength
));
499 spin_unlock_irq(&ffs
->ev
.waitq
.lock
);
501 data
= ffs_prepare_buffer(buf
, len
);
507 spin_lock_irq(&ffs
->ev
.waitq
.lock
);
510 * We are guaranteed to be still in FFS_ACTIVE state
511 * but the state of setup could have changed from
512 * FFS_SETUP_PENDING to FFS_SETUP_CANCELED so we need
513 * to check for that. If that happened we copied data
514 * from user space in vain but it's unlikely.
516 * For sure we are not in FFS_NO_SETUP since this is
517 * the only place FFS_SETUP_PENDING -> FFS_NO_SETUP
518 * transition can be performed and it's protected by
521 if (FFS_SETUP_STATE(ffs
) == FFS_SETUP_CANCELED
) {
524 spin_unlock_irq(&ffs
->ev
.waitq
.lock
);
526 /* unlocks spinlock */
527 ret
= __ffs_ep0_queue_wait(ffs
, data
, len
);
537 mutex_unlock(&ffs
->mutex
);
541 static ssize_t
__ffs_ep0_read_events(struct ffs_data
*ffs
, char __user
*buf
,
545 * We are holding ffs->ev.waitq.lock and ffs->mutex and we need
548 struct usb_functionfs_event events
[n
];
551 memset(events
, 0, sizeof events
);
554 events
[i
].type
= ffs
->ev
.types
[i
];
555 if (events
[i
].type
== FUNCTIONFS_SETUP
) {
556 events
[i
].u
.setup
= ffs
->ev
.setup
;
557 ffs
->setup_state
= FFS_SETUP_PENDING
;
561 if (n
< ffs
->ev
.count
) {
563 memmove(ffs
->ev
.types
, ffs
->ev
.types
+ n
,
564 ffs
->ev
.count
* sizeof *ffs
->ev
.types
);
569 spin_unlock_irq(&ffs
->ev
.waitq
.lock
);
570 mutex_unlock(&ffs
->mutex
);
572 return unlikely(__copy_to_user(buf
, events
, sizeof events
))
573 ? -EFAULT
: sizeof events
;
576 static ssize_t
ffs_ep0_read(struct file
*file
, char __user
*buf
,
577 size_t len
, loff_t
*ptr
)
579 struct ffs_data
*ffs
= file
->private_data
;
586 /* Fast check if setup was canceled */
587 if (FFS_SETUP_STATE(ffs
) == FFS_SETUP_CANCELED
)
591 ret
= ffs_mutex_lock(&ffs
->mutex
, file
->f_flags
& O_NONBLOCK
);
592 if (unlikely(ret
< 0))
596 if (ffs
->state
!= FFS_ACTIVE
) {
602 * We're called from user space, we can use _irq rather then
605 spin_lock_irq(&ffs
->ev
.waitq
.lock
);
607 switch (FFS_SETUP_STATE(ffs
)) {
608 case FFS_SETUP_CANCELED
:
613 n
= len
/ sizeof(struct usb_functionfs_event
);
619 if ((file
->f_flags
& O_NONBLOCK
) && !ffs
->ev
.count
) {
624 if (wait_event_interruptible_exclusive_locked_irq(ffs
->ev
.waitq
,
630 return __ffs_ep0_read_events(ffs
, buf
,
631 min(n
, (size_t)ffs
->ev
.count
));
633 case FFS_SETUP_PENDING
:
634 if (ffs
->ev
.setup
.bRequestType
& USB_DIR_IN
) {
635 spin_unlock_irq(&ffs
->ev
.waitq
.lock
);
636 ret
= __ffs_ep0_stall(ffs
);
640 len
= min(len
, (size_t)le16_to_cpu(ffs
->ev
.setup
.wLength
));
642 spin_unlock_irq(&ffs
->ev
.waitq
.lock
);
645 data
= kmalloc(len
, GFP_KERNEL
);
646 if (unlikely(!data
)) {
652 spin_lock_irq(&ffs
->ev
.waitq
.lock
);
654 /* See ffs_ep0_write() */
655 if (FFS_SETUP_STATE(ffs
) == FFS_SETUP_CANCELED
) {
660 /* unlocks spinlock */
661 ret
= __ffs_ep0_queue_wait(ffs
, data
, len
);
662 if (likely(ret
> 0) && unlikely(__copy_to_user(buf
, data
, len
)))
671 spin_unlock_irq(&ffs
->ev
.waitq
.lock
);
673 mutex_unlock(&ffs
->mutex
);
678 static int ffs_ep0_open(struct inode
*inode
, struct file
*file
)
680 struct ffs_data
*ffs
= inode
->i_private
;
684 if (unlikely(ffs
->state
== FFS_CLOSING
))
687 file
->private_data
= ffs
;
688 ffs_data_opened(ffs
);
693 static int ffs_ep0_release(struct inode
*inode
, struct file
*file
)
695 struct ffs_data
*ffs
= file
->private_data
;
699 ffs_data_closed(ffs
);
704 static long ffs_ep0_ioctl(struct file
*file
, unsigned code
, unsigned long value
)
706 struct ffs_data
*ffs
= file
->private_data
;
707 struct usb_gadget
*gadget
= ffs
->gadget
;
712 if (code
== FUNCTIONFS_INTERFACE_REVMAP
) {
713 struct ffs_function
*func
= ffs
->func
;
714 ret
= func
? ffs_func_revmap_intf(func
, value
) : -ENODEV
;
715 } else if (gadget
->ops
->ioctl
) {
716 ret
= gadget
->ops
->ioctl(gadget
, code
, value
);
724 static const struct file_operations ffs_ep0_operations
= {
725 .owner
= THIS_MODULE
,
728 .open
= ffs_ep0_open
,
729 .write
= ffs_ep0_write
,
730 .read
= ffs_ep0_read
,
731 .release
= ffs_ep0_release
,
732 .unlocked_ioctl
= ffs_ep0_ioctl
,
736 /* "Normal" endpoints operations ********************************************/
738 static void ffs_epfile_io_complete(struct usb_ep
*_ep
, struct usb_request
*req
)
741 if (likely(req
->context
)) {
742 struct ffs_ep
*ep
= _ep
->driver_data
;
743 ep
->status
= req
->status
? req
->status
: req
->actual
;
744 complete(req
->context
);
748 static ssize_t
ffs_epfile_io(struct file
*file
,
749 char __user
*buf
, size_t len
, int read
)
751 struct ffs_epfile
*epfile
= file
->private_data
;
759 spin_unlock_irq(&epfile
->ffs
->eps_lock
);
760 mutex_unlock(&epfile
->mutex
);
763 /* Are we still active? */
764 if (WARN_ON(epfile
->ffs
->state
!= FFS_ACTIVE
)) {
769 /* Wait for endpoint to be enabled */
772 if (file
->f_flags
& O_NONBLOCK
) {
777 if (wait_event_interruptible(epfile
->wait
,
778 (ep
= epfile
->ep
))) {
785 halt
= !read
== !epfile
->in
;
786 if (halt
&& epfile
->isoc
) {
791 /* Allocate & copy */
792 if (!halt
&& !data
) {
793 data
= kzalloc(len
, GFP_KERNEL
);
798 unlikely(__copy_from_user(data
, buf
, len
))) {
804 /* We will be using request */
805 ret
= ffs_mutex_lock(&epfile
->mutex
,
806 file
->f_flags
& O_NONBLOCK
);
811 * We're called from user space, we can use _irq rather then
814 spin_lock_irq(&epfile
->ffs
->eps_lock
);
817 * While we were acquiring mutex endpoint got disabled
820 } while (unlikely(epfile
->ep
!= ep
));
823 if (unlikely(halt
)) {
824 if (likely(epfile
->ep
== ep
) && !WARN_ON(!ep
->ep
))
825 usb_ep_set_halt(ep
->ep
);
826 spin_unlock_irq(&epfile
->ffs
->eps_lock
);
829 /* Fire the request */
830 DECLARE_COMPLETION_ONSTACK(done
);
832 struct usb_request
*req
= ep
->req
;
833 req
->context
= &done
;
834 req
->complete
= ffs_epfile_io_complete
;
838 ret
= usb_ep_queue(ep
->ep
, req
, GFP_ATOMIC
);
840 spin_unlock_irq(&epfile
->ffs
->eps_lock
);
842 if (unlikely(ret
< 0)) {
844 } else if (unlikely(wait_for_completion_interruptible(&done
))) {
846 usb_ep_dequeue(ep
->ep
, req
);
849 if (read
&& ret
> 0 &&
850 unlikely(copy_to_user(buf
, data
, ret
)))
855 mutex_unlock(&epfile
->mutex
);
862 ffs_epfile_write(struct file
*file
, const char __user
*buf
, size_t len
,
867 return ffs_epfile_io(file
, (char __user
*)buf
, len
, 0);
871 ffs_epfile_read(struct file
*file
, char __user
*buf
, size_t len
, loff_t
*ptr
)
875 return ffs_epfile_io(file
, buf
, len
, 1);
879 ffs_epfile_open(struct inode
*inode
, struct file
*file
)
881 struct ffs_epfile
*epfile
= inode
->i_private
;
885 if (WARN_ON(epfile
->ffs
->state
!= FFS_ACTIVE
))
888 file
->private_data
= epfile
;
889 ffs_data_opened(epfile
->ffs
);
895 ffs_epfile_release(struct inode
*inode
, struct file
*file
)
897 struct ffs_epfile
*epfile
= inode
->i_private
;
901 ffs_data_closed(epfile
->ffs
);
906 static long ffs_epfile_ioctl(struct file
*file
, unsigned code
,
909 struct ffs_epfile
*epfile
= file
->private_data
;
914 if (WARN_ON(epfile
->ffs
->state
!= FFS_ACTIVE
))
917 spin_lock_irq(&epfile
->ffs
->eps_lock
);
918 if (likely(epfile
->ep
)) {
920 case FUNCTIONFS_FIFO_STATUS
:
921 ret
= usb_ep_fifo_status(epfile
->ep
->ep
);
923 case FUNCTIONFS_FIFO_FLUSH
:
924 usb_ep_fifo_flush(epfile
->ep
->ep
);
927 case FUNCTIONFS_CLEAR_HALT
:
928 ret
= usb_ep_clear_halt(epfile
->ep
->ep
);
930 case FUNCTIONFS_ENDPOINT_REVMAP
:
931 ret
= epfile
->ep
->num
;
939 spin_unlock_irq(&epfile
->ffs
->eps_lock
);
944 static const struct file_operations ffs_epfile_operations
= {
945 .owner
= THIS_MODULE
,
948 .open
= ffs_epfile_open
,
949 .write
= ffs_epfile_write
,
950 .read
= ffs_epfile_read
,
951 .release
= ffs_epfile_release
,
952 .unlocked_ioctl
= ffs_epfile_ioctl
,
956 /* File system and super block operations ***********************************/
959 * Mounting the file system creates a controller file, used first for
960 * function configuration then later for event monitoring.
963 static struct inode
*__must_check
964 ffs_sb_make_inode(struct super_block
*sb
, void *data
,
965 const struct file_operations
*fops
,
966 const struct inode_operations
*iops
,
967 struct ffs_file_perms
*perms
)
973 inode
= new_inode(sb
);
976 struct timespec current_time
= CURRENT_TIME
;
978 inode
->i_ino
= get_next_ino();
979 inode
->i_mode
= perms
->mode
;
980 inode
->i_uid
= perms
->uid
;
981 inode
->i_gid
= perms
->gid
;
982 inode
->i_atime
= current_time
;
983 inode
->i_mtime
= current_time
;
984 inode
->i_ctime
= current_time
;
985 inode
->i_private
= data
;
995 /* Create "regular" file */
996 static struct inode
*ffs_sb_create_file(struct super_block
*sb
,
997 const char *name
, void *data
,
998 const struct file_operations
*fops
,
999 struct dentry
**dentry_p
)
1001 struct ffs_data
*ffs
= sb
->s_fs_info
;
1002 struct dentry
*dentry
;
1003 struct inode
*inode
;
1007 dentry
= d_alloc_name(sb
->s_root
, name
);
1008 if (unlikely(!dentry
))
1011 inode
= ffs_sb_make_inode(sb
, data
, fops
, NULL
, &ffs
->file_perms
);
1012 if (unlikely(!inode
)) {
1017 d_add(dentry
, inode
);
1025 static const struct super_operations ffs_sb_operations
= {
1026 .statfs
= simple_statfs
,
1027 .drop_inode
= generic_delete_inode
,
1030 struct ffs_sb_fill_data
{
1031 struct ffs_file_perms perms
;
1033 const char *dev_name
;
1036 static int ffs_sb_fill(struct super_block
*sb
, void *_data
, int silent
)
1038 struct ffs_sb_fill_data
*data
= _data
;
1039 struct inode
*inode
;
1041 struct ffs_data
*ffs
;
1045 /* Initialise data */
1046 ffs
= ffs_data_new();
1051 ffs
->dev_name
= data
->dev_name
;
1052 ffs
->file_perms
= data
->perms
;
1054 sb
->s_fs_info
= ffs
;
1055 sb
->s_blocksize
= PAGE_CACHE_SIZE
;
1056 sb
->s_blocksize_bits
= PAGE_CACHE_SHIFT
;
1057 sb
->s_magic
= FUNCTIONFS_MAGIC
;
1058 sb
->s_op
= &ffs_sb_operations
;
1059 sb
->s_time_gran
= 1;
1062 data
->perms
.mode
= data
->root_mode
;
1063 inode
= ffs_sb_make_inode(sb
, NULL
,
1064 &simple_dir_operations
,
1065 &simple_dir_inode_operations
,
1067 if (unlikely(!inode
))
1069 d
= d_alloc_root(inode
);
1075 if (unlikely(!ffs_sb_create_file(sb
, "ep0", ffs
,
1076 &ffs_ep0_operations
, NULL
)))
1091 static int ffs_fs_parse_opts(struct ffs_sb_fill_data
*data
, char *opts
)
1095 if (!opts
|| !*opts
)
1099 char *end
, *eq
, *comma
;
1100 unsigned long value
;
1103 comma
= strchr(opts
, ',');
1108 eq
= strchr(opts
, '=');
1109 if (unlikely(!eq
)) {
1110 pr_err("'=' missing in %s\n", opts
);
1116 value
= simple_strtoul(eq
+ 1, &end
, 0);
1117 if (unlikely(*end
!= ',' && *end
!= 0)) {
1118 pr_err("%s: invalid value: %s\n", opts
, eq
+ 1);
1122 /* Interpret option */
1123 switch (eq
- opts
) {
1125 if (!memcmp(opts
, "rmode", 5))
1126 data
->root_mode
= (value
& 0555) | S_IFDIR
;
1127 else if (!memcmp(opts
, "fmode", 5))
1128 data
->perms
.mode
= (value
& 0666) | S_IFREG
;
1134 if (!memcmp(opts
, "mode", 4)) {
1135 data
->root_mode
= (value
& 0555) | S_IFDIR
;
1136 data
->perms
.mode
= (value
& 0666) | S_IFREG
;
1143 if (!memcmp(opts
, "uid", 3))
1144 data
->perms
.uid
= value
;
1145 else if (!memcmp(opts
, "gid", 3))
1146 data
->perms
.gid
= value
;
1153 pr_err("%s: invalid option\n", opts
);
1157 /* Next iteration */
1166 /* "mount -t functionfs dev_name /dev/function" ends up here */
1168 static struct dentry
*
1169 ffs_fs_mount(struct file_system_type
*t
, int flags
,
1170 const char *dev_name
, void *opts
)
1172 struct ffs_sb_fill_data data
= {
1174 .mode
= S_IFREG
| 0600,
1178 .root_mode
= S_IFDIR
| 0500,
1184 ret
= functionfs_check_dev_callback(dev_name
);
1185 if (unlikely(ret
< 0))
1186 return ERR_PTR(ret
);
1188 ret
= ffs_fs_parse_opts(&data
, opts
);
1189 if (unlikely(ret
< 0))
1190 return ERR_PTR(ret
);
1192 data
.dev_name
= dev_name
;
1193 return mount_single(t
, flags
, &data
, ffs_sb_fill
);
1197 ffs_fs_kill_sb(struct super_block
*sb
)
1203 kill_litter_super(sb
);
1204 ptr
= xchg(&sb
->s_fs_info
, NULL
);
1209 static struct file_system_type ffs_fs_type
= {
1210 .owner
= THIS_MODULE
,
1211 .name
= "functionfs",
1212 .mount
= ffs_fs_mount
,
1213 .kill_sb
= ffs_fs_kill_sb
,
1217 /* Driver's main init/cleanup functions *************************************/
1219 static int functionfs_init(void)
1225 ret
= register_filesystem(&ffs_fs_type
);
1227 pr_info("file system registered\n");
1229 pr_err("failed registering file system (%d)\n", ret
);
1234 static void functionfs_cleanup(void)
1238 pr_info("unloading\n");
1239 unregister_filesystem(&ffs_fs_type
);
1243 /* ffs_data and ffs_function construction and destruction code **************/
1245 static void ffs_data_clear(struct ffs_data
*ffs
);
1246 static void ffs_data_reset(struct ffs_data
*ffs
);
1248 static void ffs_data_get(struct ffs_data
*ffs
)
1252 atomic_inc(&ffs
->ref
);
1255 static void ffs_data_opened(struct ffs_data
*ffs
)
1259 atomic_inc(&ffs
->ref
);
1260 atomic_inc(&ffs
->opened
);
1263 static void ffs_data_put(struct ffs_data
*ffs
)
1267 if (unlikely(atomic_dec_and_test(&ffs
->ref
))) {
1268 pr_info("%s(): freeing\n", __func__
);
1269 ffs_data_clear(ffs
);
1270 BUG_ON(mutex_is_locked(&ffs
->mutex
) ||
1271 spin_is_locked(&ffs
->ev
.waitq
.lock
) ||
1272 waitqueue_active(&ffs
->ev
.waitq
) ||
1273 waitqueue_active(&ffs
->ep0req_completion
.wait
));
1278 static void ffs_data_closed(struct ffs_data
*ffs
)
1282 if (atomic_dec_and_test(&ffs
->opened
)) {
1283 ffs
->state
= FFS_CLOSING
;
1284 ffs_data_reset(ffs
);
1290 static struct ffs_data
*ffs_data_new(void)
1292 struct ffs_data
*ffs
= kzalloc(sizeof *ffs
, GFP_KERNEL
);
1298 atomic_set(&ffs
->ref
, 1);
1299 atomic_set(&ffs
->opened
, 0);
1300 ffs
->state
= FFS_READ_DESCRIPTORS
;
1301 mutex_init(&ffs
->mutex
);
1302 spin_lock_init(&ffs
->eps_lock
);
1303 init_waitqueue_head(&ffs
->ev
.waitq
);
1304 init_completion(&ffs
->ep0req_completion
);
1306 /* XXX REVISIT need to update it in some places, or do we? */
1307 ffs
->ev
.can_stall
= 1;
1312 static void ffs_data_clear(struct ffs_data
*ffs
)
1316 if (test_and_clear_bit(FFS_FL_CALL_CLOSED_CALLBACK
, &ffs
->flags
))
1317 functionfs_closed_callback(ffs
);
1319 BUG_ON(ffs
->gadget
);
1322 ffs_epfiles_destroy(ffs
->epfiles
, ffs
->eps_count
);
1324 kfree(ffs
->raw_descs
);
1325 kfree(ffs
->raw_strings
);
1326 kfree(ffs
->stringtabs
);
1329 static void ffs_data_reset(struct ffs_data
*ffs
)
1333 ffs_data_clear(ffs
);
1335 ffs
->epfiles
= NULL
;
1336 ffs
->raw_descs
= NULL
;
1337 ffs
->raw_strings
= NULL
;
1338 ffs
->stringtabs
= NULL
;
1340 ffs
->raw_descs_length
= 0;
1341 ffs
->raw_fs_descs_length
= 0;
1342 ffs
->fs_descs_count
= 0;
1343 ffs
->hs_descs_count
= 0;
1345 ffs
->strings_count
= 0;
1346 ffs
->interfaces_count
= 0;
1351 ffs
->state
= FFS_READ_DESCRIPTORS
;
1352 ffs
->setup_state
= FFS_NO_SETUP
;
1357 static int functionfs_bind(struct ffs_data
*ffs
, struct usb_composite_dev
*cdev
)
1359 struct usb_gadget_strings
**lang
;
1364 if (WARN_ON(ffs
->state
!= FFS_ACTIVE
1365 || test_and_set_bit(FFS_FL_BOUND
, &ffs
->flags
)))
1368 first_id
= usb_string_ids_n(cdev
, ffs
->strings_count
);
1369 if (unlikely(first_id
< 0))
1372 ffs
->ep0req
= usb_ep_alloc_request(cdev
->gadget
->ep0
, GFP_KERNEL
);
1373 if (unlikely(!ffs
->ep0req
))
1375 ffs
->ep0req
->complete
= ffs_ep0_complete
;
1376 ffs
->ep0req
->context
= ffs
;
1378 lang
= ffs
->stringtabs
;
1379 for (lang
= ffs
->stringtabs
; *lang
; ++lang
) {
1380 struct usb_string
*str
= (*lang
)->strings
;
1382 for (; str
->s
; ++id
, ++str
)
1386 ffs
->gadget
= cdev
->gadget
;
1391 static void functionfs_unbind(struct ffs_data
*ffs
)
1395 if (!WARN_ON(!ffs
->gadget
)) {
1396 usb_ep_free_request(ffs
->gadget
->ep0
, ffs
->ep0req
);
1403 static int ffs_epfiles_create(struct ffs_data
*ffs
)
1405 struct ffs_epfile
*epfile
, *epfiles
;
1410 count
= ffs
->eps_count
;
1411 epfiles
= kzalloc(count
* sizeof *epfiles
, GFP_KERNEL
);
1416 for (i
= 1; i
<= count
; ++i
, ++epfile
) {
1418 mutex_init(&epfile
->mutex
);
1419 init_waitqueue_head(&epfile
->wait
);
1420 sprintf(epfiles
->name
, "ep%u", i
);
1421 if (!unlikely(ffs_sb_create_file(ffs
->sb
, epfiles
->name
, epfile
,
1422 &ffs_epfile_operations
,
1423 &epfile
->dentry
))) {
1424 ffs_epfiles_destroy(epfiles
, i
- 1);
1429 ffs
->epfiles
= epfiles
;
1433 static void ffs_epfiles_destroy(struct ffs_epfile
*epfiles
, unsigned count
)
1435 struct ffs_epfile
*epfile
= epfiles
;
1439 for (; count
; --count
, ++epfile
) {
1440 BUG_ON(mutex_is_locked(&epfile
->mutex
) ||
1441 waitqueue_active(&epfile
->wait
));
1442 if (epfile
->dentry
) {
1443 d_delete(epfile
->dentry
);
1444 dput(epfile
->dentry
);
1445 epfile
->dentry
= NULL
;
1452 static int functionfs_bind_config(struct usb_composite_dev
*cdev
,
1453 struct usb_configuration
*c
,
1454 struct ffs_data
*ffs
)
1456 struct ffs_function
*func
;
1461 func
= kzalloc(sizeof *func
, GFP_KERNEL
);
1462 if (unlikely(!func
))
1465 func
->function
.name
= "Function FS Gadget";
1466 func
->function
.strings
= ffs
->stringtabs
;
1468 func
->function
.bind
= ffs_func_bind
;
1469 func
->function
.unbind
= ffs_func_unbind
;
1470 func
->function
.set_alt
= ffs_func_set_alt
;
1471 func
->function
.disable
= ffs_func_disable
;
1472 func
->function
.setup
= ffs_func_setup
;
1473 func
->function
.suspend
= ffs_func_suspend
;
1474 func
->function
.resume
= ffs_func_resume
;
1477 func
->gadget
= cdev
->gadget
;
1481 ret
= usb_add_function(c
, &func
->function
);
1483 ffs_func_free(func
);
1488 static void ffs_func_free(struct ffs_function
*func
)
1492 ffs_data_put(func
->ffs
);
1496 * eps and interfaces_nums are allocated in the same chunk so
1497 * only one free is required. Descriptors are also allocated
1498 * in the same chunk.
1504 static void ffs_func_eps_disable(struct ffs_function
*func
)
1506 struct ffs_ep
*ep
= func
->eps
;
1507 struct ffs_epfile
*epfile
= func
->ffs
->epfiles
;
1508 unsigned count
= func
->ffs
->eps_count
;
1509 unsigned long flags
;
1511 spin_lock_irqsave(&func
->ffs
->eps_lock
, flags
);
1513 /* pending requests get nuked */
1515 usb_ep_disable(ep
->ep
);
1521 spin_unlock_irqrestore(&func
->ffs
->eps_lock
, flags
);
1524 static int ffs_func_eps_enable(struct ffs_function
*func
)
1526 struct ffs_data
*ffs
= func
->ffs
;
1527 struct ffs_ep
*ep
= func
->eps
;
1528 struct ffs_epfile
*epfile
= ffs
->epfiles
;
1529 unsigned count
= ffs
->eps_count
;
1530 unsigned long flags
;
1533 spin_lock_irqsave(&func
->ffs
->eps_lock
, flags
);
1535 struct usb_endpoint_descriptor
*ds
;
1536 ds
= ep
->descs
[ep
->descs
[1] ? 1 : 0];
1538 ep
->ep
->driver_data
= ep
;
1540 ret
= usb_ep_enable(ep
->ep
);
1543 epfile
->in
= usb_endpoint_dir_in(ds
);
1544 epfile
->isoc
= usb_endpoint_xfer_isoc(ds
);
1549 wake_up(&epfile
->wait
);
1554 spin_unlock_irqrestore(&func
->ffs
->eps_lock
, flags
);
1560 /* Parsing and building descriptors and strings *****************************/
1563 * This validates if data pointed by data is a valid USB descriptor as
1564 * well as record how many interfaces, endpoints and strings are
1565 * required by given configuration. Returns address after the
1566 * descriptor or NULL if data is invalid.
1569 enum ffs_entity_type
{
1570 FFS_DESCRIPTOR
, FFS_INTERFACE
, FFS_STRING
, FFS_ENDPOINT
1573 typedef int (*ffs_entity_callback
)(enum ffs_entity_type entity
,
1575 struct usb_descriptor_header
*desc
,
1578 static int __must_check
ffs_do_desc(char *data
, unsigned len
,
1579 ffs_entity_callback entity
, void *priv
)
1581 struct usb_descriptor_header
*_ds
= (void *)data
;
1587 /* At least two bytes are required: length and type */
1589 pr_vdebug("descriptor too short\n");
1593 /* If we have at least as many bytes as the descriptor takes? */
1594 length
= _ds
->bLength
;
1596 pr_vdebug("descriptor longer then available data\n");
1600 #define __entity_check_INTERFACE(val) 1
1601 #define __entity_check_STRING(val) (val)
1602 #define __entity_check_ENDPOINT(val) ((val) & USB_ENDPOINT_NUMBER_MASK)
1603 #define __entity(type, val) do { \
1604 pr_vdebug("entity " #type "(%02x)\n", (val)); \
1605 if (unlikely(!__entity_check_ ##type(val))) { \
1606 pr_vdebug("invalid entity's value\n"); \
1609 ret = entity(FFS_ ##type, &val, _ds, priv); \
1610 if (unlikely(ret < 0)) { \
1611 pr_debug("entity " #type "(%02x); ret = %d\n", \
1617 /* Parse descriptor depending on type. */
1618 switch (_ds
->bDescriptorType
) {
1622 case USB_DT_DEVICE_QUALIFIER
:
1623 /* function can't have any of those */
1624 pr_vdebug("descriptor reserved for gadget: %d\n",
1625 _ds
->bDescriptorType
);
1628 case USB_DT_INTERFACE
: {
1629 struct usb_interface_descriptor
*ds
= (void *)_ds
;
1630 pr_vdebug("interface descriptor\n");
1631 if (length
!= sizeof *ds
)
1634 __entity(INTERFACE
, ds
->bInterfaceNumber
);
1636 __entity(STRING
, ds
->iInterface
);
1640 case USB_DT_ENDPOINT
: {
1641 struct usb_endpoint_descriptor
*ds
= (void *)_ds
;
1642 pr_vdebug("endpoint descriptor\n");
1643 if (length
!= USB_DT_ENDPOINT_SIZE
&&
1644 length
!= USB_DT_ENDPOINT_AUDIO_SIZE
)
1646 __entity(ENDPOINT
, ds
->bEndpointAddress
);
1651 if (length
!= sizeof(struct usb_otg_descriptor
))
1655 case USB_DT_INTERFACE_ASSOCIATION
: {
1656 struct usb_interface_assoc_descriptor
*ds
= (void *)_ds
;
1657 pr_vdebug("interface association descriptor\n");
1658 if (length
!= sizeof *ds
)
1661 __entity(STRING
, ds
->iFunction
);
1665 case USB_DT_OTHER_SPEED_CONFIG
:
1666 case USB_DT_INTERFACE_POWER
:
1668 case USB_DT_SECURITY
:
1669 case USB_DT_CS_RADIO_CONTROL
:
1671 pr_vdebug("unimplemented descriptor: %d\n", _ds
->bDescriptorType
);
1675 /* We should never be here */
1676 pr_vdebug("unknown descriptor: %d\n", _ds
->bDescriptorType
);
1680 pr_vdebug("invalid length: %d (descriptor %d)\n",
1681 _ds
->bLength
, _ds
->bDescriptorType
);
1686 #undef __entity_check_DESCRIPTOR
1687 #undef __entity_check_INTERFACE
1688 #undef __entity_check_STRING
1689 #undef __entity_check_ENDPOINT
1694 static int __must_check
ffs_do_descs(unsigned count
, char *data
, unsigned len
,
1695 ffs_entity_callback entity
, void *priv
)
1697 const unsigned _len
= len
;
1698 unsigned long num
= 0;
1708 /* Record "descriptor" entity */
1709 ret
= entity(FFS_DESCRIPTOR
, (u8
*)num
, (void *)data
, priv
);
1710 if (unlikely(ret
< 0)) {
1711 pr_debug("entity DESCRIPTOR(%02lx); ret = %d\n",
1719 ret
= ffs_do_desc(data
, len
, entity
, priv
);
1720 if (unlikely(ret
< 0)) {
1721 pr_debug("%s returns %d\n", __func__
, ret
);
1731 static int __ffs_data_do_entity(enum ffs_entity_type type
,
1732 u8
*valuep
, struct usb_descriptor_header
*desc
,
1735 struct ffs_data
*ffs
= priv
;
1740 case FFS_DESCRIPTOR
:
1745 * Interfaces are indexed from zero so if we
1746 * encountered interface "n" then there are at least
1749 if (*valuep
>= ffs
->interfaces_count
)
1750 ffs
->interfaces_count
= *valuep
+ 1;
1755 * Strings are indexed from 1 (0 is magic ;) reserved
1756 * for languages list or some such)
1758 if (*valuep
> ffs
->strings_count
)
1759 ffs
->strings_count
= *valuep
;
1763 /* Endpoints are indexed from 1 as well. */
1764 if ((*valuep
& USB_ENDPOINT_NUMBER_MASK
) > ffs
->eps_count
)
1765 ffs
->eps_count
= (*valuep
& USB_ENDPOINT_NUMBER_MASK
);
1772 static int __ffs_data_got_descs(struct ffs_data
*ffs
,
1773 char *const _data
, size_t len
)
1775 unsigned fs_count
, hs_count
;
1776 int fs_len
, ret
= -EINVAL
;
1781 if (unlikely(get_unaligned_le32(data
) != FUNCTIONFS_DESCRIPTORS_MAGIC
||
1782 get_unaligned_le32(data
+ 4) != len
))
1784 fs_count
= get_unaligned_le32(data
+ 8);
1785 hs_count
= get_unaligned_le32(data
+ 12);
1787 if (!fs_count
&& !hs_count
)
1793 if (likely(fs_count
)) {
1794 fs_len
= ffs_do_descs(fs_count
, data
, len
,
1795 __ffs_data_do_entity
, ffs
);
1796 if (unlikely(fs_len
< 0)) {
1807 if (likely(hs_count
)) {
1808 ret
= ffs_do_descs(hs_count
, data
, len
,
1809 __ffs_data_do_entity
, ffs
);
1810 if (unlikely(ret
< 0))
1816 if (unlikely(len
!= ret
))
1819 ffs
->raw_fs_descs_length
= fs_len
;
1820 ffs
->raw_descs_length
= fs_len
+ ret
;
1821 ffs
->raw_descs
= _data
;
1822 ffs
->fs_descs_count
= fs_count
;
1823 ffs
->hs_descs_count
= hs_count
;
1834 static int __ffs_data_got_strings(struct ffs_data
*ffs
,
1835 char *const _data
, size_t len
)
1837 u32 str_count
, needed_count
, lang_count
;
1838 struct usb_gadget_strings
**stringtabs
, *t
;
1839 struct usb_string
*strings
, *s
;
1840 const char *data
= _data
;
1844 if (unlikely(get_unaligned_le32(data
) != FUNCTIONFS_STRINGS_MAGIC
||
1845 get_unaligned_le32(data
+ 4) != len
))
1847 str_count
= get_unaligned_le32(data
+ 8);
1848 lang_count
= get_unaligned_le32(data
+ 12);
1850 /* if one is zero the other must be zero */
1851 if (unlikely(!str_count
!= !lang_count
))
1854 /* Do we have at least as many strings as descriptors need? */
1855 needed_count
= ffs
->strings_count
;
1856 if (unlikely(str_count
< needed_count
))
1860 * If we don't need any strings just return and free all
1863 if (!needed_count
) {
1868 /* Allocate everything in one chunk so there's less maintenance. */
1871 struct usb_gadget_strings
*stringtabs
[lang_count
+ 1];
1872 struct usb_gadget_strings stringtab
[lang_count
];
1873 struct usb_string strings
[lang_count
*(needed_count
+1)];
1877 d
= kmalloc(sizeof *d
, GFP_KERNEL
);
1883 stringtabs
= d
->stringtabs
;
1887 *stringtabs
++ = t
++;
1891 stringtabs
= d
->stringtabs
;
1897 /* For each language */
1901 do { /* lang_count > 0 so we can use do-while */
1902 unsigned needed
= needed_count
;
1904 if (unlikely(len
< 3))
1906 t
->language
= get_unaligned_le16(data
);
1913 /* For each string */
1914 do { /* str_count > 0 so we can use do-while */
1915 size_t length
= strnlen(data
, len
);
1917 if (unlikely(length
== len
))
1921 * User may provide more strings then we need,
1922 * if that's the case we simply ignore the
1925 if (likely(needed
)) {
1927 * s->id will be set while adding
1928 * function to configuration so for
1929 * now just leave garbage here.
1938 } while (--str_count
);
1940 s
->id
= 0; /* terminator */
1944 } while (--lang_count
);
1946 /* Some garbage left? */
1951 ffs
->stringtabs
= stringtabs
;
1952 ffs
->raw_strings
= _data
;
1964 /* Events handling and management *******************************************/
1966 static void __ffs_event_add(struct ffs_data
*ffs
,
1967 enum usb_functionfs_event_type type
)
1969 enum usb_functionfs_event_type rem_type1
, rem_type2
= type
;
1973 * Abort any unhandled setup
1975 * We do not need to worry about some cmpxchg() changing value
1976 * of ffs->setup_state without holding the lock because when
1977 * state is FFS_SETUP_PENDING cmpxchg() in several places in
1978 * the source does nothing.
1980 if (ffs
->setup_state
== FFS_SETUP_PENDING
)
1981 ffs
->setup_state
= FFS_SETUP_CANCELED
;
1984 case FUNCTIONFS_RESUME
:
1985 rem_type2
= FUNCTIONFS_SUSPEND
;
1987 case FUNCTIONFS_SUSPEND
:
1988 case FUNCTIONFS_SETUP
:
1990 /* Discard all similar events */
1993 case FUNCTIONFS_BIND
:
1994 case FUNCTIONFS_UNBIND
:
1995 case FUNCTIONFS_DISABLE
:
1996 case FUNCTIONFS_ENABLE
:
1997 /* Discard everything other then power management. */
1998 rem_type1
= FUNCTIONFS_SUSPEND
;
1999 rem_type2
= FUNCTIONFS_RESUME
;
2008 u8
*ev
= ffs
->ev
.types
, *out
= ev
;
2009 unsigned n
= ffs
->ev
.count
;
2010 for (; n
; --n
, ++ev
)
2011 if ((*ev
== rem_type1
|| *ev
== rem_type2
) == neg
)
2014 pr_vdebug("purging event %d\n", *ev
);
2015 ffs
->ev
.count
= out
- ffs
->ev
.types
;
2018 pr_vdebug("adding event %d\n", type
);
2019 ffs
->ev
.types
[ffs
->ev
.count
++] = type
;
2020 wake_up_locked(&ffs
->ev
.waitq
);
2023 static void ffs_event_add(struct ffs_data
*ffs
,
2024 enum usb_functionfs_event_type type
)
2026 unsigned long flags
;
2027 spin_lock_irqsave(&ffs
->ev
.waitq
.lock
, flags
);
2028 __ffs_event_add(ffs
, type
);
2029 spin_unlock_irqrestore(&ffs
->ev
.waitq
.lock
, flags
);
2033 /* Bind/unbind USB function hooks *******************************************/
2035 static int __ffs_func_bind_do_descs(enum ffs_entity_type type
, u8
*valuep
,
2036 struct usb_descriptor_header
*desc
,
2039 struct usb_endpoint_descriptor
*ds
= (void *)desc
;
2040 struct ffs_function
*func
= priv
;
2041 struct ffs_ep
*ffs_ep
;
2044 * If hs_descriptors is not NULL then we are reading hs
2047 const int isHS
= func
->function
.hs_descriptors
!= NULL
;
2050 if (type
!= FFS_DESCRIPTOR
)
2054 func
->function
.hs_descriptors
[(long)valuep
] = desc
;
2056 func
->function
.descriptors
[(long)valuep
] = desc
;
2058 if (!desc
|| desc
->bDescriptorType
!= USB_DT_ENDPOINT
)
2061 idx
= (ds
->bEndpointAddress
& USB_ENDPOINT_NUMBER_MASK
) - 1;
2062 ffs_ep
= func
->eps
+ idx
;
2064 if (unlikely(ffs_ep
->descs
[isHS
])) {
2065 pr_vdebug("two %sspeed descriptors for EP %d\n",
2066 isHS
? "high" : "full",
2067 ds
->bEndpointAddress
& USB_ENDPOINT_NUMBER_MASK
);
2070 ffs_ep
->descs
[isHS
] = ds
;
2072 ffs_dump_mem(": Original ep desc", ds
, ds
->bLength
);
2074 ds
->bEndpointAddress
= ffs_ep
->descs
[0]->bEndpointAddress
;
2075 if (!ds
->wMaxPacketSize
)
2076 ds
->wMaxPacketSize
= ffs_ep
->descs
[0]->wMaxPacketSize
;
2078 struct usb_request
*req
;
2081 pr_vdebug("autoconfig\n");
2082 ep
= usb_ep_autoconfig(func
->gadget
, ds
);
2085 ep
->driver_data
= func
->eps
+ idx
;
2087 req
= usb_ep_alloc_request(ep
, GFP_KERNEL
);
2093 func
->eps_revmap
[ds
->bEndpointAddress
&
2094 USB_ENDPOINT_NUMBER_MASK
] = idx
+ 1;
2096 ffs_dump_mem(": Rewritten ep desc", ds
, ds
->bLength
);
2101 static int __ffs_func_bind_do_nums(enum ffs_entity_type type
, u8
*valuep
,
2102 struct usb_descriptor_header
*desc
,
2105 struct ffs_function
*func
= priv
;
2111 case FFS_DESCRIPTOR
:
2112 /* Handled in previous pass by __ffs_func_bind_do_descs() */
2117 if (func
->interfaces_nums
[idx
] < 0) {
2118 int id
= usb_interface_id(func
->conf
, &func
->function
);
2119 if (unlikely(id
< 0))
2121 func
->interfaces_nums
[idx
] = id
;
2123 newValue
= func
->interfaces_nums
[idx
];
2127 /* String' IDs are allocated when fsf_data is bound to cdev */
2128 newValue
= func
->ffs
->stringtabs
[0]->strings
[*valuep
- 1].id
;
2133 * USB_DT_ENDPOINT are handled in
2134 * __ffs_func_bind_do_descs().
2136 if (desc
->bDescriptorType
== USB_DT_ENDPOINT
)
2139 idx
= (*valuep
& USB_ENDPOINT_NUMBER_MASK
) - 1;
2140 if (unlikely(!func
->eps
[idx
].ep
))
2144 struct usb_endpoint_descriptor
**descs
;
2145 descs
= func
->eps
[idx
].descs
;
2146 newValue
= descs
[descs
[0] ? 0 : 1]->bEndpointAddress
;
2151 pr_vdebug("%02x -> %02x\n", *valuep
, newValue
);
2156 static int ffs_func_bind(struct usb_configuration
*c
,
2157 struct usb_function
*f
)
2159 struct ffs_function
*func
= ffs_func_from_usb(f
);
2160 struct ffs_data
*ffs
= func
->ffs
;
2162 const int full
= !!func
->ffs
->fs_descs_count
;
2163 const int high
= gadget_is_dualspeed(func
->gadget
) &&
2164 func
->ffs
->hs_descs_count
;
2168 /* Make it a single chunk, less management later on */
2170 struct ffs_ep eps
[ffs
->eps_count
];
2171 struct usb_descriptor_header
2172 *fs_descs
[full
? ffs
->fs_descs_count
+ 1 : 0];
2173 struct usb_descriptor_header
2174 *hs_descs
[high
? ffs
->hs_descs_count
+ 1 : 0];
2175 short inums
[ffs
->interfaces_count
];
2176 char raw_descs
[high
? ffs
->raw_descs_length
2177 : ffs
->raw_fs_descs_length
];
2182 /* Only high speed but not supported by gadget? */
2183 if (unlikely(!(full
| high
)))
2187 data
= kmalloc(sizeof *data
, GFP_KERNEL
);
2188 if (unlikely(!data
))
2192 memset(data
->eps
, 0, sizeof data
->eps
);
2193 memcpy(data
->raw_descs
, ffs
->raw_descs
+ 16, sizeof data
->raw_descs
);
2194 memset(data
->inums
, 0xff, sizeof data
->inums
);
2195 for (ret
= ffs
->eps_count
; ret
; --ret
)
2196 data
->eps
[ret
].num
= -1;
2199 func
->eps
= data
->eps
;
2200 func
->interfaces_nums
= data
->inums
;
2203 * Go through all the endpoint descriptors and allocate
2204 * endpoints first, so that later we can rewrite the endpoint
2205 * numbers without worrying that it may be described later on.
2208 func
->function
.descriptors
= data
->fs_descs
;
2209 ret
= ffs_do_descs(ffs
->fs_descs_count
,
2211 sizeof data
->raw_descs
,
2212 __ffs_func_bind_do_descs
, func
);
2213 if (unlikely(ret
< 0))
2220 func
->function
.hs_descriptors
= data
->hs_descs
;
2221 ret
= ffs_do_descs(ffs
->hs_descs_count
,
2222 data
->raw_descs
+ ret
,
2223 (sizeof data
->raw_descs
) - ret
,
2224 __ffs_func_bind_do_descs
, func
);
2228 * Now handle interface numbers allocation and interface and
2229 * endpoint numbers rewriting. We can do that in one go
2232 ret
= ffs_do_descs(ffs
->fs_descs_count
+
2233 (high
? ffs
->hs_descs_count
: 0),
2234 data
->raw_descs
, sizeof data
->raw_descs
,
2235 __ffs_func_bind_do_nums
, func
);
2236 if (unlikely(ret
< 0))
2239 /* And we're done */
2240 ffs_event_add(ffs
, FUNCTIONFS_BIND
);
2244 /* XXX Do we need to release all claimed endpoints here? */
2249 /* Other USB function hooks *************************************************/
2251 static void ffs_func_unbind(struct usb_configuration
*c
,
2252 struct usb_function
*f
)
2254 struct ffs_function
*func
= ffs_func_from_usb(f
);
2255 struct ffs_data
*ffs
= func
->ffs
;
2259 if (ffs
->func
== func
) {
2260 ffs_func_eps_disable(func
);
2264 ffs_event_add(ffs
, FUNCTIONFS_UNBIND
);
2266 ffs_func_free(func
);
2269 static int ffs_func_set_alt(struct usb_function
*f
,
2270 unsigned interface
, unsigned alt
)
2272 struct ffs_function
*func
= ffs_func_from_usb(f
);
2273 struct ffs_data
*ffs
= func
->ffs
;
2276 if (alt
!= (unsigned)-1) {
2277 intf
= ffs_func_revmap_intf(func
, interface
);
2278 if (unlikely(intf
< 0))
2283 ffs_func_eps_disable(ffs
->func
);
2285 if (ffs
->state
!= FFS_ACTIVE
)
2288 if (alt
== (unsigned)-1) {
2290 ffs_event_add(ffs
, FUNCTIONFS_DISABLE
);
2295 ret
= ffs_func_eps_enable(func
);
2296 if (likely(ret
>= 0))
2297 ffs_event_add(ffs
, FUNCTIONFS_ENABLE
);
2301 static void ffs_func_disable(struct usb_function
*f
)
2303 ffs_func_set_alt(f
, 0, (unsigned)-1);
2306 static int ffs_func_setup(struct usb_function
*f
,
2307 const struct usb_ctrlrequest
*creq
)
2309 struct ffs_function
*func
= ffs_func_from_usb(f
);
2310 struct ffs_data
*ffs
= func
->ffs
;
2311 unsigned long flags
;
2316 pr_vdebug("creq->bRequestType = %02x\n", creq
->bRequestType
);
2317 pr_vdebug("creq->bRequest = %02x\n", creq
->bRequest
);
2318 pr_vdebug("creq->wValue = %04x\n", le16_to_cpu(creq
->wValue
));
2319 pr_vdebug("creq->wIndex = %04x\n", le16_to_cpu(creq
->wIndex
));
2320 pr_vdebug("creq->wLength = %04x\n", le16_to_cpu(creq
->wLength
));
2323 * Most requests directed to interface go through here
2324 * (notable exceptions are set/get interface) so we need to
2325 * handle them. All other either handled by composite or
2326 * passed to usb_configuration->setup() (if one is set). No
2327 * matter, we will handle requests directed to endpoint here
2328 * as well (as it's straightforward) but what to do with any
2331 if (ffs
->state
!= FFS_ACTIVE
)
2334 switch (creq
->bRequestType
& USB_RECIP_MASK
) {
2335 case USB_RECIP_INTERFACE
:
2336 ret
= ffs_func_revmap_intf(func
, le16_to_cpu(creq
->wIndex
));
2337 if (unlikely(ret
< 0))
2341 case USB_RECIP_ENDPOINT
:
2342 ret
= ffs_func_revmap_ep(func
, le16_to_cpu(creq
->wIndex
));
2343 if (unlikely(ret
< 0))
2351 spin_lock_irqsave(&ffs
->ev
.waitq
.lock
, flags
);
2352 ffs
->ev
.setup
= *creq
;
2353 ffs
->ev
.setup
.wIndex
= cpu_to_le16(ret
);
2354 __ffs_event_add(ffs
, FUNCTIONFS_SETUP
);
2355 spin_unlock_irqrestore(&ffs
->ev
.waitq
.lock
, flags
);
2360 static void ffs_func_suspend(struct usb_function
*f
)
2363 ffs_event_add(ffs_func_from_usb(f
)->ffs
, FUNCTIONFS_SUSPEND
);
2366 static void ffs_func_resume(struct usb_function
*f
)
2369 ffs_event_add(ffs_func_from_usb(f
)->ffs
, FUNCTIONFS_RESUME
);
2373 /* Endpoint and interface numbers reverse mapping ***************************/
2375 static int ffs_func_revmap_ep(struct ffs_function
*func
, u8 num
)
2377 num
= func
->eps_revmap
[num
& USB_ENDPOINT_NUMBER_MASK
];
2378 return num
? num
: -EDOM
;
2381 static int ffs_func_revmap_intf(struct ffs_function
*func
, u8 intf
)
2383 short *nums
= func
->interfaces_nums
;
2384 unsigned count
= func
->ffs
->interfaces_count
;
2386 for (; count
; --count
, ++nums
) {
2387 if (*nums
>= 0 && *nums
== intf
)
2388 return nums
- func
->interfaces_nums
;
2395 /* Misc helper functions ****************************************************/
2397 static int ffs_mutex_lock(struct mutex
*mutex
, unsigned nonblock
)
2400 ? likely(mutex_trylock(mutex
)) ? 0 : -EAGAIN
2401 : mutex_lock_interruptible(mutex
);
2404 static char *ffs_prepare_buffer(const char * __user buf
, size_t len
)
2411 data
= kmalloc(len
, GFP_KERNEL
);
2412 if (unlikely(!data
))
2413 return ERR_PTR(-ENOMEM
);
2415 if (unlikely(__copy_from_user(data
, buf
, len
))) {
2417 return ERR_PTR(-EFAULT
);
2420 pr_vdebug("Buffer from user space:\n");
2421 ffs_dump_mem("", data
, len
);