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