Allocator.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354
  1. /* vim: set expandtab ts=4 sw=4: */
  2. /*
  3. * You may redistribute this program and/or modify it under the terms of
  4. * the GNU General Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. * You should have received a copy of the GNU General Public License
  13. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. #ifndef Allocator_H
  16. #define Allocator_H
  17. #include "util/Identity.h"
  18. #include "util/Gcc.h"
  19. #include "util/Linker.h"
  20. Linker_require("memory/Allocator.c")
  21. /**
  22. * A handle which is provided in response to calls to Allocator_onFree().
  23. * This handle is sutable for use with Allocator_notOnFree() to cancel a job.
  24. */
  25. struct Allocator_OnFreeJob;
  26. typedef int (* Allocator_OnFreeCallback)(struct Allocator_OnFreeJob* job);
  27. struct Allocator_OnFreeJob
  28. {
  29. /** Set by caller. */
  30. Allocator_OnFreeCallback callback;
  31. void* userData;
  32. };
  33. /**
  34. * If an onFree job needs to complete asynchronously, it should return this,
  35. * then when it is complete it must call job->complete(job) on the OnFreeJob
  36. * which was passed to it.
  37. */
  38. #define Allocator_ONFREE_ASYNC 10000
  39. /**
  40. * Allocator for structured memory management.
  41. * The objective of the allocator structure is to make manual memory management easier, specifically
  42. * to make making a mistake difficult.
  43. *
  44. * Every function which allocates memory, either to return a structure or to do processing which
  45. * cannot be done on the stack takes an allocator as a parameter.
  46. *
  47. * In traditional C, each call to malloc() must be traced to a corrisponding free() call, a
  48. * laborious process which can be partially automated but inevitably leaves some memory leak
  49. * investigative work to the developer. Allocator attempts to move the memory freeing operations
  50. * close to the memory allocations thus making bugs easy to spot without searching over large
  51. * amounts of code.
  52. *
  53. * With Allocator, you might do the following:
  54. *
  55. * struct Allocator* child = Allocator_child(myAlloc); <-- myAlloc is the one provided to you
  56. * potentiallyLeakyFunction(child);
  57. * Allocator_free(child);
  58. *
  59. * Given this simple pattern, as long as potentiallyLeakyFunction() did not bypass the allocator
  60. * system using malloc() directly, we can prove that it is not the source of a memory leak.
  61. * As the real code is far more complex than this contrived example, there are a few rules which
  62. * have proven useful in preventing both memory leaks and dangling pointers.
  63. *
  64. * #1 Do not create new root allocators, create child allocators instead.
  65. * When you call MallocAllocator_new() or equivilant, you are creating a parentless allocator and
  66. * you must take responsability for it's freeing when you are finished with it. In cjdns there is
  67. * only one call to a main allocator and all other allocators are spawned from it using
  68. * Allocator_child().
  69. * Exception: In certain code which interfaces with libuv, an alternate root allocator is necessary
  70. * because libuv teardown process is asynchronous and memory used by libuv must not be freed
  71. * until this is complete.
  72. *
  73. * #2 Free your allocators and not anyone else's.
  74. * With precious few exceptions, an allocator is always freed in the same .c file where it was
  75. * created. It is obviously rude to destroy something of someone else's just as it is rude to leave
  76. * things lying around expecting someone else to clean up after you. Sometimes you want to "take
  77. * ownership" of some memory which somebody else allocated and they are passing to you. Rather
  78. * than slowly allocate your own memory and copy the data over, you can use Allocator_adopt() to
  79. * hold that memory in existance until you and the creator both are finished with it.
  80. *
  81. * #3 Assume that any allocator may be freed at any time.
  82. * A typical example is the ping message. When a ping is sent, a structure is allocated to hold
  83. * information about the ping so that when the response comes back it will be recognized. That
  84. * structure is inserted into a table of outstanding pings. If that allocator were freed while the
  85. * ping was outstanding, the response would come back and the table lookup would access freed
  86. * memory. To prevent this, every place where temporary memory is placed into a more permanent
  87. * structure (the table), Allocator_onFree() is used to hook the freeing of that memory and add a
  88. * function to remove the entry from the table.
  89. * Cjdns is notably lacking in "deregister" or "cancel" type functions as the accepted method of
  90. * deregistering a peer or cancelling an operation is by freeing the associated allocator, both
  91. * simplifying the code and avoiding bug prone "cold" codepaths.
  92. *
  93. * The function pointers in the allocator structure are best called through the associated macros.
  94. */
  95. struct Allocator
  96. {
  97. /** The name of the file where this allocator was created. */
  98. const char* fileName;
  99. /** The number of the line where this allocator was created. */
  100. int lineNum;
  101. /** Non-zero if allocator is currently freeing. */
  102. int isFreeing;
  103. };
  104. struct Allocator_Allocation
  105. {
  106. const char* fileName;
  107. int lineNum;
  108. unsigned long size;
  109. };
  110. /**
  111. * Get a child of a given allocator.
  112. *
  113. * @param alloc the parent
  114. * @param childNumber
  115. * @return a child allocator or NULL if childNumber is out of range.
  116. */
  117. struct Allocator* Allocator_getChild(struct Allocator* alloc, int childNumber);
  118. /**
  119. * Get one of the allocations held by this allocator.
  120. *
  121. * @param alloc the allocator.
  122. * @param allocNum the number of the allocation.
  123. * @return an allocation or NULL if allocNum is out of range.
  124. */
  125. struct Allocator_Allocation* Allocator_getAllocation(struct Allocator* alloc, int allocNum);
  126. /**
  127. * Allocate some memory from this memory allocator.
  128. * The allocation will be aligned on the size of a pointer, if you need further alignment then
  129. * you must handle it manually.
  130. *
  131. * @param alloc the memory allocator.
  132. * @param size the number of bytes to allocate.
  133. * @return a pointer to the newly allocated memory.
  134. * @see malloc()
  135. */
  136. void* Allocator__malloc(struct Allocator* allocator,
  137. unsigned long length,
  138. const char* fileName,
  139. int lineNum);
  140. #define Allocator_malloc(a, b) Allocator__malloc((a),(b),Gcc_SHORT_FILE,Gcc_LINE)
  141. /**
  142. * Allocate some memory from this memory allocator.
  143. * The allocation will be aligned on the size of a pointer, if you need further alignment then
  144. * you must handle it manually.
  145. * Memory location will be filled with 0 bytes.
  146. *
  147. * @param alloc the memory allocator.
  148. * @param size the number of bytes per element.
  149. * @param count the number of elements in the allocation.
  150. * @return a pointer to the newly allocated memory.
  151. * @see calloc()
  152. */
  153. void* Allocator__calloc(struct Allocator* alloc,
  154. unsigned long length,
  155. unsigned long count,
  156. const char* fileName,
  157. int lineNum);
  158. #define Allocator_calloc(a, b, c) Allocator__calloc((a),(b),(c),Gcc_SHORT_FILE,Gcc_LINE)
  159. /**
  160. * Re-allocate memory so that an allocation can be expanded.
  161. * The allocation will be aligned on the size of a pointer, if you need further alignment then
  162. * you must handle it manually.
  163. * Caution: Use of this function is not advisable with memory which is shared with other parts
  164. * of the system.
  165. *
  166. * @param alloc the allocator to allocate with, must be the same allocator which allocated orig.
  167. * @param orig a pointer to the original memory allocation which is to be reallocated.
  168. * if NULL, this function will behave exactly as Allocator_malloc().
  169. * @param size how much memory to allocate. If 0, this function will free the specific memory
  170. * without freeing the entire allocator.
  171. * @return a pointer to the newly allocated memory.
  172. */
  173. void* Allocator__realloc(struct Allocator* allocator,
  174. const void* original,
  175. unsigned long size,
  176. const char* fileName,
  177. int lineNum);
  178. #define Allocator_realloc(a, b, c) Allocator__realloc((a),(b),(c),Gcc_SHORT_FILE,Gcc_LINE)
  179. /**
  180. * Allocate some memory and copy something into that memory space.
  181. * The allocation will be aligned on the size of a pointer, if you need further alignment then
  182. * you must handle it manually.
  183. * Caution: if content is an expression, it will be evaluated twice.
  184. *
  185. * @param alloc the memory allocator.
  186. * @param content a pointer to something which will be cloned into the newly allocated memory.
  187. * the size of the new allocation will be sizeof(*content).
  188. * @return a pointer to the newly allocated memory.
  189. */
  190. void* Allocator__clone(struct Allocator* allocator,
  191. const void* toClone,
  192. unsigned long length,
  193. const char* fileName,
  194. int lineNum);
  195. #define Allocator_clone(a, b) Allocator__clone((a),(b),sizeof(*(b)),Gcc_SHORT_FILE,Gcc_LINE)
  196. /**
  197. * Spawn a new child of this allocator.
  198. * When this allocator is freed all of its children which have no surviving parent will also be
  199. * freed.
  200. *
  201. * @param alloc the memory allocator.
  202. * @return a child allocator.
  203. */
  204. struct Allocator* Allocator__child(struct Allocator* alloc, const char* fileName, int lineNum);
  205. #define Allocator_child(a) Allocator__child((a),Gcc_SHORT_FILE,Gcc_LINE)
  206. /**
  207. * Sever the link between an allocator and it's original parent.
  208. * If it has been adopted using Allocator_adopt() then the freeing of the allocator will be deferred
  209. * until the allocator returned by Allocator_adopt() has also been freed.
  210. * Any allocator which has no surviving parent allocator will be implicitly freed.
  211. *
  212. * @param alloc the allocator to disconnect from it's parent.
  213. */
  214. void Allocator__free(struct Allocator* alloc, const char* file, int line);
  215. #define Allocator_free(a) Allocator__free((a),Gcc_SHORT_FILE,Gcc_LINE)
  216. /**
  217. * Add a function to be called when the allocator is freed.
  218. *
  219. * @param alloc the memory allocator.
  220. * @param callback the function to call.
  221. * @return an Allocator_OnFreeJob which can be cancelled with Allocator_cancelOnFree().
  222. */
  223. struct Allocator_OnFreeJob* Allocator__onFree(struct Allocator* alloc,
  224. Allocator_OnFreeCallback callback,
  225. void* context,
  226. const char* file,
  227. int line);
  228. #define Allocator_onFree(a, b, c) Allocator__onFree((a), (b), (c), Gcc_SHORT_FILE, Gcc_LINE)
  229. /**
  230. * Remove a function which was registered with Allocator_onFree().
  231. *
  232. * @param job the return value from calling Allocator_onFree().
  233. * @return 0 if the job was found and removed, -1 otherwise.
  234. */
  235. int Allocator_cancelOnFree(struct Allocator_OnFreeJob* toRemove);
  236. /**
  237. * Tell the allocator that an asynchronous onFree() job has completed.
  238. *
  239. * @param job the return value from calling Allocator_onFree().
  240. */
  241. void Allocator_onFreeComplete(struct Allocator_OnFreeJob* onFreeJob);
  242. /**
  243. * Adopt an allocator.
  244. * This creates a child of parentAlloc which is an adopted parent of toAdopt.
  245. * When Allocator_free() is called on toAdopt or one of it's parents, it will not be freed until
  246. * Allocator_free() has also been called on the allocator newly returned by this function.
  247. * This function may be used multiple times.
  248. *
  249. * Caution: Do not free an allocator which you did not create, even after adopting it.
  250. *
  251. * Allocator_adopt(myAlloc, somebodyElsesAllocator);
  252. * asynchronousStuff();
  253. * .... some time later...
  254. * Allocator_free(somebodyElsesAllocator); <-- WRONG: you freed an allocator that is not yours.
  255. *
  256. *
  257. * struct Allocator* adoptedParent = Allocator_child(myAlloc);
  258. * Allocator_adopt(adoptedParent, somebodyElsesAllocator);
  259. * asynchronousStuff();
  260. * .... some time later...
  261. * Allocator_free(adoptedParent); <-- RIGHT
  262. *
  263. *
  264. * @param parentAlloc the allocator to create a child of.
  265. * @param toAdopt the allocator which should be adopted by the returned child allocator.
  266. * @return a new allocator which is an adopted parent of toAdopt.
  267. */
  268. void Allocator__adopt(struct Allocator* parentAlloc,
  269. struct Allocator* alloc,
  270. const char* fileName,
  271. int lineNum);
  272. #define Allocator_adopt(a, b) Allocator__adopt((a),(b),Gcc_SHORT_FILE,Gcc_LINE)
  273. /**
  274. * Set the heap protection canary for the next child allocator.
  275. * If heap protection canaries are enabled, they will be added at the beginning and end
  276. * of each memory allocation and checked during free and other operations. If one is corrupted
  277. * the program will be aborted to protect against security attacks and other faults.
  278. * By default the canaries are statically set but this allows the value to be changed so that
  279. * the value of the canaries is unpredictable in order to foil targetted attacks.
  280. */
  281. void Allocator_setCanary(struct Allocator* alloc, unsigned long value);
  282. /**
  283. * Get the number of bytes allocated by this allocator and all of it's children.
  284. */
  285. unsigned long Allocator_bytesAllocated(struct Allocator* allocator);
  286. /**
  287. * Dump a memory snapshot to stderr.
  288. *
  289. * @param alloc any allocator in the tree, the whole tree will be dumped.
  290. * @param includeAllocations if non-zero then the individual memory allocations will be printed.
  291. */
  292. void Allocator_snapshot(struct Allocator* alloc, int includeAllocations);
  293. /**
  294. * The underlying memory provider function which backs the allocator.
  295. * This function is roughly equivilant to realloc() API in that it is used for allocation,
  296. * reallocation and freeing but it also contains a context field which allows the provider
  297. * to store it's state in a non-global way and a group pointer.
  298. *
  299. * The group pointer is used to add memory to an allocation group. If the group pointer is set to
  300. * NULL, the provider is requested to begin a new group, if the group pointer is not null, it will
  301. * be set to an allocation which had previously been returned by the provider, in this case the
  302. * provider should internally group this allocation with the other as they will likely be freed
  303. * at the same time.
  304. *
  305. * @param ctx the context which was passed to Allocator_new() along with the provider.
  306. * @param original if this is NULL then the allocator is to provide a new allocation, otherwise it
  307. * should resize or free an existing allocation.
  308. * @param size if this is 0 then the allocator should free original and return NULL, if it is not
  309. * zero then original should be resized or created.
  310. * @param group if this is not NULL then the provider is being informed that the current allocation
  311. * and the allocation in group are likely to have the same life span and should be
  312. * colocated if it is logical to do so.
  313. */
  314. #ifndef Allocator_Provider_CONTEXT_TYPE
  315. #define Allocator_Provider_CONTEXT_TYPE void
  316. #endif
  317. typedef void* (* Allocator_Provider)(Allocator_Provider_CONTEXT_TYPE* ctx,
  318. struct Allocator_Allocation* original,
  319. unsigned long size,
  320. struct Allocator* group);
  321. struct Allocator* Allocator_new(unsigned long sizeLimit,
  322. Allocator_Provider provider,
  323. Allocator_Provider_CONTEXT_TYPE* providerContext,
  324. const char* fileName,
  325. int lineNum);
  326. #endif