blob: bcd7974a4a7e0a036a28d84ce9e0f6ff111a41f3 [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 Langleyf4e42722015-06-04 17:45:09 -070017#if defined(__GLIBC__) && !defined(__UCLIBC__)
18#define OPENSSL_GLIBC
19#endif
20
Adam Langleyd9e397b2015-01-22 14:27:53 -080021// This file isn't built on ARM or Aarch64 because we link statically in those
Adam Langleyf4e42722015-06-04 17:45:09 -070022// builds and trying to override malloc in a static link doesn't work. It also
David Benjamin95add822016-10-19 01:09:12 -040023// requires glibc. It's also disabled on ASan builds as this interferes with
24// ASan's malloc interceptor.
25//
26// TODO(davidben): See if this and ASan's and MSan's interceptors can be made to
27// coexist.
Adam Langleyf4e42722015-06-04 17:45:09 -070028#if defined(__linux__) && defined(OPENSSL_GLIBC) && !defined(OPENSSL_ARM) && \
Robert Sloan8ff03552017-06-14 12:40:58 -070029 !defined(OPENSSL_AARCH64) && !defined(OPENSSL_ASAN) && \
30 !defined(OPENSSL_MSAN)
Adam Langleyd9e397b2015-01-22 14:27:53 -080031
Kenny Rootb8494592015-09-25 02:29:14 +000032#include <errno.h>
33#include <signal.h>
Adam Langleyd9e397b2015-01-22 14:27:53 -080034#include <stdint.h>
Adam Langleye9ada862015-05-11 17:20:37 -070035#include <stdio.h>
Adam Langleyd9e397b2015-01-22 14:27:53 -080036#include <stdlib.h>
37#include <unistd.h>
Adam Langleyd9e397b2015-01-22 14:27:53 -080038
39#include <new>
40
41
David Benjamin95add822016-10-19 01:09:12 -040042// This file defines overrides for the standard allocation functions that allow
43// a given allocation to be made to fail for testing. If the program is run
44// with MALLOC_NUMBER_TO_FAIL set to a base-10 number then that allocation will
45// return NULL. If MALLOC_BREAK_ON_FAIL is also defined then the allocation
46// will signal SIGTRAP rather than return NULL.
47//
48// This code is not thread safe.
Adam Langleyd9e397b2015-01-22 14:27:53 -080049
50static uint64_t current_malloc_count = 0;
51static uint64_t malloc_number_to_fail = 0;
David Benjamin95add822016-10-19 01:09:12 -040052static bool failure_enabled = false, break_on_fail = false, in_call = false;
Adam Langleyd9e397b2015-01-22 14:27:53 -080053
54extern "C" {
David Benjamin95add822016-10-19 01:09:12 -040055// These are other names for the standard allocation functions.
56extern void *__libc_malloc(size_t size);
57extern void *__libc_calloc(size_t num_elems, size_t size);
58extern void *__libc_realloc(void *ptr, size_t size);
Adam Langleyd9e397b2015-01-22 14:27:53 -080059}
60
61static void exit_handler(void) {
62 if (failure_enabled && current_malloc_count > malloc_number_to_fail) {
63 _exit(88);
64 }
65}
66
67static void cpp_new_handler() {
68 // Return to try again. It won't fail a second time.
69 return;
70}
71
David Benjamin95add822016-10-19 01:09:12 -040072// should_fail_allocation returns true if the current allocation should fail.
73static bool should_fail_allocation() {
74 static bool init = false;
Adam Langleyd9e397b2015-01-22 14:27:53 -080075
76 if (in_call) {
David Benjamin95add822016-10-19 01:09:12 -040077 return false;
Adam Langleyd9e397b2015-01-22 14:27:53 -080078 }
79
David Benjamin95add822016-10-19 01:09:12 -040080 in_call = true;
Adam Langleyd9e397b2015-01-22 14:27:53 -080081
82 if (!init) {
83 const char *env = getenv("MALLOC_NUMBER_TO_FAIL");
84 if (env != NULL && env[0] != 0) {
85 char *endptr;
86 malloc_number_to_fail = strtoull(env, &endptr, 10);
87 if (*endptr == 0) {
David Benjamin95add822016-10-19 01:09:12 -040088 failure_enabled = true;
Adam Langleyd9e397b2015-01-22 14:27:53 -080089 atexit(exit_handler);
90 std::set_new_handler(cpp_new_handler);
91 }
92 }
Kenny Rootb8494592015-09-25 02:29:14 +000093 break_on_fail = (NULL != getenv("MALLOC_BREAK_ON_FAIL"));
David Benjamin95add822016-10-19 01:09:12 -040094 init = true;
Adam Langleyd9e397b2015-01-22 14:27:53 -080095 }
96
David Benjamin95add822016-10-19 01:09:12 -040097 in_call = false;
Adam Langleyd9e397b2015-01-22 14:27:53 -080098
99 if (!failure_enabled) {
David Benjamin95add822016-10-19 01:09:12 -0400100 return false;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800101 }
102
David Benjamin95add822016-10-19 01:09:12 -0400103 bool should_fail = (current_malloc_count == malloc_number_to_fail);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800104 current_malloc_count++;
105
Kenny Rootb8494592015-09-25 02:29:14 +0000106 if (should_fail && break_on_fail) {
107 raise(SIGTRAP);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800108 }
109 return should_fail;
110}
111
112extern "C" {
113
114void *malloc(size_t size) {
115 if (should_fail_allocation()) {
Kenny Rootb8494592015-09-25 02:29:14 +0000116 errno = ENOMEM;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800117 return NULL;
118 }
119
David Benjamin95add822016-10-19 01:09:12 -0400120 return __libc_malloc(size);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800121}
122
123void *calloc(size_t num_elems, size_t size) {
124 if (should_fail_allocation()) {
Kenny Rootb8494592015-09-25 02:29:14 +0000125 errno = ENOMEM;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800126 return NULL;
127 }
128
David Benjamin95add822016-10-19 01:09:12 -0400129 return __libc_calloc(num_elems, size);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800130}
131
132void *realloc(void *ptr, size_t size) {
133 if (should_fail_allocation()) {
Kenny Rootb8494592015-09-25 02:29:14 +0000134 errno = ENOMEM;
Adam Langleyd9e397b2015-01-22 14:27:53 -0800135 return NULL;
136 }
137
David Benjamin95add822016-10-19 01:09:12 -0400138 return __libc_realloc(ptr, size);
Adam Langleyd9e397b2015-01-22 14:27:53 -0800139}
140
141} // extern "C"
142
Adam Langleyf4e42722015-06-04 17:45:09 -0700143#endif /* defined(linux) && GLIBC && !ARM && !AARCH64 && !ASAN */