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