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