2021-01-01 23:27:42 +00:00
|
|
|
/*
|
2021-04-22 19:11:04 +00:00
|
|
|
* Copyright (c) 2021, Brian Gianforcaro <bgianf@serenityos.org>
|
2021-01-01 23:27:42 +00:00
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2021-01-01 23:27:42 +00:00
|
|
|
*/
|
|
|
|
|
2021-07-01 04:40:03 +00:00
|
|
|
#include <AK/Format.h>
|
|
|
|
#include <LibTest/TestCase.h>
|
2021-01-01 23:27:42 +00:00
|
|
|
|
2022-01-07 12:04:05 +00:00
|
|
|
// Note: Needs to be 'noinline' so stack canary isn't optimized out.
|
2021-01-01 23:27:42 +00:00
|
|
|
static void __attribute__((noinline)) smasher(char* string)
|
|
|
|
{
|
|
|
|
#pragma GCC diagnostic push
|
|
|
|
#pragma GCC diagnostic ignored "-Warray-bounds"
|
|
|
|
for (int i = 0; i < 256; i++) {
|
|
|
|
string[i] = 'A';
|
|
|
|
}
|
|
|
|
#pragma GCC diagnostic pop
|
|
|
|
}
|
|
|
|
|
2022-01-07 12:04:05 +00:00
|
|
|
// Note: Needs to be 'noinline' so stack canary isn't optimized out.
|
2021-01-01 23:27:42 +00:00
|
|
|
static void __attribute__((noinline)) stack_to_smash()
|
|
|
|
{
|
|
|
|
char string[8] = {};
|
|
|
|
smasher(string);
|
|
|
|
}
|
|
|
|
|
2021-07-01 04:40:03 +00:00
|
|
|
TEST_CASE(stack_smash)
|
2021-01-01 23:27:42 +00:00
|
|
|
{
|
2021-07-01 04:40:03 +00:00
|
|
|
EXPECT_CRASH("Smash the stack and trigger __stack_chk_fail", [] {
|
|
|
|
outln("[+] Starting the stack smash...");
|
|
|
|
stack_to_smash();
|
|
|
|
outln("[+] Stack smash wasn't detected!");
|
|
|
|
return Test::Crash::Failure::DidNotCrash;
|
|
|
|
});
|
2021-01-01 23:27:42 +00:00
|
|
|
}
|