authorization.rst 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. ==============================================================
  2. Authorizing (or not) your USB devices to connect to the system
  3. ==============================================================
  4. Copyright (C) 2007 Inaky Perez-Gonzalez <inaky@linux.intel.com> Intel Corporation
  5. This feature allows you to control if a USB device can be used (or
  6. not) in a system. This feature will allow you to implement a lock-down
  7. of USB devices, fully controlled by user space.
  8. As of now, when a USB device is connected it is configured and
  9. its interfaces are immediately made available to the users. With this
  10. modification, only if root authorizes the device to be configured will
  11. then it be possible to use it.
  12. Usage
  13. =====
  14. Authorize a device to connect::
  15. $ echo 1 > /sys/bus/usb/devices/DEVICE/authorized
  16. De-authorize a device::
  17. $ echo 0 > /sys/bus/usb/devices/DEVICE/authorized
  18. Set new devices connected to hostX to be deauthorized by default (ie:
  19. lock down)::
  20. $ echo 0 > /sys/bus/usb/devices/usbX/authorized_default
  21. Remove the lock down::
  22. $ echo 1 > /sys/bus/usb/devices/usbX/authorized_default
  23. By default, all USB devices are authorized. Writing "2" to the
  24. authorized_default attribute causes the kernel to authorize by default
  25. only devices connected to internal USB ports.
  26. Example system lockdown (lame)
  27. ------------------------------
  28. Imagine you want to implement a lockdown so only devices of type XYZ
  29. can be connected (for example, it is a kiosk machine with a visible
  30. USB port)::
  31. boot up
  32. rc.local ->
  33. for host in /sys/bus/usb/devices/usb*
  34. do
  35. echo 0 > $host/authorized_default
  36. done
  37. Hookup an script to udev, for new USB devices::
  38. if device_is_my_type $DEV
  39. then
  40. echo 1 > $device_path/authorized
  41. done
  42. Now, device_is_my_type() is where the juice for a lockdown is. Just
  43. checking if the class, type and protocol match something is the worse
  44. security verification you can make (or the best, for someone willing
  45. to break it). If you need something secure, use crypto and Certificate
  46. Authentication or stuff like that. Something simple for an storage key
  47. could be::
  48. function device_is_my_type()
  49. {
  50. echo 1 > authorized # temporarily authorize it
  51. # FIXME: make sure none can mount it
  52. mount DEVICENODE /mntpoint
  53. sum=$(md5sum /mntpoint/.signature)
  54. if [ $sum = $(cat /etc/lockdown/keysum) ]
  55. then
  56. echo "We are good, connected"
  57. umount /mntpoint
  58. # Other stuff so others can use it
  59. else
  60. echo 0 > authorized
  61. fi
  62. }
  63. Of course, this is lame, you'd want to do a real certificate
  64. verification stuff with PKI, so you don't depend on a shared secret,
  65. etc, but you get the idea. Anybody with access to a device gadget kit
  66. can fake descriptors and device info. Don't trust that. You are
  67. welcome.
  68. Interface authorization
  69. -----------------------
  70. There is a similar approach to allow or deny specific USB interfaces.
  71. That allows to block only a subset of an USB device.
  72. Authorize an interface::
  73. $ echo 1 > /sys/bus/usb/devices/INTERFACE/authorized
  74. Deauthorize an interface::
  75. $ echo 0 > /sys/bus/usb/devices/INTERFACE/authorized
  76. The default value for new interfaces
  77. on a particular USB bus can be changed, too.
  78. Allow interfaces per default::
  79. $ echo 1 > /sys/bus/usb/devices/usbX/interface_authorized_default
  80. Deny interfaces per default::
  81. $ echo 0 > /sys/bus/usb/devices/usbX/interface_authorized_default
  82. Per default the interface_authorized_default bit is 1.
  83. So all interfaces would authorized per default.
  84. Note:
  85. If a deauthorized interface will be authorized so the driver probing must
  86. be triggered manually by writing INTERFACE to /sys/bus/usb/drivers_probe
  87. For drivers that need multiple interfaces all needed interfaces should be
  88. authorized first. After that the drivers should be probed.
  89. This avoids side effects.