blob: 545d5a2c326e1fd8e90070955acd6d7edf8931e7 [file] [log] [blame] [raw]
Paul Bakker6e339b52013-07-03 13:37:05 +02001/*
2 * Buffer-based memory allocator
3 *
Manuel Pégourié-Gonnard6fb81872015-07-27 11:11:48 +02004 * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +02005 * SPDX-License-Identifier: Apache-2.0
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License"); you may
8 * not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
15 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
Paul Bakker6e339b52013-07-03 13:37:05 +020018 *
Manuel Pégourié-Gonnardfe446432015-03-06 13:17:10 +000019 * This file is part of mbed TLS (https://tls.mbed.org)
Paul Bakker6e339b52013-07-03 13:37:05 +020020 */
21
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020022#if !defined(MBEDTLS_CONFIG_FILE)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000023#include "mbedtls/config.h"
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020024#else
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020025#include MBEDTLS_CONFIG_FILE
Manuel Pégourié-Gonnardcef4ad22014-04-29 12:39:06 +020026#endif
Paul Bakker6e339b52013-07-03 13:37:05 +020027
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020028#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000029#include "mbedtls/memory_buffer_alloc.h"
Paul Bakker6e339b52013-07-03 13:37:05 +020030
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020031/* No need for the header guard as MBEDTLS_MEMORY_BUFFER_ALLOC_C
32 is dependent upon MBEDTLS_PLATFORM_C */
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000033#include "mbedtls/platform.h"
Rich Evansd08a6052015-02-12 12:17:10 +000034
Paul Bakker6e339b52013-07-03 13:37:05 +020035#include <string.h>
36
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020037#if defined(MBEDTLS_MEMORY_BACKTRACE)
Paul Bakker6e339b52013-07-03 13:37:05 +020038#include <execinfo.h>
Paul Bakker6e339b52013-07-03 13:37:05 +020039#endif
40
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020041#if defined(MBEDTLS_THREADING_C)
Manuel Pégourié-Gonnard7f809972015-03-09 17:05:11 +000042#include "mbedtls/threading.h"
Paul Bakker1337aff2013-09-29 14:45:34 +020043#endif
44
Paul Bakker34617722014-06-13 17:20:13 +020045/* Implementation that should never be optimized out by the compiler */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020046static void mbedtls_zeroize( void *v, size_t n ) {
Paul Bakker34617722014-06-13 17:20:13 +020047 volatile unsigned char *p = v; while( n-- ) *p++ = 0;
48}
49
Paul Bakker6e339b52013-07-03 13:37:05 +020050#define MAGIC1 0xFF00AA55
51#define MAGIC2 0xEE119966
52#define MAX_BT 20
53
54typedef struct _memory_header memory_header;
55struct _memory_header
56{
57 size_t magic1;
58 size_t size;
59 size_t alloc;
60 memory_header *prev;
61 memory_header *next;
Paul Bakker1ef120f2013-07-03 17:20:39 +020062 memory_header *prev_free;
63 memory_header *next_free;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020064#if defined(MBEDTLS_MEMORY_BACKTRACE)
Paul Bakker6e339b52013-07-03 13:37:05 +020065 char **trace;
66 size_t trace_count;
67#endif
68 size_t magic2;
69};
70
71typedef struct
72{
73 unsigned char *buf;
74 size_t len;
75 memory_header *first;
Paul Bakker1ef120f2013-07-03 17:20:39 +020076 memory_header *first_free;
Paul Bakker6e339b52013-07-03 13:37:05 +020077 int verify;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020078#if defined(MBEDTLS_MEMORY_DEBUG)
Manuel Pégourié-Gonnard200e7312015-05-26 17:42:13 +020079 size_t alloc_count;
Paul Bakker891998e2013-07-03 14:45:05 +020080 size_t free_count;
81 size_t total_used;
82 size_t maximum_used;
83 size_t header_count;
Manuel Pégourié-Gonnard70896a02013-12-30 18:06:41 +010084 size_t maximum_header_count;
Paul Bakker1337aff2013-09-29 14:45:34 +020085#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020086#if defined(MBEDTLS_THREADING_C)
87 mbedtls_threading_mutex_t mutex;
Paul Bakker891998e2013-07-03 14:45:05 +020088#endif
Paul Bakker6e339b52013-07-03 13:37:05 +020089}
90buffer_alloc_ctx;
91
92static buffer_alloc_ctx heap;
93
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020094#if defined(MBEDTLS_MEMORY_DEBUG)
Paul Bakker6e339b52013-07-03 13:37:05 +020095static void debug_header( memory_header *hdr )
96{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020097#if defined(MBEDTLS_MEMORY_BACKTRACE)
Paul Bakker6e339b52013-07-03 13:37:05 +020098 size_t i;
99#endif
100
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200101 mbedtls_fprintf( stderr, "HDR: PTR(%10zu), PREV(%10zu), NEXT(%10zu), "
Manuel Pégourié-Gonnard97884a32014-07-12 02:27:35 +0200102 "ALLOC(%zu), SIZE(%10zu)\n",
Paul Bakker7dc4c442014-02-01 22:50:26 +0100103 (size_t) hdr, (size_t) hdr->prev, (size_t) hdr->next,
104 hdr->alloc, hdr->size );
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200105 mbedtls_fprintf( stderr, " FPREV(%10zu), FNEXT(%10zu)\n",
Paul Bakker7dc4c442014-02-01 22:50:26 +0100106 (size_t) hdr->prev_free, (size_t) hdr->next_free );
Paul Bakker6e339b52013-07-03 13:37:05 +0200107
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200108#if defined(MBEDTLS_MEMORY_BACKTRACE)
109 mbedtls_fprintf( stderr, "TRACE: \n" );
Paul Bakker6e339b52013-07-03 13:37:05 +0200110 for( i = 0; i < hdr->trace_count; i++ )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200111 mbedtls_fprintf( stderr, "%s\n", hdr->trace[i] );
112 mbedtls_fprintf( stderr, "\n" );
Paul Bakker6e339b52013-07-03 13:37:05 +0200113#endif
114}
115
116static void debug_chain()
117{
118 memory_header *cur = heap.first;
119
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200120 mbedtls_fprintf( stderr, "\nBlock list\n" );
Paul Bakker6e339b52013-07-03 13:37:05 +0200121 while( cur != NULL )
122 {
123 debug_header( cur );
Paul Bakker6e339b52013-07-03 13:37:05 +0200124 cur = cur->next;
Paul Bakker1ef120f2013-07-03 17:20:39 +0200125 }
126
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200127 mbedtls_fprintf( stderr, "Free list\n" );
Paul Bakker1ef120f2013-07-03 17:20:39 +0200128 cur = heap.first_free;
129
130 while( cur != NULL )
131 {
132 debug_header( cur );
133 cur = cur->next_free;
Paul Bakker6e339b52013-07-03 13:37:05 +0200134 }
135}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200136#endif /* MBEDTLS_MEMORY_DEBUG */
Paul Bakker6e339b52013-07-03 13:37:05 +0200137
138static int verify_header( memory_header *hdr )
139{
140 if( hdr->magic1 != MAGIC1 )
141 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200142#if defined(MBEDTLS_MEMORY_DEBUG)
143 mbedtls_fprintf( stderr, "FATAL: MAGIC1 mismatch\n" );
Paul Bakker6e339b52013-07-03 13:37:05 +0200144#endif
145 return( 1 );
146 }
147
148 if( hdr->magic2 != MAGIC2 )
149 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200150#if defined(MBEDTLS_MEMORY_DEBUG)
151 mbedtls_fprintf( stderr, "FATAL: MAGIC2 mismatch\n" );
Paul Bakker6e339b52013-07-03 13:37:05 +0200152#endif
153 return( 1 );
154 }
155
156 if( hdr->alloc > 1 )
157 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200158#if defined(MBEDTLS_MEMORY_DEBUG)
159 mbedtls_fprintf( stderr, "FATAL: alloc has illegal value\n" );
Paul Bakker1ef120f2013-07-03 17:20:39 +0200160#endif
161 return( 1 );
162 }
163
164 if( hdr->prev != NULL && hdr->prev == hdr->next )
165 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200166#if defined(MBEDTLS_MEMORY_DEBUG)
167 mbedtls_fprintf( stderr, "FATAL: prev == next\n" );
Paul Bakker1ef120f2013-07-03 17:20:39 +0200168#endif
169 return( 1 );
170 }
171
172 if( hdr->prev_free != NULL && hdr->prev_free == hdr->next_free )
173 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200174#if defined(MBEDTLS_MEMORY_DEBUG)
175 mbedtls_fprintf( stderr, "FATAL: prev_free == next_free\n" );
Paul Bakker6e339b52013-07-03 13:37:05 +0200176#endif
177 return( 1 );
178 }
179
180 return( 0 );
181}
182
183static int verify_chain()
184{
185 memory_header *prv = heap.first, *cur = heap.first->next;
186
187 if( verify_header( heap.first ) != 0 )
188 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200189#if defined(MBEDTLS_MEMORY_DEBUG)
190 mbedtls_fprintf( stderr, "FATAL: verification of first header "
Paul Bakker7dc4c442014-02-01 22:50:26 +0100191 "failed\n" );
Paul Bakker6e339b52013-07-03 13:37:05 +0200192#endif
193 return( 1 );
194 }
195
196 if( heap.first->prev != NULL )
197 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200198#if defined(MBEDTLS_MEMORY_DEBUG)
199 mbedtls_fprintf( stderr, "FATAL: verification failed: "
Paul Bakker7dc4c442014-02-01 22:50:26 +0100200 "first->prev != NULL\n" );
Paul Bakker6e339b52013-07-03 13:37:05 +0200201#endif
202 return( 1 );
203 }
204
205 while( cur != NULL )
206 {
207 if( verify_header( cur ) != 0 )
208 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200209#if defined(MBEDTLS_MEMORY_DEBUG)
210 mbedtls_fprintf( stderr, "FATAL: verification of header "
Paul Bakker7dc4c442014-02-01 22:50:26 +0100211 "failed\n" );
Paul Bakker6e339b52013-07-03 13:37:05 +0200212#endif
213 return( 1 );
214 }
215
216 if( cur->prev != prv )
217 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200218#if defined(MBEDTLS_MEMORY_DEBUG)
219 mbedtls_fprintf( stderr, "FATAL: verification failed: "
Paul Bakker7dc4c442014-02-01 22:50:26 +0100220 "cur->prev != prv\n" );
Paul Bakker6e339b52013-07-03 13:37:05 +0200221#endif
222 return( 1 );
223 }
224
225 prv = cur;
226 cur = cur->next;
227 }
228
229 return( 0 );
230}
231
Manuel Pégourié-Gonnard200e7312015-05-26 17:42:13 +0200232static void *buffer_alloc_calloc( size_t n, size_t size )
Paul Bakker6e339b52013-07-03 13:37:05 +0200233{
Paul Bakker1ef120f2013-07-03 17:20:39 +0200234 memory_header *new, *cur = heap.first_free;
Paul Bakker6e339b52013-07-03 13:37:05 +0200235 unsigned char *p;
Manuel Pégourié-Gonnard200e7312015-05-26 17:42:13 +0200236 void *ret;
237 size_t original_len, len;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200238#if defined(MBEDTLS_MEMORY_BACKTRACE)
Paul Bakker6e339b52013-07-03 13:37:05 +0200239 void *trace_buffer[MAX_BT];
240 size_t trace_cnt;
241#endif
242
243 if( heap.buf == NULL || heap.first == NULL )
Manuel Pégourié-Gonnard200e7312015-05-26 17:42:13 +0200244 return( NULL );
245
246 original_len = len = n * size;
247
248 if( n != 0 && len / n != size )
Paul Bakker6e339b52013-07-03 13:37:05 +0200249 return( NULL );
250
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200251 if( len % MBEDTLS_MEMORY_ALIGN_MULTIPLE )
Paul Bakker6e339b52013-07-03 13:37:05 +0200252 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200253 len -= len % MBEDTLS_MEMORY_ALIGN_MULTIPLE;
254 len += MBEDTLS_MEMORY_ALIGN_MULTIPLE;
Paul Bakker6e339b52013-07-03 13:37:05 +0200255 }
256
257 // Find block that fits
258 //
259 while( cur != NULL )
260 {
Paul Bakker1ef120f2013-07-03 17:20:39 +0200261 if( cur->size >= len )
Paul Bakker6e339b52013-07-03 13:37:05 +0200262 break;
263
Paul Bakker1ef120f2013-07-03 17:20:39 +0200264 cur = cur->next_free;
Paul Bakker6e339b52013-07-03 13:37:05 +0200265 }
266
267 if( cur == NULL )
268 return( NULL );
Paul Bakker1ef120f2013-07-03 17:20:39 +0200269
270 if( cur->alloc != 0 )
271 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200272#if defined(MBEDTLS_MEMORY_DEBUG)
273 mbedtls_fprintf( stderr, "FATAL: block in free_list but allocated "
Paul Bakker7dc4c442014-02-01 22:50:26 +0100274 "data\n" );
Paul Bakker1ef120f2013-07-03 17:20:39 +0200275#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200276 mbedtls_exit( 1 );
Paul Bakker1ef120f2013-07-03 17:20:39 +0200277 }
Paul Bakker6e339b52013-07-03 13:37:05 +0200278
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200279#if defined(MBEDTLS_MEMORY_DEBUG)
Manuel Pégourié-Gonnard6c967b92015-05-27 20:18:39 +0200280 heap.alloc_count++;
Paul Bakker891998e2013-07-03 14:45:05 +0200281#endif
282
Paul Bakker6e339b52013-07-03 13:37:05 +0200283 // Found location, split block if > memory_header + 4 room left
284 //
Paul Bakkerb9e4e2c2014-05-01 14:18:25 +0200285 if( cur->size - len < sizeof(memory_header) +
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200286 MBEDTLS_MEMORY_ALIGN_MULTIPLE )
Paul Bakker6e339b52013-07-03 13:37:05 +0200287 {
288 cur->alloc = 1;
Paul Bakker1ef120f2013-07-03 17:20:39 +0200289
290 // Remove from free_list
291 //
292 if( cur->prev_free != NULL )
293 cur->prev_free->next_free = cur->next_free;
294 else
295 heap.first_free = cur->next_free;
296
297 if( cur->next_free != NULL )
298 cur->next_free->prev_free = cur->prev_free;
299
300 cur->prev_free = NULL;
301 cur->next_free = NULL;
Paul Bakker6e339b52013-07-03 13:37:05 +0200302
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200303#if defined(MBEDTLS_MEMORY_DEBUG)
Paul Bakker891998e2013-07-03 14:45:05 +0200304 heap.total_used += cur->size;
Paul Bakker66d5d072014-06-17 16:39:18 +0200305 if( heap.total_used > heap.maximum_used )
Paul Bakker891998e2013-07-03 14:45:05 +0200306 heap.maximum_used = heap.total_used;
307#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200308#if defined(MBEDTLS_MEMORY_BACKTRACE)
Paul Bakker6e339b52013-07-03 13:37:05 +0200309 trace_cnt = backtrace( trace_buffer, MAX_BT );
310 cur->trace = backtrace_symbols( trace_buffer, trace_cnt );
311 cur->trace_count = trace_cnt;
312#endif
313
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200314 if( ( heap.verify & MBEDTLS_MEMORY_VERIFY_ALLOC ) && verify_chain() != 0 )
315 mbedtls_exit( 1 );
Paul Bakker6e339b52013-07-03 13:37:05 +0200316
Manuel Pégourié-Gonnard200e7312015-05-26 17:42:13 +0200317 ret = (unsigned char *) cur + sizeof( memory_header );
318 memset( ret, 0, original_len );
319
320 return( ret );
Paul Bakker6e339b52013-07-03 13:37:05 +0200321 }
322
323 p = ( (unsigned char *) cur ) + sizeof(memory_header) + len;
324 new = (memory_header *) p;
325
326 new->size = cur->size - len - sizeof(memory_header);
327 new->alloc = 0;
328 new->prev = cur;
329 new->next = cur->next;
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200330#if defined(MBEDTLS_MEMORY_BACKTRACE)
Paul Bakker6e339b52013-07-03 13:37:05 +0200331 new->trace = NULL;
332 new->trace_count = 0;
333#endif
334 new->magic1 = MAGIC1;
335 new->magic2 = MAGIC2;
336
337 if( new->next != NULL )
338 new->next->prev = new;
339
Paul Bakker1ef120f2013-07-03 17:20:39 +0200340 // Replace cur with new in free_list
341 //
342 new->prev_free = cur->prev_free;
343 new->next_free = cur->next_free;
344 if( new->prev_free != NULL )
345 new->prev_free->next_free = new;
346 else
347 heap.first_free = new;
348
349 if( new->next_free != NULL )
350 new->next_free->prev_free = new;
351
Paul Bakker6e339b52013-07-03 13:37:05 +0200352 cur->alloc = 1;
353 cur->size = len;
354 cur->next = new;
Paul Bakker1ef120f2013-07-03 17:20:39 +0200355 cur->prev_free = NULL;
356 cur->next_free = NULL;
Paul Bakker6e339b52013-07-03 13:37:05 +0200357
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200358#if defined(MBEDTLS_MEMORY_DEBUG)
Paul Bakker891998e2013-07-03 14:45:05 +0200359 heap.header_count++;
Manuel Pégourié-Gonnard70896a02013-12-30 18:06:41 +0100360 if( heap.header_count > heap.maximum_header_count )
361 heap.maximum_header_count = heap.header_count;
Paul Bakker891998e2013-07-03 14:45:05 +0200362 heap.total_used += cur->size;
Paul Bakker66d5d072014-06-17 16:39:18 +0200363 if( heap.total_used > heap.maximum_used )
Paul Bakker891998e2013-07-03 14:45:05 +0200364 heap.maximum_used = heap.total_used;
365#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200366#if defined(MBEDTLS_MEMORY_BACKTRACE)
Paul Bakker6e339b52013-07-03 13:37:05 +0200367 trace_cnt = backtrace( trace_buffer, MAX_BT );
368 cur->trace = backtrace_symbols( trace_buffer, trace_cnt );
369 cur->trace_count = trace_cnt;
370#endif
371
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200372 if( ( heap.verify & MBEDTLS_MEMORY_VERIFY_ALLOC ) && verify_chain() != 0 )
373 mbedtls_exit( 1 );
Paul Bakker6e339b52013-07-03 13:37:05 +0200374
Manuel Pégourié-Gonnard200e7312015-05-26 17:42:13 +0200375 ret = (unsigned char *) cur + sizeof( memory_header );
376 memset( ret, 0, original_len );
377
378 return( ret );
Paul Bakker6e339b52013-07-03 13:37:05 +0200379}
380
381static void buffer_alloc_free( void *ptr )
382{
Paul Bakker1ef120f2013-07-03 17:20:39 +0200383 memory_header *hdr, *old = NULL;
Paul Bakker6e339b52013-07-03 13:37:05 +0200384 unsigned char *p = (unsigned char *) ptr;
385
Paul Bakker6e339b52013-07-03 13:37:05 +0200386 if( ptr == NULL || heap.buf == NULL || heap.first == NULL )
387 return;
388
389 if( p < heap.buf || p > heap.buf + heap.len )
390 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200391#if defined(MBEDTLS_MEMORY_DEBUG)
392 mbedtls_fprintf( stderr, "FATAL: mbedtls_free() outside of managed "
Paul Bakker7dc4c442014-02-01 22:50:26 +0100393 "space\n" );
Paul Bakker6e339b52013-07-03 13:37:05 +0200394#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200395 mbedtls_exit( 1 );
Paul Bakker6e339b52013-07-03 13:37:05 +0200396 }
397
398 p -= sizeof(memory_header);
399 hdr = (memory_header *) p;
400
401 if( verify_header( hdr ) != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200402 mbedtls_exit( 1 );
Paul Bakker6e339b52013-07-03 13:37:05 +0200403
404 if( hdr->alloc != 1 )
405 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200406#if defined(MBEDTLS_MEMORY_DEBUG)
407 mbedtls_fprintf( stderr, "FATAL: mbedtls_free() on unallocated "
Paul Bakker7dc4c442014-02-01 22:50:26 +0100408 "data\n" );
Paul Bakker6e339b52013-07-03 13:37:05 +0200409#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200410 mbedtls_exit( 1 );
Paul Bakker6e339b52013-07-03 13:37:05 +0200411 }
412
413 hdr->alloc = 0;
414
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200415#if defined(MBEDTLS_MEMORY_DEBUG)
Paul Bakker891998e2013-07-03 14:45:05 +0200416 heap.free_count++;
417 heap.total_used -= hdr->size;
418#endif
419
SimonB42256112016-05-02 01:05:22 +0100420#if defined(MBEDTLS_MEMORY_BACKTRACE)
421 free( hdr->trace );
422 hdr->trace = NULL;
423 hdr->trace_count = 0;
424#endif
425
Paul Bakker6e339b52013-07-03 13:37:05 +0200426 // Regroup with block before
427 //
428 if( hdr->prev != NULL && hdr->prev->alloc == 0 )
429 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200430#if defined(MBEDTLS_MEMORY_DEBUG)
Paul Bakker891998e2013-07-03 14:45:05 +0200431 heap.header_count--;
432#endif
Paul Bakker6e339b52013-07-03 13:37:05 +0200433 hdr->prev->size += sizeof(memory_header) + hdr->size;
434 hdr->prev->next = hdr->next;
435 old = hdr;
436 hdr = hdr->prev;
437
438 if( hdr->next != NULL )
439 hdr->next->prev = hdr;
440
Paul Bakker6e339b52013-07-03 13:37:05 +0200441 memset( old, 0, sizeof(memory_header) );
442 }
443
444 // Regroup with block after
445 //
446 if( hdr->next != NULL && hdr->next->alloc == 0 )
447 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200448#if defined(MBEDTLS_MEMORY_DEBUG)
Paul Bakker891998e2013-07-03 14:45:05 +0200449 heap.header_count--;
450#endif
Paul Bakker6e339b52013-07-03 13:37:05 +0200451 hdr->size += sizeof(memory_header) + hdr->next->size;
452 old = hdr->next;
453 hdr->next = hdr->next->next;
454
Paul Bakker1ef120f2013-07-03 17:20:39 +0200455 if( hdr->prev_free != NULL || hdr->next_free != NULL )
456 {
457 if( hdr->prev_free != NULL )
458 hdr->prev_free->next_free = hdr->next_free;
459 else
460 heap.first_free = hdr->next_free;
461
462 if( hdr->next_free != NULL )
463 hdr->next_free->prev_free = hdr->prev_free;
464 }
465
466 hdr->prev_free = old->prev_free;
467 hdr->next_free = old->next_free;
468
469 if( hdr->prev_free != NULL )
470 hdr->prev_free->next_free = hdr;
471 else
472 heap.first_free = hdr;
473
474 if( hdr->next_free != NULL )
475 hdr->next_free->prev_free = hdr;
476
Paul Bakker6e339b52013-07-03 13:37:05 +0200477 if( hdr->next != NULL )
478 hdr->next->prev = hdr;
479
Paul Bakker6e339b52013-07-03 13:37:05 +0200480 memset( old, 0, sizeof(memory_header) );
Paul Bakker1ef120f2013-07-03 17:20:39 +0200481 }
482
483 // Prepend to free_list if we have not merged
484 // (Does not have to stay in same order as prev / next list)
485 //
486 if( old == NULL )
487 {
488 hdr->next_free = heap.first_free;
Manuel Pégourié-Gonnard547ff662014-11-26 15:42:16 +0100489 if( heap.first_free != NULL )
490 heap.first_free->prev_free = hdr;
Paul Bakker1ef120f2013-07-03 17:20:39 +0200491 heap.first_free = hdr;
Paul Bakker6e339b52013-07-03 13:37:05 +0200492 }
Paul Bakker6e339b52013-07-03 13:37:05 +0200493
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200494 if( ( heap.verify & MBEDTLS_MEMORY_VERIFY_FREE ) && verify_chain() != 0 )
495 mbedtls_exit( 1 );
Paul Bakker6e339b52013-07-03 13:37:05 +0200496}
497
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200498void mbedtls_memory_buffer_set_verify( int verify )
Paul Bakkerbf796ac2013-09-28 11:06:38 +0200499{
500 heap.verify = verify;
501}
502
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200503int mbedtls_memory_buffer_alloc_verify()
Paul Bakker6e339b52013-07-03 13:37:05 +0200504{
505 return verify_chain();
506}
507
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200508#if defined(MBEDTLS_MEMORY_DEBUG)
509void mbedtls_memory_buffer_alloc_status()
Paul Bakker6e339b52013-07-03 13:37:05 +0200510{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200511 mbedtls_fprintf( stderr,
Manuel Pégourié-Gonnard97884a32014-07-12 02:27:35 +0200512 "Current use: %zu blocks / %zu bytes, max: %zu blocks / "
Manuel Pégourié-Gonnard200e7312015-05-26 17:42:13 +0200513 "%zu bytes (total %zu bytes), alloc / free: %zu / %zu\n",
Paul Bakker7dc4c442014-02-01 22:50:26 +0100514 heap.header_count, heap.total_used,
515 heap.maximum_header_count, heap.maximum_used,
516 heap.maximum_header_count * sizeof( memory_header )
517 + heap.maximum_used,
Manuel Pégourié-Gonnard200e7312015-05-26 17:42:13 +0200518 heap.alloc_count, heap.free_count );
Paul Bakker891998e2013-07-03 14:45:05 +0200519
Paul Bakker6e339b52013-07-03 13:37:05 +0200520 if( heap.first->next == NULL )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200521 mbedtls_fprintf( stderr, "All memory de-allocated in stack buffer\n" );
Paul Bakker6e339b52013-07-03 13:37:05 +0200522 else
523 {
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200524 mbedtls_fprintf( stderr, "Memory currently allocated:\n" );
Paul Bakker6e339b52013-07-03 13:37:05 +0200525 debug_chain();
526 }
527}
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100528
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200529void mbedtls_memory_buffer_alloc_max_get( size_t *max_used, size_t *max_blocks )
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100530{
531 *max_used = heap.maximum_used;
532 *max_blocks = heap.maximum_header_count;
533}
534
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200535void mbedtls_memory_buffer_alloc_max_reset( void )
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100536{
537 heap.maximum_used = 0;
538 heap.maximum_header_count = 0;
539}
540
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200541void mbedtls_memory_buffer_alloc_cur_get( size_t *cur_used, size_t *cur_blocks )
Manuel Pégourié-Gonnard50da0482014-12-19 12:10:37 +0100542{
543 *cur_used = heap.total_used;
544 *cur_blocks = heap.header_count;
545}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200546#endif /* MBEDTLS_MEMORY_DEBUG */
Paul Bakker6e339b52013-07-03 13:37:05 +0200547
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200548#if defined(MBEDTLS_THREADING_C)
Manuel Pégourié-Gonnard200e7312015-05-26 17:42:13 +0200549static void *buffer_alloc_calloc_mutexed( size_t n, size_t size )
Paul Bakker1337aff2013-09-29 14:45:34 +0200550{
551 void *buf;
Manuel Pégourié-Gonnardbdd78282015-04-24 14:42:53 +0200552 if( mbedtls_mutex_lock( &heap.mutex ) != 0 )
553 return( NULL );
Manuel Pégourié-Gonnard200e7312015-05-26 17:42:13 +0200554 buf = buffer_alloc_calloc( n, size );
Manuel Pégourié-Gonnardbdd78282015-04-24 14:42:53 +0200555 if( mbedtls_mutex_unlock( &heap.mutex ) )
556 return( NULL );
Paul Bakker1337aff2013-09-29 14:45:34 +0200557 return( buf );
558}
559
560static void buffer_alloc_free_mutexed( void *ptr )
561{
Manuel Pégourié-Gonnardbdd78282015-04-24 14:42:53 +0200562 /* We have to good option here, but corrupting the heap seems
563 * worse than loosing memory. */
564 if( mbedtls_mutex_lock( &heap.mutex ) )
565 return;
Paul Bakker1337aff2013-09-29 14:45:34 +0200566 buffer_alloc_free( ptr );
Manuel Pégourié-Gonnardbdd78282015-04-24 14:42:53 +0200567 (void) mbedtls_mutex_unlock( &heap.mutex );
Paul Bakker1337aff2013-09-29 14:45:34 +0200568}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200569#endif /* MBEDTLS_THREADING_C */
Paul Bakker1337aff2013-09-29 14:45:34 +0200570
Manuel Pégourié-Gonnard69a69cc2015-04-29 01:05:19 +0200571void mbedtls_memory_buffer_alloc_init( unsigned char *buf, size_t len )
Paul Bakker6e339b52013-07-03 13:37:05 +0200572{
Paul Bakker6e339b52013-07-03 13:37:05 +0200573 memset( &heap, 0, sizeof(buffer_alloc_ctx) );
574 memset( buf, 0, len );
Paul Bakker1337aff2013-09-29 14:45:34 +0200575
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200576#if defined(MBEDTLS_THREADING_C)
577 mbedtls_mutex_init( &heap.mutex );
Manuel Pégourié-Gonnard200e7312015-05-26 17:42:13 +0200578 mbedtls_platform_set_calloc_free( buffer_alloc_calloc_mutexed,
Paul Bakkerdefc0ca2014-02-04 17:30:24 +0100579 buffer_alloc_free_mutexed );
Paul Bakker1337aff2013-09-29 14:45:34 +0200580#else
Manuel Pégourié-Gonnard200e7312015-05-26 17:42:13 +0200581 mbedtls_platform_set_calloc_free( buffer_alloc_calloc, buffer_alloc_free );
Paul Bakker1337aff2013-09-29 14:45:34 +0200582#endif
Paul Bakker6e339b52013-07-03 13:37:05 +0200583
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200584 if( (size_t) buf % MBEDTLS_MEMORY_ALIGN_MULTIPLE )
Manuel Pégourié-Gonnard82a5de72014-05-05 14:05:24 +0200585 {
Manuel Pégourié-Gonnard5dd28ea2014-11-27 13:57:42 +0100586 /* Adjust len first since buf is used in the computation */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200587 len -= MBEDTLS_MEMORY_ALIGN_MULTIPLE
588 - (size_t) buf % MBEDTLS_MEMORY_ALIGN_MULTIPLE;
589 buf += MBEDTLS_MEMORY_ALIGN_MULTIPLE
590 - (size_t) buf % MBEDTLS_MEMORY_ALIGN_MULTIPLE;
Manuel Pégourié-Gonnard82a5de72014-05-05 14:05:24 +0200591 }
592
Paul Bakker6e339b52013-07-03 13:37:05 +0200593 heap.buf = buf;
594 heap.len = len;
595
596 heap.first = (memory_header *) buf;
597 heap.first->size = len - sizeof(memory_header);
598 heap.first->magic1 = MAGIC1;
599 heap.first->magic2 = MAGIC2;
Paul Bakker1ef120f2013-07-03 17:20:39 +0200600 heap.first_free = heap.first;
Paul Bakker6e339b52013-07-03 13:37:05 +0200601}
602
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200603void mbedtls_memory_buffer_alloc_free()
Paul Bakker1337aff2013-09-29 14:45:34 +0200604{
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200605#if defined(MBEDTLS_THREADING_C)
606 mbedtls_mutex_free( &heap.mutex );
Paul Bakker1337aff2013-09-29 14:45:34 +0200607#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200608 mbedtls_zeroize( &heap, sizeof(buffer_alloc_ctx) );
Paul Bakker1337aff2013-09-29 14:45:34 +0200609}
610
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200611#if defined(MBEDTLS_SELF_TEST)
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100612static int check_pointer( void *p )
613{
614 if( p == NULL )
615 return( -1 );
616
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200617 if( (size_t) p % MBEDTLS_MEMORY_ALIGN_MULTIPLE != 0 )
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100618 return( -1 );
619
620 return( 0 );
621}
622
623static int check_all_free( )
624{
Manuel Pégourié-Gonnard491a3fe2015-02-05 12:08:47 +0100625 if(
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200626#if defined(MBEDTLS_MEMORY_DEBUG)
Manuel Pégourié-Gonnard491a3fe2015-02-05 12:08:47 +0100627 heap.total_used != 0 ||
628#endif
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100629 heap.first != heap.first_free ||
630 (void *) heap.first != (void *) heap.buf )
631 {
632 return( -1 );
633 }
634
635 return( 0 );
636}
637
638#define TEST_ASSERT( condition ) \
639 if( ! (condition) ) \
640 { \
641 if( verbose != 0 ) \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200642 mbedtls_printf( "failed\n" ); \
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100643 \
644 ret = 1; \
645 goto cleanup; \
646 }
647
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200648int mbedtls_memory_buffer_alloc_self_test( int verbose )
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100649{
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100650 unsigned char buf[1024];
Manuel Pégourié-Gonnard5dd28ea2014-11-27 13:57:42 +0100651 unsigned char *p, *q, *r, *end;
652 int ret = 0;
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100653
654 if( verbose != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200655 mbedtls_printf( " MBA test #1 (basic alloc-free cycle): " );
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100656
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200657 mbedtls_memory_buffer_alloc_init( buf, sizeof( buf ) );
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100658
Manuel Pégourié-Gonnard7551cb92015-05-26 16:04:06 +0200659 p = mbedtls_calloc( 1, 1 );
660 q = mbedtls_calloc( 1, 128 );
661 r = mbedtls_calloc( 1, 16 );
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100662
663 TEST_ASSERT( check_pointer( p ) == 0 &&
664 check_pointer( q ) == 0 &&
665 check_pointer( r ) == 0 );
666
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200667 mbedtls_free( r );
668 mbedtls_free( q );
669 mbedtls_free( p );
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100670
671 TEST_ASSERT( check_all_free( ) == 0 );
672
Manuel Pégourié-Gonnard5dd28ea2014-11-27 13:57:42 +0100673 /* Memorize end to compare with the next test */
674 end = heap.buf + heap.len;
675
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200676 mbedtls_memory_buffer_alloc_free( );
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100677
678 if( verbose != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200679 mbedtls_printf( "passed\n" );
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100680
681 if( verbose != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200682 mbedtls_printf( " MBA test #2 (buf not aligned): " );
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100683
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200684 mbedtls_memory_buffer_alloc_init( buf + 1, sizeof( buf ) - 1 );
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100685
Manuel Pégourié-Gonnard5dd28ea2014-11-27 13:57:42 +0100686 TEST_ASSERT( heap.buf + heap.len == end );
687
Manuel Pégourié-Gonnard7551cb92015-05-26 16:04:06 +0200688 p = mbedtls_calloc( 1, 1 );
689 q = mbedtls_calloc( 1, 128 );
690 r = mbedtls_calloc( 1, 16 );
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100691
692 TEST_ASSERT( check_pointer( p ) == 0 &&
693 check_pointer( q ) == 0 &&
694 check_pointer( r ) == 0 );
695
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200696 mbedtls_free( r );
697 mbedtls_free( q );
698 mbedtls_free( p );
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100699
700 TEST_ASSERT( check_all_free( ) == 0 );
701
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200702 mbedtls_memory_buffer_alloc_free( );
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100703
704 if( verbose != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200705 mbedtls_printf( "passed\n" );
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100706
707 if( verbose != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200708 mbedtls_printf( " MBA test #3 (full): " );
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100709
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200710 mbedtls_memory_buffer_alloc_init( buf, sizeof( buf ) );
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100711
Manuel Pégourié-Gonnard7551cb92015-05-26 16:04:06 +0200712 p = mbedtls_calloc( 1, sizeof( buf ) - sizeof( memory_header ) );
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100713
714 TEST_ASSERT( check_pointer( p ) == 0 );
Manuel Pégourié-Gonnard7551cb92015-05-26 16:04:06 +0200715 TEST_ASSERT( mbedtls_calloc( 1, 1 ) == NULL );
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100716
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200717 mbedtls_free( p );
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100718
Manuel Pégourié-Gonnard7551cb92015-05-26 16:04:06 +0200719 p = mbedtls_calloc( 1, sizeof( buf ) - 2 * sizeof( memory_header ) - 16 );
720 q = mbedtls_calloc( 1, 16 );
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100721
722 TEST_ASSERT( check_pointer( p ) == 0 && check_pointer( q ) == 0 );
Manuel Pégourié-Gonnard7551cb92015-05-26 16:04:06 +0200723 TEST_ASSERT( mbedtls_calloc( 1, 1 ) == NULL );
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100724
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200725 mbedtls_free( q );
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100726
Manuel Pégourié-Gonnard7551cb92015-05-26 16:04:06 +0200727 TEST_ASSERT( mbedtls_calloc( 1, 17 ) == NULL );
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100728
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200729 mbedtls_free( p );
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100730
731 TEST_ASSERT( check_all_free( ) == 0 );
732
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200733 mbedtls_memory_buffer_alloc_free( );
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100734
735 if( verbose != 0 )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200736 mbedtls_printf( "passed\n" );
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100737
738cleanup:
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200739 mbedtls_memory_buffer_alloc_free( );
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100740
741 return( ret );
742}
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200743#endif /* MBEDTLS_SELF_TEST */
Manuel Pégourié-Gonnard5ba1d522014-11-27 11:33:55 +0100744
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200745#endif /* MBEDTLS_MEMORY_BUFFER_ALLOC_C */