]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/mem_sec.c
Make asn1 fuzzer more reproducible
[thirdparty/openssl.git] / crypto / mem_sec.c
CommitLineData
4f22f405
RS
1/*
2 * Copyright 2015-2016 The OpenSSL Project Authors. All Rights Reserved.
3 *
4 * Licensed under the OpenSSL license (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
8 */
9
74924dcb
RS
10/*
11 * Copyright 2004-2014, Akamai Technologies. All Rights Reserved.
12 * This file is distributed under the terms of the OpenSSL license.
13 */
14
15/*
16 * This file is in two halves. The first half implements the public API
17 * to be used by external consumers, and to be used by OpenSSL to store
18 * data in a "secure arena." The second half implements the secure arena.
19 * For details on that implementation, see below (look for uppercase
20 * "SECURE HEAP IMPLEMENTATION").
21 */
22#include <openssl/crypto.h>
23#include <e_os.h>
74924dcb 24
183733f8
RL
25#include <string.h>
26
74924dcb
RS
27#if defined(OPENSSL_SYS_LINUX) || defined(OPENSSL_SYS_UNIX)
28# define IMPLEMENTED
d4dfb0ba 29# include <stdlib.h>
d4dfb0ba
RS
30# include <assert.h>
31# include <unistd.h>
27186da7 32# include <sys/types.h>
74924dcb
RS
33# include <sys/mman.h>
34# include <sys/param.h>
27186da7
AP
35# include <sys/stat.h>
36# include <fcntl.h>
74924dcb
RS
37#endif
38
74924dcb 39#define CLEAR(p, s) OPENSSL_cleanse(p, s)
34750dc2
BL
40#ifndef PAGE_SIZE
41# define PAGE_SIZE 4096
42#endif
74924dcb
RS
43
44#ifdef IMPLEMENTED
df2ee0e2 45static size_t secure_mem_used;
74924dcb
RS
46
47static int secure_mem_initialized;
74924dcb 48
9471f776
MC
49static CRYPTO_RWLOCK *sec_malloc_lock = NULL;
50
74924dcb
RS
51/*
52 * These are the functions that must be implemented by a secure heap (sh).
53 */
54static int sh_init(size_t size, int minsize);
55static char *sh_malloc(size_t size);
56static void sh_free(char *ptr);
57static void sh_done(void);
e8408681 58static size_t sh_actual_size(char *ptr);
74924dcb
RS
59static int sh_allocated(const char *ptr);
60#endif
61
62int CRYPTO_secure_malloc_init(size_t size, int minsize)
63{
64#ifdef IMPLEMENTED
65 int ret = 0;
66
74924dcb 67 if (!secure_mem_initialized) {
9471f776
MC
68 sec_malloc_lock = CRYPTO_THREAD_lock_new();
69 if (sec_malloc_lock == NULL)
70 return 0;
74924dcb
RS
71 ret = sh_init(size, minsize);
72 secure_mem_initialized = 1;
73 }
9471f776 74
74924dcb
RS
75 return ret;
76#else
77 return 0;
78#endif /* IMPLEMENTED */
79}
80
e8408681 81int CRYPTO_secure_malloc_done()
74924dcb
RS
82{
83#ifdef IMPLEMENTED
e8408681
TS
84 if (secure_mem_used == 0) {
85 sh_done();
86 secure_mem_initialized = 0;
87 CRYPTO_THREAD_lock_free(sec_malloc_lock);
88 return 1;
89 }
74924dcb 90#endif /* IMPLEMENTED */
e8408681 91 return 0;
74924dcb
RS
92}
93
94int CRYPTO_secure_malloc_initialized()
95{
96#ifdef IMPLEMENTED
97 return secure_mem_initialized;
98#else
99 return 0;
100#endif /* IMPLEMENTED */
101}
102
ff842856 103void *CRYPTO_secure_malloc(size_t num, const char *file, int line)
74924dcb
RS
104{
105#ifdef IMPLEMENTED
106 void *ret;
107 size_t actual_size;
108
109 if (!secure_mem_initialized) {
74924dcb
RS
110 return CRYPTO_malloc(num, file, line);
111 }
9471f776 112 CRYPTO_THREAD_write_lock(sec_malloc_lock);
74924dcb
RS
113 ret = sh_malloc(num);
114 actual_size = ret ? sh_actual_size(ret) : 0;
115 secure_mem_used += actual_size;
9471f776 116 CRYPTO_THREAD_unlock(sec_malloc_lock);
74924dcb
RS
117 return ret;
118#else
119 return CRYPTO_malloc(num, file, line);
120#endif /* IMPLEMENTED */
121}
122
3538c7da
RS
123void *CRYPTO_secure_zalloc(size_t num, const char *file, int line)
124{
125 void *ret = CRYPTO_secure_malloc(num, file, line);
126
127 if (ret != NULL)
128 memset(ret, 0, num);
129 return ret;
130}
131
05c7b163 132void CRYPTO_secure_free(void *ptr, const char *file, int line)
74924dcb
RS
133{
134#ifdef IMPLEMENTED
135 size_t actual_size;
136
137 if (ptr == NULL)
138 return;
e8408681 139 if (!CRYPTO_secure_allocated(ptr)) {
05c7b163 140 CRYPTO_free(ptr, file, line);
74924dcb
RS
141 return;
142 }
9471f776 143 CRYPTO_THREAD_write_lock(sec_malloc_lock);
74924dcb
RS
144 actual_size = sh_actual_size(ptr);
145 CLEAR(ptr, actual_size);
146 secure_mem_used -= actual_size;
147 sh_free(ptr);
9471f776 148 CRYPTO_THREAD_unlock(sec_malloc_lock);
74924dcb 149#else
6a78ae28 150 CRYPTO_free(ptr, file, line);
74924dcb
RS
151#endif /* IMPLEMENTED */
152}
153
154int CRYPTO_secure_allocated(const void *ptr)
155{
156#ifdef IMPLEMENTED
157 int ret;
158
159 if (!secure_mem_initialized)
160 return 0;
9471f776 161 CRYPTO_THREAD_write_lock(sec_malloc_lock);
74924dcb 162 ret = sh_allocated(ptr);
9471f776 163 CRYPTO_THREAD_unlock(sec_malloc_lock);
74924dcb
RS
164 return ret;
165#else
166 return 0;
167#endif /* IMPLEMENTED */
168}
169
bbd86bf5
RS
170size_t CRYPTO_secure_used()
171{
172#ifdef IMPLEMENTED
173 return secure_mem_used;
174#else
175 return 0;
176#endif /* IMPLEMENTED */
177}
178
d594199b
RS
179size_t CRYPTO_secure_actual_size(void *ptr)
180{
181#ifdef IMPLEMENTED
182 size_t actual_size;
183
9471f776 184 CRYPTO_THREAD_write_lock(sec_malloc_lock);
d594199b 185 actual_size = sh_actual_size(ptr);
9471f776 186 CRYPTO_THREAD_unlock(sec_malloc_lock);
d594199b
RS
187 return actual_size;
188#else
189 return 0;
190#endif
191}
74924dcb
RS
192/* END OF PAGE ...
193
194 ... START OF PAGE */
195
196/*
197 * SECURE HEAP IMPLEMENTATION
198 */
199#ifdef IMPLEMENTED
200
201
202/*
203 * The implementation provided here uses a fixed-sized mmap() heap,
204 * which is locked into memory, not written to core files, and protected
205 * on either side by an unmapped page, which will catch pointer overruns
206 * (or underruns) and an attempt to read data out of the secure heap.
207 * Free'd memory is zero'd or otherwise cleansed.
208 *
209 * This is a pretty standard buddy allocator. We keep areas in a multiple
210 * of "sh.minsize" units. The freelist and bitmaps are kept separately,
211 * so all (and only) data is kept in the mmap'd heap.
212 *
213 * This code assumes eight-bit bytes. The numbers 3 and 7 are all over the
214 * place.
215 */
216
e8408681
TS
217#define ONE ((size_t)1)
218
219# define TESTBIT(t, b) (t[(b) >> 3] & (ONE << ((b) & 7)))
220# define SETBIT(t, b) (t[(b) >> 3] |= (ONE << ((b) & 7)))
221# define CLEARBIT(t, b) (t[(b) >> 3] &= (0xFF & ~(ONE << ((b) & 7))))
74924dcb
RS
222
223#define WITHIN_ARENA(p) \
224 ((char*)(p) >= sh.arena && (char*)(p) < &sh.arena[sh.arena_size])
225#define WITHIN_FREELIST(p) \
226 ((char*)(p) >= (char*)sh.freelist && (char*)(p) < (char*)&sh.freelist[sh.freelist_size])
227
228
229typedef struct sh_list_st
230{
231 struct sh_list_st *next;
232 struct sh_list_st **p_next;
233} SH_LIST;
234
235typedef struct sh_st
236{
237 char* map_result;
238 size_t map_size;
239 char *arena;
e8408681 240 size_t arena_size;
74924dcb 241 char **freelist;
e8408681
TS
242 ossl_ssize_t freelist_size;
243 size_t minsize;
74924dcb
RS
244 unsigned char *bittable;
245 unsigned char *bitmalloc;
e8408681 246 size_t bittable_size; /* size in bits */
74924dcb
RS
247} SH;
248
249static SH sh;
250
e8408681 251static size_t sh_getlist(char *ptr)
74924dcb 252{
e8408681
TS
253 ossl_ssize_t list = sh.freelist_size - 1;
254 size_t bit = (sh.arena_size + ptr - sh.arena) / sh.minsize;
74924dcb
RS
255
256 for (; bit; bit >>= 1, list--) {
257 if (TESTBIT(sh.bittable, bit))
258 break;
259 OPENSSL_assert((bit & 1) == 0);
260 }
261
262 return list;
263}
264
265
266static int sh_testbit(char *ptr, int list, unsigned char *table)
267{
e8408681 268 size_t bit;
74924dcb
RS
269
270 OPENSSL_assert(list >= 0 && list < sh.freelist_size);
271 OPENSSL_assert(((ptr - sh.arena) & ((sh.arena_size >> list) - 1)) == 0);
e8408681 272 bit = (ONE << list) + ((ptr - sh.arena) / (sh.arena_size >> list));
74924dcb
RS
273 OPENSSL_assert(bit > 0 && bit < sh.bittable_size);
274 return TESTBIT(table, bit);
275}
276
277static void sh_clearbit(char *ptr, int list, unsigned char *table)
278{
e8408681 279 size_t bit;
74924dcb
RS
280
281 OPENSSL_assert(list >= 0 && list < sh.freelist_size);
282 OPENSSL_assert(((ptr - sh.arena) & ((sh.arena_size >> list) - 1)) == 0);
e8408681 283 bit = (ONE << list) + ((ptr - sh.arena) / (sh.arena_size >> list));
74924dcb
RS
284 OPENSSL_assert(bit > 0 && bit < sh.bittable_size);
285 OPENSSL_assert(TESTBIT(table, bit));
286 CLEARBIT(table, bit);
287}
288
289static void sh_setbit(char *ptr, int list, unsigned char *table)
290{
e8408681 291 size_t bit;
74924dcb
RS
292
293 OPENSSL_assert(list >= 0 && list < sh.freelist_size);
294 OPENSSL_assert(((ptr - sh.arena) & ((sh.arena_size >> list) - 1)) == 0);
e8408681 295 bit = (ONE << list) + ((ptr - sh.arena) / (sh.arena_size >> list));
74924dcb
RS
296 OPENSSL_assert(bit > 0 && bit < sh.bittable_size);
297 OPENSSL_assert(!TESTBIT(table, bit));
298 SETBIT(table, bit);
299}
300
301static void sh_add_to_list(char **list, char *ptr)
302{
303 SH_LIST *temp;
304
305 OPENSSL_assert(WITHIN_FREELIST(list));
306 OPENSSL_assert(WITHIN_ARENA(ptr));
307
308 temp = (SH_LIST *)ptr;
309 temp->next = *(SH_LIST **)list;
310 OPENSSL_assert(temp->next == NULL || WITHIN_ARENA(temp->next));
311 temp->p_next = (SH_LIST **)list;
312
313 if (temp->next != NULL) {
314 OPENSSL_assert((char **)temp->next->p_next == list);
315 temp->next->p_next = &(temp->next);
316 }
317
318 *list = ptr;
319}
320
a773b52a 321static void sh_remove_from_list(char *ptr)
74924dcb
RS
322{
323 SH_LIST *temp, *temp2;
324
325 temp = (SH_LIST *)ptr;
326 if (temp->next != NULL)
327 temp->next->p_next = temp->p_next;
328 *temp->p_next = temp->next;
329 if (temp->next == NULL)
330 return;
331
332 temp2 = temp->next;
333 OPENSSL_assert(WITHIN_FREELIST(temp2->p_next) || WITHIN_ARENA(temp2->p_next));
334}
335
336
337static int sh_init(size_t size, int minsize)
338{
339 int i, ret;
340 size_t pgsize;
341 size_t aligned;
342
343 memset(&sh, 0, sizeof sh);
344
345 /* make sure size and minsize are powers of 2 */
346 OPENSSL_assert(size > 0);
347 OPENSSL_assert((size & (size - 1)) == 0);
348 OPENSSL_assert(minsize > 0);
349 OPENSSL_assert((minsize & (minsize - 1)) == 0);
350 if (size <= 0 || (size & (size - 1)) != 0)
351 goto err;
352 if (minsize <= 0 || (minsize & (minsize - 1)) != 0)
353 goto err;
354
355 sh.arena_size = size;
356 sh.minsize = minsize;
357 sh.bittable_size = (sh.arena_size / sh.minsize) * 2;
358
359 sh.freelist_size = -1;
360 for (i = sh.bittable_size; i; i >>= 1)
361 sh.freelist_size++;
362
b51bce94 363 sh.freelist = OPENSSL_zalloc(sh.freelist_size * sizeof (char *));
74924dcb
RS
364 OPENSSL_assert(sh.freelist != NULL);
365 if (sh.freelist == NULL)
366 goto err;
74924dcb 367
b51bce94 368 sh.bittable = OPENSSL_zalloc(sh.bittable_size >> 3);
74924dcb
RS
369 OPENSSL_assert(sh.bittable != NULL);
370 if (sh.bittable == NULL)
371 goto err;
74924dcb 372
b51bce94 373 sh.bitmalloc = OPENSSL_zalloc(sh.bittable_size >> 3);
74924dcb
RS
374 OPENSSL_assert(sh.bitmalloc != NULL);
375 if (sh.bitmalloc == NULL)
376 goto err;
74924dcb
RS
377
378 /* Allocate space for heap, and two extra pages as guards */
9ae720b4
MC
379#if defined(_SC_PAGE_SIZE) || defined (_SC_PAGESIZE)
380 {
381# if defined(_SC_PAGE_SIZE)
382 long tmppgsize = sysconf(_SC_PAGE_SIZE);
383# else
384 long tmppgsize = sysconf(_SC_PAGESIZE);
385# endif
386 if (tmppgsize < 1)
387 pgsize = PAGE_SIZE;
388 else
389 pgsize = (size_t)tmppgsize;
390 }
74924dcb
RS
391#else
392 pgsize = PAGE_SIZE;
393#endif
394 sh.map_size = pgsize + sh.arena_size + pgsize;
27186da7
AP
395 if (1) {
396#ifdef MAP_ANON
397 sh.map_result = mmap(NULL, sh.map_size,
398 PROT_READ|PROT_WRITE, MAP_ANON|MAP_PRIVATE, -1, 0);
399 } else {
400#endif
401 int fd;
402
403 sh.map_result = MAP_FAILED;
404 if ((fd = open("/dev/zero", O_RDWR)) >= 0) {
405 sh.map_result = mmap(NULL, sh.map_size,
406 PROT_READ|PROT_WRITE, MAP_PRIVATE, fd, 0);
407 close(fd);
408 }
409 }
74924dcb
RS
410 OPENSSL_assert(sh.map_result != MAP_FAILED);
411 if (sh.map_result == MAP_FAILED)
412 goto err;
413 sh.arena = (char *)(sh.map_result + pgsize);
414 sh_setbit(sh.arena, 0, sh.bittable);
415 sh_add_to_list(&sh.freelist[0], sh.arena);
416
417 /* Now try to add guard pages and lock into memory. */
418 ret = 1;
419
420 /* Starting guard is already aligned from mmap. */
421 if (mprotect(sh.map_result, pgsize, PROT_NONE) < 0)
422 ret = 2;
423
424 /* Ending guard page - need to round up to page boundary */
425 aligned = (pgsize + sh.arena_size + (pgsize - 1)) & ~(pgsize - 1);
426 if (mprotect(sh.map_result + aligned, pgsize, PROT_NONE) < 0)
427 ret = 2;
428
429 if (mlock(sh.arena, sh.arena_size) < 0)
430 ret = 2;
431#ifdef MADV_DONTDUMP
432 if (madvise(sh.arena, sh.arena_size, MADV_DONTDUMP) < 0)
433 ret = 2;
434#endif
435
436 return ret;
437
438 err:
439 sh_done();
440 return 0;
441}
442
443static void sh_done()
444{
445 OPENSSL_free(sh.freelist);
446 OPENSSL_free(sh.bittable);
447 OPENSSL_free(sh.bitmalloc);
448 if (sh.map_result != NULL && sh.map_size)
449 munmap(sh.map_result, sh.map_size);
450 memset(&sh, 0, sizeof sh);
451}
452
453static int sh_allocated(const char *ptr)
454{
455 return WITHIN_ARENA(ptr) ? 1 : 0;
456}
457
458static char *sh_find_my_buddy(char *ptr, int list)
459{
e8408681 460 size_t bit;
74924dcb
RS
461 char *chunk = NULL;
462
e8408681 463 bit = (ONE << list) + (ptr - sh.arena) / (sh.arena_size >> list);
74924dcb
RS
464 bit ^= 1;
465
466 if (TESTBIT(sh.bittable, bit) && !TESTBIT(sh.bitmalloc, bit))
e8408681 467 chunk = sh.arena + ((bit & ((ONE << list) - 1)) * (sh.arena_size >> list));
74924dcb
RS
468
469 return chunk;
470}
471
472static char *sh_malloc(size_t size)
473{
e8408681 474 ossl_ssize_t list, slist;
74924dcb
RS
475 size_t i;
476 char *chunk;
477
478 list = sh.freelist_size - 1;
479 for (i = sh.minsize; i < size; i <<= 1)
480 list--;
481 if (list < 0)
482 return NULL;
483
484 /* try to find a larger entry to split */
485 for (slist = list; slist >= 0; slist--)
486 if (sh.freelist[slist] != NULL)
487 break;
488 if (slist < 0)
489 return NULL;
490
491 /* split larger entry */
492 while (slist != list) {
493 char *temp = sh.freelist[slist];
494
495 /* remove from bigger list */
496 OPENSSL_assert(!sh_testbit(temp, slist, sh.bitmalloc));
497 sh_clearbit(temp, slist, sh.bittable);
a773b52a 498 sh_remove_from_list(temp);
74924dcb
RS
499 OPENSSL_assert(temp != sh.freelist[slist]);
500
501 /* done with bigger list */
502 slist++;
503
504 /* add to smaller list */
505 OPENSSL_assert(!sh_testbit(temp, slist, sh.bitmalloc));
506 sh_setbit(temp, slist, sh.bittable);
507 sh_add_to_list(&sh.freelist[slist], temp);
508 OPENSSL_assert(sh.freelist[slist] == temp);
509
510 /* split in 2 */
511 temp += sh.arena_size >> slist;
512 OPENSSL_assert(!sh_testbit(temp, slist, sh.bitmalloc));
513 sh_setbit(temp, slist, sh.bittable);
514 sh_add_to_list(&sh.freelist[slist], temp);
515 OPENSSL_assert(sh.freelist[slist] == temp);
516
517 OPENSSL_assert(temp-(sh.arena_size >> slist) == sh_find_my_buddy(temp, slist));
518 }
519
520 /* peel off memory to hand back */
521 chunk = sh.freelist[list];
522 OPENSSL_assert(sh_testbit(chunk, list, sh.bittable));
523 sh_setbit(chunk, list, sh.bitmalloc);
a773b52a 524 sh_remove_from_list(chunk);
74924dcb
RS
525
526 OPENSSL_assert(WITHIN_ARENA(chunk));
527
528 return chunk;
529}
530
531static void sh_free(char *ptr)
532{
e8408681 533 size_t list;
74924dcb
RS
534 char *buddy;
535
536 if (ptr == NULL)
537 return;
538 OPENSSL_assert(WITHIN_ARENA(ptr));
539 if (!WITHIN_ARENA(ptr))
540 return;
541
542 list = sh_getlist(ptr);
543 OPENSSL_assert(sh_testbit(ptr, list, sh.bittable));
544 sh_clearbit(ptr, list, sh.bitmalloc);
545 sh_add_to_list(&sh.freelist[list], ptr);
546
547 /* Try to coalesce two adjacent free areas. */
548 while ((buddy = sh_find_my_buddy(ptr, list)) != NULL) {
549 OPENSSL_assert(ptr == sh_find_my_buddy(buddy, list));
550 OPENSSL_assert(ptr != NULL);
551 OPENSSL_assert(!sh_testbit(ptr, list, sh.bitmalloc));
552 sh_clearbit(ptr, list, sh.bittable);
a773b52a 553 sh_remove_from_list(ptr);
74924dcb
RS
554 OPENSSL_assert(!sh_testbit(ptr, list, sh.bitmalloc));
555 sh_clearbit(buddy, list, sh.bittable);
a773b52a 556 sh_remove_from_list(buddy);
74924dcb
RS
557
558 list--;
559
560 if (ptr > buddy)
561 ptr = buddy;
562
563 OPENSSL_assert(!sh_testbit(ptr, list, sh.bitmalloc));
564 sh_setbit(ptr, list, sh.bittable);
565 sh_add_to_list(&sh.freelist[list], ptr);
566 OPENSSL_assert(sh.freelist[list] == ptr);
567 }
568}
569
e8408681 570static size_t sh_actual_size(char *ptr)
74924dcb
RS
571{
572 int list;
573
574 OPENSSL_assert(WITHIN_ARENA(ptr));
575 if (!WITHIN_ARENA(ptr))
576 return 0;
577 list = sh_getlist(ptr);
578 OPENSSL_assert(sh_testbit(ptr, list, sh.bittable));
e8408681 579 return sh.arena_size / (ONE << list);
74924dcb
RS
580}
581#endif /* IMPLEMENTED */