Yama.txt 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. Yama is a Linux Security Module that collects a number of system-wide DAC
  2. security protections that are not handled by the core kernel itself. To
  3. select it at boot time, specify "security=yama" (though this will disable
  4. any other LSM).
  5. Yama is controlled through sysctl in /proc/sys/kernel/yama:
  6. - ptrace_scope
  7. ==============================================================
  8. ptrace_scope:
  9. As Linux grows in popularity, it will become a larger target for
  10. malware. One particularly troubling weakness of the Linux process
  11. interfaces is that a single user is able to examine the memory and
  12. running state of any of their processes. For example, if one application
  13. (e.g. Pidgin) was compromised, it would be possible for an attacker to
  14. attach to other running processes (e.g. Firefox, SSH sessions, GPG agent,
  15. etc) to extract additional credentials and continue to expand the scope
  16. of their attack without resorting to user-assisted phishing.
  17. This is not a theoretical problem. SSH session hijacking
  18. (http://www.storm.net.nz/projects/7) and arbitrary code injection
  19. (http://c-skills.blogspot.com/2007/05/injectso.html) attacks already
  20. exist and remain possible if ptrace is allowed to operate as before.
  21. Since ptrace is not commonly used by non-developers and non-admins, system
  22. builders should be allowed the option to disable this debugging system.
  23. For a solution, some applications use prctl(PR_SET_DUMPABLE, ...) to
  24. specifically disallow such ptrace attachment (e.g. ssh-agent), but many
  25. do not. A more general solution is to only allow ptrace directly from a
  26. parent to a child process (i.e. direct "gdb EXE" and "strace EXE" still
  27. work), or with CAP_SYS_PTRACE (i.e. "gdb --pid=PID", and "strace -p PID"
  28. still work as root).
  29. For software that has defined application-specific relationships
  30. between a debugging process and its inferior (crash handlers, etc),
  31. prctl(PR_SET_PTRACER, pid, ...) can be used. An inferior can declare which
  32. other process (and its descendents) are allowed to call PTRACE_ATTACH
  33. against it. Only one such declared debugging process can exists for
  34. each inferior at a time. For example, this is used by KDE, Chromium, and
  35. Firefox's crash handlers, and by Wine for allowing only Wine processes
  36. to ptrace each other. If a process wishes to entirely disable these ptrace
  37. restrictions, it can call prctl(PR_SET_PTRACER, PR_SET_PTRACER_ANY, ...)
  38. so that any otherwise allowed process (even those in external pid namespaces)
  39. may attach.
  40. The sysctl settings are:
  41. 0 - classic ptrace permissions: a process can PTRACE_ATTACH to any other
  42. process running under the same uid, as long as it is dumpable (i.e.
  43. did not transition uids, start privileged, or have called
  44. prctl(PR_SET_DUMPABLE...) already).
  45. 1 - restricted ptrace: a process must have a predefined relationship
  46. with the inferior it wants to call PTRACE_ATTACH on. By default,
  47. this relationship is that of only its descendants when the above
  48. classic criteria is also met. To change the relationship, an
  49. inferior can call prctl(PR_SET_PTRACER, debugger, ...) to declare
  50. an allowed debugger PID to call PTRACE_ATTACH on the inferior.
  51. The original children-only logic was based on the restrictions in grsecurity.
  52. ==============================================================