devices.txt 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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 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' > /cgroups/1/devices.allow
  20. allows cgroup 1 to read and mknod the device usually known as
  21. /dev/null. Doing
  22. echo a > /cgroups/1/devices.deny
  23. will remove the default 'a *:* mrw' entry.
  24. 3. Security
  25. Any task can move itself between cgroups. This clearly won't
  26. suffice, but we can decide the best way to adequately restrict
  27. movement as people get some experience with this. We may just want
  28. to require CAP_SYS_ADMIN, which at least is a separate bit from
  29. CAP_MKNOD. We may want to just refuse moving to a cgroup which
  30. isn't a descendent of the current one. Or we may want to use
  31. CAP_MAC_ADMIN, since we really are trying to lock down root.
  32. CAP_SYS_ADMIN is needed to modify the whitelist or move another
  33. task to a new cgroup. (Again we'll probably want to change that).
  34. A cgroup may not be granted more permissions than the cgroup's
  35. parent has.