blob: c7ed90084d1a54faa2b4e7f3d45f7a8fafaa9afe [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: GPL-2.0+
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002/*
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +01003 * f_fs.c -- user mode file system API for USB composite function controllers
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02004 *
5 * Copyright (C) 2010 Samsung Electronics
Michal Nazarewicz54b83602012-01-13 15:05:16 +01006 * Author: Michal Nazarewicz <mina86@mina86.com>
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02007 *
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +01008 * Based on inode.c (GadgetFS) which was:
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02009 * Copyright (C) 2003-2004 David Brownell
10 * Copyright (C) 2003 Agilent Technologies
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +020011 */
12
13
14/* #define DEBUG */
15/* #define VERBOSE_DEBUG */
16
17#include <linux/blkdev.h>
Randy Dunlapb0608692010-05-10 10:51:36 -070018#include <linux/pagemap.h>
Paul Gortmakerf940fcd2011-05-27 09:56:31 -040019#include <linux/export.h>
Koen Beel560f1182012-05-30 20:43:37 +020020#include <linux/hid.h>
Andrzej Pietrasiewicz772a7a72018-11-14 10:47:48 +010021#include <linux/mm.h>
Andrzej Pietrasiewicz5920cda2013-12-03 15:15:33 +010022#include <linux/module.h>
Andrzej Pietrasiewicz772a7a72018-11-14 10:47:48 +010023#include <linux/scatterlist.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010024#include <linux/sched/signal.h>
Christoph Hellwige2e40f22015-02-22 08:58:50 -080025#include <linux/uio.h>
Andrzej Pietrasiewicz772a7a72018-11-14 10:47:48 +010026#include <linux/vmalloc.h>
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +020027#include <asm/unaligned.h>
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +020028
Vincent Pelletier7f7c5482018-10-09 14:43:18 +000029#include <linux/usb/ccid.h>
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +020030#include <linux/usb/composite.h>
31#include <linux/usb/functionfs.h>
32
Robert Baldyga2e4c7552014-02-10 10:42:44 +010033#include <linux/aio.h>
34#include <linux/mmu_context.h>
Robert Baldyga23de91e2014-02-10 10:42:43 +010035#include <linux/poll.h>
Robert Baldyga5e33f6f2015-01-23 13:41:01 +010036#include <linux/eventfd.h>
Robert Baldyga23de91e2014-02-10 10:42:43 +010037
Andrzej Pietrasiewicze72c39c2013-12-03 15:15:31 +010038#include "u_fs.h"
Andrzej Pietrasiewicz74d48462014-05-08 14:06:21 +020039#include "u_f.h"
Andrzej Pietrasiewiczf0175ab2014-07-09 12:20:08 +020040#include "u_os_desc.h"
Andrzej Pietrasiewiczb6584992013-12-03 15:15:36 +010041#include "configfs.h"
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +020042
43#define FUNCTIONFS_MAGIC 0xa647361 /* Chosen by a honest dice roll ;) */
44
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +020045/* Reference counter handling */
46static void ffs_data_get(struct ffs_data *ffs);
47static void ffs_data_put(struct ffs_data *ffs);
48/* Creates new ffs_data object. */
John Keepingaddfc582017-09-12 10:24:40 +010049static struct ffs_data *__must_check ffs_data_new(const char *dev_name)
50 __attribute__((malloc));
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +020051
52/* Opened counter handling. */
53static void ffs_data_opened(struct ffs_data *ffs);
54static void ffs_data_closed(struct ffs_data *ffs);
55
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +010056/* Called with ffs->mutex held; take over ownership of data. */
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +020057static int __must_check
58__ffs_data_got_descs(struct ffs_data *ffs, char *data, size_t len);
59static int __must_check
60__ffs_data_got_strings(struct ffs_data *ffs, char *data, size_t len);
61
62
63/* The function structure ***************************************************/
64
65struct ffs_ep;
66
67struct ffs_function {
68 struct usb_configuration *conf;
69 struct usb_gadget *gadget;
70 struct ffs_data *ffs;
71
72 struct ffs_ep *eps;
73 u8 eps_revmap[16];
74 short *interfaces_nums;
75
76 struct usb_function function;
77};
78
79
80static struct ffs_function *ffs_func_from_usb(struct usb_function *f)
81{
82 return container_of(f, struct ffs_function, function);
83}
84
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +020085
Michal Nazarewicza7ecf052014-02-10 10:42:41 +010086static inline enum ffs_setup_state
87ffs_setup_state_clear_cancelled(struct ffs_data *ffs)
88{
89 return (enum ffs_setup_state)
90 cmpxchg(&ffs->setup_state, FFS_SETUP_CANCELLED, FFS_NO_SETUP);
91}
92
93
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +020094static void ffs_func_eps_disable(struct ffs_function *func);
95static int __must_check ffs_func_eps_enable(struct ffs_function *func);
96
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +020097static int ffs_func_bind(struct usb_configuration *,
98 struct usb_function *);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +020099static int ffs_func_set_alt(struct usb_function *, unsigned, unsigned);
100static void ffs_func_disable(struct usb_function *);
101static int ffs_func_setup(struct usb_function *,
102 const struct usb_ctrlrequest *);
Felix Hädicke54dfce62016-06-22 01:12:07 +0200103static bool ffs_func_req_match(struct usb_function *,
Felix Hädicke1a00b4572016-06-22 01:12:08 +0200104 const struct usb_ctrlrequest *,
105 bool config0);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200106static void ffs_func_suspend(struct usb_function *);
107static void ffs_func_resume(struct usb_function *);
108
109
110static int ffs_func_revmap_ep(struct ffs_function *func, u8 num);
111static int ffs_func_revmap_intf(struct ffs_function *func, u8 intf);
112
113
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200114/* The endpoints structures *************************************************/
115
116struct ffs_ep {
117 struct usb_ep *ep; /* P: ffs->eps_lock */
118 struct usb_request *req; /* P: epfile->mutex */
119
Manu Gautam8d4e8972014-02-28 16:50:22 +0530120 /* [0]: full speed, [1]: high speed, [2]: super speed */
121 struct usb_endpoint_descriptor *descs[3];
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200122
123 u8 num;
124
125 int status; /* P: epfile->mutex */
126};
127
128struct ffs_epfile {
129 /* Protects ep->ep and ep->req. */
130 struct mutex mutex;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200131
132 struct ffs_data *ffs;
133 struct ffs_ep *ep; /* P: ffs->eps_lock */
134
135 struct dentry *dentry;
136
Michal Nazarewicz9353afb2016-05-21 20:47:35 +0200137 /*
138 * Buffer for holding data from partial reads which may happen since
139 * we’re rounding user read requests to a multiple of a max packet size.
Michal Nazarewicza9e6f832016-10-04 02:07:34 +0200140 *
141 * The pointer is initialised with NULL value and may be set by
142 * __ffs_epfile_read_data function to point to a temporary buffer.
143 *
144 * In normal operation, calls to __ffs_epfile_read_buffered will consume
145 * data from said buffer and eventually free it. Importantly, while the
146 * function is using the buffer, it sets the pointer to NULL. This is
147 * all right since __ffs_epfile_read_data and __ffs_epfile_read_buffered
148 * can never run concurrently (they are synchronised by epfile->mutex)
149 * so the latter will not assign a new value to the pointer.
150 *
151 * Meanwhile ffs_func_eps_disable frees the buffer (if the pointer is
152 * valid) and sets the pointer to READ_BUFFER_DROP value. This special
153 * value is crux of the synchronisation between ffs_func_eps_disable and
154 * __ffs_epfile_read_data.
155 *
156 * Once __ffs_epfile_read_data is about to finish it will try to set the
157 * pointer back to its old value (as described above), but seeing as the
158 * pointer is not-NULL (namely READ_BUFFER_DROP) it will instead free
159 * the buffer.
160 *
161 * == State transitions ==
162 *
163 * • ptr == NULL: (initial state)
164 * ◦ __ffs_epfile_read_buffer_free: go to ptr == DROP
165 * ◦ __ffs_epfile_read_buffered: nop
166 * ◦ __ffs_epfile_read_data allocates temp buffer: go to ptr == buf
167 * ◦ reading finishes: n/a, not in ‘and reading’ state
168 * • ptr == DROP:
169 * ◦ __ffs_epfile_read_buffer_free: nop
170 * ◦ __ffs_epfile_read_buffered: go to ptr == NULL
171 * ◦ __ffs_epfile_read_data allocates temp buffer: free buf, nop
172 * ◦ reading finishes: n/a, not in ‘and reading’ state
173 * • ptr == buf:
174 * ◦ __ffs_epfile_read_buffer_free: free buf, go to ptr == DROP
175 * ◦ __ffs_epfile_read_buffered: go to ptr == NULL and reading
176 * ◦ __ffs_epfile_read_data: n/a, __ffs_epfile_read_buffered
177 * is always called first
178 * ◦ reading finishes: n/a, not in ‘and reading’ state
179 * • ptr == NULL and reading:
180 * ◦ __ffs_epfile_read_buffer_free: go to ptr == DROP and reading
181 * ◦ __ffs_epfile_read_buffered: n/a, mutex is held
182 * ◦ __ffs_epfile_read_data: n/a, mutex is held
183 * ◦ reading finishes and …
184 * … all data read: free buf, go to ptr == NULL
185 * … otherwise: go to ptr == buf and reading
186 * • ptr == DROP and reading:
187 * ◦ __ffs_epfile_read_buffer_free: nop
188 * ◦ __ffs_epfile_read_buffered: n/a, mutex is held
189 * ◦ __ffs_epfile_read_data: n/a, mutex is held
190 * ◦ reading finishes: free buf, go to ptr == DROP
Michal Nazarewicz9353afb2016-05-21 20:47:35 +0200191 */
Michal Nazarewicza9e6f832016-10-04 02:07:34 +0200192 struct ffs_buffer *read_buffer;
193#define READ_BUFFER_DROP ((struct ffs_buffer *)ERR_PTR(-ESHUTDOWN))
Michal Nazarewicz9353afb2016-05-21 20:47:35 +0200194
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200195 char name[5];
196
197 unsigned char in; /* P: ffs->eps_lock */
198 unsigned char isoc; /* P: ffs->eps_lock */
199
200 unsigned char _pad;
201};
202
Michal Nazarewicz9353afb2016-05-21 20:47:35 +0200203struct ffs_buffer {
204 size_t length;
205 char *data;
206 char storage[];
207};
208
Robert Baldyga2e4c7552014-02-10 10:42:44 +0100209/* ffs_io_data structure ***************************************************/
210
211struct ffs_io_data {
212 bool aio;
213 bool read;
214
215 struct kiocb *kiocb;
Al Viroc993c392015-01-31 23:23:35 -0500216 struct iov_iter data;
217 const void *to_free;
218 char *buf;
Robert Baldyga2e4c7552014-02-10 10:42:44 +0100219
220 struct mm_struct *mm;
221 struct work_struct work;
222
223 struct usb_ep *ep;
224 struct usb_request *req;
Andrzej Pietrasiewicz772a7a72018-11-14 10:47:48 +0100225 struct sg_table sgt;
226 bool use_sg;
Robert Baldyga5e33f6f2015-01-23 13:41:01 +0100227
228 struct ffs_data *ffs;
Robert Baldyga2e4c7552014-02-10 10:42:44 +0100229};
230
Robert Baldyga6d5c1c72014-08-25 11:16:27 +0200231struct ffs_desc_helper {
232 struct ffs_data *ffs;
233 unsigned interfaces_count;
234 unsigned eps_count;
235};
236
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200237static int __must_check ffs_epfiles_create(struct ffs_data *ffs);
238static void ffs_epfiles_destroy(struct ffs_epfile *epfiles, unsigned count);
239
Al Viro1bb27ca2014-09-03 13:32:19 -0400240static struct dentry *
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200241ffs_sb_create_file(struct super_block *sb, const char *name, void *data,
Al Viro1bb27ca2014-09-03 13:32:19 -0400242 const struct file_operations *fops);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200243
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +0100244/* Devices management *******************************************************/
245
246DEFINE_MUTEX(ffs_lock);
Felipe Balbi0700faa2014-04-01 13:19:32 -0500247EXPORT_SYMBOL_GPL(ffs_lock);
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +0100248
Andrzej Pietrasiewiczda13a772014-01-13 16:49:38 +0100249static struct ffs_dev *_ffs_find_dev(const char *name);
250static struct ffs_dev *_ffs_alloc_dev(void);
Andrzej Pietrasiewiczda13a772014-01-13 16:49:38 +0100251static void _ffs_free_dev(struct ffs_dev *dev);
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +0100252static void *ffs_acquire_dev(const char *dev_name);
253static void ffs_release_dev(struct ffs_data *ffs_data);
254static int ffs_ready(struct ffs_data *ffs);
255static void ffs_closed(struct ffs_data *ffs);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200256
257/* Misc helper functions ****************************************************/
258
259static int ffs_mutex_lock(struct mutex *mutex, unsigned nonblock)
260 __attribute__((warn_unused_result, nonnull));
Al Viro260ef312012-09-26 21:43:45 -0400261static char *ffs_prepare_buffer(const char __user *buf, size_t len)
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200262 __attribute__((warn_unused_result, nonnull));
263
264
265/* Control file aka ep0 *****************************************************/
266
267static void ffs_ep0_complete(struct usb_ep *ep, struct usb_request *req)
268{
269 struct ffs_data *ffs = req->context;
270
Daniel Wagner5bdcde92016-09-22 15:51:53 +0200271 complete(&ffs->ep0req_completion);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200272}
273
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200274static int __ffs_ep0_queue_wait(struct ffs_data *ffs, char *data, size_t len)
Vincent Pelletierc40619b2017-11-28 15:20:53 +0000275 __releases(&ffs->ev.waitq.lock)
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200276{
277 struct usb_request *req = ffs->ep0req;
278 int ret;
279
280 req->zero = len < le16_to_cpu(ffs->ev.setup.wLength);
281
282 spin_unlock_irq(&ffs->ev.waitq.lock);
283
284 req->buf = data;
285 req->length = len;
286
Marek Szyprowskice1fd352011-01-28 13:55:36 +0100287 /*
288 * UDC layer requires to provide a buffer even for ZLP, but should
289 * not use it at all. Let's provide some poisoned pointer to catch
290 * possible bug in the driver.
291 */
292 if (req->buf == NULL)
293 req->buf = (void *)0xDEADBABE;
294
Wolfram Sang16735d02013-11-14 14:32:02 -0800295 reinit_completion(&ffs->ep0req_completion);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200296
297 ret = usb_ep_queue(ffs->gadget->ep0, req, GFP_ATOMIC);
298 if (unlikely(ret < 0))
299 return ret;
300
301 ret = wait_for_completion_interruptible(&ffs->ep0req_completion);
302 if (unlikely(ret)) {
303 usb_ep_dequeue(ffs->gadget->ep0, req);
304 return -EINTR;
305 }
306
307 ffs->setup_state = FFS_NO_SETUP;
Robert Baldyga0a7b1f82014-02-10 10:42:42 +0100308 return req->status ? req->status : req->actual;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200309}
310
311static int __ffs_ep0_stall(struct ffs_data *ffs)
312{
313 if (ffs->ev.can_stall) {
Michal Nazarewiczaa02f172010-11-17 17:09:47 +0100314 pr_vdebug("ep0 stall\n");
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200315 usb_ep_set_halt(ffs->gadget->ep0);
316 ffs->setup_state = FFS_NO_SETUP;
317 return -EL2HLT;
318 } else {
Michal Nazarewiczaa02f172010-11-17 17:09:47 +0100319 pr_debug("bogus ep0 stall!\n");
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200320 return -ESRCH;
321 }
322}
323
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200324static ssize_t ffs_ep0_write(struct file *file, const char __user *buf,
325 size_t len, loff_t *ptr)
326{
327 struct ffs_data *ffs = file->private_data;
328 ssize_t ret;
329 char *data;
330
331 ENTER();
332
333 /* Fast check if setup was canceled */
Michal Nazarewicza7ecf052014-02-10 10:42:41 +0100334 if (ffs_setup_state_clear_cancelled(ffs) == FFS_SETUP_CANCELLED)
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200335 return -EIDRM;
336
337 /* Acquire mutex */
338 ret = ffs_mutex_lock(&ffs->mutex, file->f_flags & O_NONBLOCK);
339 if (unlikely(ret < 0))
340 return ret;
341
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200342 /* Check state */
343 switch (ffs->state) {
344 case FFS_READ_DESCRIPTORS:
345 case FFS_READ_STRINGS:
346 /* Copy data */
347 if (unlikely(len < 16)) {
348 ret = -EINVAL;
349 break;
350 }
351
352 data = ffs_prepare_buffer(buf, len);
Tobias Klauser537baab2010-12-09 15:52:39 +0100353 if (IS_ERR(data)) {
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200354 ret = PTR_ERR(data);
355 break;
356 }
357
358 /* Handle data */
359 if (ffs->state == FFS_READ_DESCRIPTORS) {
Michal Nazarewiczaa02f172010-11-17 17:09:47 +0100360 pr_info("read descriptors\n");
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200361 ret = __ffs_data_got_descs(ffs, data, len);
362 if (unlikely(ret < 0))
363 break;
364
365 ffs->state = FFS_READ_STRINGS;
366 ret = len;
367 } else {
Michal Nazarewiczaa02f172010-11-17 17:09:47 +0100368 pr_info("read strings\n");
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200369 ret = __ffs_data_got_strings(ffs, data, len);
370 if (unlikely(ret < 0))
371 break;
372
373 ret = ffs_epfiles_create(ffs);
374 if (unlikely(ret)) {
375 ffs->state = FFS_CLOSING;
376 break;
377 }
378
379 ffs->state = FFS_ACTIVE;
380 mutex_unlock(&ffs->mutex);
381
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +0100382 ret = ffs_ready(ffs);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200383 if (unlikely(ret < 0)) {
384 ffs->state = FFS_CLOSING;
385 return ret;
386 }
387
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200388 return len;
389 }
390 break;
391
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200392 case FFS_ACTIVE:
393 data = NULL;
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +0100394 /*
395 * We're called from user space, we can use _irq
396 * rather then _irqsave
397 */
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200398 spin_lock_irq(&ffs->ev.waitq.lock);
Michal Nazarewicza7ecf052014-02-10 10:42:41 +0100399 switch (ffs_setup_state_clear_cancelled(ffs)) {
Michal Nazarewicze46318a2014-02-10 10:42:40 +0100400 case FFS_SETUP_CANCELLED:
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200401 ret = -EIDRM;
402 goto done_spin;
403
404 case FFS_NO_SETUP:
405 ret = -ESRCH;
406 goto done_spin;
407
408 case FFS_SETUP_PENDING:
409 break;
410 }
411
412 /* FFS_SETUP_PENDING */
413 if (!(ffs->ev.setup.bRequestType & USB_DIR_IN)) {
414 spin_unlock_irq(&ffs->ev.waitq.lock);
415 ret = __ffs_ep0_stall(ffs);
416 break;
417 }
418
419 /* FFS_SETUP_PENDING and not stall */
420 len = min(len, (size_t)le16_to_cpu(ffs->ev.setup.wLength));
421
422 spin_unlock_irq(&ffs->ev.waitq.lock);
423
424 data = ffs_prepare_buffer(buf, len);
Tobias Klauser537baab2010-12-09 15:52:39 +0100425 if (IS_ERR(data)) {
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200426 ret = PTR_ERR(data);
427 break;
428 }
429
430 spin_lock_irq(&ffs->ev.waitq.lock);
431
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +0100432 /*
433 * We are guaranteed to be still in FFS_ACTIVE state
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200434 * but the state of setup could have changed from
Michal Nazarewicze46318a2014-02-10 10:42:40 +0100435 * FFS_SETUP_PENDING to FFS_SETUP_CANCELLED so we need
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200436 * to check for that. If that happened we copied data
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +0100437 * from user space in vain but it's unlikely.
438 *
439 * For sure we are not in FFS_NO_SETUP since this is
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200440 * the only place FFS_SETUP_PENDING -> FFS_NO_SETUP
441 * transition can be performed and it's protected by
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +0100442 * mutex.
443 */
Michal Nazarewicza7ecf052014-02-10 10:42:41 +0100444 if (ffs_setup_state_clear_cancelled(ffs) ==
445 FFS_SETUP_CANCELLED) {
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200446 ret = -EIDRM;
447done_spin:
448 spin_unlock_irq(&ffs->ev.waitq.lock);
449 } else {
450 /* unlocks spinlock */
451 ret = __ffs_ep0_queue_wait(ffs, data, len);
452 }
453 kfree(data);
454 break;
455
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200456 default:
457 ret = -EBADFD;
458 break;
459 }
460
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200461 mutex_unlock(&ffs->mutex);
462 return ret;
463}
464
Michal Nazarewicz67913bb2014-09-10 17:50:24 +0200465/* Called with ffs->ev.waitq.lock and ffs->mutex held, both released on exit. */
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200466static ssize_t __ffs_ep0_read_events(struct ffs_data *ffs, char __user *buf,
467 size_t n)
Vincent Pelletierc40619b2017-11-28 15:20:53 +0000468 __releases(&ffs->ev.waitq.lock)
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200469{
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +0100470 /*
Michal Nazarewicz67913bb2014-09-10 17:50:24 +0200471 * n cannot be bigger than ffs->ev.count, which cannot be bigger than
472 * size of ffs->ev.types array (which is four) so that's how much space
473 * we reserve.
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +0100474 */
Michal Nazarewicz67913bb2014-09-10 17:50:24 +0200475 struct usb_functionfs_event events[ARRAY_SIZE(ffs->ev.types)];
476 const size_t size = n * sizeof *events;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200477 unsigned i = 0;
478
Michal Nazarewicz67913bb2014-09-10 17:50:24 +0200479 memset(events, 0, size);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200480
481 do {
482 events[i].type = ffs->ev.types[i];
483 if (events[i].type == FUNCTIONFS_SETUP) {
484 events[i].u.setup = ffs->ev.setup;
485 ffs->setup_state = FFS_SETUP_PENDING;
486 }
487 } while (++i < n);
488
Michal Nazarewicz67913bb2014-09-10 17:50:24 +0200489 ffs->ev.count -= n;
490 if (ffs->ev.count)
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200491 memmove(ffs->ev.types, ffs->ev.types + n,
492 ffs->ev.count * sizeof *ffs->ev.types);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200493
494 spin_unlock_irq(&ffs->ev.waitq.lock);
495 mutex_unlock(&ffs->mutex);
496
Daniel Walter7fe9a932015-11-18 17:15:49 +0100497 return unlikely(copy_to_user(buf, events, size)) ? -EFAULT : size;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200498}
499
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200500static ssize_t ffs_ep0_read(struct file *file, char __user *buf,
501 size_t len, loff_t *ptr)
502{
503 struct ffs_data *ffs = file->private_data;
504 char *data = NULL;
505 size_t n;
506 int ret;
507
508 ENTER();
509
510 /* Fast check if setup was canceled */
Michal Nazarewicza7ecf052014-02-10 10:42:41 +0100511 if (ffs_setup_state_clear_cancelled(ffs) == FFS_SETUP_CANCELLED)
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200512 return -EIDRM;
513
514 /* Acquire mutex */
515 ret = ffs_mutex_lock(&ffs->mutex, file->f_flags & O_NONBLOCK);
516 if (unlikely(ret < 0))
517 return ret;
518
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200519 /* Check state */
520 if (ffs->state != FFS_ACTIVE) {
521 ret = -EBADFD;
522 goto done_mutex;
523 }
524
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +0100525 /*
526 * We're called from user space, we can use _irq rather then
527 * _irqsave
528 */
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200529 spin_lock_irq(&ffs->ev.waitq.lock);
530
Michal Nazarewicza7ecf052014-02-10 10:42:41 +0100531 switch (ffs_setup_state_clear_cancelled(ffs)) {
Michal Nazarewicze46318a2014-02-10 10:42:40 +0100532 case FFS_SETUP_CANCELLED:
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200533 ret = -EIDRM;
534 break;
535
536 case FFS_NO_SETUP:
537 n = len / sizeof(struct usb_functionfs_event);
538 if (unlikely(!n)) {
539 ret = -EINVAL;
540 break;
541 }
542
543 if ((file->f_flags & O_NONBLOCK) && !ffs->ev.count) {
544 ret = -EAGAIN;
545 break;
546 }
547
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +0100548 if (wait_event_interruptible_exclusive_locked_irq(ffs->ev.waitq,
549 ffs->ev.count)) {
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200550 ret = -EINTR;
551 break;
552 }
553
Vincent Pelletierc40619b2017-11-28 15:20:53 +0000554 /* unlocks spinlock */
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200555 return __ffs_ep0_read_events(ffs, buf,
556 min(n, (size_t)ffs->ev.count));
557
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200558 case FFS_SETUP_PENDING:
559 if (ffs->ev.setup.bRequestType & USB_DIR_IN) {
560 spin_unlock_irq(&ffs->ev.waitq.lock);
561 ret = __ffs_ep0_stall(ffs);
562 goto done_mutex;
563 }
564
565 len = min(len, (size_t)le16_to_cpu(ffs->ev.setup.wLength));
566
567 spin_unlock_irq(&ffs->ev.waitq.lock);
568
569 if (likely(len)) {
570 data = kmalloc(len, GFP_KERNEL);
571 if (unlikely(!data)) {
572 ret = -ENOMEM;
573 goto done_mutex;
574 }
575 }
576
577 spin_lock_irq(&ffs->ev.waitq.lock);
578
579 /* See ffs_ep0_write() */
Michal Nazarewicza7ecf052014-02-10 10:42:41 +0100580 if (ffs_setup_state_clear_cancelled(ffs) ==
581 FFS_SETUP_CANCELLED) {
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200582 ret = -EIDRM;
583 break;
584 }
585
586 /* unlocks spinlock */
587 ret = __ffs_ep0_queue_wait(ffs, data, len);
Daniel Walter7fe9a932015-11-18 17:15:49 +0100588 if (likely(ret > 0) && unlikely(copy_to_user(buf, data, len)))
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200589 ret = -EFAULT;
590 goto done_mutex;
591
592 default:
593 ret = -EBADFD;
594 break;
595 }
596
597 spin_unlock_irq(&ffs->ev.waitq.lock);
598done_mutex:
599 mutex_unlock(&ffs->mutex);
600 kfree(data);
601 return ret;
602}
603
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200604static int ffs_ep0_open(struct inode *inode, struct file *file)
605{
606 struct ffs_data *ffs = inode->i_private;
607
608 ENTER();
609
610 if (unlikely(ffs->state == FFS_CLOSING))
611 return -EBUSY;
612
613 file->private_data = ffs;
614 ffs_data_opened(ffs);
615
616 return 0;
617}
618
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200619static int ffs_ep0_release(struct inode *inode, struct file *file)
620{
621 struct ffs_data *ffs = file->private_data;
622
623 ENTER();
624
625 ffs_data_closed(ffs);
626
627 return 0;
628}
629
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200630static long ffs_ep0_ioctl(struct file *file, unsigned code, unsigned long value)
631{
632 struct ffs_data *ffs = file->private_data;
633 struct usb_gadget *gadget = ffs->gadget;
634 long ret;
635
636 ENTER();
637
638 if (code == FUNCTIONFS_INTERFACE_REVMAP) {
639 struct ffs_function *func = ffs->func;
640 ret = func ? ffs_func_revmap_intf(func, value) : -ENODEV;
Andrzej Pietrasiewicz92b0abf2012-03-28 09:30:50 +0200641 } else if (gadget && gadget->ops->ioctl) {
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200642 ret = gadget->ops->ioctl(gadget, code, value);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200643 } else {
644 ret = -ENOTTY;
645 }
646
647 return ret;
648}
649
Al Viroafc9a422017-07-03 06:39:46 -0400650static __poll_t ffs_ep0_poll(struct file *file, poll_table *wait)
Robert Baldyga23de91e2014-02-10 10:42:43 +0100651{
652 struct ffs_data *ffs = file->private_data;
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800653 __poll_t mask = EPOLLWRNORM;
Robert Baldyga23de91e2014-02-10 10:42:43 +0100654 int ret;
655
656 poll_wait(file, &ffs->ev.waitq, wait);
657
658 ret = ffs_mutex_lock(&ffs->mutex, file->f_flags & O_NONBLOCK);
659 if (unlikely(ret < 0))
660 return mask;
661
662 switch (ffs->state) {
663 case FFS_READ_DESCRIPTORS:
664 case FFS_READ_STRINGS:
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800665 mask |= EPOLLOUT;
Robert Baldyga23de91e2014-02-10 10:42:43 +0100666 break;
667
668 case FFS_ACTIVE:
669 switch (ffs->setup_state) {
670 case FFS_NO_SETUP:
671 if (ffs->ev.count)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800672 mask |= EPOLLIN;
Robert Baldyga23de91e2014-02-10 10:42:43 +0100673 break;
674
675 case FFS_SETUP_PENDING:
676 case FFS_SETUP_CANCELLED:
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800677 mask |= (EPOLLIN | EPOLLOUT);
Robert Baldyga23de91e2014-02-10 10:42:43 +0100678 break;
679 }
680 case FFS_CLOSING:
681 break;
Robert Baldyga18d6b32f2014-12-18 09:55:10 +0100682 case FFS_DEACTIVATED:
683 break;
Robert Baldyga23de91e2014-02-10 10:42:43 +0100684 }
685
686 mutex_unlock(&ffs->mutex);
687
688 return mask;
689}
690
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200691static const struct file_operations ffs_ep0_operations = {
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200692 .llseek = no_llseek,
693
694 .open = ffs_ep0_open,
695 .write = ffs_ep0_write,
696 .read = ffs_ep0_read,
697 .release = ffs_ep0_release,
698 .unlocked_ioctl = ffs_ep0_ioctl,
Robert Baldyga23de91e2014-02-10 10:42:43 +0100699 .poll = ffs_ep0_poll,
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200700};
701
702
703/* "Normal" endpoints operations ********************************************/
704
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200705static void ffs_epfile_io_complete(struct usb_ep *_ep, struct usb_request *req)
706{
707 ENTER();
708 if (likely(req->context)) {
709 struct ffs_ep *ep = _ep->driver_data;
710 ep->status = req->status ? req->status : req->actual;
711 complete(req->context);
712 }
713}
714
Michal Nazarewiczc662a312016-05-21 20:47:34 +0200715static ssize_t ffs_copy_to_iter(void *data, int data_len, struct iov_iter *iter)
716{
717 ssize_t ret = copy_to_iter(data, data_len, iter);
718 if (likely(ret == data_len))
719 return ret;
720
721 if (unlikely(iov_iter_count(iter)))
722 return -EFAULT;
723
724 /*
725 * Dear user space developer!
726 *
727 * TL;DR: To stop getting below error message in your kernel log, change
728 * user space code using functionfs to align read buffers to a max
729 * packet size.
730 *
731 * Some UDCs (e.g. dwc3) require request sizes to be a multiple of a max
732 * packet size. When unaligned buffer is passed to functionfs, it
733 * internally uses a larger, aligned buffer so that such UDCs are happy.
734 *
735 * Unfortunately, this means that host may send more data than was
736 * requested in read(2) system call. f_fs doesn’t know what to do with
737 * that excess data so it simply drops it.
738 *
739 * Was the buffer aligned in the first place, no such problem would
740 * happen.
741 *
Michal Nazarewicz9353afb2016-05-21 20:47:35 +0200742 * Data may be dropped only in AIO reads. Synchronous reads are handled
743 * by splitting a request into multiple parts. This splitting may still
744 * be a problem though so it’s likely best to align the buffer
745 * regardless of it being AIO or not..
746 *
Michal Nazarewiczc662a312016-05-21 20:47:34 +0200747 * This only affects OUT endpoints, i.e. reading data with a read(2),
748 * aio_read(2) etc. system calls. Writing data to an IN endpoint is not
749 * affected.
750 */
751 pr_err("functionfs read size %d > requested size %zd, dropping excess data. "
752 "Align read buffer size to max packet size to avoid the problem.\n",
753 data_len, ret);
754
755 return ret;
756}
757
Andrzej Pietrasiewicz772a7a72018-11-14 10:47:48 +0100758/*
759 * allocate a virtually contiguous buffer and create a scatterlist describing it
760 * @sg_table - pointer to a place to be filled with sg_table contents
761 * @size - required buffer size
762 */
763static void *ffs_build_sg_list(struct sg_table *sgt, size_t sz)
764{
765 struct page **pages;
766 void *vaddr, *ptr;
767 unsigned int n_pages;
768 int i;
769
770 vaddr = vmalloc(sz);
771 if (!vaddr)
772 return NULL;
773
774 n_pages = PAGE_ALIGN(sz) >> PAGE_SHIFT;
775 pages = kvmalloc_array(n_pages, sizeof(struct page *), GFP_KERNEL);
776 if (!pages) {
777 vfree(vaddr);
778
779 return NULL;
780 }
781 for (i = 0, ptr = vaddr; i < n_pages; ++i, ptr += PAGE_SIZE)
782 pages[i] = vmalloc_to_page(ptr);
783
784 if (sg_alloc_table_from_pages(sgt, pages, n_pages, 0, sz, GFP_KERNEL)) {
785 kvfree(pages);
786 vfree(vaddr);
787
788 return NULL;
789 }
790 kvfree(pages);
791
792 return vaddr;
793}
794
795static inline void *ffs_alloc_buffer(struct ffs_io_data *io_data,
796 size_t data_len)
797{
798 if (io_data->use_sg)
799 return ffs_build_sg_list(&io_data->sgt, data_len);
800
801 return kmalloc(data_len, GFP_KERNEL);
802}
803
804static inline void ffs_free_buffer(struct ffs_io_data *io_data)
805{
806 if (!io_data->buf)
807 return;
808
809 if (io_data->use_sg) {
810 sg_free_table(&io_data->sgt);
811 vfree(io_data->buf);
812 } else {
813 kfree(io_data->buf);
814 }
815}
816
Robert Baldyga2e4c7552014-02-10 10:42:44 +0100817static void ffs_user_copy_worker(struct work_struct *work)
818{
819 struct ffs_io_data *io_data = container_of(work, struct ffs_io_data,
820 work);
821 int ret = io_data->req->status ? io_data->req->status :
822 io_data->req->actual;
Lars-Peter Clausen38740a52016-04-14 17:01:17 +0200823 bool kiocb_has_eventfd = io_data->kiocb->ki_flags & IOCB_EVENTFD;
Robert Baldyga2e4c7552014-02-10 10:42:44 +0100824
825 if (io_data->read && ret > 0) {
Lars-Peter Clausen4058ebf2018-01-12 11:05:02 +0100826 mm_segment_t oldfs = get_fs();
827
828 set_fs(USER_DS);
Robert Baldyga2e4c7552014-02-10 10:42:44 +0100829 use_mm(io_data->mm);
Michal Nazarewiczc662a312016-05-21 20:47:34 +0200830 ret = ffs_copy_to_iter(io_data->buf, ret, &io_data->data);
Robert Baldyga2e4c7552014-02-10 10:42:44 +0100831 unuse_mm(io_data->mm);
Lars-Peter Clausen4058ebf2018-01-12 11:05:02 +0100832 set_fs(oldfs);
Robert Baldyga2e4c7552014-02-10 10:42:44 +0100833 }
834
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100835 io_data->kiocb->ki_complete(io_data->kiocb, ret, ret);
Robert Baldyga2e4c7552014-02-10 10:42:44 +0100836
Lars-Peter Clausen38740a52016-04-14 17:01:17 +0200837 if (io_data->ffs->ffs_eventfd && !kiocb_has_eventfd)
Robert Baldyga5e33f6f2015-01-23 13:41:01 +0100838 eventfd_signal(io_data->ffs->ffs_eventfd, 1);
839
Robert Baldyga2e4c7552014-02-10 10:42:44 +0100840 usb_ep_free_request(io_data->ep, io_data->req);
841
Robert Baldyga2e4c7552014-02-10 10:42:44 +0100842 if (io_data->read)
Al Viroc993c392015-01-31 23:23:35 -0500843 kfree(io_data->to_free);
Andrzej Pietrasiewicz772a7a72018-11-14 10:47:48 +0100844 ffs_free_buffer(io_data);
Robert Baldyga2e4c7552014-02-10 10:42:44 +0100845 kfree(io_data);
846}
847
848static void ffs_epfile_async_io_complete(struct usb_ep *_ep,
849 struct usb_request *req)
850{
851 struct ffs_io_data *io_data = req->context;
John Keepingaddfc582017-09-12 10:24:40 +0100852 struct ffs_data *ffs = io_data->ffs;
Robert Baldyga2e4c7552014-02-10 10:42:44 +0100853
854 ENTER();
855
856 INIT_WORK(&io_data->work, ffs_user_copy_worker);
John Keepingaddfc582017-09-12 10:24:40 +0100857 queue_work(ffs->io_completion_wq, &io_data->work);
Robert Baldyga2e4c7552014-02-10 10:42:44 +0100858}
859
Michal Nazarewicza9e6f832016-10-04 02:07:34 +0200860static void __ffs_epfile_read_buffer_free(struct ffs_epfile *epfile)
861{
862 /*
863 * See comment in struct ffs_epfile for full read_buffer pointer
864 * synchronisation story.
865 */
866 struct ffs_buffer *buf = xchg(&epfile->read_buffer, READ_BUFFER_DROP);
867 if (buf && buf != READ_BUFFER_DROP)
868 kfree(buf);
869}
870
Michal Nazarewicz9353afb2016-05-21 20:47:35 +0200871/* Assumes epfile->mutex is held. */
872static ssize_t __ffs_epfile_read_buffered(struct ffs_epfile *epfile,
873 struct iov_iter *iter)
874{
Michal Nazarewicza9e6f832016-10-04 02:07:34 +0200875 /*
876 * Null out epfile->read_buffer so ffs_func_eps_disable does not free
877 * the buffer while we are using it. See comment in struct ffs_epfile
878 * for full read_buffer pointer synchronisation story.
879 */
880 struct ffs_buffer *buf = xchg(&epfile->read_buffer, NULL);
Michal Nazarewicz9353afb2016-05-21 20:47:35 +0200881 ssize_t ret;
Michal Nazarewicza9e6f832016-10-04 02:07:34 +0200882 if (!buf || buf == READ_BUFFER_DROP)
Michal Nazarewicz9353afb2016-05-21 20:47:35 +0200883 return 0;
884
885 ret = copy_to_iter(buf->data, buf->length, iter);
886 if (buf->length == ret) {
887 kfree(buf);
Michal Nazarewicza9e6f832016-10-04 02:07:34 +0200888 return ret;
889 }
890
891 if (unlikely(iov_iter_count(iter))) {
Michal Nazarewicz9353afb2016-05-21 20:47:35 +0200892 ret = -EFAULT;
893 } else {
894 buf->length -= ret;
895 buf->data += ret;
896 }
Michal Nazarewicza9e6f832016-10-04 02:07:34 +0200897
898 if (cmpxchg(&epfile->read_buffer, NULL, buf))
899 kfree(buf);
900
Michal Nazarewicz9353afb2016-05-21 20:47:35 +0200901 return ret;
902}
903
904/* Assumes epfile->mutex is held. */
905static ssize_t __ffs_epfile_read_data(struct ffs_epfile *epfile,
906 void *data, int data_len,
907 struct iov_iter *iter)
908{
909 struct ffs_buffer *buf;
910
911 ssize_t ret = copy_to_iter(data, data_len, iter);
912 if (likely(data_len == ret))
913 return ret;
914
915 if (unlikely(iov_iter_count(iter)))
916 return -EFAULT;
917
918 /* See ffs_copy_to_iter for more context. */
919 pr_warn("functionfs read size %d > requested size %zd, splitting request into multiple reads.",
920 data_len, ret);
921
922 data_len -= ret;
923 buf = kmalloc(sizeof(*buf) + data_len, GFP_KERNEL);
Dan Carpenter44963d62016-06-24 15:23:16 +0300924 if (!buf)
925 return -ENOMEM;
Michal Nazarewicz9353afb2016-05-21 20:47:35 +0200926 buf->length = data_len;
927 buf->data = buf->storage;
928 memcpy(buf->storage, data + ret, data_len);
Michal Nazarewicza9e6f832016-10-04 02:07:34 +0200929
930 /*
931 * At this point read_buffer is NULL or READ_BUFFER_DROP (if
932 * ffs_func_eps_disable has been called in the meanwhile). See comment
933 * in struct ffs_epfile for full read_buffer pointer synchronisation
934 * story.
935 */
936 if (unlikely(cmpxchg(&epfile->read_buffer, NULL, buf)))
937 kfree(buf);
Michal Nazarewicz9353afb2016-05-21 20:47:35 +0200938
939 return ret;
940}
941
Robert Baldyga2e4c7552014-02-10 10:42:44 +0100942static ssize_t ffs_epfile_io(struct file *file, struct ffs_io_data *io_data)
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200943{
944 struct ffs_epfile *epfile = file->private_data;
Michal Nazarewiczae76e132016-01-04 21:05:59 +0100945 struct usb_request *req;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200946 struct ffs_ep *ep;
947 char *data = NULL;
David Cohenc0d31b32014-10-13 11:15:54 -0700948 ssize_t ret, data_len = -EINVAL;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +0200949 int halt;
950
Michal Nazarewicz7fa68032013-12-09 15:55:36 -0800951 /* Are we still active? */
Michal Nazarewiczb3591f62016-01-04 20:58:12 +0100952 if (WARN_ON(epfile->ffs->state != FFS_ACTIVE))
953 return -ENODEV;
Michal Nazarewicz7fa68032013-12-09 15:55:36 -0800954
955 /* Wait for endpoint to be enabled */
956 ep = epfile->ep;
957 if (!ep) {
Michal Nazarewiczb3591f62016-01-04 20:58:12 +0100958 if (file->f_flags & O_NONBLOCK)
959 return -EAGAIN;
Michal Nazarewicz7fa68032013-12-09 15:55:36 -0800960
Jerry Zhange16828c2017-04-18 16:11:48 -0700961 ret = wait_event_interruptible(
962 epfile->ffs->wait, (ep = epfile->ep));
Michal Nazarewiczb3591f62016-01-04 20:58:12 +0100963 if (ret)
964 return -EINTR;
Michal Nazarewicz7fa68032013-12-09 15:55:36 -0800965 }
966
967 /* Do we halt? */
Robert Baldyga2e4c7552014-02-10 10:42:44 +0100968 halt = (!io_data->read == !epfile->in);
Michal Nazarewiczb3591f62016-01-04 20:58:12 +0100969 if (halt && epfile->isoc)
970 return -EINVAL;
Michal Nazarewicz7fa68032013-12-09 15:55:36 -0800971
Michal Nazarewicz9353afb2016-05-21 20:47:35 +0200972 /* We will be using request and read_buffer */
973 ret = ffs_mutex_lock(&epfile->mutex, file->f_flags & O_NONBLOCK);
974 if (unlikely(ret))
975 goto error;
976
Michal Nazarewicz7fa68032013-12-09 15:55:36 -0800977 /* Allocate & copy */
978 if (!halt) {
Michal Nazarewicz9353afb2016-05-21 20:47:35 +0200979 struct usb_gadget *gadget;
980
981 /*
982 * Do we have buffered data from previous partial read? Check
983 * that for synchronous case only because we do not have
984 * facility to ‘wake up’ a pending asynchronous read and push
985 * buffered data to it which we would need to make things behave
986 * consistently.
987 */
988 if (!io_data->aio && io_data->read) {
989 ret = __ffs_epfile_read_buffered(epfile, &io_data->data);
990 if (ret)
991 goto error_mutex;
992 }
993
Michal Nazarewicz219580e2013-12-09 15:55:37 -0800994 /*
Andrzej Pietrasiewiczf0f42202014-01-20 08:33:50 +0100995 * if we _do_ wait above, the epfile->ffs->gadget might be NULL
Michal Nazarewiczae76e132016-01-04 21:05:59 +0100996 * before the waiting completes, so do not assign to 'gadget'
997 * earlier
Andrzej Pietrasiewiczf0f42202014-01-20 08:33:50 +0100998 */
Michal Nazarewicz9353afb2016-05-21 20:47:35 +0200999 gadget = epfile->ffs->gadget;
Andrzej Pietrasiewiczf0f42202014-01-20 08:33:50 +01001000
Chao Bi97839ca2014-04-14 11:19:53 +08001001 spin_lock_irq(&epfile->ffs->eps_lock);
1002 /* In the meantime, endpoint got disabled or changed. */
1003 if (epfile->ep != ep) {
Michal Nazarewicz9353afb2016-05-21 20:47:35 +02001004 ret = -ESHUTDOWN;
1005 goto error_lock;
Chao Bi97839ca2014-04-14 11:19:53 +08001006 }
Al Viroc993c392015-01-31 23:23:35 -05001007 data_len = iov_iter_count(&io_data->data);
Andrzej Pietrasiewiczf0f42202014-01-20 08:33:50 +01001008 /*
Michal Nazarewicz219580e2013-12-09 15:55:37 -08001009 * Controller may require buffer size to be aligned to
1010 * maxpacketsize of an out endpoint.
1011 */
Al Viroc993c392015-01-31 23:23:35 -05001012 if (io_data->read)
1013 data_len = usb_ep_align_maybe(gadget, ep->ep, data_len);
Fei Yang4833a942019-06-12 15:13:26 -07001014
1015 io_data->use_sg = gadget->sg_supported && data_len > PAGE_SIZE;
Chao Bi97839ca2014-04-14 11:19:53 +08001016 spin_unlock_irq(&epfile->ffs->eps_lock);
Michal Nazarewicz219580e2013-12-09 15:55:37 -08001017
Andrzej Pietrasiewicz772a7a72018-11-14 10:47:48 +01001018 data = ffs_alloc_buffer(io_data, data_len);
Michal Nazarewicz9353afb2016-05-21 20:47:35 +02001019 if (unlikely(!data)) {
1020 ret = -ENOMEM;
1021 goto error_mutex;
1022 }
1023 if (!io_data->read &&
Al Virocbbd26b2016-11-01 22:09:04 -04001024 !copy_from_iter_full(data, data_len, &io_data->data)) {
Michal Nazarewicz9353afb2016-05-21 20:47:35 +02001025 ret = -EFAULT;
1026 goto error_mutex;
Michal Nazarewicz7fa68032013-12-09 15:55:36 -08001027 }
1028 }
1029
Michal Nazarewicz7fa68032013-12-09 15:55:36 -08001030 spin_lock_irq(&epfile->ffs->eps_lock);
1031
1032 if (epfile->ep != ep) {
1033 /* In the meantime, endpoint got disabled or changed. */
1034 ret = -ESHUTDOWN;
Michal Nazarewicz7fa68032013-12-09 15:55:36 -08001035 } else if (halt) {
Jerry Zhangcdff9f82017-08-11 15:46:08 -07001036 ret = usb_ep_set_halt(ep->ep);
1037 if (!ret)
1038 ret = -EBADMSG;
Michal Nazarewiczae76e132016-01-04 21:05:59 +01001039 } else if (unlikely(data_len == -EINVAL)) {
David Cohenc0d31b32014-10-13 11:15:54 -07001040 /*
1041 * Sanity Check: even though data_len can't be used
1042 * uninitialized at the time I write this comment, some
1043 * compilers complain about this situation.
1044 * In order to keep the code clean from warnings, data_len is
1045 * being initialized to -EINVAL during its declaration, which
1046 * means we can't rely on compiler anymore to warn no future
1047 * changes won't result in data_len being used uninitialized.
1048 * For such reason, we're adding this redundant sanity check
1049 * here.
1050 */
Michal Nazarewiczae76e132016-01-04 21:05:59 +01001051 WARN(1, "%s: data_len == -EINVAL\n", __func__);
1052 ret = -EINVAL;
1053 } else if (!io_data->aio) {
1054 DECLARE_COMPLETION_ONSTACK(done);
Du, Changbinef150882015-12-29 14:36:58 +08001055 bool interrupted = false;
Michal Nazarewiczae76e132016-01-04 21:05:59 +01001056
1057 req = ep->req;
Andrzej Pietrasiewicz772a7a72018-11-14 10:47:48 +01001058 if (io_data->use_sg) {
1059 req->buf = NULL;
1060 req->sg = io_data->sgt.sgl;
1061 req->num_sgs = io_data->sgt.nents;
1062 } else {
1063 req->buf = data;
1064 }
1065 req->length = data_len;
1066
1067 io_data->buf = data;
Michal Nazarewiczae76e132016-01-04 21:05:59 +01001068
1069 req->context = &done;
1070 req->complete = ffs_epfile_io_complete;
1071
1072 ret = usb_ep_queue(ep->ep, req, GFP_ATOMIC);
1073 if (unlikely(ret < 0))
1074 goto error_lock;
1075
1076 spin_unlock_irq(&epfile->ffs->eps_lock);
1077
1078 if (unlikely(wait_for_completion_interruptible(&done))) {
Du, Changbinef150882015-12-29 14:36:58 +08001079 /*
1080 * To avoid race condition with ffs_epfile_io_complete,
1081 * dequeue the request first then check
1082 * status. usb_ep_dequeue API should guarantee no race
1083 * condition with req->complete callback.
1084 */
Michal Nazarewiczae76e132016-01-04 21:05:59 +01001085 usb_ep_dequeue(ep->ep, req);
John Stultz54f64d52019-02-05 10:24:40 -08001086 wait_for_completion(&done);
Du, Changbinef150882015-12-29 14:36:58 +08001087 interrupted = ep->status < 0;
Michal Nazarewiczae76e132016-01-04 21:05:59 +01001088 }
1089
Michal Nazarewiczc662a312016-05-21 20:47:34 +02001090 if (interrupted)
1091 ret = -EINTR;
1092 else if (io_data->read && ep->status > 0)
Michal Nazarewicz9353afb2016-05-21 20:47:35 +02001093 ret = __ffs_epfile_read_data(epfile, data, ep->status,
1094 &io_data->data);
Michal Nazarewiczc662a312016-05-21 20:47:34 +02001095 else
1096 ret = ep->status;
Michal Nazarewiczae76e132016-01-04 21:05:59 +01001097 goto error_mutex;
Vincent Pelletier30bf90c2017-11-26 06:52:53 +00001098 } else if (!(req = usb_ep_alloc_request(ep->ep, GFP_ATOMIC))) {
Michal Nazarewiczae76e132016-01-04 21:05:59 +01001099 ret = -ENOMEM;
1100 } else {
Andrzej Pietrasiewicz772a7a72018-11-14 10:47:48 +01001101 if (io_data->use_sg) {
1102 req->buf = NULL;
1103 req->sg = io_data->sgt.sgl;
1104 req->num_sgs = io_data->sgt.nents;
1105 } else {
1106 req->buf = data;
1107 }
1108 req->length = data_len;
Michal Nazarewiczae76e132016-01-04 21:05:59 +01001109
1110 io_data->buf = data;
1111 io_data->ep = ep->ep;
1112 io_data->req = req;
1113 io_data->ffs = epfile->ffs;
1114
1115 req->context = io_data;
1116 req->complete = ffs_epfile_async_io_complete;
1117
1118 ret = usb_ep_queue(ep->ep, req, GFP_ATOMIC);
1119 if (unlikely(ret)) {
1120 usb_ep_free_request(ep->ep, req);
David Cohenc0d31b32014-10-13 11:15:54 -07001121 goto error_lock;
1122 }
1123
Michal Nazarewiczae76e132016-01-04 21:05:59 +01001124 ret = -EIOCBQUEUED;
1125 /*
1126 * Do not kfree the buffer in this function. It will be freed
1127 * by ffs_user_copy_worker.
1128 */
1129 data = NULL;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001130 }
1131
Robert Baldyga48968f82014-03-10 09:33:37 +01001132error_lock:
1133 spin_unlock_irq(&epfile->ffs->eps_lock);
Michal Nazarewiczae76e132016-01-04 21:05:59 +01001134error_mutex:
Robert Baldyga48968f82014-03-10 09:33:37 +01001135 mutex_unlock(&epfile->mutex);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001136error:
Fei Yang73103c72019-03-19 22:32:20 -07001137 if (ret != -EIOCBQUEUED) /* don't free if there is iocb queued */
1138 ffs_free_buffer(io_data);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001139 return ret;
1140}
1141
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001142static int
1143ffs_epfile_open(struct inode *inode, struct file *file)
1144{
1145 struct ffs_epfile *epfile = inode->i_private;
1146
1147 ENTER();
1148
1149 if (WARN_ON(epfile->ffs->state != FFS_ACTIVE))
1150 return -ENODEV;
1151
1152 file->private_data = epfile;
1153 ffs_data_opened(epfile->ffs);
1154
1155 return 0;
1156}
1157
Robert Baldyga2e4c7552014-02-10 10:42:44 +01001158static int ffs_aio_cancel(struct kiocb *kiocb)
1159{
1160 struct ffs_io_data *io_data = kiocb->private;
Shen Jinga9c85902018-11-01 15:35:17 +05301161 struct ffs_epfile *epfile = kiocb->ki_filp->private_data;
Robert Baldyga2e4c7552014-02-10 10:42:44 +01001162 int value;
1163
1164 ENTER();
1165
Shen Jinga9c85902018-11-01 15:35:17 +05301166 spin_lock_irq(&epfile->ffs->eps_lock);
1167
1168 if (likely(io_data && io_data->ep && io_data->req))
1169 value = usb_ep_dequeue(io_data->ep, io_data->req);
1170 else
Robert Baldyga2e4c7552014-02-10 10:42:44 +01001171 value = -EINVAL;
Shen Jinga9c85902018-11-01 15:35:17 +05301172
1173 spin_unlock_irq(&epfile->ffs->eps_lock);
Robert Baldyga2e4c7552014-02-10 10:42:44 +01001174
1175 return value;
1176}
1177
Al Viro70e60d92015-01-31 23:55:39 -05001178static ssize_t ffs_epfile_write_iter(struct kiocb *kiocb, struct iov_iter *from)
Robert Baldyga2e4c7552014-02-10 10:42:44 +01001179{
Al Viro70e60d92015-01-31 23:55:39 -05001180 struct ffs_io_data io_data, *p = &io_data;
Al Virode2080d2015-01-31 23:42:34 -05001181 ssize_t res;
Robert Baldyga2e4c7552014-02-10 10:42:44 +01001182
1183 ENTER();
1184
Al Viro70e60d92015-01-31 23:55:39 -05001185 if (!is_sync_kiocb(kiocb)) {
1186 p = kmalloc(sizeof(io_data), GFP_KERNEL);
1187 if (unlikely(!p))
1188 return -ENOMEM;
1189 p->aio = true;
1190 } else {
1191 p->aio = false;
1192 }
Robert Baldyga2e4c7552014-02-10 10:42:44 +01001193
Al Viro70e60d92015-01-31 23:55:39 -05001194 p->read = false;
1195 p->kiocb = kiocb;
1196 p->data = *from;
1197 p->mm = current->mm;
Robert Baldyga2e4c7552014-02-10 10:42:44 +01001198
Al Viro70e60d92015-01-31 23:55:39 -05001199 kiocb->private = p;
Robert Baldyga2e4c7552014-02-10 10:42:44 +01001200
Rui Miguel Silva4088acf2015-05-18 16:02:07 +01001201 if (p->aio)
1202 kiocb_set_cancel_fn(kiocb, ffs_aio_cancel);
Robert Baldyga2e4c7552014-02-10 10:42:44 +01001203
Al Viro70e60d92015-01-31 23:55:39 -05001204 res = ffs_epfile_io(kiocb->ki_filp, p);
1205 if (res == -EIOCBQUEUED)
1206 return res;
1207 if (p->aio)
1208 kfree(p);
1209 else
1210 *from = p->data;
Al Virode2080d2015-01-31 23:42:34 -05001211 return res;
Robert Baldyga2e4c7552014-02-10 10:42:44 +01001212}
1213
Al Viro70e60d92015-01-31 23:55:39 -05001214static ssize_t ffs_epfile_read_iter(struct kiocb *kiocb, struct iov_iter *to)
Robert Baldyga2e4c7552014-02-10 10:42:44 +01001215{
Al Viro70e60d92015-01-31 23:55:39 -05001216 struct ffs_io_data io_data, *p = &io_data;
Al Virode2080d2015-01-31 23:42:34 -05001217 ssize_t res;
Robert Baldyga2e4c7552014-02-10 10:42:44 +01001218
1219 ENTER();
1220
Al Viro70e60d92015-01-31 23:55:39 -05001221 if (!is_sync_kiocb(kiocb)) {
1222 p = kmalloc(sizeof(io_data), GFP_KERNEL);
1223 if (unlikely(!p))
1224 return -ENOMEM;
1225 p->aio = true;
1226 } else {
1227 p->aio = false;
Robert Baldyga2e4c7552014-02-10 10:42:44 +01001228 }
1229
Al Viro70e60d92015-01-31 23:55:39 -05001230 p->read = true;
1231 p->kiocb = kiocb;
1232 if (p->aio) {
1233 p->to_free = dup_iter(&p->data, to, GFP_KERNEL);
1234 if (!p->to_free) {
1235 kfree(p);
1236 return -ENOMEM;
1237 }
1238 } else {
1239 p->data = *to;
1240 p->to_free = NULL;
1241 }
1242 p->mm = current->mm;
Robert Baldyga2e4c7552014-02-10 10:42:44 +01001243
Al Viro70e60d92015-01-31 23:55:39 -05001244 kiocb->private = p;
Robert Baldyga2e4c7552014-02-10 10:42:44 +01001245
Rui Miguel Silva4088acf2015-05-18 16:02:07 +01001246 if (p->aio)
1247 kiocb_set_cancel_fn(kiocb, ffs_aio_cancel);
Robert Baldyga2e4c7552014-02-10 10:42:44 +01001248
Al Viro70e60d92015-01-31 23:55:39 -05001249 res = ffs_epfile_io(kiocb->ki_filp, p);
1250 if (res == -EIOCBQUEUED)
1251 return res;
1252
1253 if (p->aio) {
1254 kfree(p->to_free);
1255 kfree(p);
1256 } else {
1257 *to = p->data;
Al Virode2080d2015-01-31 23:42:34 -05001258 }
1259 return res;
Robert Baldyga2e4c7552014-02-10 10:42:44 +01001260}
1261
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001262static int
1263ffs_epfile_release(struct inode *inode, struct file *file)
1264{
1265 struct ffs_epfile *epfile = inode->i_private;
1266
1267 ENTER();
1268
Michal Nazarewicza9e6f832016-10-04 02:07:34 +02001269 __ffs_epfile_read_buffer_free(epfile);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001270 ffs_data_closed(epfile->ffs);
1271
1272 return 0;
1273}
1274
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001275static long ffs_epfile_ioctl(struct file *file, unsigned code,
1276 unsigned long value)
1277{
1278 struct ffs_epfile *epfile = file->private_data;
Jerry Zhang222155d2017-04-19 18:23:38 -07001279 struct ffs_ep *ep;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001280 int ret;
1281
1282 ENTER();
1283
1284 if (WARN_ON(epfile->ffs->state != FFS_ACTIVE))
1285 return -ENODEV;
1286
Jerry Zhang222155d2017-04-19 18:23:38 -07001287 /* Wait for endpoint to be enabled */
1288 ep = epfile->ep;
1289 if (!ep) {
1290 if (file->f_flags & O_NONBLOCK)
1291 return -EAGAIN;
1292
Jerry Zhange16828c2017-04-18 16:11:48 -07001293 ret = wait_event_interruptible(
1294 epfile->ffs->wait, (ep = epfile->ep));
Jerry Zhang222155d2017-04-19 18:23:38 -07001295 if (ret)
1296 return -EINTR;
1297 }
1298
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001299 spin_lock_irq(&epfile->ffs->eps_lock);
Robert Baldygac559a352014-09-09 08:23:16 +02001300
Jerry Zhang222155d2017-04-19 18:23:38 -07001301 /* In the meantime, endpoint got disabled or changed. */
1302 if (epfile->ep != ep) {
1303 spin_unlock_irq(&epfile->ffs->eps_lock);
1304 return -ESHUTDOWN;
1305 }
Robert Baldygac559a352014-09-09 08:23:16 +02001306
Jerry Zhang222155d2017-04-19 18:23:38 -07001307 switch (code) {
1308 case FUNCTIONFS_FIFO_STATUS:
1309 ret = usb_ep_fifo_status(epfile->ep->ep);
1310 break;
1311 case FUNCTIONFS_FIFO_FLUSH:
1312 usb_ep_fifo_flush(epfile->ep->ep);
1313 ret = 0;
1314 break;
1315 case FUNCTIONFS_CLEAR_HALT:
1316 ret = usb_ep_clear_halt(epfile->ep->ep);
1317 break;
1318 case FUNCTIONFS_ENDPOINT_REVMAP:
1319 ret = epfile->ep->num;
1320 break;
1321 case FUNCTIONFS_ENDPOINT_DESC:
1322 {
1323 int desc_idx;
1324 struct usb_endpoint_descriptor *desc;
1325
1326 switch (epfile->ffs->gadget->speed) {
1327 case USB_SPEED_SUPER:
1328 desc_idx = 2;
1329 break;
1330 case USB_SPEED_HIGH:
1331 desc_idx = 1;
1332 break;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001333 default:
Jerry Zhang222155d2017-04-19 18:23:38 -07001334 desc_idx = 0;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001335 }
Jerry Zhang222155d2017-04-19 18:23:38 -07001336 desc = epfile->ep->descs[desc_idx];
1337
1338 spin_unlock_irq(&epfile->ffs->eps_lock);
Vincent Pelletierc40619b2017-11-28 15:20:53 +00001339 ret = copy_to_user((void __user *)value, desc, desc->bLength);
Jerry Zhang222155d2017-04-19 18:23:38 -07001340 if (ret)
1341 ret = -EFAULT;
1342 return ret;
1343 }
1344 default:
1345 ret = -ENOTTY;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001346 }
1347 spin_unlock_irq(&epfile->ffs->eps_lock);
1348
1349 return ret;
1350}
1351
Jerry Zhang6819e322018-03-30 15:32:19 -07001352#ifdef CONFIG_COMPAT
1353static long ffs_epfile_compat_ioctl(struct file *file, unsigned code,
1354 unsigned long value)
1355{
1356 return ffs_epfile_ioctl(file, code, value);
1357}
1358#endif
1359
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001360static const struct file_operations ffs_epfile_operations = {
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001361 .llseek = no_llseek,
1362
1363 .open = ffs_epfile_open,
Al Viro70e60d92015-01-31 23:55:39 -05001364 .write_iter = ffs_epfile_write_iter,
1365 .read_iter = ffs_epfile_read_iter,
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001366 .release = ffs_epfile_release,
1367 .unlocked_ioctl = ffs_epfile_ioctl,
Jerry Zhang6819e322018-03-30 15:32:19 -07001368#ifdef CONFIG_COMPAT
1369 .compat_ioctl = ffs_epfile_compat_ioctl,
1370#endif
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001371};
1372
1373
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001374/* File system and super block operations ***********************************/
1375
1376/*
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +01001377 * Mounting the file system creates a controller file, used first for
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001378 * function configuration then later for event monitoring.
1379 */
1380
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001381static struct inode *__must_check
1382ffs_sb_make_inode(struct super_block *sb, void *data,
1383 const struct file_operations *fops,
1384 const struct inode_operations *iops,
1385 struct ffs_file_perms *perms)
1386{
1387 struct inode *inode;
1388
1389 ENTER();
1390
1391 inode = new_inode(sb);
1392
1393 if (likely(inode)) {
Deepa Dinamani95582b02018-05-08 19:36:02 -07001394 struct timespec64 ts = current_time(inode);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001395
Al Viro12ba8d12010-10-27 04:19:36 +01001396 inode->i_ino = get_next_ino();
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001397 inode->i_mode = perms->mode;
1398 inode->i_uid = perms->uid;
1399 inode->i_gid = perms->gid;
Deepa Dinamani078cd822016-09-14 07:48:04 -07001400 inode->i_atime = ts;
1401 inode->i_mtime = ts;
1402 inode->i_ctime = ts;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001403 inode->i_private = data;
1404 if (fops)
1405 inode->i_fop = fops;
1406 if (iops)
1407 inode->i_op = iops;
1408 }
1409
1410 return inode;
1411}
1412
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001413/* Create "regular" file */
Al Viro1bb27ca2014-09-03 13:32:19 -04001414static struct dentry *ffs_sb_create_file(struct super_block *sb,
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001415 const char *name, void *data,
Al Viro1bb27ca2014-09-03 13:32:19 -04001416 const struct file_operations *fops)
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001417{
1418 struct ffs_data *ffs = sb->s_fs_info;
1419 struct dentry *dentry;
1420 struct inode *inode;
1421
1422 ENTER();
1423
1424 dentry = d_alloc_name(sb->s_root, name);
1425 if (unlikely(!dentry))
1426 return NULL;
1427
1428 inode = ffs_sb_make_inode(sb, data, fops, NULL, &ffs->file_perms);
1429 if (unlikely(!inode)) {
1430 dput(dentry);
1431 return NULL;
1432 }
1433
1434 d_add(dentry, inode);
Al Viro1bb27ca2014-09-03 13:32:19 -04001435 return dentry;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001436}
1437
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001438/* Super block */
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001439static const struct super_operations ffs_sb_operations = {
1440 .statfs = simple_statfs,
1441 .drop_inode = generic_delete_inode,
1442};
1443
1444struct ffs_sb_fill_data {
1445 struct ffs_file_perms perms;
1446 umode_t root_mode;
1447 const char *dev_name;
Robert Baldyga18d6b32f2014-12-18 09:55:10 +01001448 bool no_disconnect;
Al Viro2606b282013-09-20 17:14:21 +01001449 struct ffs_data *ffs_data;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001450};
1451
1452static int ffs_sb_fill(struct super_block *sb, void *_data, int silent)
1453{
1454 struct ffs_sb_fill_data *data = _data;
1455 struct inode *inode;
Al Viro2606b282013-09-20 17:14:21 +01001456 struct ffs_data *ffs = data->ffs_data;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001457
1458 ENTER();
1459
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001460 ffs->sb = sb;
Al Viro2606b282013-09-20 17:14:21 +01001461 data->ffs_data = NULL;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001462 sb->s_fs_info = ffs;
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001463 sb->s_blocksize = PAGE_SIZE;
1464 sb->s_blocksize_bits = PAGE_SHIFT;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001465 sb->s_magic = FUNCTIONFS_MAGIC;
1466 sb->s_op = &ffs_sb_operations;
1467 sb->s_time_gran = 1;
1468
1469 /* Root inode */
1470 data->perms.mode = data->root_mode;
1471 inode = ffs_sb_make_inode(sb, NULL,
1472 &simple_dir_operations,
1473 &simple_dir_inode_operations,
1474 &data->perms);
Al Viro48fde702012-01-08 22:15:13 -05001475 sb->s_root = d_make_root(inode);
1476 if (unlikely(!sb->s_root))
Al Viro2606b282013-09-20 17:14:21 +01001477 return -ENOMEM;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001478
1479 /* EP0 file */
1480 if (unlikely(!ffs_sb_create_file(sb, "ep0", ffs,
Al Viro1bb27ca2014-09-03 13:32:19 -04001481 &ffs_ep0_operations)))
Al Viro2606b282013-09-20 17:14:21 +01001482 return -ENOMEM;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001483
1484 return 0;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001485}
1486
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001487static int ffs_fs_parse_opts(struct ffs_sb_fill_data *data, char *opts)
1488{
1489 ENTER();
1490
1491 if (!opts || !*opts)
1492 return 0;
1493
1494 for (;;) {
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001495 unsigned long value;
Michal Nazarewiczafd2e182013-01-09 10:17:47 +01001496 char *eq, *comma;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001497
1498 /* Option limit */
1499 comma = strchr(opts, ',');
1500 if (comma)
1501 *comma = 0;
1502
1503 /* Value limit */
1504 eq = strchr(opts, '=');
1505 if (unlikely(!eq)) {
Michal Nazarewiczaa02f172010-11-17 17:09:47 +01001506 pr_err("'=' missing in %s\n", opts);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001507 return -EINVAL;
1508 }
1509 *eq = 0;
1510
1511 /* Parse value */
Michal Nazarewiczafd2e182013-01-09 10:17:47 +01001512 if (kstrtoul(eq + 1, 0, &value)) {
Michal Nazarewiczaa02f172010-11-17 17:09:47 +01001513 pr_err("%s: invalid value: %s\n", opts, eq + 1);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001514 return -EINVAL;
1515 }
1516
1517 /* Interpret option */
1518 switch (eq - opts) {
Robert Baldyga18d6b32f2014-12-18 09:55:10 +01001519 case 13:
1520 if (!memcmp(opts, "no_disconnect", 13))
1521 data->no_disconnect = !!value;
1522 else
1523 goto invalid;
1524 break;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001525 case 5:
1526 if (!memcmp(opts, "rmode", 5))
1527 data->root_mode = (value & 0555) | S_IFDIR;
1528 else if (!memcmp(opts, "fmode", 5))
1529 data->perms.mode = (value & 0666) | S_IFREG;
1530 else
1531 goto invalid;
1532 break;
1533
1534 case 4:
1535 if (!memcmp(opts, "mode", 4)) {
1536 data->root_mode = (value & 0555) | S_IFDIR;
1537 data->perms.mode = (value & 0666) | S_IFREG;
1538 } else {
1539 goto invalid;
1540 }
1541 break;
1542
1543 case 3:
Eric W. Biedermanb9b73f72012-06-14 01:19:23 -07001544 if (!memcmp(opts, "uid", 3)) {
1545 data->perms.uid = make_kuid(current_user_ns(), value);
1546 if (!uid_valid(data->perms.uid)) {
1547 pr_err("%s: unmapped value: %lu\n", opts, value);
1548 return -EINVAL;
1549 }
Benoit Gobyb8100752013-01-08 19:57:09 -08001550 } else if (!memcmp(opts, "gid", 3)) {
Eric W. Biedermanb9b73f72012-06-14 01:19:23 -07001551 data->perms.gid = make_kgid(current_user_ns(), value);
1552 if (!gid_valid(data->perms.gid)) {
1553 pr_err("%s: unmapped value: %lu\n", opts, value);
1554 return -EINVAL;
1555 }
Benoit Gobyb8100752013-01-08 19:57:09 -08001556 } else {
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001557 goto invalid;
Benoit Gobyb8100752013-01-08 19:57:09 -08001558 }
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001559 break;
1560
1561 default:
1562invalid:
Michal Nazarewiczaa02f172010-11-17 17:09:47 +01001563 pr_err("%s: invalid option\n", opts);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001564 return -EINVAL;
1565 }
1566
1567 /* Next iteration */
1568 if (!comma)
1569 break;
1570 opts = comma + 1;
1571 }
1572
1573 return 0;
1574}
1575
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001576/* "mount -t functionfs dev_name /dev/function" ends up here */
1577
Al Virofc14f2f2010-07-25 01:48:30 +04001578static struct dentry *
1579ffs_fs_mount(struct file_system_type *t, int flags,
1580 const char *dev_name, void *opts)
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001581{
1582 struct ffs_sb_fill_data data = {
1583 .perms = {
1584 .mode = S_IFREG | 0600,
Eric W. Biedermanb9b73f72012-06-14 01:19:23 -07001585 .uid = GLOBAL_ROOT_UID,
1586 .gid = GLOBAL_ROOT_GID,
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001587 },
1588 .root_mode = S_IFDIR | 0500,
Robert Baldyga18d6b32f2014-12-18 09:55:10 +01001589 .no_disconnect = false,
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001590 };
Andrzej Pietrasiewicz581791f2012-05-14 15:51:52 +02001591 struct dentry *rv;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001592 int ret;
Andrzej Pietrasiewicz581791f2012-05-14 15:51:52 +02001593 void *ffs_dev;
Al Viro2606b282013-09-20 17:14:21 +01001594 struct ffs_data *ffs;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001595
1596 ENTER();
1597
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001598 ret = ffs_fs_parse_opts(&data, opts);
1599 if (unlikely(ret < 0))
Al Virofc14f2f2010-07-25 01:48:30 +04001600 return ERR_PTR(ret);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001601
John Keepingaddfc582017-09-12 10:24:40 +01001602 ffs = ffs_data_new(dev_name);
Al Viro2606b282013-09-20 17:14:21 +01001603 if (unlikely(!ffs))
1604 return ERR_PTR(-ENOMEM);
1605 ffs->file_perms = data.perms;
Robert Baldyga18d6b32f2014-12-18 09:55:10 +01001606 ffs->no_disconnect = data.no_disconnect;
Al Viro2606b282013-09-20 17:14:21 +01001607
1608 ffs->dev_name = kstrdup(dev_name, GFP_KERNEL);
1609 if (unlikely(!ffs->dev_name)) {
1610 ffs_data_put(ffs);
1611 return ERR_PTR(-ENOMEM);
1612 }
1613
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01001614 ffs_dev = ffs_acquire_dev(dev_name);
Al Viro2606b282013-09-20 17:14:21 +01001615 if (IS_ERR(ffs_dev)) {
1616 ffs_data_put(ffs);
1617 return ERR_CAST(ffs_dev);
1618 }
1619 ffs->private_data = ffs_dev;
1620 data.ffs_data = ffs;
Andrzej Pietrasiewicz581791f2012-05-14 15:51:52 +02001621
Andrzej Pietrasiewicz581791f2012-05-14 15:51:52 +02001622 rv = mount_nodev(t, flags, &data, ffs_sb_fill);
Al Viro2606b282013-09-20 17:14:21 +01001623 if (IS_ERR(rv) && data.ffs_data) {
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01001624 ffs_release_dev(data.ffs_data);
Al Viro2606b282013-09-20 17:14:21 +01001625 ffs_data_put(data.ffs_data);
1626 }
Andrzej Pietrasiewicz581791f2012-05-14 15:51:52 +02001627 return rv;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001628}
1629
1630static void
1631ffs_fs_kill_sb(struct super_block *sb)
1632{
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001633 ENTER();
1634
1635 kill_litter_super(sb);
Andrzej Pietrasiewicz581791f2012-05-14 15:51:52 +02001636 if (sb->s_fs_info) {
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01001637 ffs_release_dev(sb->s_fs_info);
Robert Baldyga18d6b32f2014-12-18 09:55:10 +01001638 ffs_data_closed(sb->s_fs_info);
Andrzej Pietrasiewicz581791f2012-05-14 15:51:52 +02001639 }
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001640}
1641
1642static struct file_system_type ffs_fs_type = {
1643 .owner = THIS_MODULE,
1644 .name = "functionfs",
Al Virofc14f2f2010-07-25 01:48:30 +04001645 .mount = ffs_fs_mount,
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001646 .kill_sb = ffs_fs_kill_sb,
1647};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08001648MODULE_ALIAS_FS("functionfs");
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001649
1650
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001651/* Driver's main init/cleanup functions *************************************/
1652
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001653static int functionfs_init(void)
1654{
1655 int ret;
1656
1657 ENTER();
1658
1659 ret = register_filesystem(&ffs_fs_type);
1660 if (likely(!ret))
Michal Nazarewiczaa02f172010-11-17 17:09:47 +01001661 pr_info("file system registered\n");
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001662 else
Michal Nazarewiczaa02f172010-11-17 17:09:47 +01001663 pr_err("failed registering file system (%d)\n", ret);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001664
1665 return ret;
1666}
1667
1668static void functionfs_cleanup(void)
1669{
1670 ENTER();
1671
Michal Nazarewiczaa02f172010-11-17 17:09:47 +01001672 pr_info("unloading\n");
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001673 unregister_filesystem(&ffs_fs_type);
1674}
1675
1676
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001677/* ffs_data and ffs_function construction and destruction code **************/
1678
1679static void ffs_data_clear(struct ffs_data *ffs);
1680static void ffs_data_reset(struct ffs_data *ffs);
1681
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001682static void ffs_data_get(struct ffs_data *ffs)
1683{
1684 ENTER();
1685
Elena Reshetova43938612017-03-06 16:21:12 +02001686 refcount_inc(&ffs->ref);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001687}
1688
1689static void ffs_data_opened(struct ffs_data *ffs)
1690{
1691 ENTER();
1692
Elena Reshetova43938612017-03-06 16:21:12 +02001693 refcount_inc(&ffs->ref);
Robert Baldyga18d6b32f2014-12-18 09:55:10 +01001694 if (atomic_add_return(1, &ffs->opened) == 1 &&
1695 ffs->state == FFS_DEACTIVATED) {
1696 ffs->state = FFS_CLOSING;
1697 ffs_data_reset(ffs);
1698 }
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001699}
1700
1701static void ffs_data_put(struct ffs_data *ffs)
1702{
1703 ENTER();
1704
Elena Reshetova43938612017-03-06 16:21:12 +02001705 if (unlikely(refcount_dec_and_test(&ffs->ref))) {
Michal Nazarewiczaa02f172010-11-17 17:09:47 +01001706 pr_info("%s(): freeing\n", __func__);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001707 ffs_data_clear(ffs);
Andi Kleen647d5582012-03-16 12:01:02 -07001708 BUG_ON(waitqueue_active(&ffs->ev.waitq) ||
Jerry Zhange16828c2017-04-18 16:11:48 -07001709 waitqueue_active(&ffs->ep0req_completion.wait) ||
1710 waitqueue_active(&ffs->wait));
John Keepingaddfc582017-09-12 10:24:40 +01001711 destroy_workqueue(ffs->io_completion_wq);
Andrzej Pietrasiewicz581791f2012-05-14 15:51:52 +02001712 kfree(ffs->dev_name);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001713 kfree(ffs);
1714 }
1715}
1716
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001717static void ffs_data_closed(struct ffs_data *ffs)
1718{
1719 ENTER();
1720
1721 if (atomic_dec_and_test(&ffs->opened)) {
Robert Baldyga18d6b32f2014-12-18 09:55:10 +01001722 if (ffs->no_disconnect) {
1723 ffs->state = FFS_DEACTIVATED;
1724 if (ffs->epfiles) {
1725 ffs_epfiles_destroy(ffs->epfiles,
1726 ffs->eps_count);
1727 ffs->epfiles = NULL;
1728 }
1729 if (ffs->setup_state == FFS_SETUP_PENDING)
1730 __ffs_ep0_stall(ffs);
1731 } else {
1732 ffs->state = FFS_CLOSING;
1733 ffs_data_reset(ffs);
1734 }
1735 }
1736 if (atomic_read(&ffs->opened) < 0) {
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001737 ffs->state = FFS_CLOSING;
1738 ffs_data_reset(ffs);
1739 }
1740
1741 ffs_data_put(ffs);
1742}
1743
John Keepingaddfc582017-09-12 10:24:40 +01001744static struct ffs_data *ffs_data_new(const char *dev_name)
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001745{
1746 struct ffs_data *ffs = kzalloc(sizeof *ffs, GFP_KERNEL);
1747 if (unlikely(!ffs))
Felipe Balbif8800d42013-12-12 12:15:43 -06001748 return NULL;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001749
1750 ENTER();
1751
John Keepingaddfc582017-09-12 10:24:40 +01001752 ffs->io_completion_wq = alloc_ordered_workqueue("%s", 0, dev_name);
1753 if (!ffs->io_completion_wq) {
1754 kfree(ffs);
1755 return NULL;
1756 }
1757
Elena Reshetova43938612017-03-06 16:21:12 +02001758 refcount_set(&ffs->ref, 1);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001759 atomic_set(&ffs->opened, 0);
1760 ffs->state = FFS_READ_DESCRIPTORS;
1761 mutex_init(&ffs->mutex);
1762 spin_lock_init(&ffs->eps_lock);
1763 init_waitqueue_head(&ffs->ev.waitq);
Jerry Zhange16828c2017-04-18 16:11:48 -07001764 init_waitqueue_head(&ffs->wait);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001765 init_completion(&ffs->ep0req_completion);
1766
1767 /* XXX REVISIT need to update it in some places, or do we? */
1768 ffs->ev.can_stall = 1;
1769
1770 return ffs;
1771}
1772
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001773static void ffs_data_clear(struct ffs_data *ffs)
1774{
1775 ENTER();
1776
Krzysztof Opasiak49a79d82015-05-22 17:25:18 +02001777 ffs_closed(ffs);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001778
1779 BUG_ON(ffs->gadget);
1780
1781 if (ffs->epfiles)
1782 ffs_epfiles_destroy(ffs->epfiles, ffs->eps_count);
1783
Robert Baldyga5e33f6f2015-01-23 13:41:01 +01001784 if (ffs->ffs_eventfd)
1785 eventfd_ctx_put(ffs->ffs_eventfd);
1786
Michal Nazarewiczac8dde12014-02-28 16:50:23 +05301787 kfree(ffs->raw_descs_data);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001788 kfree(ffs->raw_strings);
1789 kfree(ffs->stringtabs);
1790}
1791
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001792static void ffs_data_reset(struct ffs_data *ffs)
1793{
1794 ENTER();
1795
1796 ffs_data_clear(ffs);
1797
1798 ffs->epfiles = NULL;
Michal Nazarewiczac8dde12014-02-28 16:50:23 +05301799 ffs->raw_descs_data = NULL;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001800 ffs->raw_descs = NULL;
1801 ffs->raw_strings = NULL;
1802 ffs->stringtabs = NULL;
1803
1804 ffs->raw_descs_length = 0;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001805 ffs->fs_descs_count = 0;
1806 ffs->hs_descs_count = 0;
Manu Gautam8d4e8972014-02-28 16:50:22 +05301807 ffs->ss_descs_count = 0;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001808
1809 ffs->strings_count = 0;
1810 ffs->interfaces_count = 0;
1811 ffs->eps_count = 0;
1812
1813 ffs->ev.count = 0;
1814
1815 ffs->state = FFS_READ_DESCRIPTORS;
1816 ffs->setup_state = FFS_NO_SETUP;
1817 ffs->flags = 0;
1818}
1819
1820
1821static int functionfs_bind(struct ffs_data *ffs, struct usb_composite_dev *cdev)
1822{
Michal Nazarewiczfd7c9a02010-06-16 12:08:00 +02001823 struct usb_gadget_strings **lang;
1824 int first_id;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001825
1826 ENTER();
1827
1828 if (WARN_ON(ffs->state != FFS_ACTIVE
1829 || test_and_set_bit(FFS_FL_BOUND, &ffs->flags)))
1830 return -EBADFD;
1831
Michal Nazarewiczfd7c9a02010-06-16 12:08:00 +02001832 first_id = usb_string_ids_n(cdev, ffs->strings_count);
1833 if (unlikely(first_id < 0))
1834 return first_id;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001835
1836 ffs->ep0req = usb_ep_alloc_request(cdev->gadget->ep0, GFP_KERNEL);
1837 if (unlikely(!ffs->ep0req))
1838 return -ENOMEM;
1839 ffs->ep0req->complete = ffs_ep0_complete;
1840 ffs->ep0req->context = ffs;
1841
Michal Nazarewiczfd7c9a02010-06-16 12:08:00 +02001842 lang = ffs->stringtabs;
Michal Nazarewiczf0688c82014-06-17 17:47:41 +02001843 if (lang) {
1844 for (; *lang; ++lang) {
1845 struct usb_string *str = (*lang)->strings;
1846 int id = first_id;
1847 for (; str->s; ++id, ++str)
1848 str->id = id;
1849 }
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001850 }
1851
1852 ffs->gadget = cdev->gadget;
Michal Nazarewiczfd7c9a02010-06-16 12:08:00 +02001853 ffs_data_get(ffs);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001854 return 0;
1855}
1856
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001857static void functionfs_unbind(struct ffs_data *ffs)
1858{
1859 ENTER();
1860
1861 if (!WARN_ON(!ffs->gadget)) {
1862 usb_ep_free_request(ffs->gadget->ep0, ffs->ep0req);
1863 ffs->ep0req = NULL;
1864 ffs->gadget = NULL;
Andrzej Pietrasiewicze2190a92012-03-12 12:55:41 +01001865 clear_bit(FFS_FL_BOUND, &ffs->flags);
Dan Carpenterdf498992013-08-23 11:16:15 +03001866 ffs_data_put(ffs);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001867 }
1868}
1869
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001870static int ffs_epfiles_create(struct ffs_data *ffs)
1871{
1872 struct ffs_epfile *epfile, *epfiles;
1873 unsigned i, count;
1874
1875 ENTER();
1876
1877 count = ffs->eps_count;
Thomas Meyer9823a522011-11-29 22:08:00 +01001878 epfiles = kcalloc(count, sizeof(*epfiles), GFP_KERNEL);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001879 if (!epfiles)
1880 return -ENOMEM;
1881
1882 epfile = epfiles;
1883 for (i = 1; i <= count; ++i, ++epfile) {
1884 epfile->ffs = ffs;
1885 mutex_init(&epfile->mutex);
Robert Baldyga1b0bf882014-09-09 08:23:17 +02001886 if (ffs->user_flags & FUNCTIONFS_VIRTUAL_ADDR)
Mario Schuknechtacba23f2015-01-26 20:40:21 +01001887 sprintf(epfile->name, "ep%02x", ffs->eps_addrmap[i]);
Robert Baldyga1b0bf882014-09-09 08:23:17 +02001888 else
Mario Schuknechtacba23f2015-01-26 20:40:21 +01001889 sprintf(epfile->name, "ep%u", i);
1890 epfile->dentry = ffs_sb_create_file(ffs->sb, epfile->name,
Al Viro1bb27ca2014-09-03 13:32:19 -04001891 epfile,
1892 &ffs_epfile_operations);
1893 if (unlikely(!epfile->dentry)) {
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001894 ffs_epfiles_destroy(epfiles, i - 1);
1895 return -ENOMEM;
1896 }
1897 }
1898
1899 ffs->epfiles = epfiles;
1900 return 0;
1901}
1902
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001903static void ffs_epfiles_destroy(struct ffs_epfile *epfiles, unsigned count)
1904{
1905 struct ffs_epfile *epfile = epfiles;
1906
1907 ENTER();
1908
1909 for (; count; --count, ++epfile) {
Jerry Zhange16828c2017-04-18 16:11:48 -07001910 BUG_ON(mutex_is_locked(&epfile->mutex));
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001911 if (epfile->dentry) {
1912 d_delete(epfile->dentry);
1913 dput(epfile->dentry);
1914 epfile->dentry = NULL;
1915 }
1916 }
1917
1918 kfree(epfiles);
1919}
1920
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001921static void ffs_func_eps_disable(struct ffs_function *func)
1922{
1923 struct ffs_ep *ep = func->eps;
1924 struct ffs_epfile *epfile = func->ffs->epfiles;
1925 unsigned count = func->ffs->eps_count;
1926 unsigned long flags;
1927
Michal Nazarewicza9e6f832016-10-04 02:07:34 +02001928 spin_lock_irqsave(&func->ffs->eps_lock, flags);
Vincent Pelletier08f37142017-01-09 13:46:00 +00001929 while (count--) {
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001930 /* pending requests get nuked */
1931 if (likely(ep->ep))
1932 usb_ep_disable(ep->ep);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001933 ++ep;
Robert Baldyga18d6b32f2014-12-18 09:55:10 +01001934
1935 if (epfile) {
Michal Nazarewicza9e6f832016-10-04 02:07:34 +02001936 epfile->ep = NULL;
1937 __ffs_epfile_read_buffer_free(epfile);
Robert Baldyga18d6b32f2014-12-18 09:55:10 +01001938 ++epfile;
1939 }
Vincent Pelletier08f37142017-01-09 13:46:00 +00001940 }
Michal Nazarewicza9e6f832016-10-04 02:07:34 +02001941 spin_unlock_irqrestore(&func->ffs->eps_lock, flags);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001942}
1943
1944static int ffs_func_eps_enable(struct ffs_function *func)
1945{
1946 struct ffs_data *ffs = func->ffs;
1947 struct ffs_ep *ep = func->eps;
1948 struct ffs_epfile *epfile = ffs->epfiles;
1949 unsigned count = ffs->eps_count;
1950 unsigned long flags;
1951 int ret = 0;
1952
1953 spin_lock_irqsave(&func->ffs->eps_lock, flags);
Vincent Pelletier08f37142017-01-09 13:46:00 +00001954 while(count--) {
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001955 ep->ep->driver_data = ep;
Felipe Balbi2bfa0712017-01-31 14:54:45 +02001956
Jack Pham675272d02018-01-24 23:58:20 -08001957 ret = config_ep_by_speed(func->gadget, &func->function, ep->ep);
1958 if (ret) {
1959 pr_err("%s: config_ep_by_speed(%s) returned %d\n",
1960 __func__, ep->ep->name, ret);
1961 break;
William Wub7f73852017-04-25 17:45:48 +08001962 }
Felipe Balbi2bfa0712017-01-31 14:54:45 +02001963
Tatyana Brokhman72c973d2011-06-28 16:33:48 +03001964 ret = usb_ep_enable(ep->ep);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001965 if (likely(!ret)) {
1966 epfile->ep = ep;
Jack Pham675272d02018-01-24 23:58:20 -08001967 epfile->in = usb_endpoint_dir_in(ep->ep->desc);
1968 epfile->isoc = usb_endpoint_xfer_isoc(ep->ep->desc);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001969 } else {
1970 break;
1971 }
1972
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001973 ++ep;
1974 ++epfile;
Vincent Pelletier08f37142017-01-09 13:46:00 +00001975 }
Jerry Zhange16828c2017-04-18 16:11:48 -07001976
1977 wake_up_interruptible(&ffs->wait);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001978 spin_unlock_irqrestore(&func->ffs->eps_lock, flags);
1979
1980 return ret;
1981}
1982
1983
1984/* Parsing and building descriptors and strings *****************************/
1985
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +01001986/*
1987 * This validates if data pointed by data is a valid USB descriptor as
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001988 * well as record how many interfaces, endpoints and strings are
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +01001989 * required by given configuration. Returns address after the
1990 * descriptor or NULL if data is invalid.
1991 */
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02001992
1993enum ffs_entity_type {
1994 FFS_DESCRIPTOR, FFS_INTERFACE, FFS_STRING, FFS_ENDPOINT
1995};
1996
Andrzej Pietrasiewiczf0175ab2014-07-09 12:20:08 +02001997enum ffs_os_desc_type {
1998 FFS_OS_DESC, FFS_OS_DESC_EXT_COMPAT, FFS_OS_DESC_EXT_PROP
1999};
2000
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002001typedef int (*ffs_entity_callback)(enum ffs_entity_type entity,
2002 u8 *valuep,
2003 struct usb_descriptor_header *desc,
2004 void *priv);
2005
Andrzej Pietrasiewiczf0175ab2014-07-09 12:20:08 +02002006typedef int (*ffs_os_desc_callback)(enum ffs_os_desc_type entity,
2007 struct usb_os_desc_header *h, void *data,
2008 unsigned len, void *priv);
2009
Andrzej Pietrasiewiczf96cbd12014-07-09 12:20:06 +02002010static int __must_check ffs_do_single_desc(char *data, unsigned len,
2011 ffs_entity_callback entity,
Vincent Pelletier7f7c5482018-10-09 14:43:18 +00002012 void *priv, int *current_class)
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002013{
2014 struct usb_descriptor_header *_ds = (void *)data;
2015 u8 length;
2016 int ret;
2017
2018 ENTER();
2019
2020 /* At least two bytes are required: length and type */
2021 if (len < 2) {
Michal Nazarewiczaa02f172010-11-17 17:09:47 +01002022 pr_vdebug("descriptor too short\n");
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002023 return -EINVAL;
2024 }
2025
2026 /* If we have at least as many bytes as the descriptor takes? */
2027 length = _ds->bLength;
2028 if (len < length) {
Michal Nazarewiczaa02f172010-11-17 17:09:47 +01002029 pr_vdebug("descriptor longer then available data\n");
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002030 return -EINVAL;
2031 }
2032
2033#define __entity_check_INTERFACE(val) 1
2034#define __entity_check_STRING(val) (val)
2035#define __entity_check_ENDPOINT(val) ((val) & USB_ENDPOINT_NUMBER_MASK)
2036#define __entity(type, val) do { \
Michal Nazarewiczaa02f172010-11-17 17:09:47 +01002037 pr_vdebug("entity " #type "(%02x)\n", (val)); \
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002038 if (unlikely(!__entity_check_ ##type(val))) { \
Michal Nazarewiczaa02f172010-11-17 17:09:47 +01002039 pr_vdebug("invalid entity's value\n"); \
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002040 return -EINVAL; \
2041 } \
2042 ret = entity(FFS_ ##type, &val, _ds, priv); \
2043 if (unlikely(ret < 0)) { \
Michal Nazarewiczaa02f172010-11-17 17:09:47 +01002044 pr_debug("entity " #type "(%02x); ret = %d\n", \
Michal Nazarewiczd8df0b62010-11-12 14:29:29 +01002045 (val), ret); \
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002046 return ret; \
2047 } \
2048 } while (0)
2049
2050 /* Parse descriptor depending on type. */
2051 switch (_ds->bDescriptorType) {
2052 case USB_DT_DEVICE:
2053 case USB_DT_CONFIG:
2054 case USB_DT_STRING:
2055 case USB_DT_DEVICE_QUALIFIER:
2056 /* function can't have any of those */
Michal Nazarewiczaa02f172010-11-17 17:09:47 +01002057 pr_vdebug("descriptor reserved for gadget: %d\n",
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +01002058 _ds->bDescriptorType);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002059 return -EINVAL;
2060
2061 case USB_DT_INTERFACE: {
2062 struct usb_interface_descriptor *ds = (void *)_ds;
Michal Nazarewiczaa02f172010-11-17 17:09:47 +01002063 pr_vdebug("interface descriptor\n");
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002064 if (length != sizeof *ds)
2065 goto inv_length;
2066
2067 __entity(INTERFACE, ds->bInterfaceNumber);
2068 if (ds->iInterface)
2069 __entity(STRING, ds->iInterface);
Vincent Pelletier7f7c5482018-10-09 14:43:18 +00002070 *current_class = ds->bInterfaceClass;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002071 }
2072 break;
2073
2074 case USB_DT_ENDPOINT: {
2075 struct usb_endpoint_descriptor *ds = (void *)_ds;
Michal Nazarewiczaa02f172010-11-17 17:09:47 +01002076 pr_vdebug("endpoint descriptor\n");
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002077 if (length != USB_DT_ENDPOINT_SIZE &&
2078 length != USB_DT_ENDPOINT_AUDIO_SIZE)
2079 goto inv_length;
2080 __entity(ENDPOINT, ds->bEndpointAddress);
2081 }
2082 break;
2083
Vincent Pelletier7f7c5482018-10-09 14:43:18 +00002084 case USB_TYPE_CLASS | 0x01:
2085 if (*current_class == USB_INTERFACE_CLASS_HID) {
2086 pr_vdebug("hid descriptor\n");
2087 if (length != sizeof(struct hid_descriptor))
2088 goto inv_length;
2089 break;
2090 } else if (*current_class == USB_INTERFACE_CLASS_CCID) {
2091 pr_vdebug("ccid descriptor\n");
2092 if (length != sizeof(struct ccid_descriptor))
2093 goto inv_length;
2094 break;
2095 } else {
2096 pr_vdebug("unknown descriptor: %d for class %d\n",
2097 _ds->bDescriptorType, *current_class);
2098 return -EINVAL;
2099 }
Koen Beel560f1182012-05-30 20:43:37 +02002100
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002101 case USB_DT_OTG:
2102 if (length != sizeof(struct usb_otg_descriptor))
2103 goto inv_length;
2104 break;
2105
2106 case USB_DT_INTERFACE_ASSOCIATION: {
2107 struct usb_interface_assoc_descriptor *ds = (void *)_ds;
Michal Nazarewiczaa02f172010-11-17 17:09:47 +01002108 pr_vdebug("interface association descriptor\n");
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002109 if (length != sizeof *ds)
2110 goto inv_length;
2111 if (ds->iFunction)
2112 __entity(STRING, ds->iFunction);
2113 }
2114 break;
2115
Manu Gautam8d4e8972014-02-28 16:50:22 +05302116 case USB_DT_SS_ENDPOINT_COMP:
2117 pr_vdebug("EP SS companion descriptor\n");
2118 if (length != sizeof(struct usb_ss_ep_comp_descriptor))
2119 goto inv_length;
2120 break;
2121
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002122 case USB_DT_OTHER_SPEED_CONFIG:
2123 case USB_DT_INTERFACE_POWER:
2124 case USB_DT_DEBUG:
2125 case USB_DT_SECURITY:
2126 case USB_DT_CS_RADIO_CONTROL:
2127 /* TODO */
Michal Nazarewiczaa02f172010-11-17 17:09:47 +01002128 pr_vdebug("unimplemented descriptor: %d\n", _ds->bDescriptorType);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002129 return -EINVAL;
2130
2131 default:
2132 /* We should never be here */
Michal Nazarewiczaa02f172010-11-17 17:09:47 +01002133 pr_vdebug("unknown descriptor: %d\n", _ds->bDescriptorType);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002134 return -EINVAL;
2135
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +01002136inv_length:
Michal Nazarewiczaa02f172010-11-17 17:09:47 +01002137 pr_vdebug("invalid length: %d (descriptor %d)\n",
Michal Nazarewiczd8df0b62010-11-12 14:29:29 +01002138 _ds->bLength, _ds->bDescriptorType);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002139 return -EINVAL;
2140 }
2141
2142#undef __entity
2143#undef __entity_check_DESCRIPTOR
2144#undef __entity_check_INTERFACE
2145#undef __entity_check_STRING
2146#undef __entity_check_ENDPOINT
2147
2148 return length;
2149}
2150
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002151static int __must_check ffs_do_descs(unsigned count, char *data, unsigned len,
2152 ffs_entity_callback entity, void *priv)
2153{
2154 const unsigned _len = len;
2155 unsigned long num = 0;
Vincent Pelletier7f7c5482018-10-09 14:43:18 +00002156 int current_class = -1;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002157
2158 ENTER();
2159
2160 for (;;) {
2161 int ret;
2162
2163 if (num == count)
2164 data = NULL;
2165
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +01002166 /* Record "descriptor" entity */
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002167 ret = entity(FFS_DESCRIPTOR, (u8 *)num, (void *)data, priv);
2168 if (unlikely(ret < 0)) {
Michal Nazarewiczaa02f172010-11-17 17:09:47 +01002169 pr_debug("entity DESCRIPTOR(%02lx); ret = %d\n",
Michal Nazarewiczd8df0b62010-11-12 14:29:29 +01002170 num, ret);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002171 return ret;
2172 }
2173
2174 if (!data)
2175 return _len - len;
2176
Vincent Pelletier7f7c5482018-10-09 14:43:18 +00002177 ret = ffs_do_single_desc(data, len, entity, priv,
2178 &current_class);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002179 if (unlikely(ret < 0)) {
Michal Nazarewiczaa02f172010-11-17 17:09:47 +01002180 pr_debug("%s returns %d\n", __func__, ret);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002181 return ret;
2182 }
2183
2184 len -= ret;
2185 data += ret;
2186 ++num;
2187 }
2188}
2189
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002190static int __ffs_data_do_entity(enum ffs_entity_type type,
2191 u8 *valuep, struct usb_descriptor_header *desc,
2192 void *priv)
2193{
Robert Baldyga6d5c1c72014-08-25 11:16:27 +02002194 struct ffs_desc_helper *helper = priv;
2195 struct usb_endpoint_descriptor *d;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002196
2197 ENTER();
2198
2199 switch (type) {
2200 case FFS_DESCRIPTOR:
2201 break;
2202
2203 case FFS_INTERFACE:
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +01002204 /*
2205 * Interfaces are indexed from zero so if we
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002206 * encountered interface "n" then there are at least
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +01002207 * "n+1" interfaces.
2208 */
Robert Baldyga6d5c1c72014-08-25 11:16:27 +02002209 if (*valuep >= helper->interfaces_count)
2210 helper->interfaces_count = *valuep + 1;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002211 break;
2212
2213 case FFS_STRING:
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +01002214 /*
Vincent Pelletier96a420d2d32016-12-15 12:47:41 +00002215 * Strings are indexed from 1 (0 is reserved
2216 * for languages list)
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +01002217 */
Robert Baldyga6d5c1c72014-08-25 11:16:27 +02002218 if (*valuep > helper->ffs->strings_count)
2219 helper->ffs->strings_count = *valuep;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002220 break;
2221
2222 case FFS_ENDPOINT:
Robert Baldyga6d5c1c72014-08-25 11:16:27 +02002223 d = (void *)desc;
2224 helper->eps_count++;
Vincent Pelletier41dc9ac2017-01-23 14:41:04 +00002225 if (helper->eps_count >= FFS_MAX_EPS_COUNT)
Robert Baldyga6d5c1c72014-08-25 11:16:27 +02002226 return -EINVAL;
2227 /* Check if descriptors for any speed were already parsed */
2228 if (!helper->ffs->eps_count && !helper->ffs->interfaces_count)
2229 helper->ffs->eps_addrmap[helper->eps_count] =
2230 d->bEndpointAddress;
2231 else if (helper->ffs->eps_addrmap[helper->eps_count] !=
2232 d->bEndpointAddress)
2233 return -EINVAL;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002234 break;
2235 }
2236
2237 return 0;
2238}
2239
Andrzej Pietrasiewiczf0175ab2014-07-09 12:20:08 +02002240static int __ffs_do_os_desc_header(enum ffs_os_desc_type *next_type,
2241 struct usb_os_desc_header *desc)
2242{
2243 u16 bcd_version = le16_to_cpu(desc->bcdVersion);
2244 u16 w_index = le16_to_cpu(desc->wIndex);
2245
2246 if (bcd_version != 1) {
2247 pr_vdebug("unsupported os descriptors version: %d",
2248 bcd_version);
2249 return -EINVAL;
2250 }
2251 switch (w_index) {
2252 case 0x4:
2253 *next_type = FFS_OS_DESC_EXT_COMPAT;
2254 break;
2255 case 0x5:
2256 *next_type = FFS_OS_DESC_EXT_PROP;
2257 break;
2258 default:
2259 pr_vdebug("unsupported os descriptor type: %d", w_index);
2260 return -EINVAL;
2261 }
2262
2263 return sizeof(*desc);
2264}
2265
2266/*
2267 * Process all extended compatibility/extended property descriptors
2268 * of a feature descriptor
2269 */
2270static int __must_check ffs_do_single_os_desc(char *data, unsigned len,
2271 enum ffs_os_desc_type type,
2272 u16 feature_count,
2273 ffs_os_desc_callback entity,
2274 void *priv,
2275 struct usb_os_desc_header *h)
2276{
2277 int ret;
2278 const unsigned _len = len;
2279
2280 ENTER();
2281
2282 /* loop over all ext compat/ext prop descriptors */
2283 while (feature_count--) {
2284 ret = entity(type, h, data, len, priv);
2285 if (unlikely(ret < 0)) {
2286 pr_debug("bad OS descriptor, type: %d\n", type);
2287 return ret;
2288 }
2289 data += ret;
2290 len -= ret;
2291 }
2292 return _len - len;
2293}
2294
2295/* Process a number of complete Feature Descriptors (Ext Compat or Ext Prop) */
2296static int __must_check ffs_do_os_descs(unsigned count,
2297 char *data, unsigned len,
2298 ffs_os_desc_callback entity, void *priv)
2299{
2300 const unsigned _len = len;
2301 unsigned long num = 0;
2302
2303 ENTER();
2304
2305 for (num = 0; num < count; ++num) {
2306 int ret;
2307 enum ffs_os_desc_type type;
2308 u16 feature_count;
2309 struct usb_os_desc_header *desc = (void *)data;
2310
2311 if (len < sizeof(*desc))
2312 return -EINVAL;
2313
2314 /*
2315 * Record "descriptor" entity.
2316 * Process dwLength, bcdVersion, wIndex, get b/wCount.
2317 * Move the data pointer to the beginning of extended
2318 * compatibilities proper or extended properties proper
2319 * portions of the data
2320 */
2321 if (le32_to_cpu(desc->dwLength) > len)
2322 return -EINVAL;
2323
2324 ret = __ffs_do_os_desc_header(&type, desc);
2325 if (unlikely(ret < 0)) {
2326 pr_debug("entity OS_DESCRIPTOR(%02lx); ret = %d\n",
2327 num, ret);
2328 return ret;
2329 }
2330 /*
2331 * 16-bit hex "?? 00" Little Endian looks like 8-bit hex "??"
2332 */
2333 feature_count = le16_to_cpu(desc->wCount);
2334 if (type == FFS_OS_DESC_EXT_COMPAT &&
2335 (feature_count > 255 || desc->Reserved))
2336 return -EINVAL;
2337 len -= ret;
2338 data += ret;
2339
2340 /*
2341 * Process all function/property descriptors
2342 * of this Feature Descriptor
2343 */
2344 ret = ffs_do_single_os_desc(data, len, type,
2345 feature_count, entity, priv, desc);
2346 if (unlikely(ret < 0)) {
2347 pr_debug("%s returns %d\n", __func__, ret);
2348 return ret;
2349 }
2350
2351 len -= ret;
2352 data += ret;
2353 }
2354 return _len - len;
2355}
2356
2357/**
2358 * Validate contents of the buffer from userspace related to OS descriptors.
2359 */
2360static int __ffs_data_do_os_desc(enum ffs_os_desc_type type,
2361 struct usb_os_desc_header *h, void *data,
2362 unsigned len, void *priv)
2363{
2364 struct ffs_data *ffs = priv;
2365 u8 length;
2366
2367 ENTER();
2368
2369 switch (type) {
2370 case FFS_OS_DESC_EXT_COMPAT: {
2371 struct usb_ext_compat_desc *d = data;
2372 int i;
2373
2374 if (len < sizeof(*d) ||
John Keepinga3acc692017-11-27 18:15:40 +00002375 d->bFirstInterfaceNumber >= ffs->interfaces_count)
Andrzej Pietrasiewiczf0175ab2014-07-09 12:20:08 +02002376 return -EINVAL;
John Keepinga3acc692017-11-27 18:15:40 +00002377 if (d->Reserved1 != 1) {
2378 /*
2379 * According to the spec, Reserved1 must be set to 1
2380 * but older kernels incorrectly rejected non-zero
2381 * values. We fix it here to avoid returning EINVAL
2382 * in response to values we used to accept.
2383 */
2384 pr_debug("usb_ext_compat_desc::Reserved1 forced to 1\n");
2385 d->Reserved1 = 1;
2386 }
Andrzej Pietrasiewiczf0175ab2014-07-09 12:20:08 +02002387 for (i = 0; i < ARRAY_SIZE(d->Reserved2); ++i)
2388 if (d->Reserved2[i])
2389 return -EINVAL;
2390
2391 length = sizeof(struct usb_ext_compat_desc);
2392 }
2393 break;
2394 case FFS_OS_DESC_EXT_PROP: {
2395 struct usb_ext_prop_desc *d = data;
2396 u32 type, pdl;
2397 u16 pnl;
2398
2399 if (len < sizeof(*d) || h->interface >= ffs->interfaces_count)
2400 return -EINVAL;
2401 length = le32_to_cpu(d->dwSize);
Vincent Pelletier83e526f2017-01-18 00:57:44 +00002402 if (len < length)
2403 return -EINVAL;
Andrzej Pietrasiewiczf0175ab2014-07-09 12:20:08 +02002404 type = le32_to_cpu(d->dwPropertyDataType);
2405 if (type < USB_EXT_PROP_UNICODE ||
2406 type > USB_EXT_PROP_UNICODE_MULTI) {
2407 pr_vdebug("unsupported os descriptor property type: %d",
2408 type);
2409 return -EINVAL;
2410 }
2411 pnl = le16_to_cpu(d->wPropertyNameLength);
Vincent Pelletier83e526f2017-01-18 00:57:44 +00002412 if (length < 14 + pnl) {
2413 pr_vdebug("invalid os descriptor length: %d pnl:%d (descriptor %d)\n",
2414 length, pnl, type);
2415 return -EINVAL;
2416 }
Vincent Pelletierc40619b2017-11-28 15:20:53 +00002417 pdl = le32_to_cpu(*(__le32 *)((u8 *)data + 10 + pnl));
Andrzej Pietrasiewiczf0175ab2014-07-09 12:20:08 +02002418 if (length != 14 + pnl + pdl) {
2419 pr_vdebug("invalid os descriptor length: %d pnl:%d pdl:%d (descriptor %d)\n",
2420 length, pnl, pdl, type);
2421 return -EINVAL;
2422 }
2423 ++ffs->ms_os_descs_ext_prop_count;
2424 /* property name reported to the host as "WCHAR"s */
2425 ffs->ms_os_descs_ext_prop_name_len += pnl * 2;
2426 ffs->ms_os_descs_ext_prop_data_len += pdl;
2427 }
2428 break;
2429 default:
2430 pr_vdebug("unknown descriptor: %d\n", type);
2431 return -EINVAL;
2432 }
2433 return length;
2434}
2435
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002436static int __ffs_data_got_descs(struct ffs_data *ffs,
2437 char *const _data, size_t len)
2438{
Michal Nazarewiczac8dde12014-02-28 16:50:23 +05302439 char *data = _data, *raw_descs;
Andrzej Pietrasiewiczf0175ab2014-07-09 12:20:08 +02002440 unsigned os_descs_count = 0, counts[3], flags;
Michal Nazarewiczac8dde12014-02-28 16:50:23 +05302441 int ret = -EINVAL, i;
Robert Baldyga6d5c1c72014-08-25 11:16:27 +02002442 struct ffs_desc_helper helper;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002443
2444 ENTER();
2445
Michal Nazarewiczac8dde12014-02-28 16:50:23 +05302446 if (get_unaligned_le32(data + 4) != len)
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002447 goto error;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002448
Michal Nazarewiczac8dde12014-02-28 16:50:23 +05302449 switch (get_unaligned_le32(data)) {
2450 case FUNCTIONFS_DESCRIPTORS_MAGIC:
2451 flags = FUNCTIONFS_HAS_FS_DESC | FUNCTIONFS_HAS_HS_DESC;
Manu Gautam8d4e8972014-02-28 16:50:22 +05302452 data += 8;
2453 len -= 8;
Michal Nazarewiczac8dde12014-02-28 16:50:23 +05302454 break;
2455 case FUNCTIONFS_DESCRIPTORS_MAGIC_V2:
2456 flags = get_unaligned_le32(data + 8);
Robert Baldyga1b0bf882014-09-09 08:23:17 +02002457 ffs->user_flags = flags;
Michal Nazarewiczac8dde12014-02-28 16:50:23 +05302458 if (flags & ~(FUNCTIONFS_HAS_FS_DESC |
2459 FUNCTIONFS_HAS_HS_DESC |
Andrzej Pietrasiewiczf0175ab2014-07-09 12:20:08 +02002460 FUNCTIONFS_HAS_SS_DESC |
Robert Baldyga1b0bf882014-09-09 08:23:17 +02002461 FUNCTIONFS_HAS_MS_OS_DESC |
Robert Baldyga5e33f6f2015-01-23 13:41:01 +01002462 FUNCTIONFS_VIRTUAL_ADDR |
Felix Hädicke54dfce62016-06-22 01:12:07 +02002463 FUNCTIONFS_EVENTFD |
Felix Hädicke4368c282016-06-22 01:12:09 +02002464 FUNCTIONFS_ALL_CTRL_RECIP |
2465 FUNCTIONFS_CONFIG0_SETUP)) {
Michal Nazarewiczac8dde12014-02-28 16:50:23 +05302466 ret = -ENOSYS;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002467 goto error;
2468 }
Michal Nazarewiczac8dde12014-02-28 16:50:23 +05302469 data += 12;
2470 len -= 12;
2471 break;
2472 default:
2473 goto error;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002474 }
2475
Robert Baldyga5e33f6f2015-01-23 13:41:01 +01002476 if (flags & FUNCTIONFS_EVENTFD) {
2477 if (len < 4)
2478 goto error;
2479 ffs->ffs_eventfd =
2480 eventfd_ctx_fdget((int)get_unaligned_le32(data));
2481 if (IS_ERR(ffs->ffs_eventfd)) {
2482 ret = PTR_ERR(ffs->ffs_eventfd);
2483 ffs->ffs_eventfd = NULL;
2484 goto error;
2485 }
2486 data += 4;
2487 len -= 4;
2488 }
2489
Michal Nazarewiczac8dde12014-02-28 16:50:23 +05302490 /* Read fs_count, hs_count and ss_count (if present) */
2491 for (i = 0; i < 3; ++i) {
2492 if (!(flags & (1 << i))) {
2493 counts[i] = 0;
2494 } else if (len < 4) {
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002495 goto error;
Michal Nazarewiczac8dde12014-02-28 16:50:23 +05302496 } else {
2497 counts[i] = get_unaligned_le32(data);
2498 data += 4;
2499 len -= 4;
2500 }
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002501 }
Andrzej Pietrasiewiczf0175ab2014-07-09 12:20:08 +02002502 if (flags & (1 << i)) {
Vincent Pelletier83e526f2017-01-18 00:57:44 +00002503 if (len < 4) {
2504 goto error;
2505 }
Andrzej Pietrasiewiczf0175ab2014-07-09 12:20:08 +02002506 os_descs_count = get_unaligned_le32(data);
2507 data += 4;
2508 len -= 4;
2509 };
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002510
Michal Nazarewiczac8dde12014-02-28 16:50:23 +05302511 /* Read descriptors */
2512 raw_descs = data;
Robert Baldyga6d5c1c72014-08-25 11:16:27 +02002513 helper.ffs = ffs;
Michal Nazarewiczac8dde12014-02-28 16:50:23 +05302514 for (i = 0; i < 3; ++i) {
2515 if (!counts[i])
2516 continue;
Robert Baldyga6d5c1c72014-08-25 11:16:27 +02002517 helper.interfaces_count = 0;
2518 helper.eps_count = 0;
Michal Nazarewiczac8dde12014-02-28 16:50:23 +05302519 ret = ffs_do_descs(counts[i], data, len,
Robert Baldyga6d5c1c72014-08-25 11:16:27 +02002520 __ffs_data_do_entity, &helper);
Michal Nazarewiczac8dde12014-02-28 16:50:23 +05302521 if (ret < 0)
2522 goto error;
Robert Baldyga6d5c1c72014-08-25 11:16:27 +02002523 if (!ffs->eps_count && !ffs->interfaces_count) {
2524 ffs->eps_count = helper.eps_count;
2525 ffs->interfaces_count = helper.interfaces_count;
2526 } else {
2527 if (ffs->eps_count != helper.eps_count) {
2528 ret = -EINVAL;
2529 goto error;
2530 }
2531 if (ffs->interfaces_count != helper.interfaces_count) {
2532 ret = -EINVAL;
2533 goto error;
2534 }
2535 }
Michal Nazarewiczac8dde12014-02-28 16:50:23 +05302536 data += ret;
2537 len -= ret;
2538 }
Andrzej Pietrasiewiczf0175ab2014-07-09 12:20:08 +02002539 if (os_descs_count) {
2540 ret = ffs_do_os_descs(os_descs_count, data, len,
2541 __ffs_data_do_os_desc, ffs);
2542 if (ret < 0)
2543 goto error;
2544 data += ret;
2545 len -= ret;
2546 }
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002547
Michal Nazarewiczac8dde12014-02-28 16:50:23 +05302548 if (raw_descs == data || len) {
2549 ret = -EINVAL;
2550 goto error;
2551 }
2552
2553 ffs->raw_descs_data = _data;
2554 ffs->raw_descs = raw_descs;
2555 ffs->raw_descs_length = data - raw_descs;
2556 ffs->fs_descs_count = counts[0];
2557 ffs->hs_descs_count = counts[1];
2558 ffs->ss_descs_count = counts[2];
Andrzej Pietrasiewiczf0175ab2014-07-09 12:20:08 +02002559 ffs->ms_os_descs_count = os_descs_count;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002560
2561 return 0;
2562
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002563error:
2564 kfree(_data);
2565 return ret;
2566}
2567
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002568static int __ffs_data_got_strings(struct ffs_data *ffs,
2569 char *const _data, size_t len)
2570{
2571 u32 str_count, needed_count, lang_count;
2572 struct usb_gadget_strings **stringtabs, *t;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002573 const char *data = _data;
Michal Nazarewicz872ce512016-05-31 14:17:21 +02002574 struct usb_string *s;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002575
2576 ENTER();
2577
Vincent Pelletier83e526f2017-01-18 00:57:44 +00002578 if (unlikely(len < 16 ||
2579 get_unaligned_le32(data) != FUNCTIONFS_STRINGS_MAGIC ||
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002580 get_unaligned_le32(data + 4) != len))
2581 goto error;
2582 str_count = get_unaligned_le32(data + 8);
2583 lang_count = get_unaligned_le32(data + 12);
2584
2585 /* if one is zero the other must be zero */
2586 if (unlikely(!str_count != !lang_count))
2587 goto error;
2588
2589 /* Do we have at least as many strings as descriptors need? */
2590 needed_count = ffs->strings_count;
2591 if (unlikely(str_count < needed_count))
2592 goto error;
2593
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +01002594 /*
2595 * If we don't need any strings just return and free all
2596 * memory.
2597 */
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002598 if (!needed_count) {
2599 kfree(_data);
2600 return 0;
2601 }
2602
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +01002603 /* Allocate everything in one chunk so there's less maintenance. */
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002604 {
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002605 unsigned i = 0;
Andrzej Pietrasiewicze6f38622013-12-03 15:15:30 +01002606 vla_group(d);
2607 vla_item(d, struct usb_gadget_strings *, stringtabs,
2608 lang_count + 1);
2609 vla_item(d, struct usb_gadget_strings, stringtab, lang_count);
2610 vla_item(d, struct usb_string, strings,
2611 lang_count*(needed_count+1));
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002612
Andrzej Pietrasiewicze6f38622013-12-03 15:15:30 +01002613 char *vlabuf = kmalloc(vla_group_size(d), GFP_KERNEL);
2614
2615 if (unlikely(!vlabuf)) {
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002616 kfree(_data);
2617 return -ENOMEM;
2618 }
2619
Andrzej Pietrasiewicze6f38622013-12-03 15:15:30 +01002620 /* Initialize the VLA pointers */
2621 stringtabs = vla_ptr(vlabuf, d, stringtabs);
2622 t = vla_ptr(vlabuf, d, stringtab);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002623 i = lang_count;
2624 do {
2625 *stringtabs++ = t++;
2626 } while (--i);
2627 *stringtabs = NULL;
2628
Andrzej Pietrasiewicze6f38622013-12-03 15:15:30 +01002629 /* stringtabs = vlabuf = d_stringtabs for later kfree */
2630 stringtabs = vla_ptr(vlabuf, d, stringtabs);
2631 t = vla_ptr(vlabuf, d, stringtab);
2632 s = vla_ptr(vlabuf, d, strings);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002633 }
2634
2635 /* For each language */
2636 data += 16;
2637 len -= 16;
2638
2639 do { /* lang_count > 0 so we can use do-while */
2640 unsigned needed = needed_count;
2641
2642 if (unlikely(len < 3))
2643 goto error_free;
2644 t->language = get_unaligned_le16(data);
2645 t->strings = s;
2646 ++t;
2647
2648 data += 2;
2649 len -= 2;
2650
2651 /* For each string */
2652 do { /* str_count > 0 so we can use do-while */
2653 size_t length = strnlen(data, len);
2654
2655 if (unlikely(length == len))
2656 goto error_free;
2657
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +01002658 /*
2659 * User may provide more strings then we need,
2660 * if that's the case we simply ignore the
2661 * rest
2662 */
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002663 if (likely(needed)) {
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +01002664 /*
2665 * s->id will be set while adding
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002666 * function to configuration so for
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +01002667 * now just leave garbage here.
2668 */
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002669 s->s = data;
2670 --needed;
2671 ++s;
2672 }
2673
2674 data += length + 1;
2675 len -= length + 1;
2676 } while (--str_count);
2677
2678 s->id = 0; /* terminator */
2679 s->s = NULL;
2680 ++s;
2681
2682 } while (--lang_count);
2683
2684 /* Some garbage left? */
2685 if (unlikely(len))
2686 goto error_free;
2687
2688 /* Done! */
2689 ffs->stringtabs = stringtabs;
2690 ffs->raw_strings = _data;
2691
2692 return 0;
2693
2694error_free:
2695 kfree(stringtabs);
2696error:
2697 kfree(_data);
2698 return -EINVAL;
2699}
2700
2701
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002702/* Events handling and management *******************************************/
2703
2704static void __ffs_event_add(struct ffs_data *ffs,
2705 enum usb_functionfs_event_type type)
2706{
2707 enum usb_functionfs_event_type rem_type1, rem_type2 = type;
2708 int neg = 0;
2709
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +01002710 /*
2711 * Abort any unhandled setup
2712 *
2713 * We do not need to worry about some cmpxchg() changing value
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002714 * of ffs->setup_state without holding the lock because when
2715 * state is FFS_SETUP_PENDING cmpxchg() in several places in
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +01002716 * the source does nothing.
2717 */
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002718 if (ffs->setup_state == FFS_SETUP_PENDING)
Michal Nazarewicze46318a2014-02-10 10:42:40 +01002719 ffs->setup_state = FFS_SETUP_CANCELLED;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002720
Michal Nazarewicz67913bb2014-09-10 17:50:24 +02002721 /*
2722 * Logic of this function guarantees that there are at most four pending
2723 * evens on ffs->ev.types queue. This is important because the queue
2724 * has space for four elements only and __ffs_ep0_read_events function
2725 * depends on that limit as well. If more event types are added, those
2726 * limits have to be revisited or guaranteed to still hold.
2727 */
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002728 switch (type) {
2729 case FUNCTIONFS_RESUME:
2730 rem_type2 = FUNCTIONFS_SUSPEND;
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +01002731 /* FALL THROUGH */
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002732 case FUNCTIONFS_SUSPEND:
2733 case FUNCTIONFS_SETUP:
2734 rem_type1 = type;
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +01002735 /* Discard all similar events */
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002736 break;
2737
2738 case FUNCTIONFS_BIND:
2739 case FUNCTIONFS_UNBIND:
2740 case FUNCTIONFS_DISABLE:
2741 case FUNCTIONFS_ENABLE:
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +01002742 /* Discard everything other then power management. */
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002743 rem_type1 = FUNCTIONFS_SUSPEND;
2744 rem_type2 = FUNCTIONFS_RESUME;
2745 neg = 1;
2746 break;
2747
2748 default:
Michal Nazarewiczfe00bcb2014-09-11 18:52:49 +02002749 WARN(1, "%d: unknown event, this should not happen\n", type);
2750 return;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002751 }
2752
2753 {
2754 u8 *ev = ffs->ev.types, *out = ev;
2755 unsigned n = ffs->ev.count;
2756 for (; n; --n, ++ev)
2757 if ((*ev == rem_type1 || *ev == rem_type2) == neg)
2758 *out++ = *ev;
2759 else
Michal Nazarewiczaa02f172010-11-17 17:09:47 +01002760 pr_vdebug("purging event %d\n", *ev);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002761 ffs->ev.count = out - ffs->ev.types;
2762 }
2763
Michal Nazarewiczaa02f172010-11-17 17:09:47 +01002764 pr_vdebug("adding event %d\n", type);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002765 ffs->ev.types[ffs->ev.count++] = type;
2766 wake_up_locked(&ffs->ev.waitq);
Robert Baldyga5e33f6f2015-01-23 13:41:01 +01002767 if (ffs->ffs_eventfd)
2768 eventfd_signal(ffs->ffs_eventfd, 1);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002769}
2770
2771static void ffs_event_add(struct ffs_data *ffs,
2772 enum usb_functionfs_event_type type)
2773{
2774 unsigned long flags;
2775 spin_lock_irqsave(&ffs->ev.waitq.lock, flags);
2776 __ffs_event_add(ffs, type);
2777 spin_unlock_irqrestore(&ffs->ev.waitq.lock, flags);
2778}
2779
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002780/* Bind/unbind USB function hooks *******************************************/
2781
Robert Baldyga6d5c1c72014-08-25 11:16:27 +02002782static int ffs_ep_addr2idx(struct ffs_data *ffs, u8 endpoint_address)
2783{
2784 int i;
2785
2786 for (i = 1; i < ARRAY_SIZE(ffs->eps_addrmap); ++i)
2787 if (ffs->eps_addrmap[i] == endpoint_address)
2788 return i;
2789 return -ENOENT;
2790}
2791
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002792static int __ffs_func_bind_do_descs(enum ffs_entity_type type, u8 *valuep,
2793 struct usb_descriptor_header *desc,
2794 void *priv)
2795{
2796 struct usb_endpoint_descriptor *ds = (void *)desc;
2797 struct ffs_function *func = priv;
2798 struct ffs_ep *ffs_ep;
Dan Carpenter85b06f52014-09-09 15:06:09 +03002799 unsigned ep_desc_id;
2800 int idx;
Manu Gautam8d4e8972014-02-28 16:50:22 +05302801 static const char *speed_names[] = { "full", "high", "super" };
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002802
2803 if (type != FFS_DESCRIPTOR)
2804 return 0;
2805
Manu Gautam8d4e8972014-02-28 16:50:22 +05302806 /*
2807 * If ss_descriptors is not NULL, we are reading super speed
2808 * descriptors; if hs_descriptors is not NULL, we are reading high
2809 * speed descriptors; otherwise, we are reading full speed
2810 * descriptors.
2811 */
2812 if (func->function.ss_descriptors) {
2813 ep_desc_id = 2;
2814 func->function.ss_descriptors[(long)valuep] = desc;
2815 } else if (func->function.hs_descriptors) {
2816 ep_desc_id = 1;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002817 func->function.hs_descriptors[(long)valuep] = desc;
Manu Gautam8d4e8972014-02-28 16:50:22 +05302818 } else {
2819 ep_desc_id = 0;
Sebastian Andrzej Siewior10287ba2012-10-22 22:15:06 +02002820 func->function.fs_descriptors[(long)valuep] = desc;
Manu Gautam8d4e8972014-02-28 16:50:22 +05302821 }
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002822
2823 if (!desc || desc->bDescriptorType != USB_DT_ENDPOINT)
2824 return 0;
2825
Robert Baldyga6d5c1c72014-08-25 11:16:27 +02002826 idx = ffs_ep_addr2idx(func->ffs, ds->bEndpointAddress) - 1;
2827 if (idx < 0)
2828 return idx;
2829
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002830 ffs_ep = func->eps + idx;
2831
Manu Gautam8d4e8972014-02-28 16:50:22 +05302832 if (unlikely(ffs_ep->descs[ep_desc_id])) {
2833 pr_err("two %sspeed descriptors for EP %d\n",
2834 speed_names[ep_desc_id],
Michal Nazarewiczd8df0b62010-11-12 14:29:29 +01002835 ds->bEndpointAddress & USB_ENDPOINT_NUMBER_MASK);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002836 return -EINVAL;
2837 }
Manu Gautam8d4e8972014-02-28 16:50:22 +05302838 ffs_ep->descs[ep_desc_id] = ds;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002839
2840 ffs_dump_mem(": Original ep desc", ds, ds->bLength);
2841 if (ffs_ep->ep) {
2842 ds->bEndpointAddress = ffs_ep->descs[0]->bEndpointAddress;
2843 if (!ds->wMaxPacketSize)
2844 ds->wMaxPacketSize = ffs_ep->descs[0]->wMaxPacketSize;
2845 } else {
2846 struct usb_request *req;
2847 struct usb_ep *ep;
Robert Baldyga1b0bf882014-09-09 08:23:17 +02002848 u8 bEndpointAddress;
Andrzej Pietrasiewiczbdcc03c2019-01-31 15:53:40 +01002849 u16 wMaxPacketSize;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002850
Robert Baldyga1b0bf882014-09-09 08:23:17 +02002851 /*
2852 * We back up bEndpointAddress because autoconfig overwrites
2853 * it with physical endpoint address.
2854 */
2855 bEndpointAddress = ds->bEndpointAddress;
Andrzej Pietrasiewiczbdcc03c2019-01-31 15:53:40 +01002856 /*
2857 * We back up wMaxPacketSize because autoconfig treats
2858 * endpoint descriptors as if they were full speed.
2859 */
2860 wMaxPacketSize = ds->wMaxPacketSize;
Michal Nazarewiczaa02f172010-11-17 17:09:47 +01002861 pr_vdebug("autoconfig\n");
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002862 ep = usb_ep_autoconfig(func->gadget, ds);
2863 if (unlikely(!ep))
2864 return -ENOTSUPP;
Joe Perchescc7e60562010-11-14 19:04:49 -08002865 ep->driver_data = func->eps + idx;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002866
2867 req = usb_ep_alloc_request(ep, GFP_KERNEL);
2868 if (unlikely(!req))
2869 return -ENOMEM;
2870
2871 ffs_ep->ep = ep;
2872 ffs_ep->req = req;
2873 func->eps_revmap[ds->bEndpointAddress &
2874 USB_ENDPOINT_NUMBER_MASK] = idx + 1;
Robert Baldyga1b0bf882014-09-09 08:23:17 +02002875 /*
2876 * If we use virtual address mapping, we restore
2877 * original bEndpointAddress value.
2878 */
2879 if (func->ffs->user_flags & FUNCTIONFS_VIRTUAL_ADDR)
2880 ds->bEndpointAddress = bEndpointAddress;
Andrzej Pietrasiewiczbdcc03c2019-01-31 15:53:40 +01002881 /*
2882 * Restore wMaxPacketSize which was potentially
2883 * overwritten by autoconfig.
2884 */
2885 ds->wMaxPacketSize = wMaxPacketSize;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002886 }
2887 ffs_dump_mem(": Rewritten ep desc", ds, ds->bLength);
2888
2889 return 0;
2890}
2891
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002892static int __ffs_func_bind_do_nums(enum ffs_entity_type type, u8 *valuep,
2893 struct usb_descriptor_header *desc,
2894 void *priv)
2895{
2896 struct ffs_function *func = priv;
2897 unsigned idx;
2898 u8 newValue;
2899
2900 switch (type) {
2901 default:
2902 case FFS_DESCRIPTOR:
2903 /* Handled in previous pass by __ffs_func_bind_do_descs() */
2904 return 0;
2905
2906 case FFS_INTERFACE:
2907 idx = *valuep;
2908 if (func->interfaces_nums[idx] < 0) {
2909 int id = usb_interface_id(func->conf, &func->function);
2910 if (unlikely(id < 0))
2911 return id;
2912 func->interfaces_nums[idx] = id;
2913 }
2914 newValue = func->interfaces_nums[idx];
2915 break;
2916
2917 case FFS_STRING:
2918 /* String' IDs are allocated when fsf_data is bound to cdev */
2919 newValue = func->ffs->stringtabs[0]->strings[*valuep - 1].id;
2920 break;
2921
2922 case FFS_ENDPOINT:
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +01002923 /*
2924 * USB_DT_ENDPOINT are handled in
2925 * __ffs_func_bind_do_descs().
2926 */
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002927 if (desc->bDescriptorType == USB_DT_ENDPOINT)
2928 return 0;
2929
2930 idx = (*valuep & USB_ENDPOINT_NUMBER_MASK) - 1;
2931 if (unlikely(!func->eps[idx].ep))
2932 return -EINVAL;
2933
2934 {
2935 struct usb_endpoint_descriptor **descs;
2936 descs = func->eps[idx].descs;
2937 newValue = descs[descs[0] ? 0 : 1]->bEndpointAddress;
2938 }
2939 break;
2940 }
2941
Michal Nazarewiczaa02f172010-11-17 17:09:47 +01002942 pr_vdebug("%02x -> %02x\n", *valuep, newValue);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02002943 *valuep = newValue;
2944 return 0;
2945}
2946
Andrzej Pietrasiewiczf0175ab2014-07-09 12:20:08 +02002947static int __ffs_func_bind_do_os_desc(enum ffs_os_desc_type type,
2948 struct usb_os_desc_header *h, void *data,
2949 unsigned len, void *priv)
2950{
2951 struct ffs_function *func = priv;
2952 u8 length = 0;
2953
2954 switch (type) {
2955 case FFS_OS_DESC_EXT_COMPAT: {
2956 struct usb_ext_compat_desc *desc = data;
2957 struct usb_os_desc_table *t;
2958
2959 t = &func->function.os_desc_table[desc->bFirstInterfaceNumber];
2960 t->if_id = func->interfaces_nums[desc->bFirstInterfaceNumber];
2961 memcpy(t->os_desc->ext_compat_id, &desc->CompatibleID,
2962 ARRAY_SIZE(desc->CompatibleID) +
2963 ARRAY_SIZE(desc->SubCompatibleID));
2964 length = sizeof(*desc);
2965 }
2966 break;
2967 case FFS_OS_DESC_EXT_PROP: {
2968 struct usb_ext_prop_desc *desc = data;
2969 struct usb_os_desc_table *t;
2970 struct usb_os_desc_ext_prop *ext_prop;
2971 char *ext_prop_name;
2972 char *ext_prop_data;
2973
2974 t = &func->function.os_desc_table[h->interface];
2975 t->if_id = func->interfaces_nums[h->interface];
2976
2977 ext_prop = func->ffs->ms_os_descs_ext_prop_avail;
2978 func->ffs->ms_os_descs_ext_prop_avail += sizeof(*ext_prop);
2979
2980 ext_prop->type = le32_to_cpu(desc->dwPropertyDataType);
2981 ext_prop->name_len = le16_to_cpu(desc->wPropertyNameLength);
Vincent Pelletierc40619b2017-11-28 15:20:53 +00002982 ext_prop->data_len = le32_to_cpu(*(__le32 *)
Andrzej Pietrasiewiczf0175ab2014-07-09 12:20:08 +02002983 usb_ext_prop_data_len_ptr(data, ext_prop->name_len));
2984 length = ext_prop->name_len + ext_prop->data_len + 14;
2985
2986 ext_prop_name = func->ffs->ms_os_descs_ext_prop_name_avail;
2987 func->ffs->ms_os_descs_ext_prop_name_avail +=
2988 ext_prop->name_len;
2989
2990 ext_prop_data = func->ffs->ms_os_descs_ext_prop_data_avail;
2991 func->ffs->ms_os_descs_ext_prop_data_avail +=
2992 ext_prop->data_len;
2993 memcpy(ext_prop_data,
2994 usb_ext_prop_data_ptr(data, ext_prop->name_len),
2995 ext_prop->data_len);
2996 /* unicode data reported to the host as "WCHAR"s */
2997 switch (ext_prop->type) {
2998 case USB_EXT_PROP_UNICODE:
2999 case USB_EXT_PROP_UNICODE_ENV:
3000 case USB_EXT_PROP_UNICODE_LINK:
3001 case USB_EXT_PROP_UNICODE_MULTI:
3002 ext_prop->data_len *= 2;
3003 break;
3004 }
3005 ext_prop->data = ext_prop_data;
3006
3007 memcpy(ext_prop_name, usb_ext_prop_name_ptr(data),
3008 ext_prop->name_len);
3009 /* property name reported to the host as "WCHAR"s */
3010 ext_prop->name_len *= 2;
3011 ext_prop->name = ext_prop_name;
3012
3013 t->os_desc->ext_prop_len +=
3014 ext_prop->name_len + ext_prop->data_len + 14;
3015 ++t->os_desc->ext_prop_count;
3016 list_add_tail(&ext_prop->entry, &t->os_desc->ext_prop);
3017 }
3018 break;
3019 default:
3020 pr_vdebug("unknown descriptor: %d\n", type);
3021 }
3022
3023 return length;
3024}
3025
Andrzej Pietrasiewicz5920cda2013-12-03 15:15:33 +01003026static inline struct f_fs_opts *ffs_do_functionfs_bind(struct usb_function *f,
3027 struct usb_configuration *c)
3028{
3029 struct ffs_function *func = ffs_func_from_usb(f);
3030 struct f_fs_opts *ffs_opts =
3031 container_of(f->fi, struct f_fs_opts, func_inst);
3032 int ret;
3033
3034 ENTER();
3035
3036 /*
3037 * Legacy gadget triggers binding in functionfs_ready_callback,
3038 * which already uses locking; taking the same lock here would
3039 * cause a deadlock.
3040 *
3041 * Configfs-enabled gadgets however do need ffs_dev_lock.
3042 */
3043 if (!ffs_opts->no_configfs)
3044 ffs_dev_lock();
3045 ret = ffs_opts->dev->desc_ready ? 0 : -ENODEV;
3046 func->ffs = ffs_opts->dev->ffs_data;
3047 if (!ffs_opts->no_configfs)
3048 ffs_dev_unlock();
3049 if (ret)
3050 return ERR_PTR(ret);
3051
3052 func->conf = c;
3053 func->gadget = c->cdev->gadget;
3054
Andrzej Pietrasiewicz5920cda2013-12-03 15:15:33 +01003055 /*
3056 * in drivers/usb/gadget/configfs.c:configfs_composite_bind()
3057 * configurations are bound in sequence with list_for_each_entry,
3058 * in each configuration its functions are bound in sequence
3059 * with list_for_each_entry, so we assume no race condition
3060 * with regard to ffs_opts->bound access
3061 */
3062 if (!ffs_opts->refcnt) {
3063 ret = functionfs_bind(func->ffs, c->cdev);
3064 if (ret)
3065 return ERR_PTR(ret);
3066 }
3067 ffs_opts->refcnt++;
3068 func->function.strings = func->ffs->stringtabs;
3069
3070 return ffs_opts;
3071}
Andrzej Pietrasiewicz5920cda2013-12-03 15:15:33 +01003072
3073static int _ffs_func_bind(struct usb_configuration *c,
3074 struct usb_function *f)
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02003075{
3076 struct ffs_function *func = ffs_func_from_usb(f);
3077 struct ffs_data *ffs = func->ffs;
3078
3079 const int full = !!func->ffs->fs_descs_count;
Jack Pham6cf439e2018-01-24 00:11:53 -08003080 const int high = !!func->ffs->hs_descs_count;
3081 const int super = !!func->ffs->ss_descs_count;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02003082
Andrzej Pietrasiewiczf0175ab2014-07-09 12:20:08 +02003083 int fs_len, hs_len, ss_len, ret, i;
Dan Carpenter0015f912016-05-28 07:48:10 +03003084 struct ffs_ep *eps_ptr;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02003085
3086 /* Make it a single chunk, less management later on */
Andrzej Pietrasiewicze6f38622013-12-03 15:15:30 +01003087 vla_group(d);
3088 vla_item_with_sz(d, struct ffs_ep, eps, ffs->eps_count);
3089 vla_item_with_sz(d, struct usb_descriptor_header *, fs_descs,
3090 full ? ffs->fs_descs_count + 1 : 0);
3091 vla_item_with_sz(d, struct usb_descriptor_header *, hs_descs,
3092 high ? ffs->hs_descs_count + 1 : 0);
Manu Gautam8d4e8972014-02-28 16:50:22 +05303093 vla_item_with_sz(d, struct usb_descriptor_header *, ss_descs,
3094 super ? ffs->ss_descs_count + 1 : 0);
Andrzej Pietrasiewicze6f38622013-12-03 15:15:30 +01003095 vla_item_with_sz(d, short, inums, ffs->interfaces_count);
Andrzej Pietrasiewiczf0175ab2014-07-09 12:20:08 +02003096 vla_item_with_sz(d, struct usb_os_desc_table, os_desc_table,
3097 c->cdev->use_os_string ? ffs->interfaces_count : 0);
3098 vla_item_with_sz(d, char[16], ext_compat,
3099 c->cdev->use_os_string ? ffs->interfaces_count : 0);
3100 vla_item_with_sz(d, struct usb_os_desc, os_desc,
3101 c->cdev->use_os_string ? ffs->interfaces_count : 0);
3102 vla_item_with_sz(d, struct usb_os_desc_ext_prop, ext_prop,
3103 ffs->ms_os_descs_ext_prop_count);
3104 vla_item_with_sz(d, char, ext_prop_name,
3105 ffs->ms_os_descs_ext_prop_name_len);
3106 vla_item_with_sz(d, char, ext_prop_data,
3107 ffs->ms_os_descs_ext_prop_data_len);
Michal Nazarewiczac8dde12014-02-28 16:50:23 +05303108 vla_item_with_sz(d, char, raw_descs, ffs->raw_descs_length);
Andrzej Pietrasiewicze6f38622013-12-03 15:15:30 +01003109 char *vlabuf;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02003110
3111 ENTER();
3112
Manu Gautam8d4e8972014-02-28 16:50:22 +05303113 /* Has descriptors only for speeds gadget does not support */
3114 if (unlikely(!(full | high | super)))
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02003115 return -ENOTSUPP;
3116
Andrzej Pietrasiewicze6f38622013-12-03 15:15:30 +01003117 /* Allocate a single chunk, less management later on */
Andrzej Pietrasiewiczf0175ab2014-07-09 12:20:08 +02003118 vlabuf = kzalloc(vla_group_size(d), GFP_KERNEL);
Andrzej Pietrasiewicze6f38622013-12-03 15:15:30 +01003119 if (unlikely(!vlabuf))
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02003120 return -ENOMEM;
3121
Andrzej Pietrasiewiczf0175ab2014-07-09 12:20:08 +02003122 ffs->ms_os_descs_ext_prop_avail = vla_ptr(vlabuf, d, ext_prop);
3123 ffs->ms_os_descs_ext_prop_name_avail =
3124 vla_ptr(vlabuf, d, ext_prop_name);
3125 ffs->ms_os_descs_ext_prop_data_avail =
3126 vla_ptr(vlabuf, d, ext_prop_data);
3127
Michal Nazarewiczac8dde12014-02-28 16:50:23 +05303128 /* Copy descriptors */
3129 memcpy(vla_ptr(vlabuf, d, raw_descs), ffs->raw_descs,
3130 ffs->raw_descs_length);
Manu Gautam8d4e8972014-02-28 16:50:22 +05303131
Andrzej Pietrasiewicze6f38622013-12-03 15:15:30 +01003132 memset(vla_ptr(vlabuf, d, inums), 0xff, d_inums__sz);
Dan Carpenter0015f912016-05-28 07:48:10 +03003133 eps_ptr = vla_ptr(vlabuf, d, eps);
3134 for (i = 0; i < ffs->eps_count; i++)
3135 eps_ptr[i].num = -1;
Andrzej Pietrasiewicze6f38622013-12-03 15:15:30 +01003136
3137 /* Save pointers
3138 * d_eps == vlabuf, func->eps used to kfree vlabuf later
3139 */
3140 func->eps = vla_ptr(vlabuf, d, eps);
3141 func->interfaces_nums = vla_ptr(vlabuf, d, inums);
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02003142
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +01003143 /*
3144 * Go through all the endpoint descriptors and allocate
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02003145 * endpoints first, so that later we can rewrite the endpoint
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +01003146 * numbers without worrying that it may be described later on.
3147 */
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02003148 if (likely(full)) {
Andrzej Pietrasiewicze6f38622013-12-03 15:15:30 +01003149 func->function.fs_descriptors = vla_ptr(vlabuf, d, fs_descs);
Manu Gautam8d4e8972014-02-28 16:50:22 +05303150 fs_len = ffs_do_descs(ffs->fs_descs_count,
3151 vla_ptr(vlabuf, d, raw_descs),
3152 d_raw_descs__sz,
3153 __ffs_func_bind_do_descs, func);
3154 if (unlikely(fs_len < 0)) {
3155 ret = fs_len;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02003156 goto error;
Manu Gautam8d4e8972014-02-28 16:50:22 +05303157 }
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02003158 } else {
Manu Gautam8d4e8972014-02-28 16:50:22 +05303159 fs_len = 0;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02003160 }
3161
3162 if (likely(high)) {
Andrzej Pietrasiewicze6f38622013-12-03 15:15:30 +01003163 func->function.hs_descriptors = vla_ptr(vlabuf, d, hs_descs);
Manu Gautam8d4e8972014-02-28 16:50:22 +05303164 hs_len = ffs_do_descs(ffs->hs_descs_count,
3165 vla_ptr(vlabuf, d, raw_descs) + fs_len,
3166 d_raw_descs__sz - fs_len,
3167 __ffs_func_bind_do_descs, func);
3168 if (unlikely(hs_len < 0)) {
3169 ret = hs_len;
3170 goto error;
3171 }
3172 } else {
3173 hs_len = 0;
3174 }
3175
3176 if (likely(super)) {
3177 func->function.ss_descriptors = vla_ptr(vlabuf, d, ss_descs);
Andrzej Pietrasiewiczf0175ab2014-07-09 12:20:08 +02003178 ss_len = ffs_do_descs(ffs->ss_descs_count,
Manu Gautam8d4e8972014-02-28 16:50:22 +05303179 vla_ptr(vlabuf, d, raw_descs) + fs_len + hs_len,
3180 d_raw_descs__sz - fs_len - hs_len,
3181 __ffs_func_bind_do_descs, func);
Andrzej Pietrasiewiczf0175ab2014-07-09 12:20:08 +02003182 if (unlikely(ss_len < 0)) {
3183 ret = ss_len;
Robert Baldyga88548942013-09-27 12:28:54 +02003184 goto error;
Andrzej Pietrasiewiczf0175ab2014-07-09 12:20:08 +02003185 }
3186 } else {
3187 ss_len = 0;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02003188 }
3189
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +01003190 /*
3191 * Now handle interface numbers allocation and interface and
3192 * endpoint numbers rewriting. We can do that in one go
3193 * now.
3194 */
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02003195 ret = ffs_do_descs(ffs->fs_descs_count +
Manu Gautam8d4e8972014-02-28 16:50:22 +05303196 (high ? ffs->hs_descs_count : 0) +
3197 (super ? ffs->ss_descs_count : 0),
Andrzej Pietrasiewicze6f38622013-12-03 15:15:30 +01003198 vla_ptr(vlabuf, d, raw_descs), d_raw_descs__sz,
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02003199 __ffs_func_bind_do_nums, func);
3200 if (unlikely(ret < 0))
3201 goto error;
3202
Andrzej Pietrasiewiczf0175ab2014-07-09 12:20:08 +02003203 func->function.os_desc_table = vla_ptr(vlabuf, d, os_desc_table);
Jim Linc6010c82016-05-13 20:32:16 +08003204 if (c->cdev->use_os_string) {
Andrzej Pietrasiewiczf0175ab2014-07-09 12:20:08 +02003205 for (i = 0; i < ffs->interfaces_count; ++i) {
3206 struct usb_os_desc *desc;
3207
3208 desc = func->function.os_desc_table[i].os_desc =
3209 vla_ptr(vlabuf, d, os_desc) +
3210 i * sizeof(struct usb_os_desc);
3211 desc->ext_compat_id =
3212 vla_ptr(vlabuf, d, ext_compat) + i * 16;
3213 INIT_LIST_HEAD(&desc->ext_prop);
3214 }
Jim Linc6010c82016-05-13 20:32:16 +08003215 ret = ffs_do_os_descs(ffs->ms_os_descs_count,
3216 vla_ptr(vlabuf, d, raw_descs) +
3217 fs_len + hs_len + ss_len,
3218 d_raw_descs__sz - fs_len - hs_len -
3219 ss_len,
3220 __ffs_func_bind_do_os_desc, func);
3221 if (unlikely(ret < 0))
3222 goto error;
3223 }
Andrzej Pietrasiewiczf0175ab2014-07-09 12:20:08 +02003224 func->function.os_desc_n =
3225 c->cdev->use_os_string ? ffs->interfaces_count : 0;
3226
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02003227 /* And we're done */
3228 ffs_event_add(ffs, FUNCTIONFS_BIND);
3229 return 0;
3230
3231error:
3232 /* XXX Do we need to release all claimed endpoints here? */
3233 return ret;
3234}
3235
Andrzej Pietrasiewicz5920cda2013-12-03 15:15:33 +01003236static int ffs_func_bind(struct usb_configuration *c,
3237 struct usb_function *f)
3238{
Andrzej Pietrasiewicz5920cda2013-12-03 15:15:33 +01003239 struct f_fs_opts *ffs_opts = ffs_do_functionfs_bind(f, c);
Robert Baldyga55d81122015-07-13 11:03:50 +02003240 struct ffs_function *func = ffs_func_from_usb(f);
3241 int ret;
Andrzej Pietrasiewicz5920cda2013-12-03 15:15:33 +01003242
3243 if (IS_ERR(ffs_opts))
3244 return PTR_ERR(ffs_opts);
Andrzej Pietrasiewicz5920cda2013-12-03 15:15:33 +01003245
Robert Baldyga55d81122015-07-13 11:03:50 +02003246 ret = _ffs_func_bind(c, f);
3247 if (ret && !--ffs_opts->refcnt)
3248 functionfs_unbind(func->ffs);
3249
3250 return ret;
Andrzej Pietrasiewicz5920cda2013-12-03 15:15:33 +01003251}
3252
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02003253
3254/* Other USB function hooks *************************************************/
3255
Robert Baldyga18d6b32f2014-12-18 09:55:10 +01003256static void ffs_reset_work(struct work_struct *work)
3257{
3258 struct ffs_data *ffs = container_of(work,
3259 struct ffs_data, reset_work);
3260 ffs_data_reset(ffs);
3261}
3262
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02003263static int ffs_func_set_alt(struct usb_function *f,
3264 unsigned interface, unsigned alt)
3265{
3266 struct ffs_function *func = ffs_func_from_usb(f);
3267 struct ffs_data *ffs = func->ffs;
3268 int ret = 0, intf;
3269
3270 if (alt != (unsigned)-1) {
3271 intf = ffs_func_revmap_intf(func, interface);
3272 if (unlikely(intf < 0))
3273 return intf;
3274 }
3275
3276 if (ffs->func)
3277 ffs_func_eps_disable(ffs->func);
3278
Robert Baldyga18d6b32f2014-12-18 09:55:10 +01003279 if (ffs->state == FFS_DEACTIVATED) {
3280 ffs->state = FFS_CLOSING;
3281 INIT_WORK(&ffs->reset_work, ffs_reset_work);
3282 schedule_work(&ffs->reset_work);
3283 return -ENODEV;
3284 }
3285
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02003286 if (ffs->state != FFS_ACTIVE)
3287 return -ENODEV;
3288
3289 if (alt == (unsigned)-1) {
3290 ffs->func = NULL;
3291 ffs_event_add(ffs, FUNCTIONFS_DISABLE);
3292 return 0;
3293 }
3294
3295 ffs->func = func;
3296 ret = ffs_func_eps_enable(func);
3297 if (likely(ret >= 0))
3298 ffs_event_add(ffs, FUNCTIONFS_ENABLE);
3299 return ret;
3300}
3301
3302static void ffs_func_disable(struct usb_function *f)
3303{
3304 ffs_func_set_alt(f, 0, (unsigned)-1);
3305}
3306
3307static int ffs_func_setup(struct usb_function *f,
3308 const struct usb_ctrlrequest *creq)
3309{
3310 struct ffs_function *func = ffs_func_from_usb(f);
3311 struct ffs_data *ffs = func->ffs;
3312 unsigned long flags;
3313 int ret;
3314
3315 ENTER();
3316
Michal Nazarewiczaa02f172010-11-17 17:09:47 +01003317 pr_vdebug("creq->bRequestType = %02x\n", creq->bRequestType);
3318 pr_vdebug("creq->bRequest = %02x\n", creq->bRequest);
3319 pr_vdebug("creq->wValue = %04x\n", le16_to_cpu(creq->wValue));
3320 pr_vdebug("creq->wIndex = %04x\n", le16_to_cpu(creq->wIndex));
3321 pr_vdebug("creq->wLength = %04x\n", le16_to_cpu(creq->wLength));
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02003322
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +01003323 /*
3324 * Most requests directed to interface go through here
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02003325 * (notable exceptions are set/get interface) so we need to
3326 * handle them. All other either handled by composite or
3327 * passed to usb_configuration->setup() (if one is set). No
3328 * matter, we will handle requests directed to endpoint here
Felix Hädicke54dfce62016-06-22 01:12:07 +02003329 * as well (as it's straightforward). Other request recipient
3330 * types are only handled when the user flag FUNCTIONFS_ALL_CTRL_RECIP
3331 * is being used.
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +01003332 */
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02003333 if (ffs->state != FFS_ACTIVE)
3334 return -ENODEV;
3335
3336 switch (creq->bRequestType & USB_RECIP_MASK) {
3337 case USB_RECIP_INTERFACE:
3338 ret = ffs_func_revmap_intf(func, le16_to_cpu(creq->wIndex));
3339 if (unlikely(ret < 0))
3340 return ret;
3341 break;
3342
3343 case USB_RECIP_ENDPOINT:
3344 ret = ffs_func_revmap_ep(func, le16_to_cpu(creq->wIndex));
3345 if (unlikely(ret < 0))
3346 return ret;
Robert Baldyga1b0bf882014-09-09 08:23:17 +02003347 if (func->ffs->user_flags & FUNCTIONFS_VIRTUAL_ADDR)
3348 ret = func->ffs->eps_addrmap[ret];
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02003349 break;
3350
3351 default:
Felix Hädicke54dfce62016-06-22 01:12:07 +02003352 if (func->ffs->user_flags & FUNCTIONFS_ALL_CTRL_RECIP)
3353 ret = le16_to_cpu(creq->wIndex);
3354 else
3355 return -EOPNOTSUPP;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02003356 }
3357
3358 spin_lock_irqsave(&ffs->ev.waitq.lock, flags);
3359 ffs->ev.setup = *creq;
3360 ffs->ev.setup.wIndex = cpu_to_le16(ret);
3361 __ffs_event_add(ffs, FUNCTIONFS_SETUP);
3362 spin_unlock_irqrestore(&ffs->ev.waitq.lock, flags);
3363
Jerry Zhang4d644abf2018-07-02 12:48:08 -07003364 return creq->wLength == 0 ? USB_GADGET_DELAYED_STATUS : 0;
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02003365}
3366
Felix Hädicke54dfce62016-06-22 01:12:07 +02003367static bool ffs_func_req_match(struct usb_function *f,
Felix Hädicke1a00b4572016-06-22 01:12:08 +02003368 const struct usb_ctrlrequest *creq,
3369 bool config0)
Felix Hädicke54dfce62016-06-22 01:12:07 +02003370{
3371 struct ffs_function *func = ffs_func_from_usb(f);
3372
Felix Hädicke4368c282016-06-22 01:12:09 +02003373 if (config0 && !(func->ffs->user_flags & FUNCTIONFS_CONFIG0_SETUP))
Felix Hädicke1a00b4572016-06-22 01:12:08 +02003374 return false;
3375
Felix Hädicke54dfce62016-06-22 01:12:07 +02003376 switch (creq->bRequestType & USB_RECIP_MASK) {
3377 case USB_RECIP_INTERFACE:
Felix Hädicke05e78c62016-11-04 00:23:26 +01003378 return (ffs_func_revmap_intf(func,
3379 le16_to_cpu(creq->wIndex)) >= 0);
Felix Hädicke54dfce62016-06-22 01:12:07 +02003380 case USB_RECIP_ENDPOINT:
Felix Hädicke05e78c62016-11-04 00:23:26 +01003381 return (ffs_func_revmap_ep(func,
3382 le16_to_cpu(creq->wIndex)) >= 0);
Felix Hädicke54dfce62016-06-22 01:12:07 +02003383 default:
3384 return (bool) (func->ffs->user_flags &
3385 FUNCTIONFS_ALL_CTRL_RECIP);
3386 }
3387}
3388
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02003389static void ffs_func_suspend(struct usb_function *f)
3390{
3391 ENTER();
3392 ffs_event_add(ffs_func_from_usb(f)->ffs, FUNCTIONFS_SUSPEND);
3393}
3394
3395static void ffs_func_resume(struct usb_function *f)
3396{
3397 ENTER();
3398 ffs_event_add(ffs_func_from_usb(f)->ffs, FUNCTIONFS_RESUME);
3399}
3400
3401
Michal Nazarewicz5ab54cf2010-11-12 14:29:28 +01003402/* Endpoint and interface numbers reverse mapping ***************************/
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02003403
3404static int ffs_func_revmap_ep(struct ffs_function *func, u8 num)
3405{
3406 num = func->eps_revmap[num & USB_ENDPOINT_NUMBER_MASK];
3407 return num ? num : -EDOM;
3408}
3409
3410static int ffs_func_revmap_intf(struct ffs_function *func, u8 intf)
3411{
3412 short *nums = func->interfaces_nums;
3413 unsigned count = func->ffs->interfaces_count;
3414
3415 for (; count; --count, ++nums) {
3416 if (*nums >= 0 && *nums == intf)
3417 return nums - func->interfaces_nums;
3418 }
3419
3420 return -EDOM;
3421}
3422
3423
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01003424/* Devices management *******************************************************/
3425
3426static LIST_HEAD(ffs_devices);
3427
Andrzej Pietrasiewiczda13a772014-01-13 16:49:38 +01003428static struct ffs_dev *_ffs_do_find_dev(const char *name)
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01003429{
3430 struct ffs_dev *dev;
3431
Michal Nazarewiczea920bb2017-03-10 22:45:58 +01003432 if (!name)
3433 return NULL;
3434
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01003435 list_for_each_entry(dev, &ffs_devices, entry) {
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01003436 if (strcmp(dev->name, name) == 0)
3437 return dev;
3438 }
Andrzej Pietrasiewiczb6584992013-12-03 15:15:36 +01003439
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01003440 return NULL;
3441}
3442
3443/*
3444 * ffs_lock must be taken by the caller of this function
3445 */
Andrzej Pietrasiewiczda13a772014-01-13 16:49:38 +01003446static struct ffs_dev *_ffs_get_single_dev(void)
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01003447{
3448 struct ffs_dev *dev;
3449
3450 if (list_is_singular(&ffs_devices)) {
3451 dev = list_first_entry(&ffs_devices, struct ffs_dev, entry);
3452 if (dev->single)
3453 return dev;
3454 }
3455
3456 return NULL;
3457}
3458
3459/*
3460 * ffs_lock must be taken by the caller of this function
3461 */
Andrzej Pietrasiewiczda13a772014-01-13 16:49:38 +01003462static struct ffs_dev *_ffs_find_dev(const char *name)
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01003463{
3464 struct ffs_dev *dev;
3465
Andrzej Pietrasiewiczda13a772014-01-13 16:49:38 +01003466 dev = _ffs_get_single_dev();
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01003467 if (dev)
3468 return dev;
3469
Andrzej Pietrasiewiczda13a772014-01-13 16:49:38 +01003470 return _ffs_do_find_dev(name);
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01003471}
3472
Andrzej Pietrasiewiczb6584992013-12-03 15:15:36 +01003473/* Configfs support *********************************************************/
3474
3475static inline struct f_fs_opts *to_ffs_opts(struct config_item *item)
3476{
3477 return container_of(to_config_group(item), struct f_fs_opts,
3478 func_inst.group);
3479}
3480
3481static void ffs_attr_release(struct config_item *item)
3482{
3483 struct f_fs_opts *opts = to_ffs_opts(item);
3484
3485 usb_put_function_instance(&opts->func_inst);
3486}
3487
3488static struct configfs_item_operations ffs_item_ops = {
3489 .release = ffs_attr_release,
3490};
3491
Bhumika Goyal97363902017-10-16 17:18:41 +02003492static const struct config_item_type ffs_func_type = {
Andrzej Pietrasiewiczb6584992013-12-03 15:15:36 +01003493 .ct_item_ops = &ffs_item_ops,
3494 .ct_owner = THIS_MODULE,
3495};
3496
3497
Andrzej Pietrasiewicz5920cda2013-12-03 15:15:33 +01003498/* Function registration interface ******************************************/
3499
Andrzej Pietrasiewicz5920cda2013-12-03 15:15:33 +01003500static void ffs_free_inst(struct usb_function_instance *f)
3501{
3502 struct f_fs_opts *opts;
3503
3504 opts = to_f_fs_opts(f);
3505 ffs_dev_lock();
Andrzej Pietrasiewiczda13a772014-01-13 16:49:38 +01003506 _ffs_free_dev(opts->dev);
Andrzej Pietrasiewicz5920cda2013-12-03 15:15:33 +01003507 ffs_dev_unlock();
3508 kfree(opts);
3509}
3510
Andrzej Pietrasiewiczb6584992013-12-03 15:15:36 +01003511static int ffs_set_inst_name(struct usb_function_instance *fi, const char *name)
3512{
Michal Nazarewiczea920bb2017-03-10 22:45:58 +01003513 if (strlen(name) >= FIELD_SIZEOF(struct ffs_dev, name))
Andrzej Pietrasiewiczb6584992013-12-03 15:15:36 +01003514 return -ENAMETOOLONG;
Michal Nazarewiczea920bb2017-03-10 22:45:58 +01003515 return ffs_name_dev(to_f_fs_opts(fi)->dev, name);
Andrzej Pietrasiewiczb6584992013-12-03 15:15:36 +01003516}
3517
Andrzej Pietrasiewicz5920cda2013-12-03 15:15:33 +01003518static struct usb_function_instance *ffs_alloc_inst(void)
3519{
3520 struct f_fs_opts *opts;
3521 struct ffs_dev *dev;
3522
3523 opts = kzalloc(sizeof(*opts), GFP_KERNEL);
3524 if (!opts)
3525 return ERR_PTR(-ENOMEM);
3526
Andrzej Pietrasiewiczb6584992013-12-03 15:15:36 +01003527 opts->func_inst.set_inst_name = ffs_set_inst_name;
Andrzej Pietrasiewicz5920cda2013-12-03 15:15:33 +01003528 opts->func_inst.free_func_inst = ffs_free_inst;
3529 ffs_dev_lock();
Andrzej Pietrasiewiczda13a772014-01-13 16:49:38 +01003530 dev = _ffs_alloc_dev();
Andrzej Pietrasiewicz5920cda2013-12-03 15:15:33 +01003531 ffs_dev_unlock();
3532 if (IS_ERR(dev)) {
3533 kfree(opts);
3534 return ERR_CAST(dev);
3535 }
3536 opts->dev = dev;
Andrzej Pietrasiewiczb6584992013-12-03 15:15:36 +01003537 dev->opts = opts;
Andrzej Pietrasiewicz5920cda2013-12-03 15:15:33 +01003538
Andrzej Pietrasiewiczb6584992013-12-03 15:15:36 +01003539 config_group_init_type_name(&opts->func_inst.group, "",
3540 &ffs_func_type);
Andrzej Pietrasiewicz5920cda2013-12-03 15:15:33 +01003541 return &opts->func_inst;
3542}
3543
3544static void ffs_free(struct usb_function *f)
3545{
3546 kfree(ffs_func_from_usb(f));
3547}
3548
3549static void ffs_func_unbind(struct usb_configuration *c,
3550 struct usb_function *f)
3551{
3552 struct ffs_function *func = ffs_func_from_usb(f);
3553 struct ffs_data *ffs = func->ffs;
3554 struct f_fs_opts *opts =
3555 container_of(f->fi, struct f_fs_opts, func_inst);
3556 struct ffs_ep *ep = func->eps;
3557 unsigned count = ffs->eps_count;
3558 unsigned long flags;
3559
3560 ENTER();
3561 if (ffs->func == func) {
3562 ffs_func_eps_disable(func);
3563 ffs->func = NULL;
3564 }
3565
3566 if (!--opts->refcnt)
3567 functionfs_unbind(ffs);
3568
3569 /* cleanup after autoconfig */
3570 spin_lock_irqsave(&func->ffs->eps_lock, flags);
Vincent Pelletier08f37142017-01-09 13:46:00 +00003571 while (count--) {
Andrzej Pietrasiewicz5920cda2013-12-03 15:15:33 +01003572 if (ep->ep && ep->req)
3573 usb_ep_free_request(ep->ep, ep->req);
3574 ep->req = NULL;
3575 ++ep;
Vincent Pelletier08f37142017-01-09 13:46:00 +00003576 }
Andrzej Pietrasiewicz5920cda2013-12-03 15:15:33 +01003577 spin_unlock_irqrestore(&func->ffs->eps_lock, flags);
3578 kfree(func->eps);
3579 func->eps = NULL;
3580 /*
3581 * eps, descriptors and interfaces_nums are allocated in the
3582 * same chunk so only one free is required.
3583 */
3584 func->function.fs_descriptors = NULL;
3585 func->function.hs_descriptors = NULL;
Manu Gautam8d4e8972014-02-28 16:50:22 +05303586 func->function.ss_descriptors = NULL;
Andrzej Pietrasiewicz5920cda2013-12-03 15:15:33 +01003587 func->interfaces_nums = NULL;
3588
3589 ffs_event_add(ffs, FUNCTIONFS_UNBIND);
3590}
3591
3592static struct usb_function *ffs_alloc(struct usb_function_instance *fi)
3593{
3594 struct ffs_function *func;
3595
3596 ENTER();
3597
3598 func = kzalloc(sizeof(*func), GFP_KERNEL);
3599 if (unlikely(!func))
3600 return ERR_PTR(-ENOMEM);
3601
3602 func->function.name = "Function FS Gadget";
3603
3604 func->function.bind = ffs_func_bind;
3605 func->function.unbind = ffs_func_unbind;
3606 func->function.set_alt = ffs_func_set_alt;
3607 func->function.disable = ffs_func_disable;
3608 func->function.setup = ffs_func_setup;
Felix Hädicke54dfce62016-06-22 01:12:07 +02003609 func->function.req_match = ffs_func_req_match;
Andrzej Pietrasiewicz5920cda2013-12-03 15:15:33 +01003610 func->function.suspend = ffs_func_suspend;
3611 func->function.resume = ffs_func_resume;
3612 func->function.free_func = ffs_free;
3613
3614 return &func->function;
3615}
3616
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01003617/*
3618 * ffs_lock must be taken by the caller of this function
3619 */
Andrzej Pietrasiewiczda13a772014-01-13 16:49:38 +01003620static struct ffs_dev *_ffs_alloc_dev(void)
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01003621{
3622 struct ffs_dev *dev;
3623 int ret;
3624
Andrzej Pietrasiewiczda13a772014-01-13 16:49:38 +01003625 if (_ffs_get_single_dev())
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01003626 return ERR_PTR(-EBUSY);
3627
3628 dev = kzalloc(sizeof(*dev), GFP_KERNEL);
3629 if (!dev)
3630 return ERR_PTR(-ENOMEM);
3631
3632 if (list_empty(&ffs_devices)) {
3633 ret = functionfs_init();
3634 if (ret) {
3635 kfree(dev);
3636 return ERR_PTR(ret);
3637 }
3638 }
3639
3640 list_add(&dev->entry, &ffs_devices);
3641
3642 return dev;
3643}
3644
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01003645int ffs_name_dev(struct ffs_dev *dev, const char *name)
3646{
Michal Nazarewiczea920bb2017-03-10 22:45:58 +01003647 struct ffs_dev *existing;
3648 int ret = 0;
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01003649
3650 ffs_dev_lock();
Michal Nazarewiczea920bb2017-03-10 22:45:58 +01003651
3652 existing = _ffs_do_find_dev(name);
3653 if (!existing)
3654 strlcpy(dev->name, name, ARRAY_SIZE(dev->name));
3655 else if (existing != dev)
3656 ret = -EBUSY;
3657
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01003658 ffs_dev_unlock();
3659
3660 return ret;
3661}
Felipe Balbi0700faa2014-04-01 13:19:32 -05003662EXPORT_SYMBOL_GPL(ffs_name_dev);
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01003663
3664int ffs_single_dev(struct ffs_dev *dev)
3665{
3666 int ret;
3667
3668 ret = 0;
3669 ffs_dev_lock();
3670
3671 if (!list_is_singular(&ffs_devices))
3672 ret = -EBUSY;
3673 else
3674 dev->single = true;
3675
3676 ffs_dev_unlock();
3677 return ret;
3678}
Felipe Balbi0700faa2014-04-01 13:19:32 -05003679EXPORT_SYMBOL_GPL(ffs_single_dev);
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01003680
3681/*
3682 * ffs_lock must be taken by the caller of this function
3683 */
Andrzej Pietrasiewiczda13a772014-01-13 16:49:38 +01003684static void _ffs_free_dev(struct ffs_dev *dev)
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01003685{
3686 list_del(&dev->entry);
Jim Baxter3262ad82016-09-08 11:18:16 +02003687
3688 /* Clear the private_data pointer to stop incorrect dev access */
3689 if (dev->ffs_data)
3690 dev->ffs_data->private_data = NULL;
3691
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01003692 kfree(dev);
3693 if (list_empty(&ffs_devices))
3694 functionfs_cleanup();
3695}
3696
3697static void *ffs_acquire_dev(const char *dev_name)
3698{
3699 struct ffs_dev *ffs_dev;
3700
3701 ENTER();
3702 ffs_dev_lock();
3703
Andrzej Pietrasiewiczda13a772014-01-13 16:49:38 +01003704 ffs_dev = _ffs_find_dev(dev_name);
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01003705 if (!ffs_dev)
Krzysztof Opasiakd668b4f2014-05-21 14:05:35 +02003706 ffs_dev = ERR_PTR(-ENOENT);
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01003707 else if (ffs_dev->mounted)
3708 ffs_dev = ERR_PTR(-EBUSY);
Andrzej Pietrasiewicz5920cda2013-12-03 15:15:33 +01003709 else if (ffs_dev->ffs_acquire_dev_callback &&
3710 ffs_dev->ffs_acquire_dev_callback(ffs_dev))
Krzysztof Opasiakd668b4f2014-05-21 14:05:35 +02003711 ffs_dev = ERR_PTR(-ENOENT);
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01003712 else
3713 ffs_dev->mounted = true;
3714
3715 ffs_dev_unlock();
3716 return ffs_dev;
3717}
3718
3719static void ffs_release_dev(struct ffs_data *ffs_data)
3720{
3721 struct ffs_dev *ffs_dev;
3722
3723 ENTER();
3724 ffs_dev_lock();
3725
3726 ffs_dev = ffs_data->private_data;
Andrzej Pietrasiewiczea365922014-01-13 16:49:35 +01003727 if (ffs_dev) {
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01003728 ffs_dev->mounted = false;
Andrzej Pietrasiewiczea365922014-01-13 16:49:35 +01003729
3730 if (ffs_dev->ffs_release_dev_callback)
3731 ffs_dev->ffs_release_dev_callback(ffs_dev);
3732 }
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01003733
3734 ffs_dev_unlock();
3735}
3736
3737static int ffs_ready(struct ffs_data *ffs)
3738{
3739 struct ffs_dev *ffs_obj;
3740 int ret = 0;
3741
3742 ENTER();
3743 ffs_dev_lock();
3744
3745 ffs_obj = ffs->private_data;
3746 if (!ffs_obj) {
3747 ret = -EINVAL;
3748 goto done;
3749 }
3750 if (WARN_ON(ffs_obj->desc_ready)) {
3751 ret = -EBUSY;
3752 goto done;
3753 }
3754
3755 ffs_obj->desc_ready = true;
3756 ffs_obj->ffs_data = ffs;
3757
Krzysztof Opasiak49a79d82015-05-22 17:25:18 +02003758 if (ffs_obj->ffs_ready_callback) {
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01003759 ret = ffs_obj->ffs_ready_callback(ffs);
Krzysztof Opasiak49a79d82015-05-22 17:25:18 +02003760 if (ret)
3761 goto done;
3762 }
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01003763
Krzysztof Opasiak49a79d82015-05-22 17:25:18 +02003764 set_bit(FFS_FL_CALL_CLOSED_CALLBACK, &ffs->flags);
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01003765done:
3766 ffs_dev_unlock();
3767 return ret;
3768}
3769
3770static void ffs_closed(struct ffs_data *ffs)
3771{
3772 struct ffs_dev *ffs_obj;
Rui Miguel Silvaf14e9ad2015-05-20 14:52:40 +01003773 struct f_fs_opts *opts;
Baolin Wangb3ce3ce2016-12-08 19:55:22 +08003774 struct config_item *ci;
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01003775
3776 ENTER();
3777 ffs_dev_lock();
3778
3779 ffs_obj = ffs->private_data;
3780 if (!ffs_obj)
3781 goto done;
3782
3783 ffs_obj->desc_ready = false;
Andrew Gabbasovcdafb6d2017-11-08 10:13:15 -07003784 ffs_obj->ffs_data = NULL;
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01003785
Krzysztof Opasiak49a79d82015-05-22 17:25:18 +02003786 if (test_and_clear_bit(FFS_FL_CALL_CLOSED_CALLBACK, &ffs->flags) &&
3787 ffs_obj->ffs_closed_callback)
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01003788 ffs_obj->ffs_closed_callback(ffs);
Andrzej Pietrasiewiczb6584992013-12-03 15:15:36 +01003789
Rui Miguel Silvaf14e9ad2015-05-20 14:52:40 +01003790 if (ffs_obj->opts)
3791 opts = ffs_obj->opts;
3792 else
3793 goto done;
3794
3795 if (opts->no_configfs || !opts->func_inst.group.cg_item.ci_parent
Peter Zijlstra2c935bc2016-11-14 17:29:48 +01003796 || !kref_read(&opts->func_inst.group.cg_item.ci_kref))
Andrzej Pietrasiewiczb6584992013-12-03 15:15:36 +01003797 goto done;
3798
Baolin Wangb3ce3ce2016-12-08 19:55:22 +08003799 ci = opts->func_inst.group.cg_item.ci_parent->ci_parent;
3800 ffs_dev_unlock();
3801
Hemant Kumarce5bf9a2018-01-09 12:30:53 +05303802 if (test_bit(FFS_FL_BOUND, &ffs->flags))
3803 unregister_gadget_item(ci);
Baolin Wangb3ce3ce2016-12-08 19:55:22 +08003804 return;
Andrzej Pietrasiewicz4b187fc2013-12-03 15:15:32 +01003805done:
3806 ffs_dev_unlock();
3807}
3808
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02003809/* Misc helper functions ****************************************************/
3810
3811static int ffs_mutex_lock(struct mutex *mutex, unsigned nonblock)
3812{
3813 return nonblock
3814 ? likely(mutex_trylock(mutex)) ? 0 : -EAGAIN
3815 : mutex_lock_interruptible(mutex);
3816}
3817
Al Viro260ef312012-09-26 21:43:45 -04003818static char *ffs_prepare_buffer(const char __user *buf, size_t len)
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02003819{
3820 char *data;
3821
3822 if (unlikely(!len))
3823 return NULL;
3824
3825 data = kmalloc(len, GFP_KERNEL);
3826 if (unlikely(!data))
3827 return ERR_PTR(-ENOMEM);
3828
Daniel Walter7fe9a932015-11-18 17:15:49 +01003829 if (unlikely(copy_from_user(data, buf, len))) {
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02003830 kfree(data);
3831 return ERR_PTR(-EFAULT);
3832 }
3833
Michal Nazarewiczaa02f172010-11-17 17:09:47 +01003834 pr_vdebug("Buffer from user space:\n");
Michal Nazarewiczddf8abd2010-05-05 12:53:14 +02003835 ffs_dump_mem("", data, len);
3836
3837 return data;
3838}
Andrzej Pietrasiewicz5920cda2013-12-03 15:15:33 +01003839
Andrzej Pietrasiewicz5920cda2013-12-03 15:15:33 +01003840DECLARE_USB_FUNCTION_INIT(ffs, ffs_alloc_inst, ffs_alloc);
3841MODULE_LICENSE("GPL");
3842MODULE_AUTHOR("Michal Nazarewicz");