Yama.rst 3.6 KB

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