mirror of
https://github.com/GrapheneOS/hardened_malloc.git
synced 2025-09-09 18:26:33 +02:00
Compare commits
3 commits
a739cb4a9e
...
7d79bec225
Author | SHA1 | Date | |
---|---|---|---|
|
7d79bec225 | ||
|
c392d40843 | ||
|
9ca3279507 |
7 changed files with 84 additions and 5 deletions
8
.github/workflows/build-and-test.yml
vendored
8
.github/workflows/build-and-test.yml
vendored
|
@ -13,7 +13,7 @@ jobs:
|
|||
matrix:
|
||||
version: [12, 13, 14]
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v5
|
||||
- name: Setting up gcc version
|
||||
run: |
|
||||
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-${{ matrix.version }} 100
|
||||
|
@ -26,7 +26,7 @@ jobs:
|
|||
matrix:
|
||||
version: [14, 15, 16, 17, 18]
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v5
|
||||
- name: Install dependencies
|
||||
run: sudo apt-get update && sudo apt-get install -y --no-install-recommends clang-14 clang-15
|
||||
- name: Setting up clang version
|
||||
|
@ -40,7 +40,7 @@ jobs:
|
|||
container:
|
||||
image: alpine:latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v5
|
||||
- name: Install dependencies
|
||||
run: apk update && apk add build-base python3
|
||||
- name: Build
|
||||
|
@ -48,7 +48,7 @@ jobs:
|
|||
build-ubuntu-gcc-aarch64:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/checkout@v5
|
||||
- name: Install dependencies
|
||||
run: sudo apt-get update && sudo apt-get install -y --no-install-recommends gcc-aarch64-linux-gnu g++-aarch64-linux-gnu libgcc-s1-arm64-cross cpp-aarch64-linux-gnu
|
||||
- name: Build
|
||||
|
|
3
test/.gitignore
vendored
3
test/.gitignore
vendored
|
@ -41,4 +41,7 @@ overflow_small_8_byte
|
|||
uninitialized_read_large
|
||||
uninitialized_read_small
|
||||
realloc_init
|
||||
realloc_c23_undefined_behaviour
|
||||
realloc_c23_undefined_behaviour_double_free
|
||||
realloc_c23_undefined_behaviour_use_after_free
|
||||
__pycache__/
|
||||
|
|
|
@ -67,7 +67,10 @@ EXECUTABLES := \
|
|||
invalid_malloc_object_size_small \
|
||||
invalid_malloc_object_size_small_quarantine \
|
||||
impossibly_large_malloc \
|
||||
realloc_init
|
||||
realloc_init \
|
||||
realloc_c23_undefined_behaviour \
|
||||
realloc_c23_undefined_behaviour_double_free \
|
||||
realloc_c23_undefined_behaviour_use_after_free
|
||||
|
||||
all: $(EXECUTABLES)
|
||||
|
||||
|
|
19
test/realloc_c23_undefined_behaviour.c
Normal file
19
test/realloc_c23_undefined_behaviour.c
Normal file
|
@ -0,0 +1,19 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "test_util.h"
|
||||
|
||||
OPTNONE int main(void) {
|
||||
char *p, *q, *r;
|
||||
|
||||
p = malloc(16);
|
||||
if (!p) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
q = realloc(p, 0);
|
||||
|
||||
free(q);
|
||||
|
||||
return 0;
|
||||
}
|
19
test/realloc_c23_undefined_behaviour_double_free.c
Normal file
19
test/realloc_c23_undefined_behaviour_double_free.c
Normal file
|
@ -0,0 +1,19 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "test_util.h"
|
||||
|
||||
OPTNONE int main(void) {
|
||||
char *p, *q, *r;
|
||||
|
||||
p = malloc(16);
|
||||
if (!p) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
q = realloc(p, 0);
|
||||
|
||||
free(p);
|
||||
|
||||
return 0;
|
||||
}
|
21
test/realloc_c23_undefined_behaviour_use_after_free.c
Normal file
21
test/realloc_c23_undefined_behaviour_use_after_free.c
Normal file
|
@ -0,0 +1,21 @@
|
|||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "test_util.h"
|
||||
|
||||
OPTNONE int main(void) {
|
||||
char *p, *q, *r;
|
||||
|
||||
p = malloc(256 * 1024);
|
||||
if (!p) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
q = realloc(p, 0);
|
||||
|
||||
printf("%c\n", *p);
|
||||
|
||||
free(q);
|
||||
|
||||
return 0;
|
||||
}
|
|
@ -169,6 +169,20 @@ class TestSimpleMemoryCorruption(unittest.TestCase):
|
|||
self.assertEqual(stderr.decode("utf-8"),
|
||||
"fatal allocator error: invalid realloc\n")
|
||||
|
||||
def test_realloc_c23_undefined_behaviour(self):
|
||||
_stdout, stderr, returncode = self.run_test("realloc_c23_undefined_behaviour")
|
||||
self.assertEqual(returncode, 0)
|
||||
|
||||
def test_realloc_c23_undefined_behaviour_double_free(self):
|
||||
_stdout, stderr, returncode = self.run_test("realloc_c23_undefined_behaviour_double_free")
|
||||
self.assertEqual(returncode, -6)
|
||||
self.assertEqual(stderr.decode("utf-8"),
|
||||
"fatal allocator error: double free (quarantine)\n")
|
||||
|
||||
def test_realloc_c23_undefined_behaviour_use_after_free(self):
|
||||
_stdout, stderr, returncode = self.run_test("realloc_c23_undefined_behaviour_use_after_free")
|
||||
self.assertEqual(returncode, -11)
|
||||
|
||||
def test_write_after_free_large_reuse(self):
|
||||
_stdout, _stderr, returncode = self.run_test(
|
||||
"write_after_free_large_reuse")
|
||||
|
|
Loading…
Add table
Reference in a new issue