]> git.sesse.net Git - ffmpeg/blob - libavutil/mem.c
mem: Do not check unsigned values for negative size
[ffmpeg] / libavutil / mem.c
1 /*
2  * default memory allocator for libavutil
3  * Copyright (c) 2002 Fabrice Bellard
4  *
5  * This file is part of Libav.
6  *
7  * Libav is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * Libav is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file
24  * default memory allocator for libavutil
25  */
26
27 #include "config.h"
28
29 #include <limits.h>
30 #include <stdint.h>
31 #include <stdlib.h>
32 #include <string.h>
33 #if HAVE_MALLOC_H
34 #include <malloc.h>
35 #endif
36
37 #include "avutil.h"
38 #include "intreadwrite.h"
39 #include "mem.h"
40
41 #ifdef MALLOC_PREFIX
42
43 #define malloc         AV_JOIN(MALLOC_PREFIX, malloc)
44 #define memalign       AV_JOIN(MALLOC_PREFIX, memalign)
45 #define posix_memalign AV_JOIN(MALLOC_PREFIX, posix_memalign)
46 #define realloc        AV_JOIN(MALLOC_PREFIX, realloc)
47 #define free           AV_JOIN(MALLOC_PREFIX, free)
48
49 void *malloc(size_t size);
50 void *memalign(size_t align, size_t size);
51 int   posix_memalign(void **ptr, size_t align, size_t size);
52 void *realloc(void *ptr, size_t size);
53 void  free(void *ptr);
54
55 #endif /* MALLOC_PREFIX */
56
57 /* You can redefine av_malloc and av_free in your project to use your
58  * memory allocator. You do not need to suppress this file because the
59  * linker will do it automatically. */
60
61 void *av_malloc(size_t size)
62 {
63     void *ptr = NULL;
64 #if CONFIG_MEMALIGN_HACK
65     long diff;
66 #endif
67
68     /* let's disallow possibly ambiguous cases */
69     if (size > (INT_MAX - 32) || !size)
70         return NULL;
71
72 #if CONFIG_MEMALIGN_HACK
73     ptr = malloc(size + 32);
74     if (!ptr)
75         return ptr;
76     diff              = ((-(long)ptr - 1) & 31) + 1;
77     ptr               = (char *)ptr + diff;
78     ((char *)ptr)[-1] = diff;
79 #elif HAVE_POSIX_MEMALIGN
80     if (posix_memalign(&ptr, 32, size))
81         ptr = NULL;
82 #elif HAVE_ALIGNED_MALLOC
83     ptr = _aligned_malloc(size, 32);
84 #elif HAVE_MEMALIGN
85     ptr = memalign(32, size);
86     /* Why 64?
87      * Indeed, we should align it:
88      *   on  4 for 386
89      *   on 16 for 486
90      *   on 32 for 586, PPro - K6-III
91      *   on 64 for K7 (maybe for P3 too).
92      * Because L1 and L2 caches are aligned on those values.
93      * But I don't want to code such logic here!
94      */
95     /* Why 32?
96      * For AVX ASM. SSE / NEON needs only 16.
97      * Why not larger? Because I did not see a difference in benchmarks ...
98      */
99     /* benchmarks with P3
100      * memalign(64) + 1          3071, 3051, 3032
101      * memalign(64) + 2          3051, 3032, 3041
102      * memalign(64) + 4          2911, 2896, 2915
103      * memalign(64) + 8          2545, 2554, 2550
104      * memalign(64) + 16         2543, 2572, 2563
105      * memalign(64) + 32         2546, 2545, 2571
106      * memalign(64) + 64         2570, 2533, 2558
107      *
108      * BTW, malloc seems to do 8-byte alignment by default here.
109      */
110 #else
111     ptr = malloc(size);
112 #endif
113     return ptr;
114 }
115
116 void *av_realloc(void *ptr, size_t size)
117 {
118 #if CONFIG_MEMALIGN_HACK
119     int diff;
120 #endif
121
122     /* let's disallow possibly ambiguous cases */
123     if (size > (INT_MAX - 16))
124         return NULL;
125
126 #if CONFIG_MEMALIGN_HACK
127     //FIXME this isn't aligned correctly, though it probably isn't needed
128     if (!ptr)
129         return av_malloc(size);
130     diff = ((char *)ptr)[-1];
131     return (char *)realloc((char *)ptr - diff, size + diff) + diff;
132 #elif HAVE_ALIGNED_MALLOC
133     return _aligned_realloc(ptr, size, 32);
134 #else
135     return realloc(ptr, size);
136 #endif
137 }
138
139 void *av_realloc_array(void *ptr, size_t nmemb, size_t size)
140 {
141     if (!size || nmemb >= INT_MAX / size)
142         return NULL;
143     return av_realloc(ptr, nmemb * size);
144 }
145
146 int av_reallocp_array(void *ptr, size_t nmemb, size_t size)
147 {
148     void **ptrptr = ptr;
149     void *ret;
150     if (!size || nmemb >= INT_MAX / size)
151         return AVERROR(ENOMEM);
152     if (!nmemb) {
153         av_freep(ptr);
154         return 0;
155     }
156     ret = av_realloc(*ptrptr, nmemb * size);
157     if (!ret) {
158         av_freep(ptr);
159         return AVERROR(ENOMEM);
160     }
161     *ptrptr = ret;
162     return 0;
163 }
164
165 void av_free(void *ptr)
166 {
167 #if CONFIG_MEMALIGN_HACK
168     if (ptr)
169         free((char *)ptr - ((char *)ptr)[-1]);
170 #elif HAVE_ALIGNED_MALLOC
171     _aligned_free(ptr);
172 #else
173     free(ptr);
174 #endif
175 }
176
177 void av_freep(void *arg)
178 {
179     void **ptr = (void **)arg;
180     av_free(*ptr);
181     *ptr = NULL;
182 }
183
184 void *av_mallocz(size_t size)
185 {
186     void *ptr = av_malloc(size);
187     if (ptr)
188         memset(ptr, 0, size);
189     return ptr;
190 }
191
192 char *av_strdup(const char *s)
193 {
194     char *ptr = NULL;
195     if (s) {
196         int len = strlen(s) + 1;
197         ptr = av_malloc(len);
198         if (ptr)
199             memcpy(ptr, s, len);
200     }
201     return ptr;
202 }
203
204 static void fill16(uint8_t *dst, int len)
205 {
206     uint32_t v = AV_RN16(dst - 2);
207
208     v |= v << 16;
209
210     while (len >= 4) {
211         AV_WN32(dst, v);
212         dst += 4;
213         len -= 4;
214     }
215
216     while (len--) {
217         *dst = dst[-2];
218         dst++;
219     }
220 }
221
222 static void fill24(uint8_t *dst, int len)
223 {
224 #if HAVE_BIGENDIAN
225     uint32_t v = AV_RB24(dst - 3);
226     uint32_t a = v << 8  | v >> 16;
227     uint32_t b = v << 16 | v >> 8;
228     uint32_t c = v << 24 | v;
229 #else
230     uint32_t v = AV_RL24(dst - 3);
231     uint32_t a = v       | v << 24;
232     uint32_t b = v >> 8  | v << 16;
233     uint32_t c = v >> 16 | v << 8;
234 #endif
235
236     while (len >= 12) {
237         AV_WN32(dst,     a);
238         AV_WN32(dst + 4, b);
239         AV_WN32(dst + 8, c);
240         dst += 12;
241         len -= 12;
242     }
243
244     if (len >= 4) {
245         AV_WN32(dst, a);
246         dst += 4;
247         len -= 4;
248     }
249
250     if (len >= 4) {
251         AV_WN32(dst, b);
252         dst += 4;
253         len -= 4;
254     }
255
256     while (len--) {
257         *dst = dst[-3];
258         dst++;
259     }
260 }
261
262 static void fill32(uint8_t *dst, int len)
263 {
264     uint32_t v = AV_RN32(dst - 4);
265
266     while (len >= 4) {
267         AV_WN32(dst, v);
268         dst += 4;
269         len -= 4;
270     }
271
272     while (len--) {
273         *dst = dst[-4];
274         dst++;
275     }
276 }
277
278 void av_memcpy_backptr(uint8_t *dst, int back, int cnt)
279 {
280     const uint8_t *src = &dst[-back];
281     if (!back)
282         return;
283
284     if (back == 1) {
285         memset(dst, *src, cnt);
286     } else if (back == 2) {
287         fill16(dst, cnt);
288     } else if (back == 3) {
289         fill24(dst, cnt);
290     } else if (back == 4) {
291         fill32(dst, cnt);
292     } else {
293         if (cnt >= 16) {
294             int blocklen = back;
295             while (cnt > blocklen) {
296                 memcpy(dst, src, blocklen);
297                 dst       += blocklen;
298                 cnt       -= blocklen;
299                 blocklen <<= 1;
300             }
301             memcpy(dst, src, cnt);
302             return;
303         }
304         if (cnt >= 8) {
305             AV_COPY32U(dst,     src);
306             AV_COPY32U(dst + 4, src + 4);
307             src += 8;
308             dst += 8;
309             cnt -= 8;
310         }
311         if (cnt >= 4) {
312             AV_COPY32U(dst, src);
313             src += 4;
314             dst += 4;
315             cnt -= 4;
316         }
317         if (cnt >= 2) {
318             AV_COPY16U(dst, src);
319             src += 2;
320             dst += 2;
321             cnt -= 2;
322         }
323         if (cnt)
324             *dst = *src;
325     }
326 }