2020-04-02 11:26:35 +00:00
|
|
|
/* Test reporting of Safe-Linking caught errors.
|
2024-01-01 18:12:26 +00:00
|
|
|
Copyright (C) 2020-2024 Free Software Foundation, Inc.
|
2020-04-02 11:26:35 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with the GNU C Library; if not, see
|
|
|
|
<https://www.gnu.org/licenses/>. */
|
|
|
|
|
|
|
|
#include <signal.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <memory.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <support/capture_subprocess.h>
|
|
|
|
#include <support/check.h>
|
|
|
|
|
|
|
|
/* Run CALLBACK and check that the data on standard error equals
|
|
|
|
EXPECTED. */
|
|
|
|
static void
|
|
|
|
check (const char *test, void (*callback) (void *),
|
|
|
|
const char *expected)
|
|
|
|
{
|
|
|
|
int i, rand_mask;
|
2021-07-19 02:59:25 +00:00
|
|
|
int success = 0; /* 0 == fail, 1 == other check 2 == safe linking */
|
2020-04-02 11:26:35 +00:00
|
|
|
/* There is a chance of 1/16 that a corrupted pointer will be aligned.
|
|
|
|
Try multiple times so that statistical failure will be improbable. */
|
2021-07-19 02:59:25 +00:00
|
|
|
for (i = 0; i < 16; ++i)
|
2020-04-02 11:26:35 +00:00
|
|
|
{
|
|
|
|
rand_mask = rand () & 0xFF;
|
|
|
|
struct support_capture_subprocess result
|
|
|
|
= support_capture_subprocess (callback, &rand_mask);
|
2021-07-19 02:59:25 +00:00
|
|
|
printf ("%s\n", result.out.buffer);
|
2020-04-02 11:26:35 +00:00
|
|
|
/* Did not crash, could happen. Try again. */
|
|
|
|
if (strlen (result.err.buffer) == 0)
|
|
|
|
continue;
|
2021-07-19 02:59:25 +00:00
|
|
|
/* Crashed, it may either be safe linking or some other check. If it's
|
|
|
|
not safe linking then try again. */
|
2020-04-02 11:26:35 +00:00
|
|
|
if (strcmp (result.err.buffer, expected) != 0)
|
|
|
|
{
|
2021-07-19 02:59:25 +00:00
|
|
|
printf ("test %s failed with a different error\n"
|
2020-04-02 11:26:35 +00:00
|
|
|
" expected: %s\n"
|
|
|
|
" actual: %s\n",
|
|
|
|
test, expected, result.err.buffer);
|
2021-07-19 02:59:25 +00:00
|
|
|
success = 1;
|
|
|
|
continue;
|
2020-04-02 11:26:35 +00:00
|
|
|
}
|
|
|
|
TEST_VERIFY (WIFSIGNALED (result.status));
|
|
|
|
if (WIFSIGNALED (result.status))
|
|
|
|
TEST_VERIFY (WTERMSIG (result.status) == SIGABRT);
|
|
|
|
support_capture_subprocess_free (&result);
|
2021-07-19 02:59:25 +00:00
|
|
|
success = 2;
|
|
|
|
break;
|
2020-04-02 11:26:35 +00:00
|
|
|
}
|
2021-07-19 02:59:25 +00:00
|
|
|
/* The test fails only if the corruption was not caught by any of the malloc
|
|
|
|
mechanisms in all those iterations. This has a lower than 1 in 2^64
|
|
|
|
chance of a false positive. */
|
2020-04-02 11:26:35 +00:00
|
|
|
TEST_VERIFY (success);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Implementation details must be kept in sync with malloc. */
|
|
|
|
#define TCACHE_FILL_COUNT 7
|
|
|
|
#define TCACHE_ALLOC_SIZE 0x20
|
|
|
|
#define MALLOC_CONSOLIDATE_SIZE 256*1024
|
|
|
|
|
|
|
|
/* Try corrupting the tcache list. */
|
|
|
|
static void
|
|
|
|
test_tcache (void *closure)
|
|
|
|
{
|
|
|
|
int mask = ((int *)closure)[0];
|
|
|
|
size_t size = TCACHE_ALLOC_SIZE;
|
|
|
|
|
2021-07-19 02:59:25 +00:00
|
|
|
printf ("++ tcache ++\n");
|
|
|
|
|
2020-04-02 11:26:35 +00:00
|
|
|
/* Populate the tcache list. */
|
|
|
|
void * volatile a = malloc (size);
|
|
|
|
void * volatile b = malloc (size);
|
|
|
|
void * volatile c = malloc (size);
|
2021-07-19 02:59:25 +00:00
|
|
|
printf ("a=%p, b=%p, c=%p\n", a, b, c);
|
2020-04-02 11:26:35 +00:00
|
|
|
free (a);
|
|
|
|
free (b);
|
|
|
|
free (c);
|
|
|
|
|
|
|
|
/* Corrupt the pointer with a random value, and avoid optimizations. */
|
|
|
|
printf ("Before: c=%p, c[0]=%p\n", c, ((void **)c)[0]);
|
|
|
|
memset (c, mask & 0xFF, size);
|
|
|
|
printf ("After: c=%p, c[0]=%p\n", c, ((void **)c)[0]);
|
|
|
|
|
|
|
|
c = malloc (size);
|
2021-07-19 02:59:25 +00:00
|
|
|
printf ("Allocated: c=%p\n", c);
|
2020-04-02 11:26:35 +00:00
|
|
|
/* This line will trigger the Safe-Linking check. */
|
|
|
|
b = malloc (size);
|
|
|
|
printf ("b=%p\n", b);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Try corrupting the fastbin list. */
|
|
|
|
static void
|
|
|
|
test_fastbin (void *closure)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int mask = ((int *)closure)[0];
|
|
|
|
size_t size = TCACHE_ALLOC_SIZE;
|
|
|
|
|
2021-07-19 02:59:25 +00:00
|
|
|
printf ("++ fastbin ++\n");
|
|
|
|
|
2020-04-02 11:26:35 +00:00
|
|
|
/* Take the tcache out of the game. */
|
|
|
|
for (i = 0; i < TCACHE_FILL_COUNT; ++i)
|
|
|
|
{
|
|
|
|
void * volatile p = calloc (1, size);
|
2021-07-19 02:59:25 +00:00
|
|
|
printf ("p=%p\n", p);
|
2020-04-02 11:26:35 +00:00
|
|
|
free (p);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Populate the fastbin list. */
|
|
|
|
void * volatile a = calloc (1, size);
|
|
|
|
void * volatile b = calloc (1, size);
|
|
|
|
void * volatile c = calloc (1, size);
|
2021-07-19 02:59:25 +00:00
|
|
|
printf ("a=%p, b=%p, c=%p\n", a, b, c);
|
2020-04-02 11:26:35 +00:00
|
|
|
free (a);
|
|
|
|
free (b);
|
|
|
|
free (c);
|
|
|
|
|
|
|
|
/* Corrupt the pointer with a random value, and avoid optimizations. */
|
|
|
|
printf ("Before: c=%p, c[0]=%p\n", c, ((void **)c)[0]);
|
|
|
|
memset (c, mask & 0xFF, size);
|
|
|
|
printf ("After: c=%p, c[0]=%p\n", c, ((void **)c)[0]);
|
|
|
|
|
|
|
|
c = calloc (1, size);
|
2021-07-19 02:59:25 +00:00
|
|
|
printf ("Allocated: c=%p\n", c);
|
2020-04-02 11:26:35 +00:00
|
|
|
/* This line will trigger the Safe-Linking check. */
|
|
|
|
b = calloc (1, size);
|
|
|
|
printf ("b=%p\n", b);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Try corrupting the fastbin list and trigger a consolidate. */
|
|
|
|
static void
|
|
|
|
test_fastbin_consolidate (void *closure)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int mask = ((int*)closure)[0];
|
|
|
|
size_t size = TCACHE_ALLOC_SIZE;
|
|
|
|
|
2021-07-19 02:59:25 +00:00
|
|
|
printf ("++ fastbin consolidate ++\n");
|
|
|
|
|
2020-04-02 11:26:35 +00:00
|
|
|
/* Take the tcache out of the game. */
|
|
|
|
for (i = 0; i < TCACHE_FILL_COUNT; ++i)
|
|
|
|
{
|
|
|
|
void * volatile p = calloc (1, size);
|
|
|
|
free (p);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Populate the fastbin list. */
|
|
|
|
void * volatile a = calloc (1, size);
|
|
|
|
void * volatile b = calloc (1, size);
|
|
|
|
void * volatile c = calloc (1, size);
|
2021-07-19 02:59:25 +00:00
|
|
|
printf ("a=%p, b=%p, c=%p\n", a, b, c);
|
2020-04-02 11:26:35 +00:00
|
|
|
free (a);
|
|
|
|
free (b);
|
|
|
|
free (c);
|
|
|
|
|
|
|
|
/* Corrupt the pointer with a random value, and avoid optimizations. */
|
|
|
|
printf ("Before: c=%p, c[0]=%p\n", c, ((void **)c)[0]);
|
|
|
|
memset (c, mask & 0xFF, size);
|
|
|
|
printf ("After: c=%p, c[0]=%p\n", c, ((void **)c)[0]);
|
|
|
|
|
|
|
|
/* This line will trigger the Safe-Linking check. */
|
|
|
|
b = malloc (MALLOC_CONSOLIDATE_SIZE);
|
|
|
|
printf ("b=%p\n", b);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
do_test (void)
|
|
|
|
{
|
|
|
|
/* Seed the random for the test. */
|
|
|
|
srand (time (NULL));
|
|
|
|
|
|
|
|
check ("test_tcache", test_tcache,
|
|
|
|
"malloc(): unaligned tcache chunk detected\n");
|
|
|
|
check ("test_fastbin", test_fastbin,
|
|
|
|
"malloc(): unaligned fastbin chunk detected 2\n");
|
|
|
|
check ("test_fastbin_consolidate", test_fastbin_consolidate,
|
|
|
|
"malloc_consolidate(): unaligned fastbin chunk detected\n");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#include <support/test-driver.c>
|