qdf_talloc.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. /*
  2. * Copyright (c) 2018 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. /**
  19. * DOC: qdf_talloc.h - Public APIs for t(ree) alloc(ate) memory management
  20. *
  21. * These APIs allocate memory like malloc, but track those allocations via a
  22. * parent-child relationship, or tree. If the parent is freed while it still has
  23. * children, a panic will be triggered. This effectively gives you the ability
  24. * to limit the lifetime of an allocation by ensuring the child allocation
  25. * lifetime will be strictly less than the parent allocation lifetime.
  26. */
  27. #ifndef __QDF_TALLOC_H
  28. #define __QDF_TALLOC_H
  29. #include "i_qdf_talloc.h"
  30. #include "qdf_status.h"
  31. /**
  32. * qdf_talloc() - t(ree) alloc(ate) memory
  33. * @parent: the parent memory of the new allocation
  34. * @size: requested size of the newly allocated memory
  35. *
  36. * Return: pointer to the newly allocated memory
  37. */
  38. #define qdf_talloc(parent, size) \
  39. qdf_talloc_fl(parent, size, __func__, __LINE__)
  40. /**
  41. * qdf_talloc_type() - t(ree) alloc(ate) memory for a type
  42. * @parent: the parent memory of the new allocation
  43. * @cursor: pointer to the type of memory to allocate
  44. *
  45. * This API automatically determines the correct size needed or an allocation
  46. * based on the type of @cursor. If you need to allocate an arbitrary number
  47. * of bytes, use qdf_talloc() instead.
  48. *
  49. * Return: pointer to the newly allocated memory
  50. */
  51. #define qdf_talloc_type(parent, cursor) \
  52. qdf_talloc(parent, sizeof(*(cursor)))
  53. /**
  54. * qdf_talloc_fl() - t(ree) alloc(ate) memory with function and line info
  55. * @parent: the parent memory of the new allocation
  56. * @size: requested size of the newly allocated memory
  57. * @func: name of the function requesting the allocation
  58. * @line: line number of the call site in @func
  59. *
  60. * Return: pointer to the newly allocated memory
  61. */
  62. #define qdf_talloc_fl(parent, size, func, line) \
  63. __qdf_talloc_fl(parent, size, func, line)
  64. /**
  65. * qdf_tfree() - free memory allocated using the *_talloc() function family
  66. * @inout_ptr: double point to memory to free, set to NULL
  67. *
  68. * Return: None
  69. */
  70. #define qdf_tfree(ptr) \
  71. qdf_tfree_fl(ptr, __func__, __LINE__)
  72. /**
  73. * qdf_tfree_fl() - free memory allocated using the *_talloc() function family
  74. * with function and line info
  75. * @ptr: pointer to memory to free
  76. * @func: name of the function requesting the free
  77. * @line: line number of the call site in @func
  78. *
  79. * Return: None
  80. */
  81. #define qdf_tfree_fl(ptr, func, line) \
  82. do { \
  83. __qdf_tfree_fl(ptr, func, line); \
  84. ptr = (void *)1; \
  85. } while (false)
  86. /**
  87. * qdf_talloc_assert_no_children() - assert @parent has not child allocations
  88. * @parent: the parent memory ponter to check
  89. *
  90. * Return: None
  91. */
  92. #define qdf_talloc_assert_no_children(parent) \
  93. qdf_talloc_assert_no_children_fl(parent, __func__, __LINE__)
  94. #ifdef WLAN_TALLOC_DEBUG
  95. /**
  96. * qdf_talloc_feature_init() - initialize the QDF talloc feature
  97. *
  98. * Must be called before allocating memory via a qdf_talloc API.
  99. *
  100. * Return: None
  101. */
  102. QDF_STATUS qdf_talloc_feature_init(void);
  103. /**
  104. * qdf_talloc_feature_deinit() - deinitialize the QDF talloc feature
  105. *
  106. * Memory must not be allocated via a qdf_talloc API after this is called. This
  107. * API asserts that the parent/child relationship table is empty in order to
  108. * catch memory leaks.
  109. *
  110. * Return: None
  111. */
  112. void qdf_talloc_feature_deinit(void);
  113. void *__qdf_talloc_fl(const void *parent, const size_t size,
  114. const char *func, const uint16_t line);
  115. void __qdf_tfree_fl(void *ptr, const char *func, const uint16_t line);
  116. /**
  117. * qdf_talloc_assert_no_children_fl() - assert @parent has not child allocations
  118. * @parent: the parent memory ponter to check
  119. * @func: name of the function requesting the assert
  120. * @line: line number of the call site in @func
  121. *
  122. * Return: None
  123. */
  124. void qdf_talloc_assert_no_children_fl(const void *parent,
  125. const char *func, const uint16_t line);
  126. #else /* WLAN_TALLOC_DEBUG */
  127. static inline QDF_STATUS qdf_talloc_feature_init(void)
  128. {
  129. return QDF_STATUS_SUCCESS;
  130. }
  131. static inline void qdf_talloc_feature_deinit(void) { }
  132. static inline void *__qdf_talloc_fl(const void *parent, const size_t size,
  133. const char *func, const uint16_t line)
  134. {
  135. return __zalloc_auto(size);
  136. }
  137. static inline void
  138. __qdf_tfree_fl(void *ptr, const char *func, const uint16_t line)
  139. {
  140. __free(ptr);
  141. }
  142. static inline void
  143. qdf_talloc_assert_no_children_fl(const void *parent,
  144. const char *func, const uint16_t line) { }
  145. #endif /* WLAN_TALLOC_DEBUG */
  146. #endif /* __QDF_TALLOC_H */