blob: ebbd24793905896a61e8e98d7333bfe67e8e8ff5 [file] [log] [blame]
Christopher Ferris885f3b92013-05-21 17:48:01 -07001/*
2 * Copyright (C) 2013 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <gtest/gtest.h>
18
Christopher Ferrise4cdbc42019-02-08 17:30:58 -080019#include <elf.h>
Christopher Ferrisa4037802014-06-09 19:14:11 -070020#include <limits.h>
Christopher Ferris1fc5ccf2019-02-15 18:06:15 -080021#include <pthread.h>
Christopher Ferrisa4037802014-06-09 19:14:11 -070022#include <stdint.h>
Christopher Ferris6c619a02019-03-01 17:59:51 -080023#include <stdio.h>
Christopher Ferris885f3b92013-05-21 17:48:01 -070024#include <stdlib.h>
Christopher Ferris1fc5ccf2019-02-15 18:06:15 -080025#include <string.h>
26#include <sys/types.h>
27#include <sys/wait.h>
Christopher Ferris885f3b92013-05-21 17:48:01 -070028#include <malloc.h>
Christopher Ferrisa4037802014-06-09 19:14:11 -070029#include <unistd.h>
Christopher Ferris885f3b92013-05-21 17:48:01 -070030
Christopher Ferris1fc5ccf2019-02-15 18:06:15 -080031#include <atomic>
Dan Albert4caa1f02014-08-20 09:16:57 -070032#include <tinyxml2.h>
33
Christopher Ferrise4cdbc42019-02-08 17:30:58 -080034#include <android-base/file.h>
35
Christopher Ferris2b0638e2019-09-11 19:05:29 -070036#include "platform/bionic/malloc.h"
Christopher Ferris63619642014-06-16 23:35:53 -070037#include "private/bionic_config.h"
Evgenii Stepanovacd6f4f2018-11-06 16:48:27 -080038#include "utils.h"
Dan Alberte5fdaa42014-06-14 01:04:31 +000039
Elliott Hughesb1770852018-09-18 12:52:42 -070040#if defined(__BIONIC__)
41#define HAVE_REALLOCARRAY 1
42#else
43#define HAVE_REALLOCARRAY __GLIBC_PREREQ(2, 26)
44#endif
45
Christopher Ferris885f3b92013-05-21 17:48:01 -070046TEST(malloc, malloc_std) {
47 // Simple malloc test.
48 void *ptr = malloc(100);
Yi Kong32bc0fc2018-08-02 17:31:13 -070049 ASSERT_TRUE(ptr != nullptr);
Christopher Ferris885f3b92013-05-21 17:48:01 -070050 ASSERT_LE(100U, malloc_usable_size(ptr));
Christopher Ferris885f3b92013-05-21 17:48:01 -070051 free(ptr);
52}
53
Christopher Ferrisa4037802014-06-09 19:14:11 -070054TEST(malloc, malloc_overflow) {
Evgenii Stepanovacd6f4f2018-11-06 16:48:27 -080055 SKIP_WITH_HWASAN;
Christopher Ferrisa4037802014-06-09 19:14:11 -070056 errno = 0;
Yi Kong32bc0fc2018-08-02 17:31:13 -070057 ASSERT_EQ(nullptr, malloc(SIZE_MAX));
Christopher Ferrisa4037802014-06-09 19:14:11 -070058 ASSERT_EQ(ENOMEM, errno);
59}
60
Christopher Ferris885f3b92013-05-21 17:48:01 -070061TEST(malloc, calloc_std) {
62 // Simple calloc test.
63 size_t alloc_len = 100;
64 char *ptr = (char *)calloc(1, alloc_len);
Yi Kong32bc0fc2018-08-02 17:31:13 -070065 ASSERT_TRUE(ptr != nullptr);
Christopher Ferris885f3b92013-05-21 17:48:01 -070066 ASSERT_LE(alloc_len, malloc_usable_size(ptr));
67 for (size_t i = 0; i < alloc_len; i++) {
68 ASSERT_EQ(0, ptr[i]);
69 }
Christopher Ferris885f3b92013-05-21 17:48:01 -070070 free(ptr);
71}
72
Christopher Ferrisa4037802014-06-09 19:14:11 -070073TEST(malloc, calloc_illegal) {
Evgenii Stepanovacd6f4f2018-11-06 16:48:27 -080074 SKIP_WITH_HWASAN;
Christopher Ferrisa4037802014-06-09 19:14:11 -070075 errno = 0;
Yi Kong32bc0fc2018-08-02 17:31:13 -070076 ASSERT_EQ(nullptr, calloc(-1, 100));
Christopher Ferrisa4037802014-06-09 19:14:11 -070077 ASSERT_EQ(ENOMEM, errno);
78}
79
80TEST(malloc, calloc_overflow) {
Evgenii Stepanovacd6f4f2018-11-06 16:48:27 -080081 SKIP_WITH_HWASAN;
Christopher Ferrisa4037802014-06-09 19:14:11 -070082 errno = 0;
Yi Kong32bc0fc2018-08-02 17:31:13 -070083 ASSERT_EQ(nullptr, calloc(1, SIZE_MAX));
Christopher Ferrisa4037802014-06-09 19:14:11 -070084 ASSERT_EQ(ENOMEM, errno);
85 errno = 0;
Yi Kong32bc0fc2018-08-02 17:31:13 -070086 ASSERT_EQ(nullptr, calloc(SIZE_MAX, SIZE_MAX));
Christopher Ferrisa4037802014-06-09 19:14:11 -070087 ASSERT_EQ(ENOMEM, errno);
88 errno = 0;
Yi Kong32bc0fc2018-08-02 17:31:13 -070089 ASSERT_EQ(nullptr, calloc(2, SIZE_MAX));
Christopher Ferrisa4037802014-06-09 19:14:11 -070090 ASSERT_EQ(ENOMEM, errno);
91 errno = 0;
Yi Kong32bc0fc2018-08-02 17:31:13 -070092 ASSERT_EQ(nullptr, calloc(SIZE_MAX, 2));
Christopher Ferrisa4037802014-06-09 19:14:11 -070093 ASSERT_EQ(ENOMEM, errno);
94}
95
Christopher Ferris885f3b92013-05-21 17:48:01 -070096TEST(malloc, memalign_multiple) {
Elliott Hughesbcaa4542019-03-08 15:20:23 -080097 SKIP_WITH_HWASAN << "hwasan requires power of 2 alignment";
Christopher Ferris885f3b92013-05-21 17:48:01 -070098 // Memalign test where the alignment is any value.
99 for (size_t i = 0; i <= 12; i++) {
100 for (size_t alignment = 1 << i; alignment < (1U << (i+1)); alignment++) {
Christopher Ferrisa4037802014-06-09 19:14:11 -0700101 char *ptr = reinterpret_cast<char*>(memalign(alignment, 100));
Yi Kong32bc0fc2018-08-02 17:31:13 -0700102 ASSERT_TRUE(ptr != nullptr) << "Failed at alignment " << alignment;
Christopher Ferrisa4037802014-06-09 19:14:11 -0700103 ASSERT_LE(100U, malloc_usable_size(ptr)) << "Failed at alignment " << alignment;
104 ASSERT_EQ(0U, reinterpret_cast<uintptr_t>(ptr) % ((1U << i)))
105 << "Failed at alignment " << alignment;
Christopher Ferris885f3b92013-05-21 17:48:01 -0700106 free(ptr);
107 }
108 }
109}
110
Christopher Ferrisa4037802014-06-09 19:14:11 -0700111TEST(malloc, memalign_overflow) {
Evgenii Stepanovacd6f4f2018-11-06 16:48:27 -0800112 SKIP_WITH_HWASAN;
Yi Kong32bc0fc2018-08-02 17:31:13 -0700113 ASSERT_EQ(nullptr, memalign(4096, SIZE_MAX));
Christopher Ferrisa4037802014-06-09 19:14:11 -0700114}
115
116TEST(malloc, memalign_non_power2) {
Evgenii Stepanovacd6f4f2018-11-06 16:48:27 -0800117 SKIP_WITH_HWASAN;
Christopher Ferrisa4037802014-06-09 19:14:11 -0700118 void* ptr;
119 for (size_t align = 0; align <= 256; align++) {
120 ptr = memalign(align, 1024);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700121 ASSERT_TRUE(ptr != nullptr) << "Failed at align " << align;
Christopher Ferrisa4037802014-06-09 19:14:11 -0700122 free(ptr);
123 }
124}
125
Christopher Ferris885f3b92013-05-21 17:48:01 -0700126TEST(malloc, memalign_realloc) {
127 // Memalign and then realloc the pointer a couple of times.
128 for (size_t alignment = 1; alignment <= 4096; alignment <<= 1) {
129 char *ptr = (char*)memalign(alignment, 100);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700130 ASSERT_TRUE(ptr != nullptr);
Christopher Ferris885f3b92013-05-21 17:48:01 -0700131 ASSERT_LE(100U, malloc_usable_size(ptr));
132 ASSERT_EQ(0U, (intptr_t)ptr % alignment);
133 memset(ptr, 0x23, 100);
134
135 ptr = (char*)realloc(ptr, 200);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700136 ASSERT_TRUE(ptr != nullptr);
Christopher Ferris885f3b92013-05-21 17:48:01 -0700137 ASSERT_LE(200U, malloc_usable_size(ptr));
Yi Kong32bc0fc2018-08-02 17:31:13 -0700138 ASSERT_TRUE(ptr != nullptr);
Christopher Ferris885f3b92013-05-21 17:48:01 -0700139 for (size_t i = 0; i < 100; i++) {
140 ASSERT_EQ(0x23, ptr[i]);
141 }
142 memset(ptr, 0x45, 200);
143
144 ptr = (char*)realloc(ptr, 300);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700145 ASSERT_TRUE(ptr != nullptr);
Christopher Ferris885f3b92013-05-21 17:48:01 -0700146 ASSERT_LE(300U, malloc_usable_size(ptr));
147 for (size_t i = 0; i < 200; i++) {
148 ASSERT_EQ(0x45, ptr[i]);
149 }
150 memset(ptr, 0x67, 300);
151
152 ptr = (char*)realloc(ptr, 250);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700153 ASSERT_TRUE(ptr != nullptr);
Christopher Ferris885f3b92013-05-21 17:48:01 -0700154 ASSERT_LE(250U, malloc_usable_size(ptr));
155 for (size_t i = 0; i < 250; i++) {
156 ASSERT_EQ(0x67, ptr[i]);
157 }
Christopher Ferris885f3b92013-05-21 17:48:01 -0700158 free(ptr);
159 }
160}
161
162TEST(malloc, malloc_realloc_larger) {
163 // Realloc to a larger size, malloc is used for the original allocation.
164 char *ptr = (char *)malloc(100);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700165 ASSERT_TRUE(ptr != nullptr);
Christopher Ferris885f3b92013-05-21 17:48:01 -0700166 ASSERT_LE(100U, malloc_usable_size(ptr));
167 memset(ptr, 67, 100);
168
169 ptr = (char *)realloc(ptr, 200);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700170 ASSERT_TRUE(ptr != nullptr);
Christopher Ferris885f3b92013-05-21 17:48:01 -0700171 ASSERT_LE(200U, malloc_usable_size(ptr));
172 for (size_t i = 0; i < 100; i++) {
173 ASSERT_EQ(67, ptr[i]);
174 }
Christopher Ferris885f3b92013-05-21 17:48:01 -0700175 free(ptr);
176}
177
178TEST(malloc, malloc_realloc_smaller) {
179 // Realloc to a smaller size, malloc is used for the original allocation.
180 char *ptr = (char *)malloc(200);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700181 ASSERT_TRUE(ptr != nullptr);
Christopher Ferris885f3b92013-05-21 17:48:01 -0700182 ASSERT_LE(200U, malloc_usable_size(ptr));
183 memset(ptr, 67, 200);
184
185 ptr = (char *)realloc(ptr, 100);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700186 ASSERT_TRUE(ptr != nullptr);
Christopher Ferris885f3b92013-05-21 17:48:01 -0700187 ASSERT_LE(100U, malloc_usable_size(ptr));
188 for (size_t i = 0; i < 100; i++) {
189 ASSERT_EQ(67, ptr[i]);
190 }
Christopher Ferris885f3b92013-05-21 17:48:01 -0700191 free(ptr);
192}
193
194TEST(malloc, malloc_multiple_realloc) {
195 // Multiple reallocs, malloc is used for the original allocation.
196 char *ptr = (char *)malloc(200);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700197 ASSERT_TRUE(ptr != nullptr);
Christopher Ferris885f3b92013-05-21 17:48:01 -0700198 ASSERT_LE(200U, malloc_usable_size(ptr));
199 memset(ptr, 0x23, 200);
200
201 ptr = (char *)realloc(ptr, 100);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700202 ASSERT_TRUE(ptr != nullptr);
Christopher Ferris885f3b92013-05-21 17:48:01 -0700203 ASSERT_LE(100U, malloc_usable_size(ptr));
204 for (size_t i = 0; i < 100; i++) {
205 ASSERT_EQ(0x23, ptr[i]);
206 }
207
208 ptr = (char*)realloc(ptr, 50);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700209 ASSERT_TRUE(ptr != nullptr);
Christopher Ferris885f3b92013-05-21 17:48:01 -0700210 ASSERT_LE(50U, malloc_usable_size(ptr));
211 for (size_t i = 0; i < 50; i++) {
212 ASSERT_EQ(0x23, ptr[i]);
213 }
214
215 ptr = (char*)realloc(ptr, 150);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700216 ASSERT_TRUE(ptr != nullptr);
Christopher Ferris885f3b92013-05-21 17:48:01 -0700217 ASSERT_LE(150U, malloc_usable_size(ptr));
218 for (size_t i = 0; i < 50; i++) {
219 ASSERT_EQ(0x23, ptr[i]);
220 }
221 memset(ptr, 0x23, 150);
222
223 ptr = (char*)realloc(ptr, 425);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700224 ASSERT_TRUE(ptr != nullptr);
Christopher Ferris885f3b92013-05-21 17:48:01 -0700225 ASSERT_LE(425U, malloc_usable_size(ptr));
226 for (size_t i = 0; i < 150; i++) {
227 ASSERT_EQ(0x23, ptr[i]);
228 }
Christopher Ferris885f3b92013-05-21 17:48:01 -0700229 free(ptr);
230}
Christopher Ferrisa4037802014-06-09 19:14:11 -0700231
Christopher Ferris885f3b92013-05-21 17:48:01 -0700232TEST(malloc, calloc_realloc_larger) {
233 // Realloc to a larger size, calloc is used for the original allocation.
234 char *ptr = (char *)calloc(1, 100);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700235 ASSERT_TRUE(ptr != nullptr);
Christopher Ferris885f3b92013-05-21 17:48:01 -0700236 ASSERT_LE(100U, malloc_usable_size(ptr));
237
238 ptr = (char *)realloc(ptr, 200);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700239 ASSERT_TRUE(ptr != nullptr);
Christopher Ferris885f3b92013-05-21 17:48:01 -0700240 ASSERT_LE(200U, malloc_usable_size(ptr));
241 for (size_t i = 0; i < 100; i++) {
242 ASSERT_EQ(0, ptr[i]);
243 }
Christopher Ferris885f3b92013-05-21 17:48:01 -0700244 free(ptr);
245}
246
247TEST(malloc, calloc_realloc_smaller) {
248 // Realloc to a smaller size, calloc is used for the original allocation.
249 char *ptr = (char *)calloc(1, 200);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700250 ASSERT_TRUE(ptr != nullptr);
Christopher Ferris885f3b92013-05-21 17:48:01 -0700251 ASSERT_LE(200U, malloc_usable_size(ptr));
252
253 ptr = (char *)realloc(ptr, 100);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700254 ASSERT_TRUE(ptr != nullptr);
Christopher Ferris885f3b92013-05-21 17:48:01 -0700255 ASSERT_LE(100U, malloc_usable_size(ptr));
256 for (size_t i = 0; i < 100; i++) {
257 ASSERT_EQ(0, ptr[i]);
258 }
Christopher Ferris885f3b92013-05-21 17:48:01 -0700259 free(ptr);
260}
261
262TEST(malloc, calloc_multiple_realloc) {
263 // Multiple reallocs, calloc is used for the original allocation.
264 char *ptr = (char *)calloc(1, 200);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700265 ASSERT_TRUE(ptr != nullptr);
Christopher Ferris885f3b92013-05-21 17:48:01 -0700266 ASSERT_LE(200U, malloc_usable_size(ptr));
267
268 ptr = (char *)realloc(ptr, 100);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700269 ASSERT_TRUE(ptr != nullptr);
Christopher Ferris885f3b92013-05-21 17:48:01 -0700270 ASSERT_LE(100U, malloc_usable_size(ptr));
271 for (size_t i = 0; i < 100; i++) {
272 ASSERT_EQ(0, ptr[i]);
273 }
274
275 ptr = (char*)realloc(ptr, 50);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700276 ASSERT_TRUE(ptr != nullptr);
Christopher Ferris885f3b92013-05-21 17:48:01 -0700277 ASSERT_LE(50U, malloc_usable_size(ptr));
278 for (size_t i = 0; i < 50; i++) {
279 ASSERT_EQ(0, ptr[i]);
280 }
281
282 ptr = (char*)realloc(ptr, 150);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700283 ASSERT_TRUE(ptr != nullptr);
Christopher Ferris885f3b92013-05-21 17:48:01 -0700284 ASSERT_LE(150U, malloc_usable_size(ptr));
285 for (size_t i = 0; i < 50; i++) {
286 ASSERT_EQ(0, ptr[i]);
287 }
288 memset(ptr, 0, 150);
289
290 ptr = (char*)realloc(ptr, 425);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700291 ASSERT_TRUE(ptr != nullptr);
Christopher Ferris885f3b92013-05-21 17:48:01 -0700292 ASSERT_LE(425U, malloc_usable_size(ptr));
293 for (size_t i = 0; i < 150; i++) {
294 ASSERT_EQ(0, ptr[i]);
295 }
Christopher Ferris885f3b92013-05-21 17:48:01 -0700296 free(ptr);
297}
Christopher Ferris72bbd422014-05-08 11:14:03 -0700298
Christopher Ferrisa4037802014-06-09 19:14:11 -0700299TEST(malloc, realloc_overflow) {
Evgenii Stepanovacd6f4f2018-11-06 16:48:27 -0800300 SKIP_WITH_HWASAN;
Christopher Ferrisa4037802014-06-09 19:14:11 -0700301 errno = 0;
Yi Kong32bc0fc2018-08-02 17:31:13 -0700302 ASSERT_EQ(nullptr, realloc(nullptr, SIZE_MAX));
Christopher Ferrisa4037802014-06-09 19:14:11 -0700303 ASSERT_EQ(ENOMEM, errno);
304 void* ptr = malloc(100);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700305 ASSERT_TRUE(ptr != nullptr);
Christopher Ferrisa4037802014-06-09 19:14:11 -0700306 errno = 0;
Yi Kong32bc0fc2018-08-02 17:31:13 -0700307 ASSERT_EQ(nullptr, realloc(ptr, SIZE_MAX));
Christopher Ferrisa4037802014-06-09 19:14:11 -0700308 ASSERT_EQ(ENOMEM, errno);
309 free(ptr);
Christopher Ferris72bbd422014-05-08 11:14:03 -0700310}
311
Dan Alberte5fdaa42014-06-14 01:04:31 +0000312#if defined(HAVE_DEPRECATED_MALLOC_FUNCS)
313extern "C" void* pvalloc(size_t);
314extern "C" void* valloc(size_t);
Christopher Ferris804cebe2019-06-20 08:50:23 -0700315#endif
Dan Alberte5fdaa42014-06-14 01:04:31 +0000316
Christopher Ferrisa4037802014-06-09 19:14:11 -0700317TEST(malloc, pvalloc_std) {
Christopher Ferris804cebe2019-06-20 08:50:23 -0700318#if defined(HAVE_DEPRECATED_MALLOC_FUNCS)
Christopher Ferrisa4037802014-06-09 19:14:11 -0700319 size_t pagesize = sysconf(_SC_PAGESIZE);
320 void* ptr = pvalloc(100);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700321 ASSERT_TRUE(ptr != nullptr);
Christopher Ferrisa4037802014-06-09 19:14:11 -0700322 ASSERT_TRUE((reinterpret_cast<uintptr_t>(ptr) & (pagesize-1)) == 0);
323 ASSERT_LE(pagesize, malloc_usable_size(ptr));
324 free(ptr);
Christopher Ferris804cebe2019-06-20 08:50:23 -0700325#else
326 GTEST_SKIP() << "pvalloc not supported.";
327#endif
Christopher Ferrisa4037802014-06-09 19:14:11 -0700328}
329
330TEST(malloc, pvalloc_overflow) {
Christopher Ferris804cebe2019-06-20 08:50:23 -0700331#if defined(HAVE_DEPRECATED_MALLOC_FUNCS)
Yi Kong32bc0fc2018-08-02 17:31:13 -0700332 ASSERT_EQ(nullptr, pvalloc(SIZE_MAX));
Christopher Ferris804cebe2019-06-20 08:50:23 -0700333#else
334 GTEST_SKIP() << "pvalloc not supported.";
335#endif
Christopher Ferrisa4037802014-06-09 19:14:11 -0700336}
337
338TEST(malloc, valloc_std) {
Christopher Ferris804cebe2019-06-20 08:50:23 -0700339#if defined(HAVE_DEPRECATED_MALLOC_FUNCS)
Christopher Ferrisa4037802014-06-09 19:14:11 -0700340 size_t pagesize = sysconf(_SC_PAGESIZE);
Christopher Ferrisd5ab0a52019-06-19 12:03:57 -0700341 void* ptr = valloc(100);
Yi Kong32bc0fc2018-08-02 17:31:13 -0700342 ASSERT_TRUE(ptr != nullptr);
Christopher Ferrisa4037802014-06-09 19:14:11 -0700343 ASSERT_TRUE((reinterpret_cast<uintptr_t>(ptr) & (pagesize-1)) == 0);
344 free(ptr);
Christopher Ferris804cebe2019-06-20 08:50:23 -0700345#else
346 GTEST_SKIP() << "valloc not supported.";
347#endif
Christopher Ferrisa4037802014-06-09 19:14:11 -0700348}
349
350TEST(malloc, valloc_overflow) {
Christopher Ferris804cebe2019-06-20 08:50:23 -0700351#if defined(HAVE_DEPRECATED_MALLOC_FUNCS)
Yi Kong32bc0fc2018-08-02 17:31:13 -0700352 ASSERT_EQ(nullptr, valloc(SIZE_MAX));
Christopher Ferris804cebe2019-06-20 08:50:23 -0700353#else
354 GTEST_SKIP() << "valloc not supported.";
Dan Alberte5fdaa42014-06-14 01:04:31 +0000355#endif
Christopher Ferris804cebe2019-06-20 08:50:23 -0700356}
Dan Albert4caa1f02014-08-20 09:16:57 -0700357
358TEST(malloc, malloc_info) {
359#ifdef __BIONIC__
Evgenii Stepanov8de6b462019-03-22 13:22:28 -0700360 SKIP_WITH_HWASAN; // hwasan does not implement malloc_info
Christopher Ferrisff88fb02019-11-04 18:40:00 -0800361
362 TemporaryFile tf;
363 ASSERT_TRUE(tf.fd != -1);
364 FILE* fp = fdopen(tf.fd, "w+");
365 tf.release();
366 ASSERT_TRUE(fp != nullptr);
367 ASSERT_EQ(0, malloc_info(0, fp));
368 ASSERT_EQ(0, fclose(fp));
369
370 std::string contents;
371 ASSERT_TRUE(android::base::ReadFileToString(tf.path, &contents));
Dan Albert4caa1f02014-08-20 09:16:57 -0700372
373 tinyxml2::XMLDocument doc;
Christopher Ferrisff88fb02019-11-04 18:40:00 -0800374 ASSERT_EQ(tinyxml2::XML_SUCCESS, doc.Parse(contents.c_str()));
Dan Albert4caa1f02014-08-20 09:16:57 -0700375
376 auto root = doc.FirstChildElement();
377 ASSERT_NE(nullptr, root);
378 ASSERT_STREQ("malloc", root->Name());
Christopher Ferris85169652019-10-09 18:41:55 -0700379 std::string version(root->Attribute("version"));
380 if (version == "jemalloc-1") {
Christopher Ferris6c619a02019-03-01 17:59:51 -0800381 // Verify jemalloc version of this data.
382 ASSERT_STREQ("jemalloc-1", root->Attribute("version"));
Dan Albert4caa1f02014-08-20 09:16:57 -0700383
Christopher Ferris6c619a02019-03-01 17:59:51 -0800384 auto arena = root->FirstChildElement();
385 for (; arena != nullptr; arena = arena->NextSiblingElement()) {
386 int val;
Dan Albert4caa1f02014-08-20 09:16:57 -0700387
Christopher Ferris6c619a02019-03-01 17:59:51 -0800388 ASSERT_STREQ("heap", arena->Name());
389 ASSERT_EQ(tinyxml2::XML_SUCCESS, arena->QueryIntAttribute("nr", &val));
390 ASSERT_EQ(tinyxml2::XML_SUCCESS,
391 arena->FirstChildElement("allocated-large")->QueryIntText(&val));
392 ASSERT_EQ(tinyxml2::XML_SUCCESS,
393 arena->FirstChildElement("allocated-huge")->QueryIntText(&val));
394 ASSERT_EQ(tinyxml2::XML_SUCCESS,
395 arena->FirstChildElement("allocated-bins")->QueryIntText(&val));
396 ASSERT_EQ(tinyxml2::XML_SUCCESS,
397 arena->FirstChildElement("bins-total")->QueryIntText(&val));
Dan Albert4caa1f02014-08-20 09:16:57 -0700398
Christopher Ferris6c619a02019-03-01 17:59:51 -0800399 auto bin = arena->FirstChildElement("bin");
400 for (; bin != nullptr; bin = bin ->NextSiblingElement()) {
401 if (strcmp(bin->Name(), "bin") == 0) {
402 ASSERT_EQ(tinyxml2::XML_SUCCESS, bin->QueryIntAttribute("nr", &val));
403 ASSERT_EQ(tinyxml2::XML_SUCCESS,
404 bin->FirstChildElement("allocated")->QueryIntText(&val));
405 ASSERT_EQ(tinyxml2::XML_SUCCESS,
406 bin->FirstChildElement("nmalloc")->QueryIntText(&val));
407 ASSERT_EQ(tinyxml2::XML_SUCCESS,
408 bin->FirstChildElement("ndalloc")->QueryIntText(&val));
409 }
Dan Albert4caa1f02014-08-20 09:16:57 -0700410 }
411 }
Christopher Ferris6c619a02019-03-01 17:59:51 -0800412 } else {
Christopher Ferris85169652019-10-09 18:41:55 -0700413 // Do not verify output for scudo or debug malloc.
414 ASSERT_TRUE(version == "scudo-1" || version == "debug-malloc-1")
415 << "Unknown version: " << version;
Dan Albert4caa1f02014-08-20 09:16:57 -0700416 }
417#endif
418}
Christopher Ferrisad33ebe2015-12-16 12:07:25 -0800419
Christopher Ferrisdb9706a2019-05-02 18:33:11 -0700420TEST(malloc, malloc_info_matches_mallinfo) {
421#ifdef __BIONIC__
422 SKIP_WITH_HWASAN; // hwasan does not implement malloc_info
423
Christopher Ferrisff88fb02019-11-04 18:40:00 -0800424 TemporaryFile tf;
425 ASSERT_TRUE(tf.fd != -1);
426 FILE* fp = fdopen(tf.fd, "w+");
427 tf.release();
428 ASSERT_TRUE(fp != nullptr);
Christopher Ferrisdb9706a2019-05-02 18:33:11 -0700429 size_t mallinfo_before_allocated_bytes = mallinfo().uordblks;
Christopher Ferrisff88fb02019-11-04 18:40:00 -0800430 ASSERT_EQ(0, malloc_info(0, fp));
Christopher Ferrisdb9706a2019-05-02 18:33:11 -0700431 size_t mallinfo_after_allocated_bytes = mallinfo().uordblks;
Christopher Ferrisff88fb02019-11-04 18:40:00 -0800432 ASSERT_EQ(0, fclose(fp));
433
434 std::string contents;
435 ASSERT_TRUE(android::base::ReadFileToString(tf.path, &contents));
Christopher Ferrisdb9706a2019-05-02 18:33:11 -0700436
437 tinyxml2::XMLDocument doc;
Christopher Ferrisff88fb02019-11-04 18:40:00 -0800438 ASSERT_EQ(tinyxml2::XML_SUCCESS, doc.Parse(contents.c_str()));
Christopher Ferrisdb9706a2019-05-02 18:33:11 -0700439
440 size_t total_allocated_bytes = 0;
441 auto root = doc.FirstChildElement();
442 ASSERT_NE(nullptr, root);
443 ASSERT_STREQ("malloc", root->Name());
Christopher Ferris85169652019-10-09 18:41:55 -0700444 std::string version(root->Attribute("version"));
445 if (version == "jemalloc-1") {
Christopher Ferrisdb9706a2019-05-02 18:33:11 -0700446 // Verify jemalloc version of this data.
447 ASSERT_STREQ("jemalloc-1", root->Attribute("version"));
448
449 auto arena = root->FirstChildElement();
450 for (; arena != nullptr; arena = arena->NextSiblingElement()) {
451 int val;
452
453 ASSERT_STREQ("heap", arena->Name());
454 ASSERT_EQ(tinyxml2::XML_SUCCESS, arena->QueryIntAttribute("nr", &val));
455 ASSERT_EQ(tinyxml2::XML_SUCCESS,
456 arena->FirstChildElement("allocated-large")->QueryIntText(&val));
457 total_allocated_bytes += val;
458 ASSERT_EQ(tinyxml2::XML_SUCCESS,
459 arena->FirstChildElement("allocated-huge")->QueryIntText(&val));
460 total_allocated_bytes += val;
461 ASSERT_EQ(tinyxml2::XML_SUCCESS,
462 arena->FirstChildElement("allocated-bins")->QueryIntText(&val));
463 total_allocated_bytes += val;
464 ASSERT_EQ(tinyxml2::XML_SUCCESS,
465 arena->FirstChildElement("bins-total")->QueryIntText(&val));
466 }
467 // The total needs to be between the mallinfo call before and after
468 // since malloc_info allocates some memory.
469 EXPECT_LE(mallinfo_before_allocated_bytes, total_allocated_bytes);
470 EXPECT_GE(mallinfo_after_allocated_bytes, total_allocated_bytes);
471 } else {
Christopher Ferris85169652019-10-09 18:41:55 -0700472 // Do not verify output for scudo or debug malloc.
473 ASSERT_TRUE(version == "scudo-1" || version == "debug-malloc-1")
474 << "Unknown version: " << version;
Christopher Ferrisdb9706a2019-05-02 18:33:11 -0700475 }
476#endif
477}
478
Christopher Ferrisad33ebe2015-12-16 12:07:25 -0800479TEST(malloc, calloc_usable_size) {
480 for (size_t size = 1; size <= 2048; size++) {
481 void* pointer = malloc(size);
482 ASSERT_TRUE(pointer != nullptr);
483 memset(pointer, 0xeb, malloc_usable_size(pointer));
484 free(pointer);
485
486 // We should get a previous pointer that has been set to non-zero.
487 // If calloc does not zero out all of the data, this will fail.
488 uint8_t* zero_mem = reinterpret_cast<uint8_t*>(calloc(1, size));
489 ASSERT_TRUE(pointer != nullptr);
490 size_t usable_size = malloc_usable_size(zero_mem);
491 for (size_t i = 0; i < usable_size; i++) {
492 ASSERT_EQ(0, zero_mem[i]) << "Failed at allocation size " << size << " at byte " << i;
493 }
494 free(zero_mem);
495 }
496}
Elliott Hughes884f76e2016-02-10 20:43:22 -0800497
498TEST(malloc, malloc_0) {
499 void* p = malloc(0);
500 ASSERT_TRUE(p != nullptr);
501 free(p);
502}
503
504TEST(malloc, calloc_0_0) {
505 void* p = calloc(0, 0);
506 ASSERT_TRUE(p != nullptr);
507 free(p);
508}
509
510TEST(malloc, calloc_0_1) {
511 void* p = calloc(0, 1);
512 ASSERT_TRUE(p != nullptr);
513 free(p);
514}
515
516TEST(malloc, calloc_1_0) {
517 void* p = calloc(1, 0);
518 ASSERT_TRUE(p != nullptr);
519 free(p);
520}
521
522TEST(malloc, realloc_nullptr_0) {
523 // realloc(nullptr, size) is actually malloc(size).
524 void* p = realloc(nullptr, 0);
525 ASSERT_TRUE(p != nullptr);
526 free(p);
527}
528
529TEST(malloc, realloc_0) {
530 void* p = malloc(1024);
531 ASSERT_TRUE(p != nullptr);
532 // realloc(p, 0) is actually free(p).
533 void* p2 = realloc(p, 0);
534 ASSERT_TRUE(p2 == nullptr);
535}
Christopher Ferris72df6702016-02-11 15:51:31 -0800536
537constexpr size_t MAX_LOOPS = 200;
538
539// Make sure that memory returned by malloc is aligned to allow these data types.
540TEST(malloc, verify_alignment) {
541 uint32_t** values_32 = new uint32_t*[MAX_LOOPS];
542 uint64_t** values_64 = new uint64_t*[MAX_LOOPS];
543 long double** values_ldouble = new long double*[MAX_LOOPS];
544 // Use filler to attempt to force the allocator to get potentially bad alignments.
545 void** filler = new void*[MAX_LOOPS];
546
547 for (size_t i = 0; i < MAX_LOOPS; i++) {
548 // Check uint32_t pointers.
549 filler[i] = malloc(1);
550 ASSERT_TRUE(filler[i] != nullptr);
551
552 values_32[i] = reinterpret_cast<uint32_t*>(malloc(sizeof(uint32_t)));
553 ASSERT_TRUE(values_32[i] != nullptr);
554 *values_32[i] = i;
555 ASSERT_EQ(*values_32[i], i);
556 ASSERT_EQ(0U, reinterpret_cast<uintptr_t>(values_32[i]) & (sizeof(uint32_t) - 1));
557
558 free(filler[i]);
559 }
560
561 for (size_t i = 0; i < MAX_LOOPS; i++) {
562 // Check uint64_t pointers.
563 filler[i] = malloc(1);
564 ASSERT_TRUE(filler[i] != nullptr);
565
566 values_64[i] = reinterpret_cast<uint64_t*>(malloc(sizeof(uint64_t)));
567 ASSERT_TRUE(values_64[i] != nullptr);
568 *values_64[i] = 0x1000 + i;
569 ASSERT_EQ(*values_64[i], 0x1000 + i);
570 ASSERT_EQ(0U, reinterpret_cast<uintptr_t>(values_64[i]) & (sizeof(uint64_t) - 1));
571
572 free(filler[i]);
573 }
574
575 for (size_t i = 0; i < MAX_LOOPS; i++) {
576 // Check long double pointers.
577 filler[i] = malloc(1);
578 ASSERT_TRUE(filler[i] != nullptr);
579
580 values_ldouble[i] = reinterpret_cast<long double*>(malloc(sizeof(long double)));
581 ASSERT_TRUE(values_ldouble[i] != nullptr);
582 *values_ldouble[i] = 5.5 + i;
583 ASSERT_DOUBLE_EQ(*values_ldouble[i], 5.5 + i);
584 // 32 bit glibc has a long double size of 12 bytes, so hardcode the
585 // required alignment to 0x7.
586#if !defined(__BIONIC__) && !defined(__LP64__)
587 ASSERT_EQ(0U, reinterpret_cast<uintptr_t>(values_ldouble[i]) & 0x7);
588#else
589 ASSERT_EQ(0U, reinterpret_cast<uintptr_t>(values_ldouble[i]) & (sizeof(long double) - 1));
590#endif
591
592 free(filler[i]);
593 }
594
595 for (size_t i = 0; i < MAX_LOOPS; i++) {
596 free(values_32[i]);
597 free(values_64[i]);
598 free(values_ldouble[i]);
599 }
600
601 delete[] filler;
602 delete[] values_32;
603 delete[] values_64;
604 delete[] values_ldouble;
605}
Christopher Ferrisa1c0d2f2017-05-15 15:50:19 -0700606
607TEST(malloc, mallopt_smoke) {
608 errno = 0;
609 ASSERT_EQ(0, mallopt(-1000, 1));
610 // mallopt doesn't set errno.
611 ASSERT_EQ(0, errno);
612}
Elliott Hughesb1770852018-09-18 12:52:42 -0700613
Christopher Ferrisaf1b8dd2018-11-07 15:28:16 -0800614TEST(malloc, mallopt_decay) {
615#if defined(__BIONIC__)
Elliott Hughesbcaa4542019-03-08 15:20:23 -0800616 SKIP_WITH_HWASAN << "hwasan does not implement mallopt";
Christopher Ferrisaf1b8dd2018-11-07 15:28:16 -0800617 errno = 0;
618 ASSERT_EQ(1, mallopt(M_DECAY_TIME, 1));
619 ASSERT_EQ(1, mallopt(M_DECAY_TIME, 0));
620 ASSERT_EQ(1, mallopt(M_DECAY_TIME, 1));
621 ASSERT_EQ(1, mallopt(M_DECAY_TIME, 0));
622#else
Elliott Hughesbcaa4542019-03-08 15:20:23 -0800623 GTEST_SKIP() << "bionic-only test";
Christopher Ferrisaf1b8dd2018-11-07 15:28:16 -0800624#endif
625}
626
627TEST(malloc, mallopt_purge) {
628#if defined(__BIONIC__)
Elliott Hughesbcaa4542019-03-08 15:20:23 -0800629 SKIP_WITH_HWASAN << "hwasan does not implement mallopt";
Christopher Ferrisaf1b8dd2018-11-07 15:28:16 -0800630 errno = 0;
631 ASSERT_EQ(1, mallopt(M_PURGE, 0));
632#else
Elliott Hughesbcaa4542019-03-08 15:20:23 -0800633 GTEST_SKIP() << "bionic-only test";
Christopher Ferrisaf1b8dd2018-11-07 15:28:16 -0800634#endif
635}
636
Elliott Hughesb1770852018-09-18 12:52:42 -0700637TEST(malloc, reallocarray_overflow) {
638#if HAVE_REALLOCARRAY
639 // Values that cause overflow to a result small enough (8 on LP64) that malloc would "succeed".
640 size_t a = static_cast<size_t>(INTPTR_MIN + 4);
641 size_t b = 2;
642
643 errno = 0;
644 ASSERT_TRUE(reallocarray(nullptr, a, b) == nullptr);
645 ASSERT_EQ(ENOMEM, errno);
646
647 errno = 0;
648 ASSERT_TRUE(reallocarray(nullptr, b, a) == nullptr);
649 ASSERT_EQ(ENOMEM, errno);
650#else
Elliott Hughesbcaa4542019-03-08 15:20:23 -0800651 GTEST_SKIP() << "reallocarray not available";
Elliott Hughesb1770852018-09-18 12:52:42 -0700652#endif
653}
654
655TEST(malloc, reallocarray) {
656#if HAVE_REALLOCARRAY
657 void* p = reallocarray(nullptr, 2, 32);
658 ASSERT_TRUE(p != nullptr);
659 ASSERT_GE(malloc_usable_size(p), 64U);
660#else
Elliott Hughesbcaa4542019-03-08 15:20:23 -0800661 GTEST_SKIP() << "reallocarray not available";
Elliott Hughesb1770852018-09-18 12:52:42 -0700662#endif
663}
Christopher Ferris09a19aa2018-11-16 13:28:56 -0800664
665TEST(malloc, mallinfo) {
666#if defined(__BIONIC__)
Elliott Hughesbcaa4542019-03-08 15:20:23 -0800667 SKIP_WITH_HWASAN << "hwasan does not implement mallinfo";
Christopher Ferris09a19aa2018-11-16 13:28:56 -0800668 static size_t sizes[] = {
669 8, 32, 128, 4096, 32768, 131072, 1024000, 10240000, 20480000, 300000000
670 };
671
672 constexpr static size_t kMaxAllocs = 50;
673
674 for (size_t size : sizes) {
675 // If some of these allocations are stuck in a thread cache, then keep
676 // looping until we make an allocation that changes the total size of the
677 // memory allocated.
678 // jemalloc implementations counts the thread cache allocations against
679 // total memory allocated.
680 void* ptrs[kMaxAllocs] = {};
681 bool pass = false;
682 for (size_t i = 0; i < kMaxAllocs; i++) {
683 size_t allocated = mallinfo().uordblks;
684 ptrs[i] = malloc(size);
685 ASSERT_TRUE(ptrs[i] != nullptr);
686 size_t new_allocated = mallinfo().uordblks;
687 if (allocated != new_allocated) {
688 size_t usable_size = malloc_usable_size(ptrs[i]);
Christopher Ferris4e562282019-02-07 14:20:03 -0800689 // Only check if the total got bigger by at least allocation size.
690 // Sometimes the mallinfo numbers can go backwards due to compaction
691 // and/or freeing of cached data.
692 if (new_allocated >= allocated + usable_size) {
693 pass = true;
694 break;
695 }
Christopher Ferris09a19aa2018-11-16 13:28:56 -0800696 }
697 }
698 for (void* ptr : ptrs) {
699 free(ptr);
700 }
701 ASSERT_TRUE(pass)
702 << "For size " << size << " allocated bytes did not increase after "
703 << kMaxAllocs << " allocations.";
704 }
705#else
Elliott Hughesbcaa4542019-03-08 15:20:23 -0800706 GTEST_SKIP() << "glibc is broken";
Christopher Ferris09a19aa2018-11-16 13:28:56 -0800707#endif
708}
Ryan Savitskiecc37e32018-12-14 15:57:21 +0000709
710TEST(android_mallopt, error_on_unexpected_option) {
711#if defined(__BIONIC__)
712 const int unrecognized_option = -1;
713 errno = 0;
714 EXPECT_EQ(false, android_mallopt(unrecognized_option, nullptr, 0));
715 EXPECT_EQ(ENOTSUP, errno);
716#else
Elliott Hughesbcaa4542019-03-08 15:20:23 -0800717 GTEST_SKIP() << "bionic-only test";
Ryan Savitskiecc37e32018-12-14 15:57:21 +0000718#endif
719}
720
Christopher Ferrise4cdbc42019-02-08 17:30:58 -0800721bool IsDynamic() {
722#if defined(__LP64__)
723 Elf64_Ehdr ehdr;
724#else
725 Elf32_Ehdr ehdr;
726#endif
727 std::string path(android::base::GetExecutablePath());
728
729 int fd = open(path.c_str(), O_RDONLY | O_CLOEXEC);
730 if (fd == -1) {
731 // Assume dynamic on error.
732 return true;
733 }
734 bool read_completed = android::base::ReadFully(fd, &ehdr, sizeof(ehdr));
735 close(fd);
736 // Assume dynamic in error cases.
737 return !read_completed || ehdr.e_type == ET_DYN;
738}
739
Ryan Savitskiecc37e32018-12-14 15:57:21 +0000740TEST(android_mallopt, init_zygote_child_profiling) {
741#if defined(__BIONIC__)
742 // Successful call.
743 errno = 0;
Christopher Ferrise4cdbc42019-02-08 17:30:58 -0800744 if (IsDynamic()) {
745 EXPECT_EQ(true, android_mallopt(M_INIT_ZYGOTE_CHILD_PROFILING, nullptr, 0));
746 EXPECT_EQ(0, errno);
747 } else {
748 // Not supported in static executables.
749 EXPECT_EQ(false, android_mallopt(M_INIT_ZYGOTE_CHILD_PROFILING, nullptr, 0));
750 EXPECT_EQ(ENOTSUP, errno);
751 }
Ryan Savitskiecc37e32018-12-14 15:57:21 +0000752
753 // Unexpected arguments rejected.
754 errno = 0;
755 char unexpected = 0;
756 EXPECT_EQ(false, android_mallopt(M_INIT_ZYGOTE_CHILD_PROFILING, &unexpected, 1));
Christopher Ferrise4cdbc42019-02-08 17:30:58 -0800757 if (IsDynamic()) {
758 EXPECT_EQ(EINVAL, errno);
759 } else {
760 EXPECT_EQ(ENOTSUP, errno);
761 }
Ryan Savitskiecc37e32018-12-14 15:57:21 +0000762#else
Elliott Hughesbcaa4542019-03-08 15:20:23 -0800763 GTEST_SKIP() << "bionic-only test";
Ryan Savitskiecc37e32018-12-14 15:57:21 +0000764#endif
765}
Christopher Ferris1fc5ccf2019-02-15 18:06:15 -0800766
767#if defined(__BIONIC__)
768template <typename FuncType>
769void CheckAllocationFunction(FuncType func) {
770 // Assumes that no more than 108MB of memory is allocated before this.
771 size_t limit = 128 * 1024 * 1024;
772 ASSERT_TRUE(android_mallopt(M_SET_ALLOCATION_LIMIT_BYTES, &limit, sizeof(limit)));
773 if (!func(20 * 1024 * 1024))
774 exit(1);
775 if (func(128 * 1024 * 1024))
776 exit(1);
777 exit(0);
778}
779#endif
780
781TEST(android_mallopt, set_allocation_limit) {
782#if defined(__BIONIC__)
783 EXPECT_EXIT(CheckAllocationFunction([](size_t bytes) { return calloc(bytes, 1) != nullptr; }),
784 testing::ExitedWithCode(0), "");
785 EXPECT_EXIT(CheckAllocationFunction([](size_t bytes) { return calloc(1, bytes) != nullptr; }),
786 testing::ExitedWithCode(0), "");
787 EXPECT_EXIT(CheckAllocationFunction([](size_t bytes) { return malloc(bytes) != nullptr; }),
788 testing::ExitedWithCode(0), "");
789 EXPECT_EXIT(CheckAllocationFunction(
790 [](size_t bytes) { return memalign(sizeof(void*), bytes) != nullptr; }),
791 testing::ExitedWithCode(0), "");
792 EXPECT_EXIT(CheckAllocationFunction([](size_t bytes) {
793 void* ptr;
794 return posix_memalign(&ptr, sizeof(void *), bytes) == 0;
795 }),
796 testing::ExitedWithCode(0), "");
797 EXPECT_EXIT(CheckAllocationFunction(
798 [](size_t bytes) { return aligned_alloc(sizeof(void*), bytes) != nullptr; }),
799 testing::ExitedWithCode(0), "");
800 EXPECT_EXIT(CheckAllocationFunction([](size_t bytes) {
801 void* p = malloc(1024 * 1024);
802 return realloc(p, bytes) != nullptr;
803 }),
804 testing::ExitedWithCode(0), "");
805#if !defined(__LP64__)
806 EXPECT_EXIT(CheckAllocationFunction([](size_t bytes) { return pvalloc(bytes) != nullptr; }),
807 testing::ExitedWithCode(0), "");
808 EXPECT_EXIT(CheckAllocationFunction([](size_t bytes) { return valloc(bytes) != nullptr; }),
809 testing::ExitedWithCode(0), "");
810#endif
811#else
Elliott Hughes10907202019-03-27 08:51:02 -0700812 GTEST_SKIP() << "bionic extension";
Christopher Ferris1fc5ccf2019-02-15 18:06:15 -0800813#endif
814}
815
816TEST(android_mallopt, set_allocation_limit_multiple) {
817#if defined(__BIONIC__)
818 // Only the first set should work.
819 size_t limit = 256 * 1024 * 1024;
820 ASSERT_TRUE(android_mallopt(M_SET_ALLOCATION_LIMIT_BYTES, &limit, sizeof(limit)));
821 limit = 32 * 1024 * 1024;
822 ASSERT_FALSE(android_mallopt(M_SET_ALLOCATION_LIMIT_BYTES, &limit, sizeof(limit)));
823#else
Elliott Hughes10907202019-03-27 08:51:02 -0700824 GTEST_SKIP() << "bionic extension";
Christopher Ferris1fc5ccf2019-02-15 18:06:15 -0800825#endif
826}
827
828#if defined(__BIONIC__)
829static constexpr size_t kAllocationSize = 8 * 1024 * 1024;
830
831static size_t GetMaxAllocations() {
832 size_t max_pointers = 0;
833 void* ptrs[20];
834 for (size_t i = 0; i < sizeof(ptrs) / sizeof(void*); i++) {
835 ptrs[i] = malloc(kAllocationSize);
836 if (ptrs[i] == nullptr) {
837 max_pointers = i;
838 break;
839 }
840 }
841 for (size_t i = 0; i < max_pointers; i++) {
842 free(ptrs[i]);
843 }
844 return max_pointers;
845}
846
847static void VerifyMaxPointers(size_t max_pointers) {
848 // Now verify that we can allocate the same number as before.
849 void* ptrs[20];
850 for (size_t i = 0; i < max_pointers; i++) {
851 ptrs[i] = malloc(kAllocationSize);
852 ASSERT_TRUE(ptrs[i] != nullptr) << "Failed to allocate on iteration " << i;
853 }
854
855 // Make sure the next allocation still fails.
856 ASSERT_TRUE(malloc(kAllocationSize) == nullptr);
857 for (size_t i = 0; i < max_pointers; i++) {
858 free(ptrs[i]);
859 }
860}
861#endif
862
863TEST(android_mallopt, set_allocation_limit_realloc_increase) {
864#if defined(__BIONIC__)
865 size_t limit = 128 * 1024 * 1024;
866 ASSERT_TRUE(android_mallopt(M_SET_ALLOCATION_LIMIT_BYTES, &limit, sizeof(limit)));
867
868 size_t max_pointers = GetMaxAllocations();
869 ASSERT_TRUE(max_pointers != 0) << "Limit never reached.";
870
871 void* memory = malloc(10 * 1024 * 1024);
872 ASSERT_TRUE(memory != nullptr);
873
874 // Increase size.
875 memory = realloc(memory, 20 * 1024 * 1024);
876 ASSERT_TRUE(memory != nullptr);
877 memory = realloc(memory, 40 * 1024 * 1024);
878 ASSERT_TRUE(memory != nullptr);
879 memory = realloc(memory, 60 * 1024 * 1024);
880 ASSERT_TRUE(memory != nullptr);
881 memory = realloc(memory, 80 * 1024 * 1024);
882 ASSERT_TRUE(memory != nullptr);
883 // Now push past limit.
884 memory = realloc(memory, 130 * 1024 * 1024);
885 ASSERT_TRUE(memory == nullptr);
886
887 VerifyMaxPointers(max_pointers);
888#else
Elliott Hughes10907202019-03-27 08:51:02 -0700889 GTEST_SKIP() << "bionic extension";
Christopher Ferris1fc5ccf2019-02-15 18:06:15 -0800890#endif
891}
892
893TEST(android_mallopt, set_allocation_limit_realloc_decrease) {
894#if defined(__BIONIC__)
895 size_t limit = 100 * 1024 * 1024;
896 ASSERT_TRUE(android_mallopt(M_SET_ALLOCATION_LIMIT_BYTES, &limit, sizeof(limit)));
897
898 size_t max_pointers = GetMaxAllocations();
899 ASSERT_TRUE(max_pointers != 0) << "Limit never reached.";
900
901 void* memory = malloc(80 * 1024 * 1024);
902 ASSERT_TRUE(memory != nullptr);
903
904 // Decrease size.
905 memory = realloc(memory, 60 * 1024 * 1024);
906 ASSERT_TRUE(memory != nullptr);
907 memory = realloc(memory, 40 * 1024 * 1024);
908 ASSERT_TRUE(memory != nullptr);
909 memory = realloc(memory, 20 * 1024 * 1024);
910 ASSERT_TRUE(memory != nullptr);
911 memory = realloc(memory, 10 * 1024 * 1024);
912 ASSERT_TRUE(memory != nullptr);
913 free(memory);
914
915 VerifyMaxPointers(max_pointers);
916#else
Elliott Hughes10907202019-03-27 08:51:02 -0700917 GTEST_SKIP() << "bionic extension";
Christopher Ferris1fc5ccf2019-02-15 18:06:15 -0800918#endif
919}
920
921TEST(android_mallopt, set_allocation_limit_realloc_free) {
922#if defined(__BIONIC__)
923 size_t limit = 100 * 1024 * 1024;
924 ASSERT_TRUE(android_mallopt(M_SET_ALLOCATION_LIMIT_BYTES, &limit, sizeof(limit)));
925
926 size_t max_pointers = GetMaxAllocations();
927 ASSERT_TRUE(max_pointers != 0) << "Limit never reached.";
928
929 void* memory = malloc(60 * 1024 * 1024);
930 ASSERT_TRUE(memory != nullptr);
931
932 memory = realloc(memory, 0);
933 ASSERT_TRUE(memory == nullptr);
934
935 VerifyMaxPointers(max_pointers);
936#else
Elliott Hughes10907202019-03-27 08:51:02 -0700937 GTEST_SKIP() << "bionic extension";
Christopher Ferris1fc5ccf2019-02-15 18:06:15 -0800938#endif
939}
940
941#if defined(__BIONIC__)
942static void* SetAllocationLimit(void* data) {
943 std::atomic_bool* go = reinterpret_cast<std::atomic_bool*>(data);
944 while (!go->load()) {
945 }
946 size_t limit = 500 * 1024 * 1024;
947 if (android_mallopt(M_SET_ALLOCATION_LIMIT_BYTES, &limit, sizeof(limit))) {
948 return reinterpret_cast<void*>(-1);
949 }
950 return nullptr;
951}
952
953static void SetAllocationLimitMultipleThreads() {
954 std::atomic_bool go;
955 go = false;
956
957 static constexpr size_t kNumThreads = 4;
958 pthread_t threads[kNumThreads];
959 for (size_t i = 0; i < kNumThreads; i++) {
960 ASSERT_EQ(0, pthread_create(&threads[i], nullptr, SetAllocationLimit, &go));
961 }
962
963 // Let them go all at once.
964 go = true;
965 ASSERT_EQ(0, kill(getpid(), __SIGRTMIN + 4));
966
967 size_t num_successful = 0;
968 for (size_t i = 0; i < kNumThreads; i++) {
969 void* result;
970 ASSERT_EQ(0, pthread_join(threads[i], &result));
971 if (result != nullptr) {
972 num_successful++;
973 }
974 }
975 ASSERT_EQ(1U, num_successful);
976 exit(0);
977}
978#endif
979
980TEST(android_mallopt, set_allocation_limit_multiple_threads) {
981#if defined(__BIONIC__)
982 if (IsDynamic()) {
983 ASSERT_TRUE(android_mallopt(M_INIT_ZYGOTE_CHILD_PROFILING, nullptr, 0));
984 }
985
986 // Run this a number of times as a stress test.
987 for (size_t i = 0; i < 100; i++) {
988 // Not using ASSERT_EXIT because errors messages are not displayed.
989 pid_t pid;
990 if ((pid = fork()) == 0) {
991 ASSERT_NO_FATAL_FAILURE(SetAllocationLimitMultipleThreads());
992 }
993 ASSERT_NE(-1, pid);
994 int status;
995 ASSERT_EQ(pid, wait(&status));
996 ASSERT_EQ(0, WEXITSTATUS(status));
997 }
998#else
Elliott Hughes10907202019-03-27 08:51:02 -0700999 GTEST_SKIP() << "bionic extension";
Christopher Ferris1fc5ccf2019-02-15 18:06:15 -08001000#endif
1001}