xref: /openbmc/linux/drivers/usb/gadget/configfs.c (revision 875e5771536f8f631f38f0c6090a108cd611fcf3)
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/configfs.h>
3 #include <linux/module.h>
4 #include <linux/slab.h>
5 #include <linux/device.h>
6 #include <linux/kstrtox.h>
7 #include <linux/nls.h>
8 #include <linux/usb/composite.h>
9 #include <linux/usb/gadget_configfs.h>
10 #include <linux/usb/webusb.h>
11 #include "configfs.h"
12 #include "u_f.h"
13 #include "u_os_desc.h"
14 
check_user_usb_string(const char * name,struct usb_gadget_strings * stringtab_dev)15 int check_user_usb_string(const char *name,
16 		struct usb_gadget_strings *stringtab_dev)
17 {
18 	u16 num;
19 	int ret;
20 
21 	ret = kstrtou16(name, 0, &num);
22 	if (ret)
23 		return ret;
24 
25 	if (!usb_validate_langid(num))
26 		return -EINVAL;
27 
28 	stringtab_dev->language = num;
29 	return 0;
30 }
31 
32 #define MAX_NAME_LEN	40
33 #define MAX_USB_STRING_LANGS 2
34 
35 static const struct usb_descriptor_header *otg_desc[2];
36 
37 struct gadget_info {
38 	struct config_group group;
39 	struct config_group functions_group;
40 	struct config_group configs_group;
41 	struct config_group strings_group;
42 	struct config_group os_desc_group;
43 	struct config_group webusb_group;
44 
45 	struct mutex lock;
46 	struct usb_gadget_strings *gstrings[MAX_USB_STRING_LANGS + 1];
47 	struct list_head string_list;
48 	struct list_head available_func;
49 
50 	struct usb_composite_driver composite;
51 	struct usb_composite_dev cdev;
52 	bool use_os_desc;
53 	char b_vendor_code;
54 	char qw_sign[OS_STRING_QW_SIGN_LEN];
55 	bool use_webusb;
56 	u16 bcd_webusb_version;
57 	u8 b_webusb_vendor_code;
58 	char landing_page[WEBUSB_URL_RAW_MAX_LENGTH];
59 
60 	spinlock_t spinlock;
61 	bool unbind;
62 };
63 
to_gadget_info(struct config_item * item)64 static inline struct gadget_info *to_gadget_info(struct config_item *item)
65 {
66 	return container_of(to_config_group(item), struct gadget_info, group);
67 }
68 
69 struct config_usb_cfg {
70 	struct config_group group;
71 	struct config_group strings_group;
72 	struct list_head string_list;
73 	struct usb_configuration c;
74 	struct list_head func_list;
75 	struct usb_gadget_strings *gstrings[MAX_USB_STRING_LANGS + 1];
76 };
77 
to_config_usb_cfg(struct config_item * item)78 static inline struct config_usb_cfg *to_config_usb_cfg(struct config_item *item)
79 {
80 	return container_of(to_config_group(item), struct config_usb_cfg,
81 			group);
82 }
83 
cfg_to_gadget_info(struct config_usb_cfg * cfg)84 static inline struct gadget_info *cfg_to_gadget_info(struct config_usb_cfg *cfg)
85 {
86 	return container_of(cfg->c.cdev, struct gadget_info, cdev);
87 }
88 
89 struct gadget_language {
90 	struct usb_gadget_strings stringtab_dev;
91 	struct usb_string strings[USB_GADGET_FIRST_AVAIL_IDX];
92 	char *manufacturer;
93 	char *product;
94 	char *serialnumber;
95 
96 	struct config_group group;
97 	struct list_head list;
98 	struct list_head gadget_strings;
99 	unsigned int nstrings;
100 };
101 
102 struct gadget_config_name {
103 	struct usb_gadget_strings stringtab_dev;
104 	struct usb_string strings;
105 	char *configuration;
106 
107 	struct config_group group;
108 	struct list_head list;
109 };
110 
111 #define USB_MAX_STRING_WITH_NULL_LEN	(USB_MAX_STRING_LEN+1)
112 
usb_string_copy(const char * s,char ** s_copy)113 static int usb_string_copy(const char *s, char **s_copy)
114 {
115 	int ret;
116 	char *str;
117 	char *copy = *s_copy;
118 
119 	ret = strlen(s);
120 	if (ret > USB_MAX_STRING_LEN)
121 		return -EOVERFLOW;
122 	if (ret < 1)
123 		return -EINVAL;
124 
125 	if (copy) {
126 		str = copy;
127 	} else {
128 		str = kmalloc(USB_MAX_STRING_WITH_NULL_LEN, GFP_KERNEL);
129 		if (!str)
130 			return -ENOMEM;
131 	}
132 	strcpy(str, s);
133 	if (str[ret - 1] == '\n')
134 		str[ret - 1] = '\0';
135 	*s_copy = str;
136 	return 0;
137 }
138 
139 #define GI_DEVICE_DESC_SIMPLE_R_u8(__name)	\
140 static ssize_t gadget_dev_desc_##__name##_show(struct config_item *item, \
141 			char *page)	\
142 {	\
143 	return sprintf(page, "0x%02x\n", \
144 		to_gadget_info(item)->cdev.desc.__name); \
145 }
146 
147 #define GI_DEVICE_DESC_SIMPLE_R_u16(__name)	\
148 static ssize_t gadget_dev_desc_##__name##_show(struct config_item *item, \
149 			char *page)	\
150 {	\
151 	return sprintf(page, "0x%04x\n", \
152 		le16_to_cpup(&to_gadget_info(item)->cdev.desc.__name)); \
153 }
154 
155 
156 #define GI_DEVICE_DESC_SIMPLE_W_u8(_name)		\
157 static ssize_t gadget_dev_desc_##_name##_store(struct config_item *item, \
158 		const char *page, size_t len)		\
159 {							\
160 	u8 val;						\
161 	int ret;					\
162 	ret = kstrtou8(page, 0, &val);			\
163 	if (ret)					\
164 		return ret;				\
165 	to_gadget_info(item)->cdev.desc._name = val;	\
166 	return len;					\
167 }
168 
169 #define GI_DEVICE_DESC_SIMPLE_W_u16(_name)	\
170 static ssize_t gadget_dev_desc_##_name##_store(struct config_item *item, \
171 		const char *page, size_t len)		\
172 {							\
173 	u16 val;					\
174 	int ret;					\
175 	ret = kstrtou16(page, 0, &val);			\
176 	if (ret)					\
177 		return ret;				\
178 	to_gadget_info(item)->cdev.desc._name = cpu_to_le16p(&val);	\
179 	return len;					\
180 }
181 
182 #define GI_DEVICE_DESC_SIMPLE_RW(_name, _type)	\
183 	GI_DEVICE_DESC_SIMPLE_R_##_type(_name)	\
184 	GI_DEVICE_DESC_SIMPLE_W_##_type(_name)
185 
186 GI_DEVICE_DESC_SIMPLE_R_u16(bcdUSB);
187 GI_DEVICE_DESC_SIMPLE_RW(bDeviceClass, u8);
188 GI_DEVICE_DESC_SIMPLE_RW(bDeviceSubClass, u8);
189 GI_DEVICE_DESC_SIMPLE_RW(bDeviceProtocol, u8);
190 GI_DEVICE_DESC_SIMPLE_RW(bMaxPacketSize0, u8);
191 GI_DEVICE_DESC_SIMPLE_RW(idVendor, u16);
192 GI_DEVICE_DESC_SIMPLE_RW(idProduct, u16);
193 GI_DEVICE_DESC_SIMPLE_R_u16(bcdDevice);
194 
is_valid_bcd(u16 bcd_val)195 static ssize_t is_valid_bcd(u16 bcd_val)
196 {
197 	if ((bcd_val & 0xf) > 9)
198 		return -EINVAL;
199 	if (((bcd_val >> 4) & 0xf) > 9)
200 		return -EINVAL;
201 	if (((bcd_val >> 8) & 0xf) > 9)
202 		return -EINVAL;
203 	if (((bcd_val >> 12) & 0xf) > 9)
204 		return -EINVAL;
205 	return 0;
206 }
207 
gadget_dev_desc_bcdDevice_store(struct config_item * item,const char * page,size_t len)208 static ssize_t gadget_dev_desc_bcdDevice_store(struct config_item *item,
209 		const char *page, size_t len)
210 {
211 	u16 bcdDevice;
212 	int ret;
213 
214 	ret = kstrtou16(page, 0, &bcdDevice);
215 	if (ret)
216 		return ret;
217 	ret = is_valid_bcd(bcdDevice);
218 	if (ret)
219 		return ret;
220 
221 	to_gadget_info(item)->cdev.desc.bcdDevice = cpu_to_le16(bcdDevice);
222 	return len;
223 }
224 
gadget_dev_desc_bcdUSB_store(struct config_item * item,const char * page,size_t len)225 static ssize_t gadget_dev_desc_bcdUSB_store(struct config_item *item,
226 		const char *page, size_t len)
227 {
228 	u16 bcdUSB;
229 	int ret;
230 
231 	ret = kstrtou16(page, 0, &bcdUSB);
232 	if (ret)
233 		return ret;
234 	ret = is_valid_bcd(bcdUSB);
235 	if (ret)
236 		return ret;
237 
238 	to_gadget_info(item)->cdev.desc.bcdUSB = cpu_to_le16(bcdUSB);
239 	return len;
240 }
241 
gadget_dev_desc_UDC_show(struct config_item * item,char * page)242 static ssize_t gadget_dev_desc_UDC_show(struct config_item *item, char *page)
243 {
244 	struct gadget_info *gi = to_gadget_info(item);
245 	char *udc_name;
246 	int ret;
247 
248 	mutex_lock(&gi->lock);
249 	udc_name = gi->composite.gadget_driver.udc_name;
250 	ret = sprintf(page, "%s\n", udc_name ?: "");
251 	mutex_unlock(&gi->lock);
252 
253 	return ret;
254 }
255 
unregister_gadget(struct gadget_info * gi)256 static int unregister_gadget(struct gadget_info *gi)
257 {
258 	int ret;
259 
260 	if (!gi->composite.gadget_driver.udc_name)
261 		return -ENODEV;
262 
263 	ret = usb_gadget_unregister_driver(&gi->composite.gadget_driver);
264 	if (ret)
265 		return ret;
266 	kfree(gi->composite.gadget_driver.udc_name);
267 	gi->composite.gadget_driver.udc_name = NULL;
268 	return 0;
269 }
270 
gadget_dev_desc_UDC_store(struct config_item * item,const char * page,size_t len)271 static ssize_t gadget_dev_desc_UDC_store(struct config_item *item,
272 		const char *page, size_t len)
273 {
274 	struct gadget_info *gi = to_gadget_info(item);
275 	char *name;
276 	int ret;
277 
278 	if (strlen(page) < len)
279 		return -EOVERFLOW;
280 
281 	name = kstrdup(page, GFP_KERNEL);
282 	if (!name)
283 		return -ENOMEM;
284 	if (name[len - 1] == '\n')
285 		name[len - 1] = '\0';
286 
287 	mutex_lock(&gi->lock);
288 
289 	if (!strlen(name)) {
290 		ret = unregister_gadget(gi);
291 		if (ret)
292 			goto err;
293 		kfree(name);
294 	} else {
295 		if (gi->composite.gadget_driver.udc_name) {
296 			ret = -EBUSY;
297 			goto err;
298 		}
299 		gi->composite.gadget_driver.udc_name = name;
300 		ret = usb_gadget_register_driver(&gi->composite.gadget_driver);
301 		if (ret) {
302 			gi->composite.gadget_driver.udc_name = NULL;
303 			goto err;
304 		}
305 	}
306 	mutex_unlock(&gi->lock);
307 	return len;
308 err:
309 	kfree(name);
310 	mutex_unlock(&gi->lock);
311 	return ret;
312 }
313 
gadget_dev_desc_max_speed_show(struct config_item * item,char * page)314 static ssize_t gadget_dev_desc_max_speed_show(struct config_item *item,
315 					      char *page)
316 {
317 	enum usb_device_speed speed = to_gadget_info(item)->composite.max_speed;
318 
319 	return sprintf(page, "%s\n", usb_speed_string(speed));
320 }
321 
gadget_dev_desc_max_speed_store(struct config_item * item,const char * page,size_t len)322 static ssize_t gadget_dev_desc_max_speed_store(struct config_item *item,
323 					       const char *page, size_t len)
324 {
325 	struct gadget_info *gi = to_gadget_info(item);
326 
327 	mutex_lock(&gi->lock);
328 
329 	/* Prevent changing of max_speed after the driver is binded */
330 	if (gi->composite.gadget_driver.udc_name)
331 		goto err;
332 
333 	if (strncmp(page, "super-speed-plus", 16) == 0)
334 		gi->composite.max_speed = USB_SPEED_SUPER_PLUS;
335 	else if (strncmp(page, "super-speed", 11) == 0)
336 		gi->composite.max_speed = USB_SPEED_SUPER;
337 	else if (strncmp(page, "high-speed", 10) == 0)
338 		gi->composite.max_speed = USB_SPEED_HIGH;
339 	else if (strncmp(page, "full-speed", 10) == 0)
340 		gi->composite.max_speed = USB_SPEED_FULL;
341 	else if (strncmp(page, "low-speed", 9) == 0)
342 		gi->composite.max_speed = USB_SPEED_LOW;
343 	else
344 		goto err;
345 
346 	gi->composite.gadget_driver.max_speed = gi->composite.max_speed;
347 
348 	mutex_unlock(&gi->lock);
349 	return len;
350 err:
351 	mutex_unlock(&gi->lock);
352 	return -EINVAL;
353 }
354 
355 CONFIGFS_ATTR(gadget_dev_desc_, bDeviceClass);
356 CONFIGFS_ATTR(gadget_dev_desc_, bDeviceSubClass);
357 CONFIGFS_ATTR(gadget_dev_desc_, bDeviceProtocol);
358 CONFIGFS_ATTR(gadget_dev_desc_, bMaxPacketSize0);
359 CONFIGFS_ATTR(gadget_dev_desc_, idVendor);
360 CONFIGFS_ATTR(gadget_dev_desc_, idProduct);
361 CONFIGFS_ATTR(gadget_dev_desc_, bcdDevice);
362 CONFIGFS_ATTR(gadget_dev_desc_, bcdUSB);
363 CONFIGFS_ATTR(gadget_dev_desc_, UDC);
364 CONFIGFS_ATTR(gadget_dev_desc_, max_speed);
365 
366 static struct configfs_attribute *gadget_root_attrs[] = {
367 	&gadget_dev_desc_attr_bDeviceClass,
368 	&gadget_dev_desc_attr_bDeviceSubClass,
369 	&gadget_dev_desc_attr_bDeviceProtocol,
370 	&gadget_dev_desc_attr_bMaxPacketSize0,
371 	&gadget_dev_desc_attr_idVendor,
372 	&gadget_dev_desc_attr_idProduct,
373 	&gadget_dev_desc_attr_bcdDevice,
374 	&gadget_dev_desc_attr_bcdUSB,
375 	&gadget_dev_desc_attr_UDC,
376 	&gadget_dev_desc_attr_max_speed,
377 	NULL,
378 };
379 
to_gadget_language(struct config_item * item)380 static inline struct gadget_language *to_gadget_language(struct config_item *item)
381 {
382 	return container_of(to_config_group(item), struct gadget_language,
383 			 group);
384 }
385 
to_gadget_config_name(struct config_item * item)386 static inline struct gadget_config_name *to_gadget_config_name(
387 		struct config_item *item)
388 {
389 	return container_of(to_config_group(item), struct gadget_config_name,
390 			 group);
391 }
392 
to_usb_function_instance(struct config_item * item)393 static inline struct usb_function_instance *to_usb_function_instance(
394 		struct config_item *item)
395 {
396 	return container_of(to_config_group(item),
397 			 struct usb_function_instance, group);
398 }
399 
gadget_info_attr_release(struct config_item * item)400 static void gadget_info_attr_release(struct config_item *item)
401 {
402 	struct gadget_info *gi = to_gadget_info(item);
403 
404 	WARN_ON(!list_empty(&gi->cdev.configs));
405 	WARN_ON(!list_empty(&gi->string_list));
406 	WARN_ON(!list_empty(&gi->available_func));
407 	kfree(gi->composite.gadget_driver.function);
408 	kfree(gi->composite.gadget_driver.driver.name);
409 	kfree(gi);
410 }
411 
412 static struct configfs_item_operations gadget_root_item_ops = {
413 	.release                = gadget_info_attr_release,
414 };
415 
gadget_config_attr_release(struct config_item * item)416 static void gadget_config_attr_release(struct config_item *item)
417 {
418 	struct config_usb_cfg *cfg = to_config_usb_cfg(item);
419 
420 	WARN_ON(!list_empty(&cfg->c.functions));
421 	list_del(&cfg->c.list);
422 	kfree(cfg->c.label);
423 	kfree(cfg);
424 }
425 
config_usb_cfg_link(struct config_item * usb_cfg_ci,struct config_item * usb_func_ci)426 static int config_usb_cfg_link(
427 	struct config_item *usb_cfg_ci,
428 	struct config_item *usb_func_ci)
429 {
430 	struct config_usb_cfg *cfg = to_config_usb_cfg(usb_cfg_ci);
431 	struct gadget_info *gi = cfg_to_gadget_info(cfg);
432 
433 	struct usb_function_instance *fi =
434 			to_usb_function_instance(usb_func_ci);
435 	struct usb_function_instance *a_fi = NULL, *iter;
436 	struct usb_function *f;
437 	int ret;
438 
439 	mutex_lock(&gi->lock);
440 	/*
441 	 * Make sure this function is from within our _this_ gadget and not
442 	 * from another gadget or a random directory.
443 	 * Also a function instance can only be linked once.
444 	 */
445 
446 	if (gi->composite.gadget_driver.udc_name) {
447 		ret = -EINVAL;
448 		goto out;
449 	}
450 
451 	list_for_each_entry(iter, &gi->available_func, cfs_list) {
452 		if (iter != fi)
453 			continue;
454 		a_fi = iter;
455 		break;
456 	}
457 	if (!a_fi) {
458 		ret = -EINVAL;
459 		goto out;
460 	}
461 
462 	list_for_each_entry(f, &cfg->func_list, list) {
463 		if (f->fi == fi) {
464 			ret = -EEXIST;
465 			goto out;
466 		}
467 	}
468 
469 	f = usb_get_function(fi);
470 	if (IS_ERR(f)) {
471 		ret = PTR_ERR(f);
472 		goto out;
473 	}
474 
475 	/* stash the function until we bind it to the gadget */
476 	list_add_tail(&f->list, &cfg->func_list);
477 	ret = 0;
478 out:
479 	mutex_unlock(&gi->lock);
480 	return ret;
481 }
482 
config_usb_cfg_unlink(struct config_item * usb_cfg_ci,struct config_item * usb_func_ci)483 static void config_usb_cfg_unlink(
484 	struct config_item *usb_cfg_ci,
485 	struct config_item *usb_func_ci)
486 {
487 	struct config_usb_cfg *cfg = to_config_usb_cfg(usb_cfg_ci);
488 	struct gadget_info *gi = cfg_to_gadget_info(cfg);
489 
490 	struct usb_function_instance *fi =
491 			to_usb_function_instance(usb_func_ci);
492 	struct usb_function *f;
493 
494 	/*
495 	 * ideally I would like to forbid to unlink functions while a gadget is
496 	 * bound to an UDC. Since this isn't possible at the moment, we simply
497 	 * force an unbind, the function is available here and then we can
498 	 * remove the function.
499 	 */
500 	mutex_lock(&gi->lock);
501 	if (gi->composite.gadget_driver.udc_name)
502 		unregister_gadget(gi);
503 	WARN_ON(gi->composite.gadget_driver.udc_name);
504 
505 	list_for_each_entry(f, &cfg->func_list, list) {
506 		if (f->fi == fi) {
507 			list_del(&f->list);
508 			usb_put_function(f);
509 			mutex_unlock(&gi->lock);
510 			return;
511 		}
512 	}
513 	mutex_unlock(&gi->lock);
514 	WARN(1, "Unable to locate function to unbind\n");
515 }
516 
517 static struct configfs_item_operations gadget_config_item_ops = {
518 	.release                = gadget_config_attr_release,
519 	.allow_link             = config_usb_cfg_link,
520 	.drop_link              = config_usb_cfg_unlink,
521 };
522 
523 
gadget_config_desc_MaxPower_show(struct config_item * item,char * page)524 static ssize_t gadget_config_desc_MaxPower_show(struct config_item *item,
525 		char *page)
526 {
527 	struct config_usb_cfg *cfg = to_config_usb_cfg(item);
528 
529 	return sprintf(page, "%u\n", cfg->c.MaxPower);
530 }
531 
gadget_config_desc_MaxPower_store(struct config_item * item,const char * page,size_t len)532 static ssize_t gadget_config_desc_MaxPower_store(struct config_item *item,
533 		const char *page, size_t len)
534 {
535 	struct config_usb_cfg *cfg = to_config_usb_cfg(item);
536 	u16 val;
537 	int ret;
538 	ret = kstrtou16(page, 0, &val);
539 	if (ret)
540 		return ret;
541 	if (DIV_ROUND_UP(val, 8) > 0xff)
542 		return -ERANGE;
543 	cfg->c.MaxPower = val;
544 	return len;
545 }
546 
gadget_config_desc_bmAttributes_show(struct config_item * item,char * page)547 static ssize_t gadget_config_desc_bmAttributes_show(struct config_item *item,
548 		char *page)
549 {
550 	struct config_usb_cfg *cfg = to_config_usb_cfg(item);
551 
552 	return sprintf(page, "0x%02x\n", cfg->c.bmAttributes);
553 }
554 
gadget_config_desc_bmAttributes_store(struct config_item * item,const char * page,size_t len)555 static ssize_t gadget_config_desc_bmAttributes_store(struct config_item *item,
556 		const char *page, size_t len)
557 {
558 	struct config_usb_cfg *cfg = to_config_usb_cfg(item);
559 	u8 val;
560 	int ret;
561 	ret = kstrtou8(page, 0, &val);
562 	if (ret)
563 		return ret;
564 	if (!(val & USB_CONFIG_ATT_ONE))
565 		return -EINVAL;
566 	if (val & ~(USB_CONFIG_ATT_ONE | USB_CONFIG_ATT_SELFPOWER |
567 				USB_CONFIG_ATT_WAKEUP))
568 		return -EINVAL;
569 	cfg->c.bmAttributes = val;
570 	return len;
571 }
572 
573 CONFIGFS_ATTR(gadget_config_desc_, MaxPower);
574 CONFIGFS_ATTR(gadget_config_desc_, bmAttributes);
575 
576 static struct configfs_attribute *gadget_config_attrs[] = {
577 	&gadget_config_desc_attr_MaxPower,
578 	&gadget_config_desc_attr_bmAttributes,
579 	NULL,
580 };
581 
582 static const struct config_item_type gadget_config_type = {
583 	.ct_item_ops	= &gadget_config_item_ops,
584 	.ct_attrs	= gadget_config_attrs,
585 	.ct_owner	= THIS_MODULE,
586 };
587 
588 static const struct config_item_type gadget_root_type = {
589 	.ct_item_ops	= &gadget_root_item_ops,
590 	.ct_attrs	= gadget_root_attrs,
591 	.ct_owner	= THIS_MODULE,
592 };
593 
composite_init_dev(struct usb_composite_dev * cdev)594 static void composite_init_dev(struct usb_composite_dev *cdev)
595 {
596 	spin_lock_init(&cdev->lock);
597 	INIT_LIST_HEAD(&cdev->configs);
598 	INIT_LIST_HEAD(&cdev->gstrings);
599 }
600 
function_make(struct config_group * group,const char * name)601 static struct config_group *function_make(
602 		struct config_group *group,
603 		const char *name)
604 {
605 	struct gadget_info *gi;
606 	struct usb_function_instance *fi;
607 	char buf[MAX_NAME_LEN];
608 	char *func_name;
609 	char *instance_name;
610 	int ret;
611 
612 	ret = snprintf(buf, MAX_NAME_LEN, "%s", name);
613 	if (ret >= MAX_NAME_LEN)
614 		return ERR_PTR(-ENAMETOOLONG);
615 
616 	func_name = buf;
617 	instance_name = strchr(func_name, '.');
618 	if (!instance_name) {
619 		pr_err("Unable to locate . in FUNC.INSTANCE\n");
620 		return ERR_PTR(-EINVAL);
621 	}
622 	*instance_name = '\0';
623 	instance_name++;
624 
625 	fi = usb_get_function_instance(func_name);
626 	if (IS_ERR(fi))
627 		return ERR_CAST(fi);
628 
629 	ret = config_item_set_name(&fi->group.cg_item, "%s", name);
630 	if (ret) {
631 		usb_put_function_instance(fi);
632 		return ERR_PTR(ret);
633 	}
634 	if (fi->set_inst_name) {
635 		ret = fi->set_inst_name(fi, instance_name);
636 		if (ret) {
637 			usb_put_function_instance(fi);
638 			return ERR_PTR(ret);
639 		}
640 	}
641 
642 	gi = container_of(group, struct gadget_info, functions_group);
643 
644 	mutex_lock(&gi->lock);
645 	list_add_tail(&fi->cfs_list, &gi->available_func);
646 	mutex_unlock(&gi->lock);
647 	return &fi->group;
648 }
649 
function_drop(struct config_group * group,struct config_item * item)650 static void function_drop(
651 		struct config_group *group,
652 		struct config_item *item)
653 {
654 	struct usb_function_instance *fi = to_usb_function_instance(item);
655 	struct gadget_info *gi;
656 
657 	gi = container_of(group, struct gadget_info, functions_group);
658 
659 	mutex_lock(&gi->lock);
660 	list_del(&fi->cfs_list);
661 	mutex_unlock(&gi->lock);
662 	config_item_put(item);
663 }
664 
665 static struct configfs_group_operations functions_ops = {
666 	.make_group     = &function_make,
667 	.drop_item      = &function_drop,
668 };
669 
670 static const struct config_item_type functions_type = {
671 	.ct_group_ops   = &functions_ops,
672 	.ct_owner       = THIS_MODULE,
673 };
674 
675 GS_STRINGS_RW(gadget_config_name, configuration);
676 
677 static struct configfs_attribute *gadget_config_name_langid_attrs[] = {
678 	&gadget_config_name_attr_configuration,
679 	NULL,
680 };
681 
gadget_config_name_attr_release(struct config_item * item)682 static void gadget_config_name_attr_release(struct config_item *item)
683 {
684 	struct gadget_config_name *cn = to_gadget_config_name(item);
685 
686 	kfree(cn->configuration);
687 
688 	list_del(&cn->list);
689 	kfree(cn);
690 }
691 
692 USB_CONFIG_STRING_RW_OPS(gadget_config_name);
693 USB_CONFIG_STRINGS_LANG(gadget_config_name, config_usb_cfg);
694 
config_desc_make(struct config_group * group,const char * name)695 static struct config_group *config_desc_make(
696 		struct config_group *group,
697 		const char *name)
698 {
699 	struct gadget_info *gi;
700 	struct config_usb_cfg *cfg;
701 	char buf[MAX_NAME_LEN];
702 	char *num_str;
703 	u8 num;
704 	int ret;
705 
706 	gi = container_of(group, struct gadget_info, configs_group);
707 	ret = snprintf(buf, MAX_NAME_LEN, "%s", name);
708 	if (ret >= MAX_NAME_LEN)
709 		return ERR_PTR(-ENAMETOOLONG);
710 
711 	num_str = strchr(buf, '.');
712 	if (!num_str) {
713 		pr_err("Unable to locate . in name.bConfigurationValue\n");
714 		return ERR_PTR(-EINVAL);
715 	}
716 
717 	*num_str = '\0';
718 	num_str++;
719 
720 	if (!strlen(buf))
721 		return ERR_PTR(-EINVAL);
722 
723 	ret = kstrtou8(num_str, 0, &num);
724 	if (ret)
725 		return ERR_PTR(ret);
726 
727 	cfg = kzalloc(sizeof(*cfg), GFP_KERNEL);
728 	if (!cfg)
729 		return ERR_PTR(-ENOMEM);
730 	cfg->c.label = kstrdup(buf, GFP_KERNEL);
731 	if (!cfg->c.label) {
732 		ret = -ENOMEM;
733 		goto err;
734 	}
735 	cfg->c.bConfigurationValue = num;
736 	cfg->c.MaxPower = CONFIG_USB_GADGET_VBUS_DRAW;
737 	cfg->c.bmAttributes = USB_CONFIG_ATT_ONE;
738 	INIT_LIST_HEAD(&cfg->string_list);
739 	INIT_LIST_HEAD(&cfg->func_list);
740 
741 	config_group_init_type_name(&cfg->group, name,
742 				&gadget_config_type);
743 
744 	config_group_init_type_name(&cfg->strings_group, "strings",
745 			&gadget_config_name_strings_type);
746 	configfs_add_default_group(&cfg->strings_group, &cfg->group);
747 
748 	ret = usb_add_config_only(&gi->cdev, &cfg->c);
749 	if (ret)
750 		goto err;
751 
752 	return &cfg->group;
753 err:
754 	kfree(cfg->c.label);
755 	kfree(cfg);
756 	return ERR_PTR(ret);
757 }
758 
config_desc_drop(struct config_group * group,struct config_item * item)759 static void config_desc_drop(
760 		struct config_group *group,
761 		struct config_item *item)
762 {
763 	config_item_put(item);
764 }
765 
766 static struct configfs_group_operations config_desc_ops = {
767 	.make_group     = &config_desc_make,
768 	.drop_item      = &config_desc_drop,
769 };
770 
771 static const struct config_item_type config_desc_type = {
772 	.ct_group_ops   = &config_desc_ops,
773 	.ct_owner       = THIS_MODULE,
774 };
775 
776 GS_STRINGS_RW(gadget_language, manufacturer);
777 GS_STRINGS_RW(gadget_language, product);
778 GS_STRINGS_RW(gadget_language, serialnumber);
779 
780 static struct configfs_attribute *gadget_language_langid_attrs[] = {
781 	&gadget_language_attr_manufacturer,
782 	&gadget_language_attr_product,
783 	&gadget_language_attr_serialnumber,
784 	NULL,
785 };
786 
gadget_language_attr_release(struct config_item * item)787 static void gadget_language_attr_release(struct config_item *item)
788 {
789 	struct gadget_language *gs = to_gadget_language(item);
790 
791 	kfree(gs->manufacturer);
792 	kfree(gs->product);
793 	kfree(gs->serialnumber);
794 
795 	list_del(&gs->list);
796 	kfree(gs);
797 }
798 
799 static struct configfs_item_operations gadget_language_langid_item_ops = {
800 	.release                = gadget_language_attr_release,
801 };
802 
gadget_string_id_show(struct config_item * item,char * page)803 static ssize_t gadget_string_id_show(struct config_item *item, char *page)
804 {
805 	struct gadget_string *string = to_gadget_string(item);
806 	int ret;
807 
808 	ret = sprintf(page, "%u\n", string->usb_string.id);
809 	return ret;
810 }
811 CONFIGFS_ATTR_RO(gadget_string_, id);
812 
gadget_string_s_show(struct config_item * item,char * page)813 static ssize_t gadget_string_s_show(struct config_item *item, char *page)
814 {
815 	struct gadget_string *string = to_gadget_string(item);
816 	int ret;
817 
818 	ret = snprintf(page, sizeof(string->string), "%s\n", string->string);
819 	return ret;
820 }
821 
gadget_string_s_store(struct config_item * item,const char * page,size_t len)822 static ssize_t gadget_string_s_store(struct config_item *item, const char *page,
823 				     size_t len)
824 {
825 	struct gadget_string *string = to_gadget_string(item);
826 	int size = min(sizeof(string->string), len + 1);
827 	ssize_t cpy_len;
828 
829 	if (len > USB_MAX_STRING_LEN)
830 		return -EINVAL;
831 
832 	cpy_len = strscpy(string->string, page, size);
833 	if (cpy_len > 0 && string->string[cpy_len - 1] == '\n')
834 		string->string[cpy_len - 1] = 0;
835 	return len;
836 }
837 CONFIGFS_ATTR(gadget_string_, s);
838 
839 static struct configfs_attribute *gadget_string_attrs[] = {
840 	&gadget_string_attr_id,
841 	&gadget_string_attr_s,
842 	NULL,
843 };
844 
gadget_string_release(struct config_item * item)845 static void gadget_string_release(struct config_item *item)
846 {
847 	struct gadget_string *string = to_gadget_string(item);
848 
849 	kfree(string);
850 }
851 
852 static struct configfs_item_operations gadget_string_item_ops = {
853 	.release	= gadget_string_release,
854 };
855 
856 static const struct config_item_type gadget_string_type = {
857 	.ct_item_ops	= &gadget_string_item_ops,
858 	.ct_attrs	= gadget_string_attrs,
859 	.ct_owner	= THIS_MODULE,
860 };
861 
gadget_language_string_make(struct config_group * group,const char * name)862 static struct config_item *gadget_language_string_make(struct config_group *group,
863 						       const char *name)
864 {
865 	struct gadget_language *language;
866 	struct gadget_string *string;
867 
868 	language = to_gadget_language(&group->cg_item);
869 
870 	string = kzalloc(sizeof(*string), GFP_KERNEL);
871 	if (!string)
872 		return ERR_PTR(-ENOMEM);
873 
874 	string->usb_string.id = language->nstrings++;
875 	string->usb_string.s = string->string;
876 	list_add_tail(&string->list, &language->gadget_strings);
877 
878 	config_item_init_type_name(&string->item, name, &gadget_string_type);
879 
880 	return &string->item;
881 }
882 
gadget_language_string_drop(struct config_group * group,struct config_item * item)883 static void gadget_language_string_drop(struct config_group *group,
884 					struct config_item *item)
885 {
886 	struct gadget_language *language;
887 	struct gadget_string *string;
888 	unsigned int i = USB_GADGET_FIRST_AVAIL_IDX;
889 
890 	language = to_gadget_language(&group->cg_item);
891 	string = to_gadget_string(item);
892 
893 	list_del(&string->list);
894 	language->nstrings--;
895 
896 	/* Reset the ids for the language's strings to guarantee a continuous set */
897 	list_for_each_entry(string, &language->gadget_strings, list)
898 		string->usb_string.id = i++;
899 }
900 
901 static struct configfs_group_operations gadget_language_langid_group_ops = {
902 	.make_item		= gadget_language_string_make,
903 	.drop_item		= gadget_language_string_drop,
904 };
905 
906 static struct config_item_type gadget_language_type = {
907 	.ct_item_ops	= &gadget_language_langid_item_ops,
908 	.ct_group_ops	= &gadget_language_langid_group_ops,
909 	.ct_attrs	= gadget_language_langid_attrs,
910 	.ct_owner	= THIS_MODULE,
911 };
912 
gadget_language_make(struct config_group * group,const char * name)913 static struct config_group *gadget_language_make(struct config_group *group,
914 						 const char *name)
915 {
916 	struct gadget_info *gi;
917 	struct gadget_language *gs;
918 	struct gadget_language *new;
919 	int langs = 0;
920 	int ret;
921 
922 	new = kzalloc(sizeof(*new), GFP_KERNEL);
923 	if (!new)
924 		return ERR_PTR(-ENOMEM);
925 
926 	ret = check_user_usb_string(name, &new->stringtab_dev);
927 	if (ret)
928 		goto err;
929 	config_group_init_type_name(&new->group, name,
930 				    &gadget_language_type);
931 
932 	gi = container_of(group, struct gadget_info, strings_group);
933 	ret = -EEXIST;
934 	list_for_each_entry(gs, &gi->string_list, list) {
935 		if (gs->stringtab_dev.language == new->stringtab_dev.language)
936 			goto err;
937 		langs++;
938 	}
939 	ret = -EOVERFLOW;
940 	if (langs >= MAX_USB_STRING_LANGS)
941 		goto err;
942 
943 	list_add_tail(&new->list, &gi->string_list);
944 	INIT_LIST_HEAD(&new->gadget_strings);
945 
946 	/* We have the default manufacturer, product and serialnumber strings */
947 	new->nstrings = 3;
948 	return &new->group;
949 err:
950 	kfree(new);
951 	return ERR_PTR(ret);
952 }
953 
gadget_language_drop(struct config_group * group,struct config_item * item)954 static void gadget_language_drop(struct config_group *group,
955 				 struct config_item *item)
956 {
957 	config_item_put(item);
958 }
959 
960 static struct configfs_group_operations gadget_language_group_ops = {
961 	.make_group     = &gadget_language_make,
962 	.drop_item      = &gadget_language_drop,
963 };
964 
965 static struct config_item_type gadget_language_strings_type = {
966 	.ct_group_ops   = &gadget_language_group_ops,
967 	.ct_owner       = THIS_MODULE,
968 };
969 
webusb_item_to_gadget_info(struct config_item * item)970 static inline struct gadget_info *webusb_item_to_gadget_info(
971 		struct config_item *item)
972 {
973 	return container_of(to_config_group(item),
974 			struct gadget_info, webusb_group);
975 }
976 
webusb_use_show(struct config_item * item,char * page)977 static ssize_t webusb_use_show(struct config_item *item, char *page)
978 {
979 	return sysfs_emit(page, "%d\n",
980 			webusb_item_to_gadget_info(item)->use_webusb);
981 }
982 
webusb_use_store(struct config_item * item,const char * page,size_t len)983 static ssize_t webusb_use_store(struct config_item *item, const char *page,
984 				 size_t len)
985 {
986 	struct gadget_info *gi = webusb_item_to_gadget_info(item);
987 	int ret;
988 	bool use;
989 
990 	ret = kstrtobool(page, &use);
991 	if (ret)
992 		return ret;
993 
994 	mutex_lock(&gi->lock);
995 	gi->use_webusb = use;
996 	mutex_unlock(&gi->lock);
997 
998 	return len;
999 }
1000 
webusb_bcdVersion_show(struct config_item * item,char * page)1001 static ssize_t webusb_bcdVersion_show(struct config_item *item, char *page)
1002 {
1003 	return sysfs_emit(page, "0x%04x\n",
1004 					webusb_item_to_gadget_info(item)->bcd_webusb_version);
1005 }
1006 
webusb_bcdVersion_store(struct config_item * item,const char * page,size_t len)1007 static ssize_t webusb_bcdVersion_store(struct config_item *item,
1008 		const char *page, size_t len)
1009 {
1010 	struct gadget_info *gi = webusb_item_to_gadget_info(item);
1011 	u16 bcdVersion;
1012 	int ret;
1013 
1014 	ret = kstrtou16(page, 0, &bcdVersion);
1015 	if (ret)
1016 		return ret;
1017 
1018 	ret = is_valid_bcd(bcdVersion);
1019 	if (ret)
1020 		return ret;
1021 
1022 	mutex_lock(&gi->lock);
1023 	gi->bcd_webusb_version = bcdVersion;
1024 	mutex_unlock(&gi->lock);
1025 
1026 	return len;
1027 }
1028 
webusb_bVendorCode_show(struct config_item * item,char * page)1029 static ssize_t webusb_bVendorCode_show(struct config_item *item, char *page)
1030 {
1031 	return sysfs_emit(page, "0x%02x\n",
1032 			webusb_item_to_gadget_info(item)->b_webusb_vendor_code);
1033 }
1034 
webusb_bVendorCode_store(struct config_item * item,const char * page,size_t len)1035 static ssize_t webusb_bVendorCode_store(struct config_item *item,
1036 					   const char *page, size_t len)
1037 {
1038 	struct gadget_info *gi = webusb_item_to_gadget_info(item);
1039 	int ret;
1040 	u8 b_vendor_code;
1041 
1042 	ret = kstrtou8(page, 0, &b_vendor_code);
1043 	if (ret)
1044 		return ret;
1045 
1046 	mutex_lock(&gi->lock);
1047 	gi->b_webusb_vendor_code = b_vendor_code;
1048 	mutex_unlock(&gi->lock);
1049 
1050 	return len;
1051 }
1052 
webusb_landingPage_show(struct config_item * item,char * page)1053 static ssize_t webusb_landingPage_show(struct config_item *item, char *page)
1054 {
1055 	return sysfs_emit(page, "%s\n", webusb_item_to_gadget_info(item)->landing_page);
1056 }
1057 
webusb_landingPage_store(struct config_item * item,const char * page,size_t len)1058 static ssize_t webusb_landingPage_store(struct config_item *item, const char *page,
1059 				     size_t len)
1060 {
1061 	struct gadget_info *gi = webusb_item_to_gadget_info(item);
1062 	unsigned int bytes_to_strip = 0;
1063 	int l = len;
1064 
1065 	if (!len)
1066 		return len;
1067 	if (page[l - 1] == '\n') {
1068 		--l;
1069 		++bytes_to_strip;
1070 	}
1071 
1072 	if (l > sizeof(gi->landing_page)) {
1073 		pr_err("webusb: landingPage URL too long\n");
1074 		return -EINVAL;
1075 	}
1076 
1077 	// validation
1078 	if (strncasecmp(page, "https://",  8) == 0)
1079 		bytes_to_strip = 8;
1080 	else if (strncasecmp(page, "http://", 7) == 0)
1081 		bytes_to_strip = 7;
1082 	else
1083 		bytes_to_strip = 0;
1084 
1085 	if (l > U8_MAX - WEBUSB_URL_DESCRIPTOR_HEADER_LENGTH + bytes_to_strip) {
1086 		pr_err("webusb: landingPage URL %d bytes too long for given URL scheme\n",
1087 			l - U8_MAX + WEBUSB_URL_DESCRIPTOR_HEADER_LENGTH - bytes_to_strip);
1088 		return -EINVAL;
1089 	}
1090 
1091 	mutex_lock(&gi->lock);
1092 	// ensure 0 bytes are set, in case the new landing page is shorter then the old one.
1093 	memcpy_and_pad(gi->landing_page, sizeof(gi->landing_page), page, l, 0);
1094 	mutex_unlock(&gi->lock);
1095 
1096 	return len;
1097 }
1098 
1099 CONFIGFS_ATTR(webusb_, use);
1100 CONFIGFS_ATTR(webusb_, bVendorCode);
1101 CONFIGFS_ATTR(webusb_, bcdVersion);
1102 CONFIGFS_ATTR(webusb_, landingPage);
1103 
1104 static struct configfs_attribute *webusb_attrs[] = {
1105 	&webusb_attr_use,
1106 	&webusb_attr_bcdVersion,
1107 	&webusb_attr_bVendorCode,
1108 	&webusb_attr_landingPage,
1109 	NULL,
1110 };
1111 
1112 static struct config_item_type webusb_type = {
1113 	.ct_attrs	= webusb_attrs,
1114 	.ct_owner	= THIS_MODULE,
1115 };
1116 
os_desc_item_to_gadget_info(struct config_item * item)1117 static inline struct gadget_info *os_desc_item_to_gadget_info(
1118 		struct config_item *item)
1119 {
1120 	return container_of(to_config_group(item),
1121 			struct gadget_info, os_desc_group);
1122 }
1123 
os_desc_use_show(struct config_item * item,char * page)1124 static ssize_t os_desc_use_show(struct config_item *item, char *page)
1125 {
1126 	return sprintf(page, "%d\n",
1127 			os_desc_item_to_gadget_info(item)->use_os_desc);
1128 }
1129 
os_desc_use_store(struct config_item * item,const char * page,size_t len)1130 static ssize_t os_desc_use_store(struct config_item *item, const char *page,
1131 				 size_t len)
1132 {
1133 	struct gadget_info *gi = os_desc_item_to_gadget_info(item);
1134 	int ret;
1135 	bool use;
1136 
1137 	ret = kstrtobool(page, &use);
1138 	if (ret)
1139 		return ret;
1140 
1141 	mutex_lock(&gi->lock);
1142 	gi->use_os_desc = use;
1143 	mutex_unlock(&gi->lock);
1144 
1145 	return len;
1146 }
1147 
os_desc_b_vendor_code_show(struct config_item * item,char * page)1148 static ssize_t os_desc_b_vendor_code_show(struct config_item *item, char *page)
1149 {
1150 	return sprintf(page, "0x%02x\n",
1151 			os_desc_item_to_gadget_info(item)->b_vendor_code);
1152 }
1153 
os_desc_b_vendor_code_store(struct config_item * item,const char * page,size_t len)1154 static ssize_t os_desc_b_vendor_code_store(struct config_item *item,
1155 					   const char *page, size_t len)
1156 {
1157 	struct gadget_info *gi = os_desc_item_to_gadget_info(item);
1158 	int ret;
1159 	u8 b_vendor_code;
1160 
1161 	ret = kstrtou8(page, 0, &b_vendor_code);
1162 	if (ret)
1163 		return ret;
1164 
1165 	mutex_lock(&gi->lock);
1166 	gi->b_vendor_code = b_vendor_code;
1167 	mutex_unlock(&gi->lock);
1168 
1169 	return len;
1170 }
1171 
os_desc_qw_sign_show(struct config_item * item,char * page)1172 static ssize_t os_desc_qw_sign_show(struct config_item *item, char *page)
1173 {
1174 	struct gadget_info *gi = os_desc_item_to_gadget_info(item);
1175 	int res;
1176 
1177 	res = utf16s_to_utf8s((wchar_t *) gi->qw_sign, OS_STRING_QW_SIGN_LEN,
1178 			      UTF16_LITTLE_ENDIAN, page, PAGE_SIZE - 1);
1179 	page[res++] = '\n';
1180 
1181 	return res;
1182 }
1183 
os_desc_qw_sign_store(struct config_item * item,const char * page,size_t len)1184 static ssize_t os_desc_qw_sign_store(struct config_item *item, const char *page,
1185 				     size_t len)
1186 {
1187 	struct gadget_info *gi = os_desc_item_to_gadget_info(item);
1188 	int res, l;
1189 
1190 	if (!len)
1191 		return len;
1192 	l = min((int)len, OS_STRING_QW_SIGN_LEN >> 1);
1193 	if (page[l - 1] == '\n')
1194 		--l;
1195 
1196 	mutex_lock(&gi->lock);
1197 	res = utf8s_to_utf16s(page, l,
1198 			      UTF16_LITTLE_ENDIAN, (wchar_t *) gi->qw_sign,
1199 			      OS_STRING_QW_SIGN_LEN);
1200 	if (res > 0)
1201 		res = len;
1202 	mutex_unlock(&gi->lock);
1203 
1204 	return res;
1205 }
1206 
1207 CONFIGFS_ATTR(os_desc_, use);
1208 CONFIGFS_ATTR(os_desc_, b_vendor_code);
1209 CONFIGFS_ATTR(os_desc_, qw_sign);
1210 
1211 static struct configfs_attribute *os_desc_attrs[] = {
1212 	&os_desc_attr_use,
1213 	&os_desc_attr_b_vendor_code,
1214 	&os_desc_attr_qw_sign,
1215 	NULL,
1216 };
1217 
os_desc_link(struct config_item * os_desc_ci,struct config_item * usb_cfg_ci)1218 static int os_desc_link(struct config_item *os_desc_ci,
1219 			struct config_item *usb_cfg_ci)
1220 {
1221 	struct gadget_info *gi = os_desc_item_to_gadget_info(os_desc_ci);
1222 	struct usb_composite_dev *cdev = &gi->cdev;
1223 	struct config_usb_cfg *c_target = to_config_usb_cfg(usb_cfg_ci);
1224 	struct usb_configuration *c = NULL, *iter;
1225 	int ret;
1226 
1227 	mutex_lock(&gi->lock);
1228 	list_for_each_entry(iter, &cdev->configs, list) {
1229 		if (iter != &c_target->c)
1230 			continue;
1231 		c = iter;
1232 		break;
1233 	}
1234 	if (!c) {
1235 		ret = -EINVAL;
1236 		goto out;
1237 	}
1238 
1239 	if (cdev->os_desc_config) {
1240 		ret = -EBUSY;
1241 		goto out;
1242 	}
1243 
1244 	cdev->os_desc_config = &c_target->c;
1245 	ret = 0;
1246 
1247 out:
1248 	mutex_unlock(&gi->lock);
1249 	return ret;
1250 }
1251 
os_desc_unlink(struct config_item * os_desc_ci,struct config_item * usb_cfg_ci)1252 static void os_desc_unlink(struct config_item *os_desc_ci,
1253 			  struct config_item *usb_cfg_ci)
1254 {
1255 	struct gadget_info *gi = os_desc_item_to_gadget_info(os_desc_ci);
1256 	struct usb_composite_dev *cdev = &gi->cdev;
1257 
1258 	mutex_lock(&gi->lock);
1259 	if (gi->composite.gadget_driver.udc_name)
1260 		unregister_gadget(gi);
1261 	cdev->os_desc_config = NULL;
1262 	WARN_ON(gi->composite.gadget_driver.udc_name);
1263 	mutex_unlock(&gi->lock);
1264 }
1265 
1266 static struct configfs_item_operations os_desc_ops = {
1267 	.allow_link		= os_desc_link,
1268 	.drop_link		= os_desc_unlink,
1269 };
1270 
1271 static struct config_item_type os_desc_type = {
1272 	.ct_item_ops	= &os_desc_ops,
1273 	.ct_attrs	= os_desc_attrs,
1274 	.ct_owner	= THIS_MODULE,
1275 };
1276 
1277 static inline struct usb_os_desc_ext_prop
to_usb_os_desc_ext_prop(struct config_item * item)1278 *to_usb_os_desc_ext_prop(struct config_item *item)
1279 {
1280 	return container_of(item, struct usb_os_desc_ext_prop, item);
1281 }
1282 
ext_prop_type_show(struct config_item * item,char * page)1283 static ssize_t ext_prop_type_show(struct config_item *item, char *page)
1284 {
1285 	return sprintf(page, "%d\n", to_usb_os_desc_ext_prop(item)->type);
1286 }
1287 
ext_prop_type_store(struct config_item * item,const char * page,size_t len)1288 static ssize_t ext_prop_type_store(struct config_item *item,
1289 				   const char *page, size_t len)
1290 {
1291 	struct usb_os_desc_ext_prop *ext_prop = to_usb_os_desc_ext_prop(item);
1292 	struct usb_os_desc *desc = to_usb_os_desc(ext_prop->item.ci_parent);
1293 	u8 type;
1294 	int ret;
1295 
1296 	ret = kstrtou8(page, 0, &type);
1297 	if (ret)
1298 		return ret;
1299 
1300 	if (type < USB_EXT_PROP_UNICODE || type > USB_EXT_PROP_UNICODE_MULTI)
1301 		return -EINVAL;
1302 
1303 	if (desc->opts_mutex)
1304 		mutex_lock(desc->opts_mutex);
1305 
1306 	if ((ext_prop->type == USB_EXT_PROP_BINARY ||
1307 	    ext_prop->type == USB_EXT_PROP_LE32 ||
1308 	    ext_prop->type == USB_EXT_PROP_BE32) &&
1309 	    (type == USB_EXT_PROP_UNICODE ||
1310 	    type == USB_EXT_PROP_UNICODE_ENV ||
1311 	    type == USB_EXT_PROP_UNICODE_LINK))
1312 		ext_prop->data_len <<= 1;
1313 	else if ((ext_prop->type == USB_EXT_PROP_UNICODE ||
1314 		   ext_prop->type == USB_EXT_PROP_UNICODE_ENV ||
1315 		   ext_prop->type == USB_EXT_PROP_UNICODE_LINK) &&
1316 		   (type == USB_EXT_PROP_BINARY ||
1317 		   type == USB_EXT_PROP_LE32 ||
1318 		   type == USB_EXT_PROP_BE32))
1319 		ext_prop->data_len >>= 1;
1320 	ext_prop->type = type;
1321 
1322 	if (desc->opts_mutex)
1323 		mutex_unlock(desc->opts_mutex);
1324 	return len;
1325 }
1326 
ext_prop_data_show(struct config_item * item,char * page)1327 static ssize_t ext_prop_data_show(struct config_item *item, char *page)
1328 {
1329 	struct usb_os_desc_ext_prop *ext_prop = to_usb_os_desc_ext_prop(item);
1330 	int len = ext_prop->data_len;
1331 
1332 	if (ext_prop->type == USB_EXT_PROP_UNICODE ||
1333 	    ext_prop->type == USB_EXT_PROP_UNICODE_ENV ||
1334 	    ext_prop->type == USB_EXT_PROP_UNICODE_LINK)
1335 		len >>= 1;
1336 	memcpy(page, ext_prop->data, len);
1337 
1338 	return len;
1339 }
1340 
ext_prop_data_store(struct config_item * item,const char * page,size_t len)1341 static ssize_t ext_prop_data_store(struct config_item *item,
1342 				   const char *page, size_t len)
1343 {
1344 	struct usb_os_desc_ext_prop *ext_prop = to_usb_os_desc_ext_prop(item);
1345 	struct usb_os_desc *desc = to_usb_os_desc(ext_prop->item.ci_parent);
1346 	char *new_data;
1347 	size_t ret_len = len;
1348 
1349 	if (page[len - 1] == '\n' || page[len - 1] == '\0')
1350 		--len;
1351 	new_data = kmemdup(page, len, GFP_KERNEL);
1352 	if (!new_data)
1353 		return -ENOMEM;
1354 
1355 	if (desc->opts_mutex)
1356 		mutex_lock(desc->opts_mutex);
1357 	kfree(ext_prop->data);
1358 	ext_prop->data = new_data;
1359 	desc->ext_prop_len -= ext_prop->data_len;
1360 	ext_prop->data_len = len;
1361 	desc->ext_prop_len += ext_prop->data_len;
1362 	if (ext_prop->type == USB_EXT_PROP_UNICODE ||
1363 	    ext_prop->type == USB_EXT_PROP_UNICODE_ENV ||
1364 	    ext_prop->type == USB_EXT_PROP_UNICODE_LINK) {
1365 		desc->ext_prop_len -= ext_prop->data_len;
1366 		ext_prop->data_len <<= 1;
1367 		ext_prop->data_len += 2;
1368 		desc->ext_prop_len += ext_prop->data_len;
1369 	}
1370 	if (desc->opts_mutex)
1371 		mutex_unlock(desc->opts_mutex);
1372 	return ret_len;
1373 }
1374 
1375 CONFIGFS_ATTR(ext_prop_, type);
1376 CONFIGFS_ATTR(ext_prop_, data);
1377 
1378 static struct configfs_attribute *ext_prop_attrs[] = {
1379 	&ext_prop_attr_type,
1380 	&ext_prop_attr_data,
1381 	NULL,
1382 };
1383 
usb_os_desc_ext_prop_release(struct config_item * item)1384 static void usb_os_desc_ext_prop_release(struct config_item *item)
1385 {
1386 	struct usb_os_desc_ext_prop *ext_prop = to_usb_os_desc_ext_prop(item);
1387 
1388 	kfree(ext_prop); /* frees a whole chunk */
1389 }
1390 
1391 static struct configfs_item_operations ext_prop_ops = {
1392 	.release		= usb_os_desc_ext_prop_release,
1393 };
1394 
ext_prop_make(struct config_group * group,const char * name)1395 static struct config_item *ext_prop_make(
1396 		struct config_group *group,
1397 		const char *name)
1398 {
1399 	struct usb_os_desc_ext_prop *ext_prop;
1400 	struct config_item_type *ext_prop_type;
1401 	struct usb_os_desc *desc;
1402 	char *vlabuf;
1403 
1404 	vla_group(data_chunk);
1405 	vla_item(data_chunk, struct usb_os_desc_ext_prop, ext_prop, 1);
1406 	vla_item(data_chunk, struct config_item_type, ext_prop_type, 1);
1407 
1408 	vlabuf = kzalloc(vla_group_size(data_chunk), GFP_KERNEL);
1409 	if (!vlabuf)
1410 		return ERR_PTR(-ENOMEM);
1411 
1412 	ext_prop = vla_ptr(vlabuf, data_chunk, ext_prop);
1413 	ext_prop_type = vla_ptr(vlabuf, data_chunk, ext_prop_type);
1414 
1415 	desc = container_of(group, struct usb_os_desc, group);
1416 	ext_prop_type->ct_item_ops = &ext_prop_ops;
1417 	ext_prop_type->ct_attrs = ext_prop_attrs;
1418 	ext_prop_type->ct_owner = desc->owner;
1419 
1420 	config_item_init_type_name(&ext_prop->item, name, ext_prop_type);
1421 
1422 	ext_prop->name = kstrdup(name, GFP_KERNEL);
1423 	if (!ext_prop->name) {
1424 		kfree(vlabuf);
1425 		return ERR_PTR(-ENOMEM);
1426 	}
1427 	desc->ext_prop_len += 14;
1428 	ext_prop->name_len = 2 * strlen(ext_prop->name) + 2;
1429 	if (desc->opts_mutex)
1430 		mutex_lock(desc->opts_mutex);
1431 	desc->ext_prop_len += ext_prop->name_len;
1432 	list_add_tail(&ext_prop->entry, &desc->ext_prop);
1433 	++desc->ext_prop_count;
1434 	if (desc->opts_mutex)
1435 		mutex_unlock(desc->opts_mutex);
1436 
1437 	return &ext_prop->item;
1438 }
1439 
ext_prop_drop(struct config_group * group,struct config_item * item)1440 static void ext_prop_drop(struct config_group *group, struct config_item *item)
1441 {
1442 	struct usb_os_desc_ext_prop *ext_prop = to_usb_os_desc_ext_prop(item);
1443 	struct usb_os_desc *desc = to_usb_os_desc(&group->cg_item);
1444 
1445 	if (desc->opts_mutex)
1446 		mutex_lock(desc->opts_mutex);
1447 	list_del(&ext_prop->entry);
1448 	--desc->ext_prop_count;
1449 	kfree(ext_prop->name);
1450 	desc->ext_prop_len -= (ext_prop->name_len + ext_prop->data_len + 14);
1451 	if (desc->opts_mutex)
1452 		mutex_unlock(desc->opts_mutex);
1453 	config_item_put(item);
1454 }
1455 
1456 static struct configfs_group_operations interf_grp_ops = {
1457 	.make_item	= &ext_prop_make,
1458 	.drop_item	= &ext_prop_drop,
1459 };
1460 
interf_grp_compatible_id_show(struct config_item * item,char * page)1461 static ssize_t interf_grp_compatible_id_show(struct config_item *item,
1462 					     char *page)
1463 {
1464 	memcpy(page, to_usb_os_desc(item)->ext_compat_id, 8);
1465 	return 8;
1466 }
1467 
interf_grp_compatible_id_store(struct config_item * item,const char * page,size_t len)1468 static ssize_t interf_grp_compatible_id_store(struct config_item *item,
1469 					      const char *page, size_t len)
1470 {
1471 	struct usb_os_desc *desc = to_usb_os_desc(item);
1472 	int l;
1473 
1474 	l = min_t(int, 8, len);
1475 	if (page[l - 1] == '\n')
1476 		--l;
1477 	if (desc->opts_mutex)
1478 		mutex_lock(desc->opts_mutex);
1479 	memcpy(desc->ext_compat_id, page, l);
1480 
1481 	if (desc->opts_mutex)
1482 		mutex_unlock(desc->opts_mutex);
1483 
1484 	return len;
1485 }
1486 
interf_grp_sub_compatible_id_show(struct config_item * item,char * page)1487 static ssize_t interf_grp_sub_compatible_id_show(struct config_item *item,
1488 						 char *page)
1489 {
1490 	memcpy(page, to_usb_os_desc(item)->ext_compat_id + 8, 8);
1491 	return 8;
1492 }
1493 
interf_grp_sub_compatible_id_store(struct config_item * item,const char * page,size_t len)1494 static ssize_t interf_grp_sub_compatible_id_store(struct config_item *item,
1495 						  const char *page, size_t len)
1496 {
1497 	struct usb_os_desc *desc = to_usb_os_desc(item);
1498 	int l;
1499 
1500 	l = min_t(int, 8, len);
1501 	if (page[l - 1] == '\n')
1502 		--l;
1503 	if (desc->opts_mutex)
1504 		mutex_lock(desc->opts_mutex);
1505 	memcpy(desc->ext_compat_id + 8, page, l);
1506 
1507 	if (desc->opts_mutex)
1508 		mutex_unlock(desc->opts_mutex);
1509 
1510 	return len;
1511 }
1512 
1513 CONFIGFS_ATTR(interf_grp_, compatible_id);
1514 CONFIGFS_ATTR(interf_grp_, sub_compatible_id);
1515 
1516 static struct configfs_attribute *interf_grp_attrs[] = {
1517 	&interf_grp_attr_compatible_id,
1518 	&interf_grp_attr_sub_compatible_id,
1519 	NULL
1520 };
1521 
usb_os_desc_prepare_interf_dir(struct config_group * parent,int n_interf,struct usb_os_desc ** desc,char ** names,struct module * owner)1522 struct config_group *usb_os_desc_prepare_interf_dir(
1523 		struct config_group *parent,
1524 		int n_interf,
1525 		struct usb_os_desc **desc,
1526 		char **names,
1527 		struct module *owner)
1528 {
1529 	struct config_group *os_desc_group;
1530 	struct config_item_type *os_desc_type, *interface_type;
1531 
1532 	vla_group(data_chunk);
1533 	vla_item(data_chunk, struct config_group, os_desc_group, 1);
1534 	vla_item(data_chunk, struct config_item_type, os_desc_type, 1);
1535 	vla_item(data_chunk, struct config_item_type, interface_type, 1);
1536 
1537 	char *vlabuf = kzalloc(vla_group_size(data_chunk), GFP_KERNEL);
1538 	if (!vlabuf)
1539 		return ERR_PTR(-ENOMEM);
1540 
1541 	os_desc_group = vla_ptr(vlabuf, data_chunk, os_desc_group);
1542 	os_desc_type = vla_ptr(vlabuf, data_chunk, os_desc_type);
1543 	interface_type = vla_ptr(vlabuf, data_chunk, interface_type);
1544 
1545 	os_desc_type->ct_owner = owner;
1546 	config_group_init_type_name(os_desc_group, "os_desc", os_desc_type);
1547 	configfs_add_default_group(os_desc_group, parent);
1548 
1549 	interface_type->ct_group_ops = &interf_grp_ops;
1550 	interface_type->ct_attrs = interf_grp_attrs;
1551 	interface_type->ct_owner = owner;
1552 
1553 	while (n_interf--) {
1554 		struct usb_os_desc *d;
1555 
1556 		d = desc[n_interf];
1557 		d->owner = owner;
1558 		config_group_init_type_name(&d->group, "", interface_type);
1559 		config_item_set_name(&d->group.cg_item, "interface.%s",
1560 				     names[n_interf]);
1561 		configfs_add_default_group(&d->group, os_desc_group);
1562 	}
1563 
1564 	return os_desc_group;
1565 }
1566 EXPORT_SYMBOL(usb_os_desc_prepare_interf_dir);
1567 
configfs_do_nothing(struct usb_composite_dev * cdev)1568 static int configfs_do_nothing(struct usb_composite_dev *cdev)
1569 {
1570 	WARN_ON(1);
1571 	return -EINVAL;
1572 }
1573 
1574 int composite_dev_prepare(struct usb_composite_driver *composite,
1575 		struct usb_composite_dev *dev);
1576 
1577 int composite_os_desc_req_prepare(struct usb_composite_dev *cdev,
1578 				  struct usb_ep *ep0);
1579 
purge_configs_funcs(struct gadget_info * gi)1580 static void purge_configs_funcs(struct gadget_info *gi)
1581 {
1582 	struct usb_configuration	*c;
1583 
1584 	list_for_each_entry(c, &gi->cdev.configs, list) {
1585 		struct usb_function *f, *tmp;
1586 		struct config_usb_cfg *cfg;
1587 
1588 		cfg = container_of(c, struct config_usb_cfg, c);
1589 
1590 		list_for_each_entry_safe_reverse(f, tmp, &c->functions, list) {
1591 
1592 			list_move(&f->list, &cfg->func_list);
1593 			if (f->unbind) {
1594 				dev_dbg(&gi->cdev.gadget->dev,
1595 					"unbind function '%s'/%p\n",
1596 					f->name, f);
1597 				f->unbind(c, f);
1598 			}
1599 		}
1600 		c->next_interface_id = 0;
1601 		memset(c->interface, 0, sizeof(c->interface));
1602 		c->superspeed_plus = 0;
1603 		c->superspeed = 0;
1604 		c->highspeed = 0;
1605 		c->fullspeed = 0;
1606 	}
1607 }
1608 
1609 static struct usb_string *
configfs_attach_gadget_strings(struct gadget_info * gi)1610 configfs_attach_gadget_strings(struct gadget_info *gi)
1611 {
1612 	struct usb_gadget_strings **gadget_strings;
1613 	struct gadget_language *language;
1614 	struct gadget_string *string;
1615 	unsigned int nlangs = 0;
1616 	struct list_head *iter;
1617 	struct usb_string *us;
1618 	unsigned int i = 0;
1619 	int nstrings = -1;
1620 	unsigned int j;
1621 
1622 	list_for_each(iter, &gi->string_list)
1623 		nlangs++;
1624 
1625 	/* Bail out early if no languages are configured */
1626 	if (!nlangs)
1627 		return NULL;
1628 
1629 	gadget_strings = kcalloc(nlangs + 1, /* including NULL terminator */
1630 				 sizeof(struct usb_gadget_strings *), GFP_KERNEL);
1631 	if (!gadget_strings)
1632 		return ERR_PTR(-ENOMEM);
1633 
1634 	list_for_each_entry(language, &gi->string_list, list) {
1635 		struct usb_string *stringtab;
1636 
1637 		if (nstrings == -1) {
1638 			nstrings = language->nstrings;
1639 		} else if (nstrings != language->nstrings) {
1640 			pr_err("languages must contain the same number of strings\n");
1641 			us = ERR_PTR(-EINVAL);
1642 			goto cleanup;
1643 		}
1644 
1645 		stringtab = kcalloc(language->nstrings + 1, sizeof(struct usb_string),
1646 				    GFP_KERNEL);
1647 		if (!stringtab) {
1648 			us = ERR_PTR(-ENOMEM);
1649 			goto cleanup;
1650 		}
1651 
1652 		stringtab[USB_GADGET_MANUFACTURER_IDX].id = USB_GADGET_MANUFACTURER_IDX;
1653 		stringtab[USB_GADGET_MANUFACTURER_IDX].s = language->manufacturer;
1654 		stringtab[USB_GADGET_PRODUCT_IDX].id = USB_GADGET_PRODUCT_IDX;
1655 		stringtab[USB_GADGET_PRODUCT_IDX].s = language->product;
1656 		stringtab[USB_GADGET_SERIAL_IDX].id = USB_GADGET_SERIAL_IDX;
1657 		stringtab[USB_GADGET_SERIAL_IDX].s = language->serialnumber;
1658 
1659 		j = USB_GADGET_FIRST_AVAIL_IDX;
1660 		list_for_each_entry(string, &language->gadget_strings, list) {
1661 			memcpy(&stringtab[j], &string->usb_string, sizeof(struct usb_string));
1662 			j++;
1663 		}
1664 
1665 		language->stringtab_dev.strings = stringtab;
1666 		gadget_strings[i] = &language->stringtab_dev;
1667 		i++;
1668 	}
1669 
1670 	us = usb_gstrings_attach(&gi->cdev, gadget_strings, nstrings);
1671 
1672 cleanup:
1673 	list_for_each_entry(language, &gi->string_list, list) {
1674 		kfree(language->stringtab_dev.strings);
1675 		language->stringtab_dev.strings = NULL;
1676 	}
1677 
1678 	kfree(gadget_strings);
1679 
1680 	return us;
1681 }
1682 
configfs_composite_bind(struct usb_gadget * gadget,struct usb_gadget_driver * gdriver)1683 static int configfs_composite_bind(struct usb_gadget *gadget,
1684 		struct usb_gadget_driver *gdriver)
1685 {
1686 	struct usb_composite_driver     *composite = to_cdriver(gdriver);
1687 	struct gadget_info		*gi = container_of(composite,
1688 						struct gadget_info, composite);
1689 	struct usb_composite_dev	*cdev = &gi->cdev;
1690 	struct usb_configuration	*c;
1691 	struct usb_string		*s;
1692 	unsigned			i;
1693 	int				ret;
1694 
1695 	/* the gi->lock is hold by the caller */
1696 	gi->unbind = 0;
1697 	cdev->gadget = gadget;
1698 	set_gadget_data(gadget, cdev);
1699 	ret = composite_dev_prepare(composite, cdev);
1700 	if (ret)
1701 		return ret;
1702 	/* and now the gadget bind */
1703 	ret = -EINVAL;
1704 
1705 	if (list_empty(&gi->cdev.configs)) {
1706 		pr_err("Need at least one configuration in %s.\n",
1707 				gi->composite.name);
1708 		goto err_comp_cleanup;
1709 	}
1710 
1711 
1712 	list_for_each_entry(c, &gi->cdev.configs, list) {
1713 		struct config_usb_cfg *cfg;
1714 
1715 		cfg = container_of(c, struct config_usb_cfg, c);
1716 		if (list_empty(&cfg->func_list)) {
1717 			pr_err("Config %s/%d of %s needs at least one function.\n",
1718 			      c->label, c->bConfigurationValue,
1719 			      gi->composite.name);
1720 			goto err_comp_cleanup;
1721 		}
1722 	}
1723 
1724 	/* init all strings */
1725 	if (!list_empty(&gi->string_list)) {
1726 		s = configfs_attach_gadget_strings(gi);
1727 		if (IS_ERR(s)) {
1728 			ret = PTR_ERR(s);
1729 			goto err_comp_cleanup;
1730 		}
1731 
1732 		gi->cdev.desc.iManufacturer = s[USB_GADGET_MANUFACTURER_IDX].id;
1733 		gi->cdev.desc.iProduct = s[USB_GADGET_PRODUCT_IDX].id;
1734 		gi->cdev.desc.iSerialNumber = s[USB_GADGET_SERIAL_IDX].id;
1735 
1736 		gi->cdev.usb_strings = s;
1737 	}
1738 
1739 	if (gi->use_webusb) {
1740 		cdev->use_webusb = true;
1741 		cdev->bcd_webusb_version = gi->bcd_webusb_version;
1742 		cdev->b_webusb_vendor_code = gi->b_webusb_vendor_code;
1743 		memcpy(cdev->landing_page, gi->landing_page, WEBUSB_URL_RAW_MAX_LENGTH);
1744 	}
1745 
1746 	if (gi->use_os_desc) {
1747 		cdev->use_os_string = true;
1748 		cdev->b_vendor_code = gi->b_vendor_code;
1749 		memcpy(cdev->qw_sign, gi->qw_sign, OS_STRING_QW_SIGN_LEN);
1750 	}
1751 
1752 	if (gadget_is_otg(gadget) && !otg_desc[0]) {
1753 		struct usb_descriptor_header *usb_desc;
1754 
1755 		usb_desc = usb_otg_descriptor_alloc(gadget);
1756 		if (!usb_desc) {
1757 			ret = -ENOMEM;
1758 			goto err_comp_cleanup;
1759 		}
1760 		usb_otg_descriptor_init(gadget, usb_desc);
1761 		otg_desc[0] = usb_desc;
1762 		otg_desc[1] = NULL;
1763 	}
1764 
1765 	/* Go through all configs, attach all functions */
1766 	list_for_each_entry(c, &gi->cdev.configs, list) {
1767 		struct config_usb_cfg *cfg;
1768 		struct usb_function *f;
1769 		struct usb_function *tmp;
1770 		struct gadget_config_name *cn;
1771 
1772 		if (gadget_is_otg(gadget))
1773 			c->descriptors = otg_desc;
1774 
1775 		/* Properly configure the bmAttributes wakeup bit */
1776 		check_remote_wakeup_config(gadget, c);
1777 
1778 		cfg = container_of(c, struct config_usb_cfg, c);
1779 		if (!list_empty(&cfg->string_list)) {
1780 			i = 0;
1781 			list_for_each_entry(cn, &cfg->string_list, list) {
1782 				cfg->gstrings[i] = &cn->stringtab_dev;
1783 				cn->stringtab_dev.strings = &cn->strings;
1784 				cn->strings.s = cn->configuration;
1785 				i++;
1786 			}
1787 			cfg->gstrings[i] = NULL;
1788 			s = usb_gstrings_attach(&gi->cdev, cfg->gstrings, 1);
1789 			if (IS_ERR(s)) {
1790 				ret = PTR_ERR(s);
1791 				goto err_comp_cleanup;
1792 			}
1793 			c->iConfiguration = s[0].id;
1794 		}
1795 
1796 		list_for_each_entry_safe(f, tmp, &cfg->func_list, list) {
1797 			list_del(&f->list);
1798 			ret = usb_add_function(c, f);
1799 			if (ret) {
1800 				list_add(&f->list, &cfg->func_list);
1801 				goto err_purge_funcs;
1802 			}
1803 		}
1804 		ret = usb_gadget_check_config(cdev->gadget);
1805 		if (ret)
1806 			goto err_purge_funcs;
1807 
1808 		usb_ep_autoconfig_reset(cdev->gadget);
1809 	}
1810 	if (cdev->use_os_string) {
1811 		ret = composite_os_desc_req_prepare(cdev, gadget->ep0);
1812 		if (ret)
1813 			goto err_purge_funcs;
1814 	}
1815 
1816 	usb_ep_autoconfig_reset(cdev->gadget);
1817 	return 0;
1818 
1819 err_purge_funcs:
1820 	purge_configs_funcs(gi);
1821 err_comp_cleanup:
1822 	composite_dev_cleanup(cdev);
1823 	return ret;
1824 }
1825 
configfs_composite_unbind(struct usb_gadget * gadget)1826 static void configfs_composite_unbind(struct usb_gadget *gadget)
1827 {
1828 	struct usb_composite_dev	*cdev;
1829 	struct gadget_info		*gi;
1830 	unsigned long flags;
1831 
1832 	/* the gi->lock is hold by the caller */
1833 
1834 	cdev = get_gadget_data(gadget);
1835 	gi = container_of(cdev, struct gadget_info, cdev);
1836 	spin_lock_irqsave(&gi->spinlock, flags);
1837 	gi->unbind = 1;
1838 	spin_unlock_irqrestore(&gi->spinlock, flags);
1839 
1840 	kfree(otg_desc[0]);
1841 	otg_desc[0] = NULL;
1842 	purge_configs_funcs(gi);
1843 	composite_dev_cleanup(cdev);
1844 	usb_ep_autoconfig_reset(cdev->gadget);
1845 	spin_lock_irqsave(&gi->spinlock, flags);
1846 	cdev->gadget = NULL;
1847 	cdev->deactivations = 0;
1848 	gadget->deactivated = false;
1849 	set_gadget_data(gadget, NULL);
1850 	spin_unlock_irqrestore(&gi->spinlock, flags);
1851 }
1852 
configfs_composite_setup(struct usb_gadget * gadget,const struct usb_ctrlrequest * ctrl)1853 static int configfs_composite_setup(struct usb_gadget *gadget,
1854 		const struct usb_ctrlrequest *ctrl)
1855 {
1856 	struct usb_composite_dev *cdev;
1857 	struct gadget_info *gi;
1858 	unsigned long flags;
1859 	int ret;
1860 
1861 	cdev = get_gadget_data(gadget);
1862 	if (!cdev)
1863 		return 0;
1864 
1865 	gi = container_of(cdev, struct gadget_info, cdev);
1866 	spin_lock_irqsave(&gi->spinlock, flags);
1867 	cdev = get_gadget_data(gadget);
1868 	if (!cdev || gi->unbind) {
1869 		spin_unlock_irqrestore(&gi->spinlock, flags);
1870 		return 0;
1871 	}
1872 
1873 	ret = composite_setup(gadget, ctrl);
1874 	spin_unlock_irqrestore(&gi->spinlock, flags);
1875 	return ret;
1876 }
1877 
configfs_composite_disconnect(struct usb_gadget * gadget)1878 static void configfs_composite_disconnect(struct usb_gadget *gadget)
1879 {
1880 	struct usb_composite_dev *cdev;
1881 	struct gadget_info *gi;
1882 	unsigned long flags;
1883 
1884 	cdev = get_gadget_data(gadget);
1885 	if (!cdev)
1886 		return;
1887 
1888 	gi = container_of(cdev, struct gadget_info, cdev);
1889 	spin_lock_irqsave(&gi->spinlock, flags);
1890 	cdev = get_gadget_data(gadget);
1891 	if (!cdev || gi->unbind) {
1892 		spin_unlock_irqrestore(&gi->spinlock, flags);
1893 		return;
1894 	}
1895 
1896 	composite_disconnect(gadget);
1897 	spin_unlock_irqrestore(&gi->spinlock, flags);
1898 }
1899 
configfs_composite_reset(struct usb_gadget * gadget)1900 static void configfs_composite_reset(struct usb_gadget *gadget)
1901 {
1902 	struct usb_composite_dev *cdev;
1903 	struct gadget_info *gi;
1904 	unsigned long flags;
1905 
1906 	cdev = get_gadget_data(gadget);
1907 	if (!cdev)
1908 		return;
1909 
1910 	gi = container_of(cdev, struct gadget_info, cdev);
1911 	spin_lock_irqsave(&gi->spinlock, flags);
1912 	cdev = get_gadget_data(gadget);
1913 	if (!cdev || gi->unbind) {
1914 		spin_unlock_irqrestore(&gi->spinlock, flags);
1915 		return;
1916 	}
1917 
1918 	composite_reset(gadget);
1919 	spin_unlock_irqrestore(&gi->spinlock, flags);
1920 }
1921 
configfs_composite_suspend(struct usb_gadget * gadget)1922 static void configfs_composite_suspend(struct usb_gadget *gadget)
1923 {
1924 	struct usb_composite_dev *cdev;
1925 	struct gadget_info *gi;
1926 	unsigned long flags;
1927 
1928 	cdev = get_gadget_data(gadget);
1929 	if (!cdev)
1930 		return;
1931 
1932 	gi = container_of(cdev, struct gadget_info, cdev);
1933 	spin_lock_irqsave(&gi->spinlock, flags);
1934 	cdev = get_gadget_data(gadget);
1935 	if (!cdev || gi->unbind) {
1936 		spin_unlock_irqrestore(&gi->spinlock, flags);
1937 		return;
1938 	}
1939 
1940 	composite_suspend(gadget);
1941 	spin_unlock_irqrestore(&gi->spinlock, flags);
1942 }
1943 
configfs_composite_resume(struct usb_gadget * gadget)1944 static void configfs_composite_resume(struct usb_gadget *gadget)
1945 {
1946 	struct usb_composite_dev *cdev;
1947 	struct gadget_info *gi;
1948 	unsigned long flags;
1949 
1950 	cdev = get_gadget_data(gadget);
1951 	if (!cdev)
1952 		return;
1953 
1954 	gi = container_of(cdev, struct gadget_info, cdev);
1955 	spin_lock_irqsave(&gi->spinlock, flags);
1956 	cdev = get_gadget_data(gadget);
1957 	if (!cdev || gi->unbind) {
1958 		spin_unlock_irqrestore(&gi->spinlock, flags);
1959 		return;
1960 	}
1961 
1962 	composite_resume(gadget);
1963 	spin_unlock_irqrestore(&gi->spinlock, flags);
1964 }
1965 
1966 static const struct usb_gadget_driver configfs_driver_template = {
1967 	.bind           = configfs_composite_bind,
1968 	.unbind         = configfs_composite_unbind,
1969 
1970 	.setup          = configfs_composite_setup,
1971 	.reset          = configfs_composite_reset,
1972 	.disconnect     = configfs_composite_disconnect,
1973 
1974 	.suspend	= configfs_composite_suspend,
1975 	.resume		= configfs_composite_resume,
1976 
1977 	.max_speed	= USB_SPEED_SUPER_PLUS,
1978 	.driver = {
1979 		.owner          = THIS_MODULE,
1980 	},
1981 	.match_existing_only = 1,
1982 };
1983 
gadgets_make(struct config_group * group,const char * name)1984 static struct config_group *gadgets_make(
1985 		struct config_group *group,
1986 		const char *name)
1987 {
1988 	struct gadget_info *gi;
1989 
1990 	gi = kzalloc(sizeof(*gi), GFP_KERNEL);
1991 	if (!gi)
1992 		return ERR_PTR(-ENOMEM);
1993 
1994 	config_group_init_type_name(&gi->group, name, &gadget_root_type);
1995 
1996 	config_group_init_type_name(&gi->functions_group, "functions",
1997 			&functions_type);
1998 	configfs_add_default_group(&gi->functions_group, &gi->group);
1999 
2000 	config_group_init_type_name(&gi->configs_group, "configs",
2001 			&config_desc_type);
2002 	configfs_add_default_group(&gi->configs_group, &gi->group);
2003 
2004 	config_group_init_type_name(&gi->strings_group, "strings",
2005 			&gadget_language_strings_type);
2006 	configfs_add_default_group(&gi->strings_group, &gi->group);
2007 
2008 	config_group_init_type_name(&gi->os_desc_group, "os_desc",
2009 			&os_desc_type);
2010 	configfs_add_default_group(&gi->os_desc_group, &gi->group);
2011 
2012 	config_group_init_type_name(&gi->webusb_group, "webusb",
2013 			&webusb_type);
2014 	configfs_add_default_group(&gi->webusb_group, &gi->group);
2015 
2016 	gi->composite.bind = configfs_do_nothing;
2017 	gi->composite.unbind = configfs_do_nothing;
2018 	gi->composite.suspend = NULL;
2019 	gi->composite.resume = NULL;
2020 	gi->composite.max_speed = USB_SPEED_SUPER_PLUS;
2021 
2022 	spin_lock_init(&gi->spinlock);
2023 	mutex_init(&gi->lock);
2024 	INIT_LIST_HEAD(&gi->string_list);
2025 	INIT_LIST_HEAD(&gi->available_func);
2026 
2027 	composite_init_dev(&gi->cdev);
2028 	gi->cdev.desc.bLength = USB_DT_DEVICE_SIZE;
2029 	gi->cdev.desc.bDescriptorType = USB_DT_DEVICE;
2030 	gi->cdev.desc.bcdDevice = cpu_to_le16(get_default_bcdDevice());
2031 
2032 	gi->composite.gadget_driver = configfs_driver_template;
2033 
2034 	gi->composite.gadget_driver.driver.name = kasprintf(GFP_KERNEL,
2035 							    "configfs-gadget.%s", name);
2036 	if (!gi->composite.gadget_driver.driver.name)
2037 		goto err;
2038 
2039 	gi->composite.gadget_driver.function = kstrdup(name, GFP_KERNEL);
2040 	gi->composite.name = gi->composite.gadget_driver.function;
2041 
2042 	if (!gi->composite.gadget_driver.function)
2043 		goto out_free_driver_name;
2044 
2045 	return &gi->group;
2046 
2047 out_free_driver_name:
2048 	kfree(gi->composite.gadget_driver.driver.name);
2049 err:
2050 	kfree(gi);
2051 	return ERR_PTR(-ENOMEM);
2052 }
2053 
gadgets_drop(struct config_group * group,struct config_item * item)2054 static void gadgets_drop(struct config_group *group, struct config_item *item)
2055 {
2056 	config_item_put(item);
2057 }
2058 
2059 static struct configfs_group_operations gadgets_ops = {
2060 	.make_group     = &gadgets_make,
2061 	.drop_item      = &gadgets_drop,
2062 };
2063 
2064 static const struct config_item_type gadgets_type = {
2065 	.ct_group_ops   = &gadgets_ops,
2066 	.ct_owner       = THIS_MODULE,
2067 };
2068 
2069 static struct configfs_subsystem gadget_subsys = {
2070 	.su_group = {
2071 		.cg_item = {
2072 			.ci_namebuf = "usb_gadget",
2073 			.ci_type = &gadgets_type,
2074 		},
2075 	},
2076 	.su_mutex = __MUTEX_INITIALIZER(gadget_subsys.su_mutex),
2077 };
2078 
unregister_gadget_item(struct config_item * item)2079 void unregister_gadget_item(struct config_item *item)
2080 {
2081 	struct gadget_info *gi = to_gadget_info(item);
2082 
2083 	mutex_lock(&gi->lock);
2084 	unregister_gadget(gi);
2085 	mutex_unlock(&gi->lock);
2086 }
2087 EXPORT_SYMBOL_GPL(unregister_gadget_item);
2088 
gadget_cfs_init(void)2089 static int __init gadget_cfs_init(void)
2090 {
2091 	int ret;
2092 
2093 	config_group_init(&gadget_subsys.su_group);
2094 
2095 	ret = configfs_register_subsystem(&gadget_subsys);
2096 	return ret;
2097 }
2098 module_init(gadget_cfs_init);
2099 
gadget_cfs_exit(void)2100 static void __exit gadget_cfs_exit(void)
2101 {
2102 	configfs_unregister_subsystem(&gadget_subsys);
2103 }
2104 module_exit(gadget_cfs_exit);
2105