blob: 33f09721eeed2e91733ee4e3fb2f59e2105c1fb2 [file] [log] [blame]
Adam Langleyd9e397b2015-01-22 14:27:53 -08001/* Copyright (c) 2014, Google Inc.
2 *
3 * Permission to use, copy, modify, and/or distribute this software for any
4 * purpose with or without fee is hereby granted, provided that the above
5 * copyright notice and this permission notice appear in all copies.
6 *
7 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
10 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
13 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
14
15#include <openssl/base.h>
16
Adam Langleye9ada862015-05-11 17:20:37 -070017#if defined(__has_feature)
Adam Langleyf4e42722015-06-04 17:45:09 -070018#if __has_feature(address_sanitizer) || __has_feature(memory_sanitizer)
Adam Langleye9ada862015-05-11 17:20:37 -070019#define OPENSSL_ASAN
20#endif
21#endif
22
Adam Langleyf4e42722015-06-04 17:45:09 -070023#if defined(__GLIBC__) && !defined(__UCLIBC__)
24#define OPENSSL_GLIBC
25#endif
26
Adam Langleyd9e397b2015-01-22 14:27:53 -080027// This file isn't built on ARM or Aarch64 because we link statically in those
Adam Langleyf4e42722015-06-04 17:45:09 -070028// builds and trying to override malloc in a static link doesn't work. It also
David Benjamin95add822016-10-19 01:09:12 -040029// requires glibc. It's also disabled on ASan builds as this interferes with
30// ASan's malloc interceptor.
31//
32// TODO(davidben): See if this and ASan's and MSan's interceptors can be made to
33// coexist.
Adam Langleyf4e42722015-06-04 17:45:09 -070034#if defined(__linux__) && defined(OPENSSL_GLIBC) && !defined(OPENSSL_ARM) && \
David Benjamin95add822016-10-19 01:09:12 -040035 !defined(OPENSSL_AARCH64) && !defined(OPENSSL_ASAN)
Adam Langleyd9e397b2015-01-22 14:27:53 -080036
Kenny Rootb8494592015-09-25 02:29:14 +000037#include <errno.h>
38#include <signal.h>
Adam Langleyd9e397b2015-01-22 14:27:53 -080039#include <stdint.h>
Adam Langleye9ada862015-05-11 17:20:37 -070040#include <stdio.h>
Adam Langleyd9e397b2015-01-22 14:27:53 -080041#include <stdlib.h>
42#include <unistd.h>
Adam Langleyd9e397b2015-01-22 14:27:53 -080043
44#include <new>
45
46
David Benjamin95add822016-10-19 01:09:12 -040047// This file defines overrides for the standard allocation functions that allow
48// a given allocation to be made to fail for testing. If the program is run
49// with MALLOC_NUMBER_TO_FAIL set to a base-10 number then that allocation will
50// return NULL. If MALLOC_BREAK_ON_FAIL is also defined then the allocation
51// will signal SIGTRAP rather than return NULL.
52//
53// This code is not thread safe.
Adam Langleyd9e397b2015-01-22 14:27:53 -080054
55static uint64_t current_malloc_count = 0;
56static uint64_t malloc_number_to_fail = 0;
David Benjamin95add822016-10-19 01:09:12 -040057static bool failure_enabled = false, break_on_fail = false, in_call = false;
Adam Langleyd9e397b2015-01-22 14:27:53 -080058
59extern "C" {
David Benjamin95add822016-10-19 01:09:12 -040060// These are other names for the standard allocation functions.
61extern void *__libc_malloc(size_t size);
62extern void *__libc_calloc(size_t num_elems, size_t size);
63extern void *__libc_realloc(void *ptr, size_t size);
Adam Langleyd9e397b2015-01-22 14:27:53 -080064}
65
66static void exit_handler(void) {
67 if (failure_enabled && current_malloc_count > malloc_number_to_fail) {
68 _exit(88);
69 }
70}
71
72static void cpp_new_handler() {
73 // Return to try again. It won't fail a second time.
74 return;
75}
76
David Benjamin95add822016-10-19 01:09:12 -040077// should_fail_allocation returns true if the current allocation should fail.
78static bool should_fail_allocation() {
79 static bool init = false;
Adam Langleyd9e397b2015-01-22 14:27:53 -080080
81 if (in_call) {
David Benjamin95add822016-10-19 01:09:12 -040082 return false;
Adam Langleyd9e397b2015-01-22 14:27:53 -080083 }
84
David Benjamin95add822016-10-19 01:09:12 -040085 in_call = true;
Adam Langleyd9e397b2015-01-22 14:27:53 -080086
87 if (!init) {
88 const char *env = getenv("MALLOC_NUMBER_TO_FAIL");
89 if (env != NULL && env[0] != 0) {
90 char *endptr;
91 malloc_number_to_fail = strtoull(env, &endptr, 10);
92 if (*endptr == 0) {
David Benjamin95add822016-10-19 01:09:12 -040093 failure_enabled = true;
Adam Langleyd9e397b2015-01-22 14:27:53 -080094 atexit(exit_handler);
95 std::set_new_handler(cpp_new_handler);
96 }
97 }
Kenny Rootb8494592015-09-25 02:29:14 +000098 break_on_fail = (NULL != getenv("MALLOC_BREAK_ON_FAIL"));
David Benjamin95add822016-10-19 01:09:12 -040099 init = true;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800100 }
101
David Benjamin95add822016-10-19 01:09:12 -0400102 in_call = false;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800103
104 if (!failure_enabled) {
David Benjamin95add822016-10-19 01:09:12 -0400105 return false;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800106 }
107
David Benjamin95add822016-10-19 01:09:12 -0400108 bool should_fail = (current_malloc_count == malloc_number_to_fail);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800109 current_malloc_count++;
110
Kenny Rootb8494592015-09-25 02:29:14 +0000111 if (should_fail && break_on_fail) {
112 raise(SIGTRAP);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800113 }
114 return should_fail;
115}
116
117extern "C" {
118
119void *malloc(size_t size) {
120 if (should_fail_allocation()) {
Kenny Rootb8494592015-09-25 02:29:14 +0000121 errno = ENOMEM;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800122 return NULL;
123 }
124
David Benjamin95add822016-10-19 01:09:12 -0400125 return __libc_malloc(size);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800126}
127
128void *calloc(size_t num_elems, size_t size) {
129 if (should_fail_allocation()) {
Kenny Rootb8494592015-09-25 02:29:14 +0000130 errno = ENOMEM;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800131 return NULL;
132 }
133
David Benjamin95add822016-10-19 01:09:12 -0400134 return __libc_calloc(num_elems, size);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800135}
136
137void *realloc(void *ptr, size_t size) {
138 if (should_fail_allocation()) {
Kenny Rootb8494592015-09-25 02:29:14 +0000139 errno = ENOMEM;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800140 return NULL;
141 }
142
David Benjamin95add822016-10-19 01:09:12 -0400143 return __libc_realloc(ptr, size);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800144}
145
146} // extern "C"
147
Adam Langleyf4e42722015-06-04 17:45:09 -0700148#endif /* defined(linux) && GLIBC && !ARM && !AARCH64 && !ASAN */