mem.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389
  1. /*
  2. * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. /**
  21. * @file
  22. * memory handling functions
  23. */
  24. #ifndef AVUTIL_MEM_H
  25. #define AVUTIL_MEM_H
  26. #include <limits.h>
  27. #include <stdint.h>
  28. #include "attributes.h"
  29. #include "error.h"
  30. #include "avutil.h"
  31. /**
  32. * @addtogroup lavu_mem
  33. * @{
  34. */
  35. #if defined(__INTEL_COMPILER) && __INTEL_COMPILER < 1110 || defined(__SUNPRO_C)
  36. #define DECLARE_ALIGNED(n,t,v) t __attribute__ ((aligned (n))) v
  37. #define DECLARE_ASM_CONST(n,t,v) const t __attribute__ ((aligned (n))) v
  38. #elif defined(__TI_COMPILER_VERSION__)
  39. #define DECLARE_ALIGNED(n,t,v) \
  40. AV_PRAGMA(DATA_ALIGN(v,n)) \
  41. t __attribute__((aligned(n))) v
  42. #define DECLARE_ASM_CONST(n,t,v) \
  43. AV_PRAGMA(DATA_ALIGN(v,n)) \
  44. static const t __attribute__((aligned(n))) v
  45. #elif defined(__GNUC__)
  46. #define DECLARE_ALIGNED(n,t,v) t __attribute__ ((aligned (n))) v
  47. #define DECLARE_ASM_CONST(n,t,v) static const t av_used __attribute__ ((aligned (n))) v
  48. #elif defined(_MSC_VER)
  49. #define DECLARE_ALIGNED(n,t,v) __declspec(align(n)) t v
  50. #define DECLARE_ASM_CONST(n,t,v) __declspec(align(n)) static const t v
  51. #else
  52. #define DECLARE_ALIGNED(n,t,v) t v
  53. #define DECLARE_ASM_CONST(n,t,v) static const t v
  54. #endif
  55. #if AV_GCC_VERSION_AT_LEAST(3,1)
  56. #define av_malloc_attrib __attribute__((__malloc__))
  57. #else
  58. #define av_malloc_attrib
  59. #endif
  60. #if AV_GCC_VERSION_AT_LEAST(4,3)
  61. #define av_alloc_size(...) __attribute__((alloc_size(__VA_ARGS__)))
  62. #else
  63. #define av_alloc_size(...)
  64. #endif
  65. /**
  66. * Allocate a block of size bytes with alignment suitable for all
  67. * memory accesses (including vectors if available on the CPU).
  68. * @param size Size in bytes for the memory block to be allocated.
  69. * @return Pointer to the allocated block, NULL if the block cannot
  70. * be allocated.
  71. * @see av_mallocz()
  72. */
  73. void *av_malloc(size_t size) av_malloc_attrib av_alloc_size(1);
  74. /**
  75. * Allocate a block of size * nmemb bytes with av_malloc().
  76. * @param nmemb Number of elements
  77. * @param size Size of the single element
  78. * @return Pointer to the allocated block, NULL if the block cannot
  79. * be allocated.
  80. * @see av_malloc()
  81. */
  82. av_alloc_size(1, 2) static inline void *av_malloc_array(size_t nmemb, size_t size)
  83. {
  84. if (!size || nmemb >= INT_MAX / size)
  85. return NULL;
  86. return av_malloc(nmemb * size);
  87. }
  88. /**
  89. * Allocate or reallocate a block of memory.
  90. * If ptr is NULL and size > 0, allocate a new block. If
  91. * size is zero, free the memory block pointed to by ptr.
  92. * @param ptr Pointer to a memory block already allocated with
  93. * av_realloc() or NULL.
  94. * @param size Size in bytes of the memory block to be allocated or
  95. * reallocated.
  96. * @return Pointer to a newly-reallocated block or NULL if the block
  97. * cannot be reallocated or the function is used to free the memory block.
  98. * @warning Pointers originating from the av_malloc() family of functions must
  99. * not be passed to av_realloc(). The former can be implemented using
  100. * memalign() (or other functions), and there is no guarantee that
  101. * pointers from such functions can be passed to realloc() at all.
  102. * The situation is undefined according to POSIX and may crash with
  103. * some libc implementations.
  104. * @see av_fast_realloc()
  105. */
  106. void *av_realloc(void *ptr, size_t size) av_alloc_size(2);
  107. /**
  108. * Allocate or reallocate a block of memory.
  109. * This function does the same thing as av_realloc, except:
  110. * - It takes two arguments and checks the result of the multiplication for
  111. * integer overflow.
  112. * - It frees the input block in case of failure, thus avoiding the memory
  113. * leak with the classic "buf = realloc(buf); if (!buf) return -1;".
  114. */
  115. void *av_realloc_f(void *ptr, size_t nelem, size_t elsize);
  116. /**
  117. * Allocate or reallocate a block of memory.
  118. * If *ptr is NULL and size > 0, allocate a new block. If
  119. * size is zero, free the memory block pointed to by ptr.
  120. * @param ptr Pointer to a pointer to a memory block already allocated
  121. * with av_realloc(), or pointer to a pointer to NULL.
  122. * The pointer is updated on success, or freed on failure.
  123. * @param size Size in bytes for the memory block to be allocated or
  124. * reallocated
  125. * @return Zero on success, an AVERROR error code on failure.
  126. * @warning Pointers originating from the av_malloc() family of functions must
  127. * not be passed to av_reallocp(). The former can be implemented using
  128. * memalign() (or other functions), and there is no guarantee that
  129. * pointers from such functions can be passed to realloc() at all.
  130. * The situation is undefined according to POSIX and may crash with
  131. * some libc implementations.
  132. */
  133. int av_reallocp(void *ptr, size_t size);
  134. /**
  135. * Allocate or reallocate an array.
  136. * If ptr is NULL and nmemb > 0, allocate a new block. If
  137. * nmemb is zero, free the memory block pointed to by ptr.
  138. * @param ptr Pointer to a memory block already allocated with
  139. * av_realloc() or NULL.
  140. * @param nmemb Number of elements
  141. * @param size Size of the single element
  142. * @return Pointer to a newly-reallocated block or NULL if the block
  143. * cannot be reallocated or the function is used to free the memory block.
  144. * @warning Pointers originating from the av_malloc() family of functions must
  145. * not be passed to av_realloc(). The former can be implemented using
  146. * memalign() (or other functions), and there is no guarantee that
  147. * pointers from such functions can be passed to realloc() at all.
  148. * The situation is undefined according to POSIX and may crash with
  149. * some libc implementations.
  150. */
  151. av_alloc_size(2, 3) void *av_realloc_array(void *ptr, size_t nmemb, size_t size);
  152. /**
  153. * Allocate or reallocate an array through a pointer to a pointer.
  154. * If *ptr is NULL and nmemb > 0, allocate a new block. If
  155. * nmemb is zero, free the memory block pointed to by ptr.
  156. * @param ptr Pointer to a pointer to a memory block already allocated
  157. * with av_realloc(), or pointer to a pointer to NULL.
  158. * The pointer is updated on success, or freed on failure.
  159. * @param nmemb Number of elements
  160. * @param size Size of the single element
  161. * @return Zero on success, an AVERROR error code on failure.
  162. * @warning Pointers originating from the av_malloc() family of functions must
  163. * not be passed to av_realloc(). The former can be implemented using
  164. * memalign() (or other functions), and there is no guarantee that
  165. * pointers from such functions can be passed to realloc() at all.
  166. * The situation is undefined according to POSIX and may crash with
  167. * some libc implementations.
  168. */
  169. av_alloc_size(2, 3) int av_reallocp_array(void *ptr, size_t nmemb, size_t size);
  170. /**
  171. * Free a memory block which has been allocated with av_malloc(z)() or
  172. * av_realloc().
  173. * @param ptr Pointer to the memory block which should be freed.
  174. * @note ptr = NULL is explicitly allowed.
  175. * @note It is recommended that you use av_freep() instead.
  176. * @see av_freep()
  177. */
  178. void av_free(void *ptr);
  179. /**
  180. * Allocate a block of size bytes with alignment suitable for all
  181. * memory accesses (including vectors if available on the CPU) and
  182. * zero all the bytes of the block.
  183. * @param size Size in bytes for the memory block to be allocated.
  184. * @return Pointer to the allocated block, NULL if it cannot be allocated.
  185. * @see av_malloc()
  186. */
  187. void *av_mallocz(size_t size) av_malloc_attrib av_alloc_size(1);
  188. /**
  189. * Allocate a block of nmemb * size bytes with alignment suitable for all
  190. * memory accesses (including vectors if available on the CPU) and
  191. * zero all the bytes of the block.
  192. * The allocation will fail if nmemb * size is greater than or equal
  193. * to INT_MAX.
  194. * @param nmemb
  195. * @param size
  196. * @return Pointer to the allocated block, NULL if it cannot be allocated.
  197. */
  198. void *av_calloc(size_t nmemb, size_t size) av_malloc_attrib;
  199. /**
  200. * Allocate a block of size * nmemb bytes with av_mallocz().
  201. * @param nmemb Number of elements
  202. * @param size Size of the single element
  203. * @return Pointer to the allocated block, NULL if the block cannot
  204. * be allocated.
  205. * @see av_mallocz()
  206. * @see av_malloc_array()
  207. */
  208. av_alloc_size(1, 2) static inline void *av_mallocz_array(size_t nmemb, size_t size)
  209. {
  210. if (!size || nmemb >= INT_MAX / size)
  211. return NULL;
  212. return av_mallocz(nmemb * size);
  213. }
  214. /**
  215. * Duplicate the string s.
  216. * @param s string to be duplicated
  217. * @return Pointer to a newly-allocated string containing a
  218. * copy of s or NULL if the string cannot be allocated.
  219. */
  220. char *av_strdup(const char *s) av_malloc_attrib;
  221. /**
  222. * Duplicate a substring of the string s.
  223. * @param s string to be duplicated
  224. * @param len the maximum length of the resulting string (not counting the
  225. * terminating byte).
  226. * @return Pointer to a newly-allocated string containing a
  227. * copy of s or NULL if the string cannot be allocated.
  228. */
  229. char *av_strndup(const char *s, size_t len) av_malloc_attrib;
  230. /**
  231. * Duplicate the buffer p.
  232. * @param p buffer to be duplicated
  233. * @return Pointer to a newly allocated buffer containing a
  234. * copy of p or NULL if the buffer cannot be allocated.
  235. */
  236. void *av_memdup(const void *p, size_t size);
  237. /**
  238. * Free a memory block which has been allocated with av_malloc(z)() or
  239. * av_realloc() and set the pointer pointing to it to NULL.
  240. * @param ptr Pointer to the pointer to the memory block which should
  241. * be freed.
  242. * @note passing a pointer to a NULL pointer is safe and leads to no action.
  243. * @see av_free()
  244. */
  245. void av_freep(void *ptr);
  246. /**
  247. * Add an element to a dynamic array.
  248. *
  249. * The array to grow is supposed to be an array of pointers to
  250. * structures, and the element to add must be a pointer to an already
  251. * allocated structure.
  252. *
  253. * The array is reallocated when its size reaches powers of 2.
  254. * Therefore, the amortized cost of adding an element is constant.
  255. *
  256. * In case of success, the pointer to the array is updated in order to
  257. * point to the new grown array, and the number pointed to by nb_ptr
  258. * is incremented.
  259. * In case of failure, the array is freed, *tab_ptr is set to NULL and
  260. * *nb_ptr is set to 0.
  261. *
  262. * @param tab_ptr pointer to the array to grow
  263. * @param nb_ptr pointer to the number of elements in the array
  264. * @param elem element to add
  265. * @see av_dynarray_add_nofree(), av_dynarray2_add()
  266. */
  267. void av_dynarray_add(void *tab_ptr, int *nb_ptr, void *elem);
  268. /**
  269. * Add an element to a dynamic array.
  270. *
  271. * Function has the same functionality as av_dynarray_add(),
  272. * but it doesn't free memory on fails. It returns error code
  273. * instead and leave current buffer untouched.
  274. *
  275. * @param tab_ptr pointer to the array to grow
  276. * @param nb_ptr pointer to the number of elements in the array
  277. * @param elem element to add
  278. * @return >=0 on success, negative otherwise.
  279. * @see av_dynarray_add(), av_dynarray2_add()
  280. */
  281. int av_dynarray_add_nofree(void *tab_ptr, int *nb_ptr, void *elem);
  282. /**
  283. * Add an element of size elem_size to a dynamic array.
  284. *
  285. * The array is reallocated when its number of elements reaches powers of 2.
  286. * Therefore, the amortized cost of adding an element is constant.
  287. *
  288. * In case of success, the pointer to the array is updated in order to
  289. * point to the new grown array, and the number pointed to by nb_ptr
  290. * is incremented.
  291. * In case of failure, the array is freed, *tab_ptr is set to NULL and
  292. * *nb_ptr is set to 0.
  293. *
  294. * @param tab_ptr pointer to the array to grow
  295. * @param nb_ptr pointer to the number of elements in the array
  296. * @param elem_size size in bytes of the elements in the array
  297. * @param elem_data pointer to the data of the element to add. If NULL, the space of
  298. * the new added element is not filled.
  299. * @return pointer to the data of the element to copy in the new allocated space.
  300. * If NULL, the new allocated space is left uninitialized."
  301. * @see av_dynarray_add(), av_dynarray_add_nofree()
  302. */
  303. void *av_dynarray2_add(void **tab_ptr, int *nb_ptr, size_t elem_size,
  304. const uint8_t *elem_data);
  305. /**
  306. * Multiply two size_t values checking for overflow.
  307. * @return 0 if success, AVERROR(EINVAL) if overflow.
  308. */
  309. static inline int av_size_mult(size_t a, size_t b, size_t *r)
  310. {
  311. size_t t = a * b;
  312. /* Hack inspired from glibc: only try the division if nelem and elsize
  313. * are both greater than sqrt(SIZE_MAX). */
  314. if ((a | b) >= ((size_t)1 << (sizeof(size_t) * 4)) && a && t / a != b)
  315. return AVERROR(EINVAL);
  316. *r = t;
  317. return 0;
  318. }
  319. /**
  320. * Set the maximum size that may me allocated in one block.
  321. */
  322. void av_max_alloc(size_t max);
  323. /**
  324. * deliberately overlapping memcpy implementation
  325. * @param dst destination buffer
  326. * @param back how many bytes back we start (the initial size of the overlapping window), must be > 0
  327. * @param cnt number of bytes to copy, must be >= 0
  328. *
  329. * cnt > back is valid, this will copy the bytes we just copied,
  330. * thus creating a repeating pattern with a period length of back.
  331. */
  332. void av_memcpy_backptr(uint8_t *dst, int back, int cnt);
  333. /**
  334. * Reallocate the given block if it is not large enough, otherwise do nothing.
  335. *
  336. * @see av_realloc
  337. */
  338. void *av_fast_realloc(void *ptr, unsigned int *size, size_t min_size);
  339. /**
  340. * Allocate a buffer, reusing the given one if large enough.
  341. *
  342. * Contrary to av_fast_realloc the current buffer contents might not be
  343. * preserved and on error the old buffer is freed, thus no special
  344. * handling to avoid memleaks is necessary.
  345. *
  346. * @param ptr pointer to pointer to already allocated buffer, overwritten with pointer to new buffer
  347. * @param size size of the buffer *ptr points to
  348. * @param min_size minimum size of *ptr buffer after returning, *ptr will be NULL and
  349. * *size 0 if an error occurred.
  350. */
  351. void av_fast_malloc(void *ptr, unsigned int *size, size_t min_size);
  352. /**
  353. * @}
  354. */
  355. #endif /* AVUTIL_MEM_H */