Stack overflow on QEMU hosting MTE enabled kernel does not raise fault

170 Views Asked by At

I test stack overflow with linux 5.10 and qemu 5.2.93. It also can't detect the overflow on stack. Here is my sample example

#include <stdio.h>

int main(int argc, char** argv)
{
    volatile char pad[10];
    char s[10];
    for(int i=0; i<atoi(argv[1]); i++)
    {
        s[i] = i;
    }
    return 0;
}

I compile it with clang-13

clang -target aarch64-linux -march=armv8+memtag -fuse-ld=lld stack.c -o stack -fsanitize=memtag -static

I run the qemu with a simple filesystem

qemu-system-aarch64 -machine virt,mte=on -cpu max -kernel ./linux/arch/arm64/boot/Image -nographic -append "console=ttyAMA0" -m 1024 -initrd ./filesystem.cpio.gz -net nic -monitor /dev/null

and

./stack 17

There is nothing happen.

Or anyone can tell me how to run this on fvp monitor. I also use a MTE enabled kernel, fvp version 11.8.37. And I enable fvp mte with -C cluster0.memory_tagging_support_level=2. After all of this, there is also nothing happened with above stack overflow program.

0

There are 0 best solutions below