]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - drivers/usb/core/sysfs.c
UBUNTU: Ubuntu-4.15.0-96.97
[mirror_ubuntu-bionic-kernel.git] / drivers / usb / core / sysfs.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * drivers/usb/core/sysfs.c
4 *
5 * (C) Copyright 2002 David Brownell
6 * (C) Copyright 2002,2004 Greg Kroah-Hartman
7 * (C) Copyright 2002,2004 IBM Corp.
8 *
9 * All of the sysfs file attributes for usb devices and interfaces.
10 *
11 * Released under the GPLv2 only.
12 */
13
14
15 #include <linux/kernel.h>
16 #include <linux/string.h>
17 #include <linux/usb.h>
18 #include <linux/usb/quirks.h>
19 #include <linux/of.h>
20 #include "usb.h"
21
22 /* Active configuration fields */
23 #define usb_actconfig_show(field, format_string) \
24 static ssize_t field##_show(struct device *dev, \
25 struct device_attribute *attr, char *buf) \
26 { \
27 struct usb_device *udev; \
28 struct usb_host_config *actconfig; \
29 ssize_t rc; \
30 \
31 udev = to_usb_device(dev); \
32 rc = usb_lock_device_interruptible(udev); \
33 if (rc < 0) \
34 return -EINTR; \
35 actconfig = udev->actconfig; \
36 if (actconfig) \
37 rc = sprintf(buf, format_string, \
38 actconfig->desc.field); \
39 usb_unlock_device(udev); \
40 return rc; \
41 } \
42
43 #define usb_actconfig_attr(field, format_string) \
44 usb_actconfig_show(field, format_string) \
45 static DEVICE_ATTR_RO(field)
46
47 usb_actconfig_attr(bNumInterfaces, "%2d\n");
48 usb_actconfig_attr(bmAttributes, "%2x\n");
49
50 static ssize_t bMaxPower_show(struct device *dev,
51 struct device_attribute *attr, char *buf)
52 {
53 struct usb_device *udev;
54 struct usb_host_config *actconfig;
55 ssize_t rc;
56
57 udev = to_usb_device(dev);
58 rc = usb_lock_device_interruptible(udev);
59 if (rc < 0)
60 return -EINTR;
61 actconfig = udev->actconfig;
62 if (actconfig)
63 rc = sprintf(buf, "%dmA\n", usb_get_max_power(udev, actconfig));
64 usb_unlock_device(udev);
65 return rc;
66 }
67 static DEVICE_ATTR_RO(bMaxPower);
68
69 static ssize_t configuration_show(struct device *dev,
70 struct device_attribute *attr, char *buf)
71 {
72 struct usb_device *udev;
73 struct usb_host_config *actconfig;
74 ssize_t rc;
75
76 udev = to_usb_device(dev);
77 rc = usb_lock_device_interruptible(udev);
78 if (rc < 0)
79 return -EINTR;
80 actconfig = udev->actconfig;
81 if (actconfig && actconfig->string)
82 rc = sprintf(buf, "%s\n", actconfig->string);
83 usb_unlock_device(udev);
84 return rc;
85 }
86 static DEVICE_ATTR_RO(configuration);
87
88 /* configuration value is always present, and r/w */
89 usb_actconfig_show(bConfigurationValue, "%u\n");
90
91 static ssize_t bConfigurationValue_store(struct device *dev,
92 struct device_attribute *attr,
93 const char *buf, size_t count)
94 {
95 struct usb_device *udev = to_usb_device(dev);
96 int config, value, rc;
97
98 if (sscanf(buf, "%d", &config) != 1 || config < -1 || config > 255)
99 return -EINVAL;
100 rc = usb_lock_device_interruptible(udev);
101 if (rc < 0)
102 return -EINTR;
103 value = usb_set_configuration(udev, config);
104 usb_unlock_device(udev);
105 return (value < 0) ? value : count;
106 }
107 static DEVICE_ATTR_IGNORE_LOCKDEP(bConfigurationValue, S_IRUGO | S_IWUSR,
108 bConfigurationValue_show, bConfigurationValue_store);
109
110 #ifdef CONFIG_OF
111 static ssize_t devspec_show(struct device *dev, struct device_attribute *attr,
112 char *buf)
113 {
114 struct device_node *of_node = dev->of_node;
115
116 return sprintf(buf, "%pOF\n", of_node);
117 }
118 static DEVICE_ATTR_RO(devspec);
119 #endif
120
121 /* String fields */
122 #define usb_string_attr(name) \
123 static ssize_t name##_show(struct device *dev, \
124 struct device_attribute *attr, char *buf) \
125 { \
126 struct usb_device *udev; \
127 int retval; \
128 \
129 udev = to_usb_device(dev); \
130 retval = usb_lock_device_interruptible(udev); \
131 if (retval < 0) \
132 return -EINTR; \
133 retval = sprintf(buf, "%s\n", udev->name); \
134 usb_unlock_device(udev); \
135 return retval; \
136 } \
137 static DEVICE_ATTR_RO(name)
138
139 usb_string_attr(product);
140 usb_string_attr(manufacturer);
141 usb_string_attr(serial);
142
143 static ssize_t speed_show(struct device *dev, struct device_attribute *attr,
144 char *buf)
145 {
146 struct usb_device *udev;
147 char *speed;
148
149 udev = to_usb_device(dev);
150
151 switch (udev->speed) {
152 case USB_SPEED_LOW:
153 speed = "1.5";
154 break;
155 case USB_SPEED_UNKNOWN:
156 case USB_SPEED_FULL:
157 speed = "12";
158 break;
159 case USB_SPEED_HIGH:
160 speed = "480";
161 break;
162 case USB_SPEED_WIRELESS:
163 speed = "480";
164 break;
165 case USB_SPEED_SUPER:
166 speed = "5000";
167 break;
168 case USB_SPEED_SUPER_PLUS:
169 speed = "10000";
170 break;
171 default:
172 speed = "unknown";
173 }
174 return sprintf(buf, "%s\n", speed);
175 }
176 static DEVICE_ATTR_RO(speed);
177
178 static ssize_t busnum_show(struct device *dev, struct device_attribute *attr,
179 char *buf)
180 {
181 struct usb_device *udev;
182
183 udev = to_usb_device(dev);
184 return sprintf(buf, "%d\n", udev->bus->busnum);
185 }
186 static DEVICE_ATTR_RO(busnum);
187
188 static ssize_t devnum_show(struct device *dev, struct device_attribute *attr,
189 char *buf)
190 {
191 struct usb_device *udev;
192
193 udev = to_usb_device(dev);
194 return sprintf(buf, "%d\n", udev->devnum);
195 }
196 static DEVICE_ATTR_RO(devnum);
197
198 static ssize_t devpath_show(struct device *dev, struct device_attribute *attr,
199 char *buf)
200 {
201 struct usb_device *udev;
202
203 udev = to_usb_device(dev);
204 return sprintf(buf, "%s\n", udev->devpath);
205 }
206 static DEVICE_ATTR_RO(devpath);
207
208 static ssize_t version_show(struct device *dev, struct device_attribute *attr,
209 char *buf)
210 {
211 struct usb_device *udev;
212 u16 bcdUSB;
213
214 udev = to_usb_device(dev);
215 bcdUSB = le16_to_cpu(udev->descriptor.bcdUSB);
216 return sprintf(buf, "%2x.%02x\n", bcdUSB >> 8, bcdUSB & 0xff);
217 }
218 static DEVICE_ATTR_RO(version);
219
220 static ssize_t maxchild_show(struct device *dev, struct device_attribute *attr,
221 char *buf)
222 {
223 struct usb_device *udev;
224
225 udev = to_usb_device(dev);
226 return sprintf(buf, "%d\n", udev->maxchild);
227 }
228 static DEVICE_ATTR_RO(maxchild);
229
230 static ssize_t quirks_show(struct device *dev, struct device_attribute *attr,
231 char *buf)
232 {
233 struct usb_device *udev;
234
235 udev = to_usb_device(dev);
236 return sprintf(buf, "0x%x\n", udev->quirks);
237 }
238 static DEVICE_ATTR_RO(quirks);
239
240 static ssize_t avoid_reset_quirk_show(struct device *dev,
241 struct device_attribute *attr, char *buf)
242 {
243 struct usb_device *udev;
244
245 udev = to_usb_device(dev);
246 return sprintf(buf, "%d\n", !!(udev->quirks & USB_QUIRK_RESET));
247 }
248
249 static ssize_t avoid_reset_quirk_store(struct device *dev,
250 struct device_attribute *attr,
251 const char *buf, size_t count)
252 {
253 struct usb_device *udev = to_usb_device(dev);
254 int val, rc;
255
256 if (sscanf(buf, "%d", &val) != 1 || val < 0 || val > 1)
257 return -EINVAL;
258 rc = usb_lock_device_interruptible(udev);
259 if (rc < 0)
260 return -EINTR;
261 if (val)
262 udev->quirks |= USB_QUIRK_RESET;
263 else
264 udev->quirks &= ~USB_QUIRK_RESET;
265 usb_unlock_device(udev);
266 return count;
267 }
268 static DEVICE_ATTR_RW(avoid_reset_quirk);
269
270 static ssize_t urbnum_show(struct device *dev, struct device_attribute *attr,
271 char *buf)
272 {
273 struct usb_device *udev;
274
275 udev = to_usb_device(dev);
276 return sprintf(buf, "%d\n", atomic_read(&udev->urbnum));
277 }
278 static DEVICE_ATTR_RO(urbnum);
279
280 static ssize_t removable_show(struct device *dev, struct device_attribute *attr,
281 char *buf)
282 {
283 struct usb_device *udev;
284 char *state;
285
286 udev = to_usb_device(dev);
287
288 switch (udev->removable) {
289 case USB_DEVICE_REMOVABLE:
290 state = "removable";
291 break;
292 case USB_DEVICE_FIXED:
293 state = "fixed";
294 break;
295 default:
296 state = "unknown";
297 }
298
299 return sprintf(buf, "%s\n", state);
300 }
301 static DEVICE_ATTR_RO(removable);
302
303 static ssize_t ltm_capable_show(struct device *dev,
304 struct device_attribute *attr, char *buf)
305 {
306 if (usb_device_supports_ltm(to_usb_device(dev)))
307 return sprintf(buf, "%s\n", "yes");
308 return sprintf(buf, "%s\n", "no");
309 }
310 static DEVICE_ATTR_RO(ltm_capable);
311
312 #ifdef CONFIG_PM
313
314 static ssize_t persist_show(struct device *dev, struct device_attribute *attr,
315 char *buf)
316 {
317 struct usb_device *udev = to_usb_device(dev);
318
319 return sprintf(buf, "%d\n", udev->persist_enabled);
320 }
321
322 static ssize_t persist_store(struct device *dev, struct device_attribute *attr,
323 const char *buf, size_t count)
324 {
325 struct usb_device *udev = to_usb_device(dev);
326 int value, rc;
327
328 /* Hubs are always enabled for USB_PERSIST */
329 if (udev->descriptor.bDeviceClass == USB_CLASS_HUB)
330 return -EPERM;
331
332 if (sscanf(buf, "%d", &value) != 1)
333 return -EINVAL;
334
335 rc = usb_lock_device_interruptible(udev);
336 if (rc < 0)
337 return -EINTR;
338 udev->persist_enabled = !!value;
339 usb_unlock_device(udev);
340 return count;
341 }
342 static DEVICE_ATTR_RW(persist);
343
344 static int add_persist_attributes(struct device *dev)
345 {
346 int rc = 0;
347
348 if (is_usb_device(dev)) {
349 struct usb_device *udev = to_usb_device(dev);
350
351 /* Hubs are automatically enabled for USB_PERSIST,
352 * no point in creating the attribute file.
353 */
354 if (udev->descriptor.bDeviceClass != USB_CLASS_HUB)
355 rc = sysfs_add_file_to_group(&dev->kobj,
356 &dev_attr_persist.attr,
357 power_group_name);
358 }
359 return rc;
360 }
361
362 static void remove_persist_attributes(struct device *dev)
363 {
364 sysfs_remove_file_from_group(&dev->kobj,
365 &dev_attr_persist.attr,
366 power_group_name);
367 }
368
369 static ssize_t connected_duration_show(struct device *dev,
370 struct device_attribute *attr, char *buf)
371 {
372 struct usb_device *udev = to_usb_device(dev);
373
374 return sprintf(buf, "%u\n",
375 jiffies_to_msecs(jiffies - udev->connect_time));
376 }
377 static DEVICE_ATTR_RO(connected_duration);
378
379 /*
380 * If the device is resumed, the last time the device was suspended has
381 * been pre-subtracted from active_duration. We add the current time to
382 * get the duration that the device was actually active.
383 *
384 * If the device is suspended, the active_duration is up-to-date.
385 */
386 static ssize_t active_duration_show(struct device *dev,
387 struct device_attribute *attr, char *buf)
388 {
389 struct usb_device *udev = to_usb_device(dev);
390 int duration;
391
392 if (udev->state != USB_STATE_SUSPENDED)
393 duration = jiffies_to_msecs(jiffies + udev->active_duration);
394 else
395 duration = jiffies_to_msecs(udev->active_duration);
396 return sprintf(buf, "%u\n", duration);
397 }
398 static DEVICE_ATTR_RO(active_duration);
399
400 static ssize_t autosuspend_show(struct device *dev,
401 struct device_attribute *attr, char *buf)
402 {
403 return sprintf(buf, "%d\n", dev->power.autosuspend_delay / 1000);
404 }
405
406 static ssize_t autosuspend_store(struct device *dev,
407 struct device_attribute *attr, const char *buf,
408 size_t count)
409 {
410 int value;
411
412 if (sscanf(buf, "%d", &value) != 1 || value >= INT_MAX/1000 ||
413 value <= -INT_MAX/1000)
414 return -EINVAL;
415
416 pm_runtime_set_autosuspend_delay(dev, value * 1000);
417 return count;
418 }
419 static DEVICE_ATTR_RW(autosuspend);
420
421 static const char on_string[] = "on";
422 static const char auto_string[] = "auto";
423
424 static void warn_level(void)
425 {
426 static int level_warned;
427
428 if (!level_warned) {
429 level_warned = 1;
430 printk(KERN_WARNING "WARNING! power/level is deprecated; "
431 "use power/control instead\n");
432 }
433 }
434
435 static ssize_t level_show(struct device *dev, struct device_attribute *attr,
436 char *buf)
437 {
438 struct usb_device *udev = to_usb_device(dev);
439 const char *p = auto_string;
440
441 warn_level();
442 if (udev->state != USB_STATE_SUSPENDED && !udev->dev.power.runtime_auto)
443 p = on_string;
444 return sprintf(buf, "%s\n", p);
445 }
446
447 static ssize_t level_store(struct device *dev, struct device_attribute *attr,
448 const char *buf, size_t count)
449 {
450 struct usb_device *udev = to_usb_device(dev);
451 int len = count;
452 char *cp;
453 int rc = count;
454 int rv;
455
456 warn_level();
457 cp = memchr(buf, '\n', count);
458 if (cp)
459 len = cp - buf;
460
461 rv = usb_lock_device_interruptible(udev);
462 if (rv < 0)
463 return -EINTR;
464
465 if (len == sizeof on_string - 1 &&
466 strncmp(buf, on_string, len) == 0)
467 usb_disable_autosuspend(udev);
468
469 else if (len == sizeof auto_string - 1 &&
470 strncmp(buf, auto_string, len) == 0)
471 usb_enable_autosuspend(udev);
472
473 else
474 rc = -EINVAL;
475
476 usb_unlock_device(udev);
477 return rc;
478 }
479 static DEVICE_ATTR_RW(level);
480
481 static ssize_t usb2_hardware_lpm_show(struct device *dev,
482 struct device_attribute *attr, char *buf)
483 {
484 struct usb_device *udev = to_usb_device(dev);
485 const char *p;
486
487 if (udev->usb2_hw_lpm_allowed == 1)
488 p = "enabled";
489 else
490 p = "disabled";
491
492 return sprintf(buf, "%s\n", p);
493 }
494
495 static ssize_t usb2_hardware_lpm_store(struct device *dev,
496 struct device_attribute *attr,
497 const char *buf, size_t count)
498 {
499 struct usb_device *udev = to_usb_device(dev);
500 bool value;
501 int ret;
502
503 ret = usb_lock_device_interruptible(udev);
504 if (ret < 0)
505 return -EINTR;
506
507 ret = strtobool(buf, &value);
508
509 if (!ret) {
510 udev->usb2_hw_lpm_allowed = value;
511 if (value)
512 ret = usb_enable_usb2_hardware_lpm(udev);
513 else
514 ret = usb_disable_usb2_hardware_lpm(udev);
515 }
516
517 usb_unlock_device(udev);
518
519 if (!ret)
520 return count;
521
522 return ret;
523 }
524 static DEVICE_ATTR_RW(usb2_hardware_lpm);
525
526 static ssize_t usb2_lpm_l1_timeout_show(struct device *dev,
527 struct device_attribute *attr,
528 char *buf)
529 {
530 struct usb_device *udev = to_usb_device(dev);
531 return sprintf(buf, "%d\n", udev->l1_params.timeout);
532 }
533
534 static ssize_t usb2_lpm_l1_timeout_store(struct device *dev,
535 struct device_attribute *attr,
536 const char *buf, size_t count)
537 {
538 struct usb_device *udev = to_usb_device(dev);
539 u16 timeout;
540
541 if (kstrtou16(buf, 0, &timeout))
542 return -EINVAL;
543
544 udev->l1_params.timeout = timeout;
545
546 return count;
547 }
548 static DEVICE_ATTR_RW(usb2_lpm_l1_timeout);
549
550 static ssize_t usb2_lpm_besl_show(struct device *dev,
551 struct device_attribute *attr, char *buf)
552 {
553 struct usb_device *udev = to_usb_device(dev);
554 return sprintf(buf, "%d\n", udev->l1_params.besl);
555 }
556
557 static ssize_t usb2_lpm_besl_store(struct device *dev,
558 struct device_attribute *attr,
559 const char *buf, size_t count)
560 {
561 struct usb_device *udev = to_usb_device(dev);
562 u8 besl;
563
564 if (kstrtou8(buf, 0, &besl) || besl > 15)
565 return -EINVAL;
566
567 udev->l1_params.besl = besl;
568
569 return count;
570 }
571 static DEVICE_ATTR_RW(usb2_lpm_besl);
572
573 static ssize_t usb3_hardware_lpm_u1_show(struct device *dev,
574 struct device_attribute *attr, char *buf)
575 {
576 struct usb_device *udev = to_usb_device(dev);
577 const char *p;
578 int rc;
579
580 rc = usb_lock_device_interruptible(udev);
581 if (rc < 0)
582 return -EINTR;
583
584 if (udev->usb3_lpm_u1_enabled)
585 p = "enabled";
586 else
587 p = "disabled";
588
589 usb_unlock_device(udev);
590
591 return sprintf(buf, "%s\n", p);
592 }
593 static DEVICE_ATTR_RO(usb3_hardware_lpm_u1);
594
595 static ssize_t usb3_hardware_lpm_u2_show(struct device *dev,
596 struct device_attribute *attr, char *buf)
597 {
598 struct usb_device *udev = to_usb_device(dev);
599 const char *p;
600 int rc;
601
602 rc = usb_lock_device_interruptible(udev);
603 if (rc < 0)
604 return -EINTR;
605
606 if (udev->usb3_lpm_u2_enabled)
607 p = "enabled";
608 else
609 p = "disabled";
610
611 usb_unlock_device(udev);
612
613 return sprintf(buf, "%s\n", p);
614 }
615 static DEVICE_ATTR_RO(usb3_hardware_lpm_u2);
616
617 static struct attribute *usb2_hardware_lpm_attr[] = {
618 &dev_attr_usb2_hardware_lpm.attr,
619 &dev_attr_usb2_lpm_l1_timeout.attr,
620 &dev_attr_usb2_lpm_besl.attr,
621 NULL,
622 };
623 static struct attribute_group usb2_hardware_lpm_attr_group = {
624 .name = power_group_name,
625 .attrs = usb2_hardware_lpm_attr,
626 };
627
628 static struct attribute *usb3_hardware_lpm_attr[] = {
629 &dev_attr_usb3_hardware_lpm_u1.attr,
630 &dev_attr_usb3_hardware_lpm_u2.attr,
631 NULL,
632 };
633 static struct attribute_group usb3_hardware_lpm_attr_group = {
634 .name = power_group_name,
635 .attrs = usb3_hardware_lpm_attr,
636 };
637
638 static struct attribute *power_attrs[] = {
639 &dev_attr_autosuspend.attr,
640 &dev_attr_level.attr,
641 &dev_attr_connected_duration.attr,
642 &dev_attr_active_duration.attr,
643 NULL,
644 };
645 static struct attribute_group power_attr_group = {
646 .name = power_group_name,
647 .attrs = power_attrs,
648 };
649
650 static int add_power_attributes(struct device *dev)
651 {
652 int rc = 0;
653
654 if (is_usb_device(dev)) {
655 struct usb_device *udev = to_usb_device(dev);
656 rc = sysfs_merge_group(&dev->kobj, &power_attr_group);
657 if (udev->usb2_hw_lpm_capable == 1)
658 rc = sysfs_merge_group(&dev->kobj,
659 &usb2_hardware_lpm_attr_group);
660 if ((udev->speed == USB_SPEED_SUPER ||
661 udev->speed == USB_SPEED_SUPER_PLUS) &&
662 udev->lpm_capable == 1)
663 rc = sysfs_merge_group(&dev->kobj,
664 &usb3_hardware_lpm_attr_group);
665 }
666
667 return rc;
668 }
669
670 static void remove_power_attributes(struct device *dev)
671 {
672 sysfs_unmerge_group(&dev->kobj, &usb2_hardware_lpm_attr_group);
673 sysfs_unmerge_group(&dev->kobj, &power_attr_group);
674 }
675
676 #else
677
678 #define add_persist_attributes(dev) 0
679 #define remove_persist_attributes(dev) do {} while (0)
680
681 #define add_power_attributes(dev) 0
682 #define remove_power_attributes(dev) do {} while (0)
683
684 #endif /* CONFIG_PM */
685
686
687 /* Descriptor fields */
688 #define usb_descriptor_attr_le16(field, format_string) \
689 static ssize_t \
690 field##_show(struct device *dev, struct device_attribute *attr, \
691 char *buf) \
692 { \
693 struct usb_device *udev; \
694 \
695 udev = to_usb_device(dev); \
696 return sprintf(buf, format_string, \
697 le16_to_cpu(udev->descriptor.field)); \
698 } \
699 static DEVICE_ATTR_RO(field)
700
701 usb_descriptor_attr_le16(idVendor, "%04x\n");
702 usb_descriptor_attr_le16(idProduct, "%04x\n");
703 usb_descriptor_attr_le16(bcdDevice, "%04x\n");
704
705 #define usb_descriptor_attr(field, format_string) \
706 static ssize_t \
707 field##_show(struct device *dev, struct device_attribute *attr, \
708 char *buf) \
709 { \
710 struct usb_device *udev; \
711 \
712 udev = to_usb_device(dev); \
713 return sprintf(buf, format_string, udev->descriptor.field); \
714 } \
715 static DEVICE_ATTR_RO(field)
716
717 usb_descriptor_attr(bDeviceClass, "%02x\n");
718 usb_descriptor_attr(bDeviceSubClass, "%02x\n");
719 usb_descriptor_attr(bDeviceProtocol, "%02x\n");
720 usb_descriptor_attr(bNumConfigurations, "%d\n");
721 usb_descriptor_attr(bMaxPacketSize0, "%d\n");
722
723
724 /* show if the device is authorized (1) or not (0) */
725 static ssize_t authorized_show(struct device *dev,
726 struct device_attribute *attr, char *buf)
727 {
728 struct usb_device *usb_dev = to_usb_device(dev);
729 return snprintf(buf, PAGE_SIZE, "%u\n", usb_dev->authorized);
730 }
731
732 /*
733 * Authorize a device to be used in the system
734 *
735 * Writing a 0 deauthorizes the device, writing a 1 authorizes it.
736 */
737 static ssize_t authorized_store(struct device *dev,
738 struct device_attribute *attr, const char *buf,
739 size_t size)
740 {
741 ssize_t result;
742 struct usb_device *usb_dev = to_usb_device(dev);
743 unsigned val;
744 result = sscanf(buf, "%u\n", &val);
745 if (result != 1)
746 result = -EINVAL;
747 else if (val == 0)
748 result = usb_deauthorize_device(usb_dev);
749 else
750 result = usb_authorize_device(usb_dev);
751 return result < 0 ? result : size;
752 }
753 static DEVICE_ATTR_IGNORE_LOCKDEP(authorized, S_IRUGO | S_IWUSR,
754 authorized_show, authorized_store);
755
756 /* "Safely remove a device" */
757 static ssize_t remove_store(struct device *dev, struct device_attribute *attr,
758 const char *buf, size_t count)
759 {
760 struct usb_device *udev = to_usb_device(dev);
761 int rc = 0;
762
763 usb_lock_device(udev);
764 if (udev->state != USB_STATE_NOTATTACHED) {
765
766 /* To avoid races, first unconfigure and then remove */
767 usb_set_configuration(udev, -1);
768 rc = usb_remove_device(udev);
769 }
770 if (rc == 0)
771 rc = count;
772 usb_unlock_device(udev);
773 return rc;
774 }
775 static DEVICE_ATTR_IGNORE_LOCKDEP(remove, S_IWUSR, NULL, remove_store);
776
777
778 static struct attribute *dev_attrs[] = {
779 /* current configuration's attributes */
780 &dev_attr_configuration.attr,
781 &dev_attr_bNumInterfaces.attr,
782 &dev_attr_bConfigurationValue.attr,
783 &dev_attr_bmAttributes.attr,
784 &dev_attr_bMaxPower.attr,
785 /* device attributes */
786 &dev_attr_urbnum.attr,
787 &dev_attr_idVendor.attr,
788 &dev_attr_idProduct.attr,
789 &dev_attr_bcdDevice.attr,
790 &dev_attr_bDeviceClass.attr,
791 &dev_attr_bDeviceSubClass.attr,
792 &dev_attr_bDeviceProtocol.attr,
793 &dev_attr_bNumConfigurations.attr,
794 &dev_attr_bMaxPacketSize0.attr,
795 &dev_attr_speed.attr,
796 &dev_attr_busnum.attr,
797 &dev_attr_devnum.attr,
798 &dev_attr_devpath.attr,
799 &dev_attr_version.attr,
800 &dev_attr_maxchild.attr,
801 &dev_attr_quirks.attr,
802 &dev_attr_avoid_reset_quirk.attr,
803 &dev_attr_authorized.attr,
804 &dev_attr_remove.attr,
805 &dev_attr_removable.attr,
806 &dev_attr_ltm_capable.attr,
807 #ifdef CONFIG_OF
808 &dev_attr_devspec.attr,
809 #endif
810 NULL,
811 };
812 static struct attribute_group dev_attr_grp = {
813 .attrs = dev_attrs,
814 };
815
816 /* When modifying this list, be sure to modify dev_string_attrs_are_visible()
817 * accordingly.
818 */
819 static struct attribute *dev_string_attrs[] = {
820 &dev_attr_manufacturer.attr,
821 &dev_attr_product.attr,
822 &dev_attr_serial.attr,
823 NULL
824 };
825
826 static umode_t dev_string_attrs_are_visible(struct kobject *kobj,
827 struct attribute *a, int n)
828 {
829 struct device *dev = container_of(kobj, struct device, kobj);
830 struct usb_device *udev = to_usb_device(dev);
831
832 if (a == &dev_attr_manufacturer.attr) {
833 if (udev->manufacturer == NULL)
834 return 0;
835 } else if (a == &dev_attr_product.attr) {
836 if (udev->product == NULL)
837 return 0;
838 } else if (a == &dev_attr_serial.attr) {
839 if (udev->serial == NULL)
840 return 0;
841 }
842 return a->mode;
843 }
844
845 static struct attribute_group dev_string_attr_grp = {
846 .attrs = dev_string_attrs,
847 .is_visible = dev_string_attrs_are_visible,
848 };
849
850 const struct attribute_group *usb_device_groups[] = {
851 &dev_attr_grp,
852 &dev_string_attr_grp,
853 NULL
854 };
855
856 /* Binary descriptors */
857
858 static ssize_t
859 read_descriptors(struct file *filp, struct kobject *kobj,
860 struct bin_attribute *attr,
861 char *buf, loff_t off, size_t count)
862 {
863 struct device *dev = container_of(kobj, struct device, kobj);
864 struct usb_device *udev = to_usb_device(dev);
865 size_t nleft = count;
866 size_t srclen, n;
867 int cfgno;
868 void *src;
869
870 /* The binary attribute begins with the device descriptor.
871 * Following that are the raw descriptor entries for all the
872 * configurations (config plus subsidiary descriptors).
873 */
874 for (cfgno = -1; cfgno < udev->descriptor.bNumConfigurations &&
875 nleft > 0; ++cfgno) {
876 if (cfgno < 0) {
877 src = &udev->descriptor;
878 srclen = sizeof(struct usb_device_descriptor);
879 } else {
880 src = udev->rawdescriptors[cfgno];
881 srclen = __le16_to_cpu(udev->config[cfgno].desc.
882 wTotalLength);
883 }
884 if (off < srclen) {
885 n = min(nleft, srclen - (size_t) off);
886 memcpy(buf, src + off, n);
887 nleft -= n;
888 buf += n;
889 off = 0;
890 } else {
891 off -= srclen;
892 }
893 }
894 return count - nleft;
895 }
896
897 static struct bin_attribute dev_bin_attr_descriptors = {
898 .attr = {.name = "descriptors", .mode = 0444},
899 .read = read_descriptors,
900 .size = 18 + 65535, /* dev descr + max-size raw descriptor */
901 };
902
903 int usb_create_sysfs_dev_files(struct usb_device *udev)
904 {
905 struct device *dev = &udev->dev;
906 int retval;
907
908 retval = device_create_bin_file(dev, &dev_bin_attr_descriptors);
909 if (retval)
910 goto error;
911
912 retval = add_persist_attributes(dev);
913 if (retval)
914 goto error;
915
916 retval = add_power_attributes(dev);
917 if (retval)
918 goto error;
919 return retval;
920 error:
921 usb_remove_sysfs_dev_files(udev);
922 return retval;
923 }
924
925 void usb_remove_sysfs_dev_files(struct usb_device *udev)
926 {
927 struct device *dev = &udev->dev;
928
929 remove_power_attributes(dev);
930 remove_persist_attributes(dev);
931 device_remove_bin_file(dev, &dev_bin_attr_descriptors);
932 }
933
934 /* Interface Association Descriptor fields */
935 #define usb_intf_assoc_attr(field, format_string) \
936 static ssize_t \
937 iad_##field##_show(struct device *dev, struct device_attribute *attr, \
938 char *buf) \
939 { \
940 struct usb_interface *intf = to_usb_interface(dev); \
941 \
942 return sprintf(buf, format_string, \
943 intf->intf_assoc->field); \
944 } \
945 static DEVICE_ATTR_RO(iad_##field)
946
947 usb_intf_assoc_attr(bFirstInterface, "%02x\n");
948 usb_intf_assoc_attr(bInterfaceCount, "%02d\n");
949 usb_intf_assoc_attr(bFunctionClass, "%02x\n");
950 usb_intf_assoc_attr(bFunctionSubClass, "%02x\n");
951 usb_intf_assoc_attr(bFunctionProtocol, "%02x\n");
952
953 /* Interface fields */
954 #define usb_intf_attr(field, format_string) \
955 static ssize_t \
956 field##_show(struct device *dev, struct device_attribute *attr, \
957 char *buf) \
958 { \
959 struct usb_interface *intf = to_usb_interface(dev); \
960 \
961 return sprintf(buf, format_string, \
962 intf->cur_altsetting->desc.field); \
963 } \
964 static DEVICE_ATTR_RO(field)
965
966 usb_intf_attr(bInterfaceNumber, "%02x\n");
967 usb_intf_attr(bAlternateSetting, "%2d\n");
968 usb_intf_attr(bNumEndpoints, "%02x\n");
969 usb_intf_attr(bInterfaceClass, "%02x\n");
970 usb_intf_attr(bInterfaceSubClass, "%02x\n");
971 usb_intf_attr(bInterfaceProtocol, "%02x\n");
972
973 static ssize_t interface_show(struct device *dev, struct device_attribute *attr,
974 char *buf)
975 {
976 struct usb_interface *intf;
977 char *string;
978
979 intf = to_usb_interface(dev);
980 string = READ_ONCE(intf->cur_altsetting->string);
981 if (!string)
982 return 0;
983 return sprintf(buf, "%s\n", string);
984 }
985 static DEVICE_ATTR_RO(interface);
986
987 static ssize_t modalias_show(struct device *dev, struct device_attribute *attr,
988 char *buf)
989 {
990 struct usb_interface *intf;
991 struct usb_device *udev;
992 struct usb_host_interface *alt;
993
994 intf = to_usb_interface(dev);
995 udev = interface_to_usbdev(intf);
996 alt = READ_ONCE(intf->cur_altsetting);
997
998 return sprintf(buf, "usb:v%04Xp%04Xd%04Xdc%02Xdsc%02Xdp%02X"
999 "ic%02Xisc%02Xip%02Xin%02X\n",
1000 le16_to_cpu(udev->descriptor.idVendor),
1001 le16_to_cpu(udev->descriptor.idProduct),
1002 le16_to_cpu(udev->descriptor.bcdDevice),
1003 udev->descriptor.bDeviceClass,
1004 udev->descriptor.bDeviceSubClass,
1005 udev->descriptor.bDeviceProtocol,
1006 alt->desc.bInterfaceClass,
1007 alt->desc.bInterfaceSubClass,
1008 alt->desc.bInterfaceProtocol,
1009 alt->desc.bInterfaceNumber);
1010 }
1011 static DEVICE_ATTR_RO(modalias);
1012
1013 static ssize_t supports_autosuspend_show(struct device *dev,
1014 struct device_attribute *attr,
1015 char *buf)
1016 {
1017 int s;
1018
1019 s = device_lock_interruptible(dev);
1020 if (s < 0)
1021 return -EINTR;
1022 /* Devices will be autosuspended even when an interface isn't claimed */
1023 s = (!dev->driver || to_usb_driver(dev->driver)->supports_autosuspend);
1024 device_unlock(dev);
1025
1026 return sprintf(buf, "%u\n", s);
1027 }
1028 static DEVICE_ATTR_RO(supports_autosuspend);
1029
1030 /*
1031 * interface_authorized_show - show authorization status of an USB interface
1032 * 1 is authorized, 0 is deauthorized
1033 */
1034 static ssize_t interface_authorized_show(struct device *dev,
1035 struct device_attribute *attr, char *buf)
1036 {
1037 struct usb_interface *intf = to_usb_interface(dev);
1038
1039 return sprintf(buf, "%u\n", intf->authorized);
1040 }
1041
1042 /*
1043 * interface_authorized_store - authorize or deauthorize an USB interface
1044 */
1045 static ssize_t interface_authorized_store(struct device *dev,
1046 struct device_attribute *attr, const char *buf, size_t count)
1047 {
1048 struct usb_interface *intf = to_usb_interface(dev);
1049 bool val;
1050
1051 if (strtobool(buf, &val) != 0)
1052 return -EINVAL;
1053
1054 if (val)
1055 usb_authorize_interface(intf);
1056 else
1057 usb_deauthorize_interface(intf);
1058
1059 return count;
1060 }
1061 static struct device_attribute dev_attr_interface_authorized =
1062 __ATTR(authorized, S_IRUGO | S_IWUSR,
1063 interface_authorized_show, interface_authorized_store);
1064
1065 static struct attribute *intf_attrs[] = {
1066 &dev_attr_bInterfaceNumber.attr,
1067 &dev_attr_bAlternateSetting.attr,
1068 &dev_attr_bNumEndpoints.attr,
1069 &dev_attr_bInterfaceClass.attr,
1070 &dev_attr_bInterfaceSubClass.attr,
1071 &dev_attr_bInterfaceProtocol.attr,
1072 &dev_attr_modalias.attr,
1073 &dev_attr_supports_autosuspend.attr,
1074 &dev_attr_interface_authorized.attr,
1075 NULL,
1076 };
1077 static struct attribute_group intf_attr_grp = {
1078 .attrs = intf_attrs,
1079 };
1080
1081 static struct attribute *intf_assoc_attrs[] = {
1082 &dev_attr_iad_bFirstInterface.attr,
1083 &dev_attr_iad_bInterfaceCount.attr,
1084 &dev_attr_iad_bFunctionClass.attr,
1085 &dev_attr_iad_bFunctionSubClass.attr,
1086 &dev_attr_iad_bFunctionProtocol.attr,
1087 NULL,
1088 };
1089
1090 static umode_t intf_assoc_attrs_are_visible(struct kobject *kobj,
1091 struct attribute *a, int n)
1092 {
1093 struct device *dev = container_of(kobj, struct device, kobj);
1094 struct usb_interface *intf = to_usb_interface(dev);
1095
1096 if (intf->intf_assoc == NULL)
1097 return 0;
1098 return a->mode;
1099 }
1100
1101 static struct attribute_group intf_assoc_attr_grp = {
1102 .attrs = intf_assoc_attrs,
1103 .is_visible = intf_assoc_attrs_are_visible,
1104 };
1105
1106 const struct attribute_group *usb_interface_groups[] = {
1107 &intf_attr_grp,
1108 &intf_assoc_attr_grp,
1109 NULL
1110 };
1111
1112 void usb_create_sysfs_intf_files(struct usb_interface *intf)
1113 {
1114 struct usb_device *udev = interface_to_usbdev(intf);
1115 struct usb_host_interface *alt = intf->cur_altsetting;
1116
1117 if (intf->sysfs_files_created || intf->unregistering)
1118 return;
1119
1120 if (!alt->string && !(udev->quirks & USB_QUIRK_CONFIG_INTF_STRINGS))
1121 alt->string = usb_cache_string(udev, alt->desc.iInterface);
1122 if (alt->string && device_create_file(&intf->dev, &dev_attr_interface))
1123 ; /* We don't actually care if the function fails. */
1124 intf->sysfs_files_created = 1;
1125 }
1126
1127 void usb_remove_sysfs_intf_files(struct usb_interface *intf)
1128 {
1129 if (!intf->sysfs_files_created)
1130 return;
1131
1132 device_remove_file(&intf->dev, &dev_attr_interface);
1133 intf->sysfs_files_created = 0;
1134 }