Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit df3d638d authored by Arnd Bergmann's avatar Arnd Bergmann Committed by Olav Haugan
Browse files

lkdtm: hide stack overflow warning for corrupt-stack test



After the latest change to make sure the compiler actually does a memset,
it is now smart enough to flag the stack overflow at compile time,
at least with gcc-7.0:

drivers/misc/lkdtm_bugs.c: In function 'lkdtm_CORRUPT_STACK':
drivers/misc/lkdtm_bugs.c:88:144: warning: 'memset' writing 64 bytes into a region of size 8 overflows the destination [-Wstringop-overflow=]

To outsmart the compiler again, this moves the memset into a noinline
function where (for now) it doesn't see that we intentionally write
broken code here.

Change-Id: I66f033e4e2be2932f1ad8d6f4097bb03c501dbf1
Fixes: c55d240003ae ("lkdtm: Prevent the compiler from optimising lkdtm_CORRUPT_STACK()")
Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
Acked-by: default avatarKees Cook <keescook@chromium.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Git-commit: 7a11a1d1b58873b2e5a6922dcdc23b6b339b14ba
Git-repo: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git


Signed-off-by: default avatarOlav Haugan <ohaugan@codeaurora.org>
parent 5a12d928
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -80,12 +80,17 @@ void lkdtm_OVERFLOW(void)
	(void) recursive_loop(recur_count);
}

static noinline void __lkdtm_CORRUPT_STACK(void *stack)
{
	memset(stack, 'a', 64);
}

noinline void lkdtm_CORRUPT_STACK(void)
{
	/* Use default char array length that triggers stack protection. */
	char data[8];
	__lkdtm_CORRUPT_STACK(&data);

	memset((void *)data, 'a', 64);
	pr_info("Corrupted stack with '%16s'...\n", data);
}