kmemleak.txt 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. Kernel Memory Leak Detector
  2. ===========================
  3. Introduction
  4. ------------
  5. Kmemleak provides a way of detecting possible kernel memory leaks in a
  6. way similar to a tracing garbage collector
  7. (http://en.wikipedia.org/wiki/Garbage_collection_%28computer_science%29#Tracing_garbage_collectors),
  8. with the difference that the orphan objects are not freed but only
  9. reported via /sys/kernel/debug/kmemleak. A similar method is used by the
  10. Valgrind tool (memcheck --leak-check) to detect the memory leaks in
  11. user-space applications.
  12. Usage
  13. -----
  14. CONFIG_DEBUG_KMEMLEAK in "Kernel hacking" has to be enabled. A kernel
  15. thread scans the memory every 10 minutes (by default) and prints any new
  16. unreferenced objects found. To trigger an intermediate scan and display
  17. all the possible memory leaks:
  18. # mount -t debugfs nodev /sys/kernel/debug/
  19. # cat /sys/kernel/debug/kmemleak
  20. Note that the orphan objects are listed in the order they were allocated
  21. and one object at the beginning of the list may cause other subsequent
  22. objects to be reported as orphan.
  23. Memory scanning parameters can be modified at run-time by writing to the
  24. /sys/kernel/debug/kmemleak file. The following parameters are supported:
  25. off - disable kmemleak (irreversible)
  26. stack=on - enable the task stacks scanning
  27. stack=off - disable the tasks stacks scanning
  28. scan=on - start the automatic memory scanning thread
  29. scan=off - stop the automatic memory scanning thread
  30. scan=<secs> - set the automatic memory scanning period in seconds (0
  31. to disable it)
  32. Kmemleak can also be disabled at boot-time by passing "kmemleak=off" on
  33. the kernel command line.
  34. Basic Algorithm
  35. ---------------
  36. The memory allocations via kmalloc, vmalloc, kmem_cache_alloc and
  37. friends are traced and the pointers, together with additional
  38. information like size and stack trace, are stored in a prio search tree.
  39. The corresponding freeing function calls are tracked and the pointers
  40. removed from the kmemleak data structures.
  41. An allocated block of memory is considered orphan if no pointer to its
  42. start address or to any location inside the block can be found by
  43. scanning the memory (including saved registers). This means that there
  44. might be no way for the kernel to pass the address of the allocated
  45. block to a freeing function and therefore the block is considered a
  46. memory leak.
  47. The scanning algorithm steps:
  48. 1. mark all objects as white (remaining white objects will later be
  49. considered orphan)
  50. 2. scan the memory starting with the data section and stacks, checking
  51. the values against the addresses stored in the prio search tree. If
  52. a pointer to a white object is found, the object is added to the
  53. gray list
  54. 3. scan the gray objects for matching addresses (some white objects
  55. can become gray and added at the end of the gray list) until the
  56. gray set is finished
  57. 4. the remaining white objects are considered orphan and reported via
  58. /sys/kernel/debug/kmemleak
  59. Some allocated memory blocks have pointers stored in the kernel's
  60. internal data structures and they cannot be detected as orphans. To
  61. avoid this, kmemleak can also store the number of values pointing to an
  62. address inside the block address range that need to be found so that the
  63. block is not considered a leak. One example is __vmalloc().
  64. Kmemleak API
  65. ------------
  66. See the include/linux/kmemleak.h header for the functions prototype.
  67. kmemleak_init - initialize kmemleak
  68. kmemleak_alloc - notify of a memory block allocation
  69. kmemleak_free - notify of a memory block freeing
  70. kmemleak_not_leak - mark an object as not a leak
  71. kmemleak_ignore - do not scan or report an object as leak
  72. kmemleak_scan_area - add scan areas inside a memory block
  73. kmemleak_no_scan - do not scan a memory block
  74. kmemleak_erase - erase an old value in a pointer variable
  75. kmemleak_alloc_recursive - as kmemleak_alloc but checks the recursiveness
  76. kmemleak_free_recursive - as kmemleak_free but checks the recursiveness
  77. Dealing with false positives/negatives
  78. --------------------------------------
  79. The false negatives are real memory leaks (orphan objects) but not
  80. reported by kmemleak because values found during the memory scanning
  81. point to such objects. To reduce the number of false negatives, kmemleak
  82. provides the kmemleak_ignore, kmemleak_scan_area, kmemleak_no_scan and
  83. kmemleak_erase functions (see above). The task stacks also increase the
  84. amount of false negatives and their scanning is not enabled by default.
  85. The false positives are objects wrongly reported as being memory leaks
  86. (orphan). For objects known not to be leaks, kmemleak provides the
  87. kmemleak_not_leak function. The kmemleak_ignore could also be used if
  88. the memory block is known not to contain other pointers and it will no
  89. longer be scanned.
  90. Some of the reported leaks are only transient, especially on SMP
  91. systems, because of pointers temporarily stored in CPU registers or
  92. stacks. Kmemleak defines MSECS_MIN_AGE (defaulting to 1000) representing
  93. the minimum age of an object to be reported as a memory leak.
  94. Limitations and Drawbacks
  95. -------------------------
  96. The main drawback is the reduced performance of memory allocation and
  97. freeing. To avoid other penalties, the memory scanning is only performed
  98. when the /sys/kernel/debug/kmemleak file is read. Anyway, this tool is
  99. intended for debugging purposes where the performance might not be the
  100. most important requirement.
  101. To keep the algorithm simple, kmemleak scans for values pointing to any
  102. address inside a block's address range. This may lead to an increased
  103. number of false negatives. However, it is likely that a real memory leak
  104. will eventually become visible.
  105. Another source of false negatives is the data stored in non-pointer
  106. values. In a future version, kmemleak could only scan the pointer
  107. members in the allocated structures. This feature would solve many of
  108. the false negative cases described above.
  109. The tool can report false positives. These are cases where an allocated
  110. block doesn't need to be freed (some cases in the init_call functions),
  111. the pointer is calculated by other methods than the usual container_of
  112. macro or the pointer is stored in a location not scanned by kmemleak.
  113. Page allocations and ioremap are not tracked. Only the ARM and x86
  114. architectures are currently supported.