blob: 4e3297b7d0069860fcad53b1357c886d47934697 [file] [log] [blame]
Joel Peshkin369d87a2021-04-11 11:21:58 +02001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright 2021 Broadcom
4 */
5
Joel Peshkin369d87a2021-04-11 11:21:58 +02006#include <asm/global_data.h>
7
8DECLARE_GLOBAL_DATA_PTR;
9
10unsigned long __stack_chk_guard = (unsigned long)(0xfeedf00ddeadbeef & ~0UL);
11
12void __stack_chk_fail(void)
13{
14 void *ra;
15
16 ra = __builtin_extract_return_addr(__builtin_return_address(0));
17 panic("Stack smashing detected in function:\n%p relocated from %p",
18 ra, ra - gd->reloc_off);
19}
Christophe Leroy9d0be732023-11-15 19:36:36 +010020
21void __stack_chk_fail_local(void)
22{
23 __stack_chk_fail();
24}