devices.txt 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. Device Whitelist Controller
  2. 1. Description:
  3. Implement a cgroup to track and enforce open and mknod restrictions
  4. on device files. A device cgroup associates a device access
  5. whitelist with each cgroup. A whitelist entry has 4 fields.
  6. 'type' is a (all), c (char), or b (block). 'all' means it applies
  7. to all types and all major and minor numbers. Major and minor are
  8. either an integer or * for all. Access is a composition of r
  9. (read), w (write), and m (mknod).
  10. The root device cgroup starts with rwm to 'all'. A child device
  11. cgroup gets a copy of the parent. Administrators can then remove
  12. devices from the whitelist or add new entries. A child cgroup can
  13. never receive a device access which is denied by its parent. However
  14. when a device access is removed from a parent it will not also be
  15. removed from the child(ren).
  16. 2. User Interface
  17. An entry is added using devices.allow, and removed using
  18. devices.deny. For instance
  19. echo 'c 1:3 mr' > /sys/fs/cgroup/1/devices.allow
  20. allows cgroup 1 to read and mknod the device usually known as
  21. /dev/null. Doing
  22. echo a > /sys/fs/cgroup/1/devices.deny
  23. will remove the default 'a *:* rwm' entry. Doing
  24. echo a > /sys/fs/cgroup/1/devices.allow
  25. will add the 'a *:* rwm' entry to the whitelist.
  26. 3. Security
  27. Any task can move itself between cgroups. This clearly won't
  28. suffice, but we can decide the best way to adequately restrict
  29. movement as people get some experience with this. We may just want
  30. to require CAP_SYS_ADMIN, which at least is a separate bit from
  31. CAP_MKNOD. We may want to just refuse moving to a cgroup which
  32. isn't a descendant of the current one. Or we may want to use
  33. CAP_MAC_ADMIN, since we really are trying to lock down root.
  34. CAP_SYS_ADMIN is needed to modify the whitelist or move another
  35. task to a new cgroup. (Again we'll probably want to change that).
  36. A cgroup may not be granted more permissions than the cgroup's
  37. parent has.